16.30/6.28 YES 18.48/6.84 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 18.48/6.84 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 18.48/6.84 18.48/6.84 18.48/6.84 H-Termination with start terms of the given HASKELL could be proven: 18.48/6.84 18.48/6.84 (0) HASKELL 18.48/6.84 (1) BR [EQUIVALENT, 0 ms] 18.48/6.84 (2) HASKELL 18.48/6.84 (3) COR [EQUIVALENT, 17 ms] 18.48/6.84 (4) HASKELL 18.48/6.84 (5) LetRed [EQUIVALENT, 0 ms] 18.48/6.84 (6) HASKELL 18.48/6.84 (7) Narrow [SOUND, 0 ms] 18.48/6.84 (8) AND 18.48/6.84 (9) QDP 18.48/6.84 (10) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.48/6.84 (11) YES 18.48/6.84 (12) QDP 18.48/6.84 (13) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.48/6.84 (14) YES 18.48/6.84 (15) QDP 18.48/6.84 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.48/6.84 (17) YES 18.48/6.84 (18) QDP 18.48/6.84 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.48/6.84 (20) YES 18.48/6.84 (21) QDP 18.48/6.84 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.48/6.84 (23) YES 18.48/6.84 18.48/6.84 18.48/6.84 ---------------------------------------- 18.48/6.84 18.48/6.84 (0) 18.48/6.84 Obligation: 18.48/6.84 mainModule Main 18.48/6.84 module Maybe where { 18.48/6.84 import qualified List; 18.48/6.84 import qualified Main; 18.48/6.84 import qualified Prelude; 18.48/6.84 } 18.48/6.84 module List where { 18.48/6.84 import qualified Main; 18.48/6.84 import qualified Maybe; 18.48/6.84 import qualified Prelude; 18.48/6.84 nub :: Eq a => [a] -> [a]; 18.48/6.84 nub l = nub' l [] where { 18.48/6.84 nub' [] _ = []; 18.48/6.84 nub' (x : xs) ls | x `elem` ls = nub' xs ls 18.48/6.84 | otherwise = x : nub' xs (x : ls); 18.48/6.84 }; 18.48/6.84 18.48/6.84 } 18.48/6.84 module Main where { 18.48/6.84 import qualified List; 18.48/6.84 import qualified Maybe; 18.48/6.84 import qualified Prelude; 18.48/6.84 } 18.48/6.84 18.48/6.84 ---------------------------------------- 18.48/6.84 18.48/6.84 (1) BR (EQUIVALENT) 18.48/6.84 Replaced joker patterns by fresh variables and removed binding patterns. 18.48/6.84 ---------------------------------------- 18.48/6.84 18.48/6.84 (2) 18.48/6.84 Obligation: 18.48/6.84 mainModule Main 18.48/6.84 module Maybe where { 18.48/6.84 import qualified List; 18.48/6.84 import qualified Main; 18.48/6.84 import qualified Prelude; 18.48/6.84 } 18.48/6.84 module List where { 18.48/6.84 import qualified Main; 18.48/6.84 import qualified Maybe; 18.48/6.84 import qualified Prelude; 18.48/6.84 nub :: Eq a => [a] -> [a]; 18.48/6.84 nub l = nub' l [] where { 18.48/6.84 nub' [] xw = []; 18.48/6.84 nub' (x : xs) ls | x `elem` ls = nub' xs ls 18.48/6.84 | otherwise = x : nub' xs (x : ls); 18.48/6.84 }; 18.48/6.84 18.48/6.84 } 18.48/6.84 module Main where { 18.48/6.84 import qualified List; 18.48/6.84 import qualified Maybe; 18.48/6.84 import qualified Prelude; 18.48/6.84 } 18.48/6.84 18.48/6.84 ---------------------------------------- 18.48/6.84 18.48/6.84 (3) COR (EQUIVALENT) 18.48/6.84 Cond Reductions: 18.48/6.84 The following Function with conditions 18.48/6.84 "undefined |Falseundefined; 18.48/6.84 " 18.48/6.84 is transformed to 18.48/6.84 "undefined = undefined1; 18.48/6.84 " 18.48/6.84 "undefined0 True = undefined; 18.48/6.84 " 18.48/6.84 "undefined1 = undefined0 False; 18.48/6.84 " 18.48/6.84 The following Function with conditions 18.48/6.84 "nub' [] xw = []; 18.48/6.84 nub' (x : xs) ls|x `elem` lsnub' xs ls|otherwisex : nub' xs (x : ls); 18.48/6.84 " 18.48/6.84 is transformed to 18.48/6.84 "nub' [] xw = nub'3 [] xw; 18.48/6.84 nub' (x : xs) ls = nub'2 (x : xs) ls; 18.48/6.84 " 18.48/6.84 "nub'1 x xs ls True = nub' xs ls; 18.48/6.84 nub'1 x xs ls False = nub'0 x xs ls otherwise; 18.48/6.84 " 18.48/6.84 "nub'0 x xs ls True = x : nub' xs (x : ls); 18.48/6.84 " 18.48/6.84 "nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 18.48/6.84 " 18.48/6.84 "nub'3 [] xw = []; 18.48/6.84 nub'3 xz yu = nub'2 xz yu; 18.48/6.84 " 18.48/6.84 18.48/6.84 ---------------------------------------- 18.48/6.84 18.48/6.84 (4) 18.48/6.84 Obligation: 18.48/6.84 mainModule Main 18.48/6.84 module Maybe where { 18.48/6.84 import qualified List; 18.48/6.84 import qualified Main; 18.48/6.84 import qualified Prelude; 18.48/6.84 } 18.48/6.84 module List where { 18.48/6.84 import qualified Main; 18.48/6.84 import qualified Maybe; 18.48/6.84 import qualified Prelude; 18.48/6.84 nub :: Eq a => [a] -> [a]; 18.48/6.84 nub l = nub' l [] where { 18.48/6.84 nub' [] xw = nub'3 [] xw; 18.48/6.84 nub' (x : xs) ls = nub'2 (x : xs) ls; 18.48/6.84 nub'0 x xs ls True = x : nub' xs (x : ls); 18.48/6.84 nub'1 x xs ls True = nub' xs ls; 18.48/6.84 nub'1 x xs ls False = nub'0 x xs ls otherwise; 18.48/6.84 nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 18.48/6.84 nub'3 [] xw = []; 18.48/6.84 nub'3 xz yu = nub'2 xz yu; 18.48/6.84 }; 18.48/6.84 18.48/6.84 } 18.48/6.84 module Main where { 18.48/6.84 import qualified List; 18.48/6.84 import qualified Maybe; 18.48/6.84 import qualified Prelude; 18.48/6.84 } 18.48/6.84 18.48/6.84 ---------------------------------------- 18.48/6.84 18.48/6.84 (5) LetRed (EQUIVALENT) 18.48/6.84 Let/Where Reductions: 18.48/6.84 The bindings of the following Let/Where expression 18.48/6.84 "nub' l [] where { 18.48/6.84 nub' [] xw = nub'3 [] xw; 18.48/6.84 nub' (x : xs) ls = nub'2 (x : xs) ls; 18.48/6.84 ; 18.48/6.84 nub'0 x xs ls True = x : nub' xs (x : ls); 18.48/6.84 ; 18.48/6.84 nub'1 x xs ls True = nub' xs ls; 18.48/6.84 nub'1 x xs ls False = nub'0 x xs ls otherwise; 18.48/6.84 ; 18.48/6.84 nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 18.48/6.84 ; 18.48/6.84 nub'3 [] xw = []; 18.48/6.84 nub'3 xz yu = nub'2 xz yu; 18.48/6.84 } 18.48/6.84 " 18.48/6.84 are unpacked to the following functions on top level 18.48/6.84 "nubNub'1 x xs ls True = nubNub' xs ls; 18.48/6.84 nubNub'1 x xs ls False = nubNub'0 x xs ls otherwise; 18.48/6.84 " 18.48/6.84 "nubNub' [] xw = nubNub'3 [] xw; 18.48/6.84 nubNub' (x : xs) ls = nubNub'2 (x : xs) ls; 18.48/6.84 " 18.48/6.84 "nubNub'3 [] xw = []; 18.48/6.84 nubNub'3 xz yu = nubNub'2 xz yu; 18.48/6.84 " 18.48/6.84 "nubNub'2 (x : xs) ls = nubNub'1 x xs ls (x `elem` ls); 18.48/6.84 " 18.48/6.84 "nubNub'0 x xs ls True = x : nubNub' xs (x : ls); 18.48/6.84 " 18.48/6.84 18.48/6.84 ---------------------------------------- 18.48/6.84 18.48/6.84 (6) 18.48/6.84 Obligation: 18.48/6.84 mainModule Main 18.48/6.84 module Maybe where { 18.48/6.84 import qualified List; 18.48/6.84 import qualified Main; 18.48/6.84 import qualified Prelude; 18.48/6.84 } 18.48/6.84 module List where { 18.48/6.84 import qualified Main; 18.48/6.84 import qualified Maybe; 18.48/6.84 import qualified Prelude; 18.48/6.84 nub :: Eq a => [a] -> [a]; 18.48/6.84 nub l = nubNub' l []; 18.48/6.84 18.48/6.84 nubNub' [] xw = nubNub'3 [] xw; 18.48/6.84 nubNub' (x : xs) ls = nubNub'2 (x : xs) ls; 18.48/6.84 18.48/6.84 nubNub'0 x xs ls True = x : nubNub' xs (x : ls); 18.48/6.84 18.48/6.84 nubNub'1 x xs ls True = nubNub' xs ls; 18.48/6.84 nubNub'1 x xs ls False = nubNub'0 x xs ls otherwise; 18.48/6.84 18.48/6.84 nubNub'2 (x : xs) ls = nubNub'1 x xs ls (x `elem` ls); 18.48/6.84 18.48/6.84 nubNub'3 [] xw = []; 18.48/6.84 nubNub'3 xz yu = nubNub'2 xz yu; 18.48/6.84 18.48/6.84 } 18.48/6.84 module Main where { 18.48/6.84 import qualified List; 18.48/6.84 import qualified Maybe; 18.48/6.84 import qualified Prelude; 18.48/6.84 } 18.48/6.84 18.48/6.84 ---------------------------------------- 18.48/6.84 18.48/6.84 (7) Narrow (SOUND) 18.48/6.84 Haskell To QDPs 18.48/6.84 18.48/6.84 digraph dp_graph { 18.48/6.84 node [outthreshold=100, inthreshold=100];1[label="List.nub",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 18.48/6.84 3[label="List.nub yv3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 18.48/6.84 4[label="List.nubNub' yv3 []",fontsize=16,color="burlywood",shape="box"];3438[label="yv3/yv30 : yv31",fontsize=10,color="white",style="solid",shape="box"];4 -> 3438[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3438 -> 5[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3439[label="yv3/[]",fontsize=10,color="white",style="solid",shape="box"];4 -> 3439[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3439 -> 6[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 5[label="List.nubNub' (yv30 : yv31) []",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 18.48/6.84 6[label="List.nubNub' [] []",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 18.48/6.84 7[label="List.nubNub'2 (yv30 : yv31) []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 18.48/6.84 8[label="List.nubNub'3 [] []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 18.48/6.84 9[label="List.nubNub'1 yv30 yv31 [] (yv30 `elem` [])",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 18.48/6.84 10[label="[]",fontsize=16,color="green",shape="box"];11[label="List.nubNub'1 yv30 yv31 [] (any . (==))",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 18.48/6.84 12[label="List.nubNub'1 yv30 yv31 [] (any ((==) yv30) [])",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 18.48/6.84 13[label="List.nubNub'1 yv30 yv31 [] (or . map ((==) yv30))",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 18.48/6.84 14[label="List.nubNub'1 yv30 yv31 [] (or (map ((==) yv30) []))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 18.48/6.84 15[label="List.nubNub'1 yv30 yv31 [] (foldr (||) False (map ((==) yv30) []))",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 18.48/6.84 16[label="List.nubNub'1 yv30 yv31 [] (foldr (||) False [])",fontsize=16,color="black",shape="box"];16 -> 17[label="",style="solid", color="black", weight=3]; 18.48/6.84 17[label="List.nubNub'1 yv30 yv31 [] False",fontsize=16,color="black",shape="box"];17 -> 18[label="",style="solid", color="black", weight=3]; 18.48/6.84 18[label="List.nubNub'0 yv30 yv31 [] otherwise",fontsize=16,color="black",shape="box"];18 -> 19[label="",style="solid", color="black", weight=3]; 18.48/6.84 19[label="List.nubNub'0 yv30 yv31 [] True",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 18.48/6.84 20[label="yv30 : List.nubNub' yv31 (yv30 : [])",fontsize=16,color="green",shape="box"];20 -> 21[label="",style="dashed", color="green", weight=3]; 18.48/6.84 21 -> 1646[label="",style="dashed", color="red", weight=0]; 18.48/6.84 21[label="List.nubNub' yv31 (yv30 : [])",fontsize=16,color="magenta"];21 -> 1647[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 21 -> 1648[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 21 -> 1649[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 1647[label="[]",fontsize=16,color="green",shape="box"];1648[label="yv30",fontsize=16,color="green",shape="box"];1649[label="yv31",fontsize=16,color="green",shape="box"];1646[label="List.nubNub' yv86 (yv87 : yv88)",fontsize=16,color="burlywood",shape="triangle"];3440[label="yv86/yv860 : yv861",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3440[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3440 -> 1758[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3441[label="yv86/[]",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3441[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3441 -> 1759[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 1758[label="List.nubNub' (yv860 : yv861) (yv87 : yv88)",fontsize=16,color="black",shape="box"];1758 -> 1760[label="",style="solid", color="black", weight=3]; 18.48/6.84 1759[label="List.nubNub' [] (yv87 : yv88)",fontsize=16,color="black",shape="box"];1759 -> 1761[label="",style="solid", color="black", weight=3]; 18.48/6.84 1760[label="List.nubNub'2 (yv860 : yv861) (yv87 : yv88)",fontsize=16,color="black",shape="box"];1760 -> 1762[label="",style="solid", color="black", weight=3]; 18.48/6.84 1761[label="List.nubNub'3 [] (yv87 : yv88)",fontsize=16,color="black",shape="box"];1761 -> 1763[label="",style="solid", color="black", weight=3]; 18.48/6.84 1762[label="List.nubNub'1 yv860 yv861 (yv87 : yv88) (yv860 `elem` yv87 : yv88)",fontsize=16,color="black",shape="box"];1762 -> 1764[label="",style="solid", color="black", weight=3]; 18.48/6.84 1763[label="[]",fontsize=16,color="green",shape="box"];1764[label="List.nubNub'1 yv860 yv861 (yv87 : yv88) (any . (==))",fontsize=16,color="black",shape="box"];1764 -> 1765[label="",style="solid", color="black", weight=3]; 18.48/6.84 1765[label="List.nubNub'1 yv860 yv861 (yv87 : yv88) (any ((==) yv860) (yv87 : yv88))",fontsize=16,color="black",shape="box"];1765 -> 1766[label="",style="solid", color="black", weight=3]; 18.48/6.84 1766[label="List.nubNub'1 yv860 yv861 (yv87 : yv88) (or . map ((==) yv860))",fontsize=16,color="black",shape="box"];1766 -> 1767[label="",style="solid", color="black", weight=3]; 18.48/6.84 1767[label="List.nubNub'1 yv860 yv861 (yv87 : yv88) (or (map ((==) yv860) (yv87 : yv88)))",fontsize=16,color="black",shape="box"];1767 -> 1768[label="",style="solid", color="black", weight=3]; 18.48/6.84 1768[label="List.nubNub'1 yv860 yv861 (yv87 : yv88) (foldr (||) False (map ((==) yv860) (yv87 : yv88)))",fontsize=16,color="black",shape="box"];1768 -> 1769[label="",style="solid", color="black", weight=3]; 18.48/6.84 1769 -> 2721[label="",style="dashed", color="red", weight=0]; 18.48/6.84 1769[label="List.nubNub'1 yv860 yv861 (yv87 : yv88) (foldr (||) False (((==) yv860 yv87) : map ((==) yv860) yv88))",fontsize=16,color="magenta"];1769 -> 2722[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 1769 -> 2723[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 1769 -> 2724[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 1769 -> 2725[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 1769 -> 2726[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 1769 -> 2727[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2722[label="yv87",fontsize=16,color="green",shape="box"];2723[label="yv87",fontsize=16,color="green",shape="box"];2724[label="yv860",fontsize=16,color="green",shape="box"];2725[label="yv861",fontsize=16,color="green",shape="box"];2726[label="yv88",fontsize=16,color="green",shape="box"];2727[label="yv88",fontsize=16,color="green",shape="box"];2721[label="List.nubNub'1 yv172 yv173 (yv174 : yv175) (foldr (||) False (((==) yv172 yv176) : map ((==) yv172) yv177))",fontsize=16,color="black",shape="triangle"];2721 -> 2758[label="",style="solid", color="black", weight=3]; 18.48/6.84 2758 -> 2759[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2758[label="List.nubNub'1 yv172 yv173 (yv174 : yv175) ((||) (==) yv172 yv176 foldr (||) False (map ((==) yv172) yv177))",fontsize=16,color="magenta"];2758 -> 2760[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2758 -> 2761[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2758 -> 2762[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2758 -> 2763[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2758 -> 2764[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2758 -> 2765[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2760[label="(==) yv172 yv176",fontsize=16,color="blue",shape="box"];3442[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3442[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3442 -> 2766[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3443[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3443[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3443 -> 2767[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3444[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3444[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3444 -> 2768[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3445[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3445[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3445 -> 2769[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3446[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3446[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3446 -> 2770[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3447[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3447[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3447 -> 2771[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3448[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3448[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3448 -> 2772[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3449[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3449[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3449 -> 2773[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3450[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3450[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3450 -> 2774[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3451[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3451[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3451 -> 2775[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3452[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3452[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3452 -> 2776[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3453[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3453[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3453 -> 2777[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3454[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3454[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3454 -> 2778[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3455[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3455[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3455 -> 2779[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2761[label="yv174",fontsize=16,color="green",shape="box"];2762[label="yv175",fontsize=16,color="green",shape="box"];2763[label="yv172",fontsize=16,color="green",shape="box"];2764[label="yv173",fontsize=16,color="green",shape="box"];2765[label="yv177",fontsize=16,color="green",shape="box"];2759[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) ((||) yv189 foldr (||) False (map ((==) yv185) yv190))",fontsize=16,color="burlywood",shape="triangle"];3456[label="yv189/False",fontsize=10,color="white",style="solid",shape="box"];2759 -> 3456[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3456 -> 2780[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3457[label="yv189/True",fontsize=10,color="white",style="solid",shape="box"];2759 -> 3457[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3457 -> 2781[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2766[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3458[label="yv172/False",fontsize=10,color="white",style="solid",shape="box"];2766 -> 3458[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3458 -> 2782[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3459[label="yv172/True",fontsize=10,color="white",style="solid",shape="box"];2766 -> 3459[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3459 -> 2783[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2767[label="(==) yv172 yv176",fontsize=16,color="black",shape="triangle"];2767 -> 2784[label="",style="solid", color="black", weight=3]; 18.48/6.84 2768[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3460[label="yv172/yv1720 : yv1721",fontsize=10,color="white",style="solid",shape="box"];2768 -> 3460[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3460 -> 2785[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3461[label="yv172/[]",fontsize=10,color="white",style="solid",shape="box"];2768 -> 3461[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3461 -> 2786[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2769[label="(==) yv172 yv176",fontsize=16,color="black",shape="triangle"];2769 -> 2787[label="",style="solid", color="black", weight=3]; 18.48/6.84 2770[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3462[label="yv172/yv1720 :% yv1721",fontsize=10,color="white",style="solid",shape="box"];2770 -> 3462[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3462 -> 2788[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2771[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3463[label="yv172/()",fontsize=10,color="white",style="solid",shape="box"];2771 -> 3463[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3463 -> 2789[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2772[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3464[label="yv172/Integer yv1720",fontsize=10,color="white",style="solid",shape="box"];2772 -> 3464[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3464 -> 2790[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2773[label="(==) yv172 yv176",fontsize=16,color="black",shape="triangle"];2773 -> 2791[label="",style="solid", color="black", weight=3]; 18.48/6.84 2774[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3465[label="yv172/(yv1720,yv1721,yv1722)",fontsize=10,color="white",style="solid",shape="box"];2774 -> 3465[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3465 -> 2792[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2775[label="(==) yv172 yv176",fontsize=16,color="black",shape="triangle"];2775 -> 2793[label="",style="solid", color="black", weight=3]; 18.48/6.84 2776[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3466[label="yv172/LT",fontsize=10,color="white",style="solid",shape="box"];2776 -> 3466[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3466 -> 2794[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3467[label="yv172/EQ",fontsize=10,color="white",style="solid",shape="box"];2776 -> 3467[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3467 -> 2795[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3468[label="yv172/GT",fontsize=10,color="white",style="solid",shape="box"];2776 -> 3468[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3468 -> 2796[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2777[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3469[label="yv172/(yv1720,yv1721)",fontsize=10,color="white",style="solid",shape="box"];2777 -> 3469[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3469 -> 2797[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2778[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3470[label="yv172/Nothing",fontsize=10,color="white",style="solid",shape="box"];2778 -> 3470[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3470 -> 2798[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3471[label="yv172/Just yv1720",fontsize=10,color="white",style="solid",shape="box"];2778 -> 3471[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3471 -> 2799[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2779[label="(==) yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3472[label="yv172/Left yv1720",fontsize=10,color="white",style="solid",shape="box"];2779 -> 3472[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3472 -> 2800[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3473[label="yv172/Right yv1720",fontsize=10,color="white",style="solid",shape="box"];2779 -> 3473[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3473 -> 2801[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2780[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) ((||) False foldr (||) False (map ((==) yv185) yv190))",fontsize=16,color="black",shape="box"];2780 -> 2802[label="",style="solid", color="black", weight=3]; 18.48/6.84 2781[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) ((||) True foldr (||) False (map ((==) yv185) yv190))",fontsize=16,color="black",shape="box"];2781 -> 2803[label="",style="solid", color="black", weight=3]; 18.48/6.84 2782[label="(==) False yv176",fontsize=16,color="burlywood",shape="box"];3474[label="yv176/False",fontsize=10,color="white",style="solid",shape="box"];2782 -> 3474[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3474 -> 2804[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3475[label="yv176/True",fontsize=10,color="white",style="solid",shape="box"];2782 -> 3475[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3475 -> 2805[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2783[label="(==) True yv176",fontsize=16,color="burlywood",shape="box"];3476[label="yv176/False",fontsize=10,color="white",style="solid",shape="box"];2783 -> 3476[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3476 -> 2806[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3477[label="yv176/True",fontsize=10,color="white",style="solid",shape="box"];2783 -> 3477[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3477 -> 2807[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2784[label="primEqFloat yv172 yv176",fontsize=16,color="burlywood",shape="box"];3478[label="yv172/Float yv1720 yv1721",fontsize=10,color="white",style="solid",shape="box"];2784 -> 3478[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3478 -> 2808[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2785[label="(==) yv1720 : yv1721 yv176",fontsize=16,color="burlywood",shape="box"];3479[label="yv176/yv1760 : yv1761",fontsize=10,color="white",style="solid",shape="box"];2785 -> 3479[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3479 -> 2809[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3480[label="yv176/[]",fontsize=10,color="white",style="solid",shape="box"];2785 -> 3480[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3480 -> 2810[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2786[label="(==) [] yv176",fontsize=16,color="burlywood",shape="box"];3481[label="yv176/yv1760 : yv1761",fontsize=10,color="white",style="solid",shape="box"];2786 -> 3481[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3481 -> 2811[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3482[label="yv176/[]",fontsize=10,color="white",style="solid",shape="box"];2786 -> 3482[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3482 -> 2812[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2787[label="primEqInt yv172 yv176",fontsize=16,color="burlywood",shape="triangle"];3483[label="yv172/Pos yv1720",fontsize=10,color="white",style="solid",shape="box"];2787 -> 3483[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3483 -> 2813[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3484[label="yv172/Neg yv1720",fontsize=10,color="white",style="solid",shape="box"];2787 -> 3484[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3484 -> 2814[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2788[label="(==) yv1720 :% yv1721 yv176",fontsize=16,color="burlywood",shape="box"];3485[label="yv176/yv1760 :% yv1761",fontsize=10,color="white",style="solid",shape="box"];2788 -> 3485[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3485 -> 2815[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2789[label="(==) () yv176",fontsize=16,color="burlywood",shape="box"];3486[label="yv176/()",fontsize=10,color="white",style="solid",shape="box"];2789 -> 3486[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3486 -> 2816[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2790[label="(==) Integer yv1720 yv176",fontsize=16,color="burlywood",shape="box"];3487[label="yv176/Integer yv1760",fontsize=10,color="white",style="solid",shape="box"];2790 -> 3487[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3487 -> 2817[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2791[label="primEqChar yv172 yv176",fontsize=16,color="burlywood",shape="box"];3488[label="yv172/Char yv1720",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3488[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3488 -> 2818[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2792[label="(==) (yv1720,yv1721,yv1722) yv176",fontsize=16,color="burlywood",shape="box"];3489[label="yv176/(yv1760,yv1761,yv1762)",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3489[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3489 -> 2819[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2793[label="primEqDouble yv172 yv176",fontsize=16,color="burlywood",shape="box"];3490[label="yv172/Double yv1720 yv1721",fontsize=10,color="white",style="solid",shape="box"];2793 -> 3490[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3490 -> 2820[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2794[label="(==) LT yv176",fontsize=16,color="burlywood",shape="box"];3491[label="yv176/LT",fontsize=10,color="white",style="solid",shape="box"];2794 -> 3491[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3491 -> 2821[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3492[label="yv176/EQ",fontsize=10,color="white",style="solid",shape="box"];2794 -> 3492[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3492 -> 2822[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3493[label="yv176/GT",fontsize=10,color="white",style="solid",shape="box"];2794 -> 3493[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3493 -> 2823[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2795[label="(==) EQ yv176",fontsize=16,color="burlywood",shape="box"];3494[label="yv176/LT",fontsize=10,color="white",style="solid",shape="box"];2795 -> 3494[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3494 -> 2824[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3495[label="yv176/EQ",fontsize=10,color="white",style="solid",shape="box"];2795 -> 3495[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3495 -> 2825[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3496[label="yv176/GT",fontsize=10,color="white",style="solid",shape="box"];2795 -> 3496[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3496 -> 2826[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2796[label="(==) GT yv176",fontsize=16,color="burlywood",shape="box"];3497[label="yv176/LT",fontsize=10,color="white",style="solid",shape="box"];2796 -> 3497[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3497 -> 2827[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3498[label="yv176/EQ",fontsize=10,color="white",style="solid",shape="box"];2796 -> 3498[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3498 -> 2828[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3499[label="yv176/GT",fontsize=10,color="white",style="solid",shape="box"];2796 -> 3499[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3499 -> 2829[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2797[label="(==) (yv1720,yv1721) yv176",fontsize=16,color="burlywood",shape="box"];3500[label="yv176/(yv1760,yv1761)",fontsize=10,color="white",style="solid",shape="box"];2797 -> 3500[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3500 -> 2830[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2798[label="(==) Nothing yv176",fontsize=16,color="burlywood",shape="box"];3501[label="yv176/Nothing",fontsize=10,color="white",style="solid",shape="box"];2798 -> 3501[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3501 -> 2831[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3502[label="yv176/Just yv1760",fontsize=10,color="white",style="solid",shape="box"];2798 -> 3502[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3502 -> 2832[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2799[label="(==) Just yv1720 yv176",fontsize=16,color="burlywood",shape="box"];3503[label="yv176/Nothing",fontsize=10,color="white",style="solid",shape="box"];2799 -> 3503[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3503 -> 2833[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3504[label="yv176/Just yv1760",fontsize=10,color="white",style="solid",shape="box"];2799 -> 3504[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3504 -> 2834[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2800[label="(==) Left yv1720 yv176",fontsize=16,color="burlywood",shape="box"];3505[label="yv176/Left yv1760",fontsize=10,color="white",style="solid",shape="box"];2800 -> 3505[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3505 -> 2835[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3506[label="yv176/Right yv1760",fontsize=10,color="white",style="solid",shape="box"];2800 -> 3506[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3506 -> 2836[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2801[label="(==) Right yv1720 yv176",fontsize=16,color="burlywood",shape="box"];3507[label="yv176/Left yv1760",fontsize=10,color="white",style="solid",shape="box"];2801 -> 3507[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3507 -> 2837[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3508[label="yv176/Right yv1760",fontsize=10,color="white",style="solid",shape="box"];2801 -> 3508[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3508 -> 2838[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2802[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) (foldr (||) False (map ((==) yv185) yv190))",fontsize=16,color="burlywood",shape="box"];3509[label="yv190/yv1900 : yv1901",fontsize=10,color="white",style="solid",shape="box"];2802 -> 3509[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3509 -> 2839[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3510[label="yv190/[]",fontsize=10,color="white",style="solid",shape="box"];2802 -> 3510[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3510 -> 2840[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2803[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) True",fontsize=16,color="black",shape="box"];2803 -> 2841[label="",style="solid", color="black", weight=3]; 18.48/6.84 2804[label="(==) False False",fontsize=16,color="black",shape="box"];2804 -> 2842[label="",style="solid", color="black", weight=3]; 18.48/6.84 2805[label="(==) False True",fontsize=16,color="black",shape="box"];2805 -> 2843[label="",style="solid", color="black", weight=3]; 18.48/6.84 2806[label="(==) True False",fontsize=16,color="black",shape="box"];2806 -> 2844[label="",style="solid", color="black", weight=3]; 18.48/6.84 2807[label="(==) True True",fontsize=16,color="black",shape="box"];2807 -> 2845[label="",style="solid", color="black", weight=3]; 18.48/6.84 2808[label="primEqFloat (Float yv1720 yv1721) yv176",fontsize=16,color="burlywood",shape="box"];3511[label="yv176/Float yv1760 yv1761",fontsize=10,color="white",style="solid",shape="box"];2808 -> 3511[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3511 -> 2846[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2809[label="(==) yv1720 : yv1721 yv1760 : yv1761",fontsize=16,color="black",shape="box"];2809 -> 2847[label="",style="solid", color="black", weight=3]; 18.48/6.84 2810[label="(==) yv1720 : yv1721 []",fontsize=16,color="black",shape="box"];2810 -> 2848[label="",style="solid", color="black", weight=3]; 18.48/6.84 2811[label="(==) [] yv1760 : yv1761",fontsize=16,color="black",shape="box"];2811 -> 2849[label="",style="solid", color="black", weight=3]; 18.48/6.84 2812[label="(==) [] []",fontsize=16,color="black",shape="box"];2812 -> 2850[label="",style="solid", color="black", weight=3]; 18.48/6.84 2813[label="primEqInt (Pos yv1720) yv176",fontsize=16,color="burlywood",shape="box"];3512[label="yv1720/Succ yv17200",fontsize=10,color="white",style="solid",shape="box"];2813 -> 3512[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3512 -> 2851[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3513[label="yv1720/Zero",fontsize=10,color="white",style="solid",shape="box"];2813 -> 3513[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3513 -> 2852[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2814[label="primEqInt (Neg yv1720) yv176",fontsize=16,color="burlywood",shape="box"];3514[label="yv1720/Succ yv17200",fontsize=10,color="white",style="solid",shape="box"];2814 -> 3514[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3514 -> 2853[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3515[label="yv1720/Zero",fontsize=10,color="white",style="solid",shape="box"];2814 -> 3515[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3515 -> 2854[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2815[label="(==) yv1720 :% yv1721 yv1760 :% yv1761",fontsize=16,color="black",shape="box"];2815 -> 2855[label="",style="solid", color="black", weight=3]; 18.48/6.84 2816[label="(==) () ()",fontsize=16,color="black",shape="box"];2816 -> 2856[label="",style="solid", color="black", weight=3]; 18.48/6.84 2817[label="(==) Integer yv1720 Integer yv1760",fontsize=16,color="black",shape="box"];2817 -> 2857[label="",style="solid", color="black", weight=3]; 18.48/6.84 2818[label="primEqChar (Char yv1720) yv176",fontsize=16,color="burlywood",shape="box"];3516[label="yv176/Char yv1760",fontsize=10,color="white",style="solid",shape="box"];2818 -> 3516[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3516 -> 2858[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2819[label="(==) (yv1720,yv1721,yv1722) (yv1760,yv1761,yv1762)",fontsize=16,color="black",shape="box"];2819 -> 2859[label="",style="solid", color="black", weight=3]; 18.48/6.84 2820[label="primEqDouble (Double yv1720 yv1721) yv176",fontsize=16,color="burlywood",shape="box"];3517[label="yv176/Double yv1760 yv1761",fontsize=10,color="white",style="solid",shape="box"];2820 -> 3517[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3517 -> 2860[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2821[label="(==) LT LT",fontsize=16,color="black",shape="box"];2821 -> 2861[label="",style="solid", color="black", weight=3]; 18.48/6.84 2822[label="(==) LT EQ",fontsize=16,color="black",shape="box"];2822 -> 2862[label="",style="solid", color="black", weight=3]; 18.48/6.84 2823[label="(==) LT GT",fontsize=16,color="black",shape="box"];2823 -> 2863[label="",style="solid", color="black", weight=3]; 18.48/6.84 2824[label="(==) EQ LT",fontsize=16,color="black",shape="box"];2824 -> 2864[label="",style="solid", color="black", weight=3]; 18.48/6.84 2825[label="(==) EQ EQ",fontsize=16,color="black",shape="box"];2825 -> 2865[label="",style="solid", color="black", weight=3]; 18.48/6.84 2826[label="(==) EQ GT",fontsize=16,color="black",shape="box"];2826 -> 2866[label="",style="solid", color="black", weight=3]; 18.48/6.84 2827[label="(==) GT LT",fontsize=16,color="black",shape="box"];2827 -> 2867[label="",style="solid", color="black", weight=3]; 18.48/6.84 2828[label="(==) GT EQ",fontsize=16,color="black",shape="box"];2828 -> 2868[label="",style="solid", color="black", weight=3]; 18.48/6.84 2829[label="(==) GT GT",fontsize=16,color="black",shape="box"];2829 -> 2869[label="",style="solid", color="black", weight=3]; 18.48/6.84 2830[label="(==) (yv1720,yv1721) (yv1760,yv1761)",fontsize=16,color="black",shape="box"];2830 -> 2870[label="",style="solid", color="black", weight=3]; 18.48/6.84 2831[label="(==) Nothing Nothing",fontsize=16,color="black",shape="box"];2831 -> 2871[label="",style="solid", color="black", weight=3]; 18.48/6.84 2832[label="(==) Nothing Just yv1760",fontsize=16,color="black",shape="box"];2832 -> 2872[label="",style="solid", color="black", weight=3]; 18.48/6.84 2833[label="(==) Just yv1720 Nothing",fontsize=16,color="black",shape="box"];2833 -> 2873[label="",style="solid", color="black", weight=3]; 18.48/6.84 2834[label="(==) Just yv1720 Just yv1760",fontsize=16,color="black",shape="box"];2834 -> 2874[label="",style="solid", color="black", weight=3]; 18.48/6.84 2835[label="(==) Left yv1720 Left yv1760",fontsize=16,color="black",shape="box"];2835 -> 2875[label="",style="solid", color="black", weight=3]; 18.48/6.84 2836[label="(==) Left yv1720 Right yv1760",fontsize=16,color="black",shape="box"];2836 -> 2876[label="",style="solid", color="black", weight=3]; 18.48/6.84 2837[label="(==) Right yv1720 Left yv1760",fontsize=16,color="black",shape="box"];2837 -> 2877[label="",style="solid", color="black", weight=3]; 18.48/6.84 2838[label="(==) Right yv1720 Right yv1760",fontsize=16,color="black",shape="box"];2838 -> 2878[label="",style="solid", color="black", weight=3]; 18.48/6.84 2839[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) (foldr (||) False (map ((==) yv185) (yv1900 : yv1901)))",fontsize=16,color="black",shape="box"];2839 -> 2879[label="",style="solid", color="black", weight=3]; 18.48/6.84 2840[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) (foldr (||) False (map ((==) yv185) []))",fontsize=16,color="black",shape="box"];2840 -> 2880[label="",style="solid", color="black", weight=3]; 18.48/6.84 2841 -> 1646[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2841[label="List.nubNub' yv186 (yv187 : yv188)",fontsize=16,color="magenta"];2841 -> 2881[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2841 -> 2882[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2841 -> 2883[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2842[label="True",fontsize=16,color="green",shape="box"];2843[label="False",fontsize=16,color="green",shape="box"];2844[label="False",fontsize=16,color="green",shape="box"];2845[label="True",fontsize=16,color="green",shape="box"];2846[label="primEqFloat (Float yv1720 yv1721) (Float yv1760 yv1761)",fontsize=16,color="black",shape="box"];2846 -> 2884[label="",style="solid", color="black", weight=3]; 18.48/6.84 2847 -> 2961[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2847[label="yv1720 == yv1760 && yv1721 == yv1761",fontsize=16,color="magenta"];2847 -> 2962[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2847 -> 2963[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2848[label="False",fontsize=16,color="green",shape="box"];2849[label="False",fontsize=16,color="green",shape="box"];2850[label="True",fontsize=16,color="green",shape="box"];2851[label="primEqInt (Pos (Succ yv17200)) yv176",fontsize=16,color="burlywood",shape="box"];3518[label="yv176/Pos yv1760",fontsize=10,color="white",style="solid",shape="box"];2851 -> 3518[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3518 -> 2896[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3519[label="yv176/Neg yv1760",fontsize=10,color="white",style="solid",shape="box"];2851 -> 3519[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3519 -> 2897[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2852[label="primEqInt (Pos Zero) yv176",fontsize=16,color="burlywood",shape="box"];3520[label="yv176/Pos yv1760",fontsize=10,color="white",style="solid",shape="box"];2852 -> 3520[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3520 -> 2898[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3521[label="yv176/Neg yv1760",fontsize=10,color="white",style="solid",shape="box"];2852 -> 3521[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3521 -> 2899[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2853[label="primEqInt (Neg (Succ yv17200)) yv176",fontsize=16,color="burlywood",shape="box"];3522[label="yv176/Pos yv1760",fontsize=10,color="white",style="solid",shape="box"];2853 -> 3522[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3522 -> 2900[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3523[label="yv176/Neg yv1760",fontsize=10,color="white",style="solid",shape="box"];2853 -> 3523[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3523 -> 2901[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2854[label="primEqInt (Neg Zero) yv176",fontsize=16,color="burlywood",shape="box"];3524[label="yv176/Pos yv1760",fontsize=10,color="white",style="solid",shape="box"];2854 -> 3524[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3524 -> 2902[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3525[label="yv176/Neg yv1760",fontsize=10,color="white",style="solid",shape="box"];2854 -> 3525[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3525 -> 2903[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2855 -> 2961[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2855[label="yv1720 == yv1760 && yv1721 == yv1761",fontsize=16,color="magenta"];2855 -> 2964[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2855 -> 2965[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2856[label="True",fontsize=16,color="green",shape="box"];2857 -> 2787[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2857[label="primEqInt yv1720 yv1760",fontsize=16,color="magenta"];2857 -> 2904[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2857 -> 2905[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2858[label="primEqChar (Char yv1720) (Char yv1760)",fontsize=16,color="black",shape="box"];2858 -> 2906[label="",style="solid", color="black", weight=3]; 18.48/6.84 2859 -> 2961[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2859[label="yv1720 == yv1760 && yv1721 == yv1761 && yv1722 == yv1762",fontsize=16,color="magenta"];2859 -> 2966[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2859 -> 2967[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2860[label="primEqDouble (Double yv1720 yv1721) (Double yv1760 yv1761)",fontsize=16,color="black",shape="box"];2860 -> 2907[label="",style="solid", color="black", weight=3]; 18.48/6.84 2861[label="True",fontsize=16,color="green",shape="box"];2862[label="False",fontsize=16,color="green",shape="box"];2863[label="False",fontsize=16,color="green",shape="box"];2864[label="False",fontsize=16,color="green",shape="box"];2865[label="True",fontsize=16,color="green",shape="box"];2866[label="False",fontsize=16,color="green",shape="box"];2867[label="False",fontsize=16,color="green",shape="box"];2868[label="False",fontsize=16,color="green",shape="box"];2869[label="True",fontsize=16,color="green",shape="box"];2870 -> 2961[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2870[label="yv1720 == yv1760 && yv1721 == yv1761",fontsize=16,color="magenta"];2870 -> 2968[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2870 -> 2969[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2871[label="True",fontsize=16,color="green",shape="box"];2872[label="False",fontsize=16,color="green",shape="box"];2873[label="False",fontsize=16,color="green",shape="box"];2874[label="yv1720 == yv1760",fontsize=16,color="blue",shape="box"];3526[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3526[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3526 -> 2908[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3527[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3527[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3527 -> 2909[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3528[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3528[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3528 -> 2910[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3529[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3529[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3529 -> 2911[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3530[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3530[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3530 -> 2912[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3531[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3531[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3531 -> 2913[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3532[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3532[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3532 -> 2914[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3533[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3533[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3533 -> 2915[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3534[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3534[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3534 -> 2916[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3535[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3535[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3535 -> 2917[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3536[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3536[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3536 -> 2918[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3537[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3537[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3537 -> 2919[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3538[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3538[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3538 -> 2920[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3539[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3539[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3539 -> 2921[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2875[label="yv1720 == yv1760",fontsize=16,color="blue",shape="box"];3540[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3540[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3540 -> 2922[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3541[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3541[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3541 -> 2923[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3542[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3542[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3542 -> 2924[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3543[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3543[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3543 -> 2925[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3544[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3544[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3544 -> 2926[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3545[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3545[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3545 -> 2927[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3546[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3546[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3546 -> 2928[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3547[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3547[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3547 -> 2929[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3548[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3548[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3548 -> 2930[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3549[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3549[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3549 -> 2931[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3550[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3550[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3550 -> 2932[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3551[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3551[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3551 -> 2933[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3552[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3552[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3552 -> 2934[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3553[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3553[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3553 -> 2935[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2876[label="False",fontsize=16,color="green",shape="box"];2877[label="False",fontsize=16,color="green",shape="box"];2878[label="yv1720 == yv1760",fontsize=16,color="blue",shape="box"];3554[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3554[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3554 -> 2936[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3555[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3555[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3555 -> 2937[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3556[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3556[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3556 -> 2938[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3557[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3557[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3557 -> 2939[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3558[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3558[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3558 -> 2940[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3559[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3559[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3559 -> 2941[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3560[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3560[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3560 -> 2942[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3561[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3561[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3561 -> 2943[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3562[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3562[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3562 -> 2944[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3563[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3563[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3563 -> 2945[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3564[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3564[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3564 -> 2946[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3565[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3565[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3565 -> 2947[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3566[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3566[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3566 -> 2948[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3567[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 3567[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3567 -> 2949[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2879 -> 2721[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2879[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) (foldr (||) False (((==) yv185 yv1900) : map ((==) yv185) yv1901))",fontsize=16,color="magenta"];2879 -> 2950[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2879 -> 2951[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2879 -> 2952[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2879 -> 2953[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2879 -> 2954[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2879 -> 2955[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2880[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) (foldr (||) False [])",fontsize=16,color="black",shape="box"];2880 -> 2956[label="",style="solid", color="black", weight=3]; 18.48/6.84 2881[label="yv188",fontsize=16,color="green",shape="box"];2882[label="yv187",fontsize=16,color="green",shape="box"];2883[label="yv186",fontsize=16,color="green",shape="box"];2884 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2884[label="yv1720 * yv1761 == yv1721 * yv1760",fontsize=16,color="magenta"];2884 -> 2957[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2884 -> 2958[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2962 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2962[label="yv1721 == yv1761",fontsize=16,color="magenta"];2962 -> 2974[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2962 -> 2975[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2963[label="yv1720 == yv1760",fontsize=16,color="blue",shape="box"];3568[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3568[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3568 -> 2976[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3569[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3569[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3569 -> 2977[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3570[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3570[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3570 -> 2978[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3571[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3571[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3571 -> 2979[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3572[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3572[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3572 -> 2980[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3573[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3573[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3573 -> 2981[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3574[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3574[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3574 -> 2982[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3575[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3575[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3575 -> 2983[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3576[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3576[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3576 -> 2984[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3577[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3577[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3577 -> 2985[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3578[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3578[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3578 -> 2986[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3579[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3579[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3579 -> 2987[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3580[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3580[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3580 -> 2988[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3581[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 3581[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3581 -> 2989[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2961[label="yv195 && yv196",fontsize=16,color="burlywood",shape="triangle"];3582[label="yv195/False",fontsize=10,color="white",style="solid",shape="box"];2961 -> 3582[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3582 -> 2990[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3583[label="yv195/True",fontsize=10,color="white",style="solid",shape="box"];2961 -> 3583[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3583 -> 2991[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2896[label="primEqInt (Pos (Succ yv17200)) (Pos yv1760)",fontsize=16,color="burlywood",shape="box"];3584[label="yv1760/Succ yv17600",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3584[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3584 -> 2992[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3585[label="yv1760/Zero",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3585[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3585 -> 2993[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2897[label="primEqInt (Pos (Succ yv17200)) (Neg yv1760)",fontsize=16,color="black",shape="box"];2897 -> 2994[label="",style="solid", color="black", weight=3]; 18.48/6.84 2898[label="primEqInt (Pos Zero) (Pos yv1760)",fontsize=16,color="burlywood",shape="box"];3586[label="yv1760/Succ yv17600",fontsize=10,color="white",style="solid",shape="box"];2898 -> 3586[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3586 -> 2995[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3587[label="yv1760/Zero",fontsize=10,color="white",style="solid",shape="box"];2898 -> 3587[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3587 -> 2996[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2899[label="primEqInt (Pos Zero) (Neg yv1760)",fontsize=16,color="burlywood",shape="box"];3588[label="yv1760/Succ yv17600",fontsize=10,color="white",style="solid",shape="box"];2899 -> 3588[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3588 -> 2997[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3589[label="yv1760/Zero",fontsize=10,color="white",style="solid",shape="box"];2899 -> 3589[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3589 -> 2998[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2900[label="primEqInt (Neg (Succ yv17200)) (Pos yv1760)",fontsize=16,color="black",shape="box"];2900 -> 2999[label="",style="solid", color="black", weight=3]; 18.48/6.84 2901[label="primEqInt (Neg (Succ yv17200)) (Neg yv1760)",fontsize=16,color="burlywood",shape="box"];3590[label="yv1760/Succ yv17600",fontsize=10,color="white",style="solid",shape="box"];2901 -> 3590[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3590 -> 3000[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3591[label="yv1760/Zero",fontsize=10,color="white",style="solid",shape="box"];2901 -> 3591[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3591 -> 3001[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2902[label="primEqInt (Neg Zero) (Pos yv1760)",fontsize=16,color="burlywood",shape="box"];3592[label="yv1760/Succ yv17600",fontsize=10,color="white",style="solid",shape="box"];2902 -> 3592[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3592 -> 3002[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3593[label="yv1760/Zero",fontsize=10,color="white",style="solid",shape="box"];2902 -> 3593[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3593 -> 3003[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2903[label="primEqInt (Neg Zero) (Neg yv1760)",fontsize=16,color="burlywood",shape="box"];3594[label="yv1760/Succ yv17600",fontsize=10,color="white",style="solid",shape="box"];2903 -> 3594[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3594 -> 3004[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3595[label="yv1760/Zero",fontsize=10,color="white",style="solid",shape="box"];2903 -> 3595[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3595 -> 3005[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2964[label="yv1721 == yv1761",fontsize=16,color="blue",shape="box"];3596[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 3596[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3596 -> 3006[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3597[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 3597[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3597 -> 3007[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2965[label="yv1720 == yv1760",fontsize=16,color="blue",shape="box"];3598[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2965 -> 3598[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3598 -> 3008[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3599[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2965 -> 3599[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3599 -> 3009[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2904[label="yv1760",fontsize=16,color="green",shape="box"];2905[label="yv1720",fontsize=16,color="green",shape="box"];2906[label="primEqNat yv1720 yv1760",fontsize=16,color="burlywood",shape="triangle"];3600[label="yv1720/Succ yv17200",fontsize=10,color="white",style="solid",shape="box"];2906 -> 3600[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3600 -> 3010[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 3601[label="yv1720/Zero",fontsize=10,color="white",style="solid",shape="box"];2906 -> 3601[label="",style="solid", color="burlywood", weight=9]; 18.48/6.84 3601 -> 3011[label="",style="solid", color="burlywood", weight=3]; 18.48/6.84 2966 -> 2961[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2966[label="yv1721 == yv1761 && yv1722 == yv1762",fontsize=16,color="magenta"];2966 -> 3012[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2966 -> 3013[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2967[label="yv1720 == yv1760",fontsize=16,color="blue",shape="box"];3602[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3602[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3602 -> 3014[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3603[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3603[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3603 -> 3015[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3604[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3604[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3604 -> 3016[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3605[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3605[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3605 -> 3017[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3606[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3606[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3606 -> 3018[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3607[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3607[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3607 -> 3019[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3608[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3608[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3608 -> 3020[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3609[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3609[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3609 -> 3021[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3610[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3610[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3610 -> 3022[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3611[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3611[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3611 -> 3023[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3612[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3612[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3612 -> 3024[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3613[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3613[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3613 -> 3025[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3614[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3614[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3614 -> 3026[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3615[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2967 -> 3615[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3615 -> 3027[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2907 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2907[label="yv1720 * yv1761 == yv1721 * yv1760",fontsize=16,color="magenta"];2907 -> 3028[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2907 -> 3029[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2968[label="yv1721 == yv1761",fontsize=16,color="blue",shape="box"];3616[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3616[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3616 -> 3030[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3617[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3617[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3617 -> 3031[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3618[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3618[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3618 -> 3032[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3619[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3619[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3619 -> 3033[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3620[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3620[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3620 -> 3034[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3621[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3621[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3621 -> 3035[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3622[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3622[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3622 -> 3036[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3623[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3623[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3623 -> 3037[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3624[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3624[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3624 -> 3038[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3625[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3625[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3625 -> 3039[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3626[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3626[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3626 -> 3040[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3627[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3627[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3627 -> 3041[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3628[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3628[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3628 -> 3042[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3629[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2968 -> 3629[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3629 -> 3043[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2969[label="yv1720 == yv1760",fontsize=16,color="blue",shape="box"];3630[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3630[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3630 -> 3044[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3631[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3631[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3631 -> 3045[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3632[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3632[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3632 -> 3046[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3633[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3633[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3633 -> 3047[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3634[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3634[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3634 -> 3048[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3635[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3635[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3635 -> 3049[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3636[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3636[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3636 -> 3050[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3637[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3637[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3637 -> 3051[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3638[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3638[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3638 -> 3052[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3639[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3639[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3639 -> 3053[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3640[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3640[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3640 -> 3054[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3641[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3641[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3641 -> 3055[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3642[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3642[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3642 -> 3056[label="",style="solid", color="blue", weight=3]; 18.48/6.84 3643[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2969 -> 3643[label="",style="solid", color="blue", weight=9]; 18.48/6.84 3643 -> 3057[label="",style="solid", color="blue", weight=3]; 18.48/6.84 2908 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2908[label="yv1720 == yv1760",fontsize=16,color="magenta"];2908 -> 3058[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2908 -> 3059[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2909 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2909[label="yv1720 == yv1760",fontsize=16,color="magenta"];2909 -> 3060[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2909 -> 3061[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2910 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2910[label="yv1720 == yv1760",fontsize=16,color="magenta"];2910 -> 3062[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2910 -> 3063[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2911 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2911[label="yv1720 == yv1760",fontsize=16,color="magenta"];2911 -> 3064[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2911 -> 3065[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2912 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2912[label="yv1720 == yv1760",fontsize=16,color="magenta"];2912 -> 3066[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2912 -> 3067[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2913 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2913[label="yv1720 == yv1760",fontsize=16,color="magenta"];2913 -> 3068[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2913 -> 3069[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2914 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2914[label="yv1720 == yv1760",fontsize=16,color="magenta"];2914 -> 3070[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2914 -> 3071[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2915 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2915[label="yv1720 == yv1760",fontsize=16,color="magenta"];2915 -> 3072[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2915 -> 3073[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2916 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2916[label="yv1720 == yv1760",fontsize=16,color="magenta"];2916 -> 3074[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2916 -> 3075[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2917 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2917[label="yv1720 == yv1760",fontsize=16,color="magenta"];2917 -> 3076[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2917 -> 3077[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2918 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2918[label="yv1720 == yv1760",fontsize=16,color="magenta"];2918 -> 3078[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2918 -> 3079[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2919 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2919[label="yv1720 == yv1760",fontsize=16,color="magenta"];2919 -> 3080[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2919 -> 3081[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2920 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2920[label="yv1720 == yv1760",fontsize=16,color="magenta"];2920 -> 3082[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2920 -> 3083[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2921 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2921[label="yv1720 == yv1760",fontsize=16,color="magenta"];2921 -> 3084[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2921 -> 3085[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2922 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2922[label="yv1720 == yv1760",fontsize=16,color="magenta"];2922 -> 3086[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2922 -> 3087[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2923 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2923[label="yv1720 == yv1760",fontsize=16,color="magenta"];2923 -> 3088[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2923 -> 3089[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2924 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2924[label="yv1720 == yv1760",fontsize=16,color="magenta"];2924 -> 3090[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2924 -> 3091[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2925 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2925[label="yv1720 == yv1760",fontsize=16,color="magenta"];2925 -> 3092[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2925 -> 3093[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2926 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2926[label="yv1720 == yv1760",fontsize=16,color="magenta"];2926 -> 3094[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2926 -> 3095[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2927 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2927[label="yv1720 == yv1760",fontsize=16,color="magenta"];2927 -> 3096[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2927 -> 3097[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2928 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2928[label="yv1720 == yv1760",fontsize=16,color="magenta"];2928 -> 3098[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2928 -> 3099[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2929 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2929[label="yv1720 == yv1760",fontsize=16,color="magenta"];2929 -> 3100[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2929 -> 3101[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2930 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2930[label="yv1720 == yv1760",fontsize=16,color="magenta"];2930 -> 3102[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2930 -> 3103[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2931 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2931[label="yv1720 == yv1760",fontsize=16,color="magenta"];2931 -> 3104[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2931 -> 3105[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2932 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2932[label="yv1720 == yv1760",fontsize=16,color="magenta"];2932 -> 3106[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2932 -> 3107[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2933 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2933[label="yv1720 == yv1760",fontsize=16,color="magenta"];2933 -> 3108[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2933 -> 3109[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2934 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2934[label="yv1720 == yv1760",fontsize=16,color="magenta"];2934 -> 3110[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2934 -> 3111[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2935 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2935[label="yv1720 == yv1760",fontsize=16,color="magenta"];2935 -> 3112[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2935 -> 3113[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2936 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2936[label="yv1720 == yv1760",fontsize=16,color="magenta"];2936 -> 3114[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2936 -> 3115[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2937 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2937[label="yv1720 == yv1760",fontsize=16,color="magenta"];2937 -> 3116[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2937 -> 3117[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2938 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2938[label="yv1720 == yv1760",fontsize=16,color="magenta"];2938 -> 3118[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2938 -> 3119[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2939 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2939[label="yv1720 == yv1760",fontsize=16,color="magenta"];2939 -> 3120[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2939 -> 3121[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2940 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2940[label="yv1720 == yv1760",fontsize=16,color="magenta"];2940 -> 3122[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2940 -> 3123[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2941 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2941[label="yv1720 == yv1760",fontsize=16,color="magenta"];2941 -> 3124[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2941 -> 3125[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2942 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2942[label="yv1720 == yv1760",fontsize=16,color="magenta"];2942 -> 3126[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2942 -> 3127[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2943 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2943[label="yv1720 == yv1760",fontsize=16,color="magenta"];2943 -> 3128[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2943 -> 3129[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2944 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2944[label="yv1720 == yv1760",fontsize=16,color="magenta"];2944 -> 3130[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2944 -> 3131[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2945 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2945[label="yv1720 == yv1760",fontsize=16,color="magenta"];2945 -> 3132[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2945 -> 3133[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2946 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2946[label="yv1720 == yv1760",fontsize=16,color="magenta"];2946 -> 3134[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2946 -> 3135[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2947 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.84 2947[label="yv1720 == yv1760",fontsize=16,color="magenta"];2947 -> 3136[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2947 -> 3137[label="",style="dashed", color="magenta", weight=3]; 18.48/6.84 2948 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2948[label="yv1720 == yv1760",fontsize=16,color="magenta"];2948 -> 3138[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2948 -> 3139[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2949 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2949[label="yv1720 == yv1760",fontsize=16,color="magenta"];2949 -> 3140[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2949 -> 3141[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2950[label="yv1900",fontsize=16,color="green",shape="box"];2951[label="yv187",fontsize=16,color="green",shape="box"];2952[label="yv185",fontsize=16,color="green",shape="box"];2953[label="yv186",fontsize=16,color="green",shape="box"];2954[label="yv188",fontsize=16,color="green",shape="box"];2955[label="yv1901",fontsize=16,color="green",shape="box"];2956[label="List.nubNub'1 yv185 yv186 (yv187 : yv188) False",fontsize=16,color="black",shape="box"];2956 -> 3142[label="",style="solid", color="black", weight=3]; 18.48/6.85 2957[label="yv1721 * yv1760",fontsize=16,color="black",shape="triangle"];2957 -> 3143[label="",style="solid", color="black", weight=3]; 18.48/6.85 2958 -> 2957[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2958[label="yv1720 * yv1761",fontsize=16,color="magenta"];2958 -> 3144[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2958 -> 3145[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2974[label="yv1761",fontsize=16,color="green",shape="box"];2975[label="yv1721",fontsize=16,color="green",shape="box"];2976 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2976[label="yv1720 == yv1760",fontsize=16,color="magenta"];2976 -> 3146[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2976 -> 3147[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2977 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2977[label="yv1720 == yv1760",fontsize=16,color="magenta"];2977 -> 3148[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2977 -> 3149[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2978 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2978[label="yv1720 == yv1760",fontsize=16,color="magenta"];2978 -> 3150[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2978 -> 3151[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2979 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2979[label="yv1720 == yv1760",fontsize=16,color="magenta"];2979 -> 3152[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2979 -> 3153[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2980 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2980[label="yv1720 == yv1760",fontsize=16,color="magenta"];2980 -> 3154[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2980 -> 3155[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2981 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2981[label="yv1720 == yv1760",fontsize=16,color="magenta"];2981 -> 3156[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2981 -> 3157[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2982 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2982[label="yv1720 == yv1760",fontsize=16,color="magenta"];2982 -> 3158[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2982 -> 3159[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2983 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2983[label="yv1720 == yv1760",fontsize=16,color="magenta"];2983 -> 3160[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2983 -> 3161[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2984 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2984[label="yv1720 == yv1760",fontsize=16,color="magenta"];2984 -> 3162[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2984 -> 3163[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2985 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2985[label="yv1720 == yv1760",fontsize=16,color="magenta"];2985 -> 3164[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2985 -> 3165[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2986 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2986[label="yv1720 == yv1760",fontsize=16,color="magenta"];2986 -> 3166[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2986 -> 3167[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2987 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2987[label="yv1720 == yv1760",fontsize=16,color="magenta"];2987 -> 3168[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2987 -> 3169[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2988 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2988[label="yv1720 == yv1760",fontsize=16,color="magenta"];2988 -> 3170[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2988 -> 3171[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2989 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.85 2989[label="yv1720 == yv1760",fontsize=16,color="magenta"];2989 -> 3172[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2989 -> 3173[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 2990[label="False && yv196",fontsize=16,color="black",shape="box"];2990 -> 3174[label="",style="solid", color="black", weight=3]; 18.48/6.85 2991[label="True && yv196",fontsize=16,color="black",shape="box"];2991 -> 3175[label="",style="solid", color="black", weight=3]; 18.48/6.85 2992[label="primEqInt (Pos (Succ yv17200)) (Pos (Succ yv17600))",fontsize=16,color="black",shape="box"];2992 -> 3176[label="",style="solid", color="black", weight=3]; 18.48/6.85 2993[label="primEqInt (Pos (Succ yv17200)) (Pos Zero)",fontsize=16,color="black",shape="box"];2993 -> 3177[label="",style="solid", color="black", weight=3]; 18.48/6.85 2994[label="False",fontsize=16,color="green",shape="box"];2995[label="primEqInt (Pos Zero) (Pos (Succ yv17600))",fontsize=16,color="black",shape="box"];2995 -> 3178[label="",style="solid", color="black", weight=3]; 18.48/6.85 2996[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2996 -> 3179[label="",style="solid", color="black", weight=3]; 18.48/6.85 2997[label="primEqInt (Pos Zero) (Neg (Succ yv17600))",fontsize=16,color="black",shape="box"];2997 -> 3180[label="",style="solid", color="black", weight=3]; 18.48/6.85 2998[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2998 -> 3181[label="",style="solid", color="black", weight=3]; 18.48/6.85 2999[label="False",fontsize=16,color="green",shape="box"];3000[label="primEqInt (Neg (Succ yv17200)) (Neg (Succ yv17600))",fontsize=16,color="black",shape="box"];3000 -> 3182[label="",style="solid", color="black", weight=3]; 18.48/6.85 3001[label="primEqInt (Neg (Succ yv17200)) (Neg Zero)",fontsize=16,color="black",shape="box"];3001 -> 3183[label="",style="solid", color="black", weight=3]; 18.48/6.85 3002[label="primEqInt (Neg Zero) (Pos (Succ yv17600))",fontsize=16,color="black",shape="box"];3002 -> 3184[label="",style="solid", color="black", weight=3]; 18.48/6.85 3003[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3003 -> 3185[label="",style="solid", color="black", weight=3]; 18.48/6.85 3004[label="primEqInt (Neg Zero) (Neg (Succ yv17600))",fontsize=16,color="black",shape="box"];3004 -> 3186[label="",style="solid", color="black", weight=3]; 18.48/6.85 3005[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3005 -> 3187[label="",style="solid", color="black", weight=3]; 18.48/6.85 3006 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3006[label="yv1721 == yv1761",fontsize=16,color="magenta"];3006 -> 3188[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3006 -> 3189[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3007 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3007[label="yv1721 == yv1761",fontsize=16,color="magenta"];3007 -> 3190[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3007 -> 3191[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3008 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3008[label="yv1720 == yv1760",fontsize=16,color="magenta"];3008 -> 3192[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3008 -> 3193[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3009 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3009[label="yv1720 == yv1760",fontsize=16,color="magenta"];3009 -> 3194[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3009 -> 3195[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3010[label="primEqNat (Succ yv17200) yv1760",fontsize=16,color="burlywood",shape="box"];3644[label="yv1760/Succ yv17600",fontsize=10,color="white",style="solid",shape="box"];3010 -> 3644[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3644 -> 3196[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3645[label="yv1760/Zero",fontsize=10,color="white",style="solid",shape="box"];3010 -> 3645[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3645 -> 3197[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3011[label="primEqNat Zero yv1760",fontsize=16,color="burlywood",shape="box"];3646[label="yv1760/Succ yv17600",fontsize=10,color="white",style="solid",shape="box"];3011 -> 3646[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3646 -> 3198[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3647[label="yv1760/Zero",fontsize=10,color="white",style="solid",shape="box"];3011 -> 3647[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3647 -> 3199[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3012[label="yv1722 == yv1762",fontsize=16,color="blue",shape="box"];3648[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3648[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3648 -> 3200[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3649[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3649[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3649 -> 3201[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3650[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3650[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3650 -> 3202[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3651[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3651[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3651 -> 3203[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3652[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3652[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3652 -> 3204[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3653[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3653[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3653 -> 3205[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3654[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3654[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3654 -> 3206[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3655[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3655[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3655 -> 3207[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3656[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3656[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3656 -> 3208[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3657[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3657[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3657 -> 3209[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3658[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3658[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3658 -> 3210[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3659[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3659[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3659 -> 3211[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3660[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3660[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3660 -> 3212[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3661[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3012 -> 3661[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3661 -> 3213[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3013[label="yv1721 == yv1761",fontsize=16,color="blue",shape="box"];3662[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3662[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3662 -> 3214[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3663[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3663[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3663 -> 3215[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3664[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3664[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3664 -> 3216[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3665[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3665[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3665 -> 3217[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3666[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3666[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3666 -> 3218[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3667[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3667[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3667 -> 3219[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3668[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3668[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3668 -> 3220[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3669[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3669[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3669 -> 3221[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3670[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3670[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3670 -> 3222[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3671[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3671[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3671 -> 3223[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3672[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3672[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3672 -> 3224[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3673[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3673[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3673 -> 3225[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3674[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3674[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3674 -> 3226[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3675[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 3675[label="",style="solid", color="blue", weight=9]; 18.48/6.85 3675 -> 3227[label="",style="solid", color="blue", weight=3]; 18.48/6.85 3014 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3014[label="yv1720 == yv1760",fontsize=16,color="magenta"];3014 -> 3228[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3014 -> 3229[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3015 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3015[label="yv1720 == yv1760",fontsize=16,color="magenta"];3015 -> 3230[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3015 -> 3231[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3016 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3016[label="yv1720 == yv1760",fontsize=16,color="magenta"];3016 -> 3232[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3016 -> 3233[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3017 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3017[label="yv1720 == yv1760",fontsize=16,color="magenta"];3017 -> 3234[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3017 -> 3235[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3018 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3018[label="yv1720 == yv1760",fontsize=16,color="magenta"];3018 -> 3236[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3018 -> 3237[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3019 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3019[label="yv1720 == yv1760",fontsize=16,color="magenta"];3019 -> 3238[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3019 -> 3239[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3020 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3020[label="yv1720 == yv1760",fontsize=16,color="magenta"];3020 -> 3240[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3020 -> 3241[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3021 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3021[label="yv1720 == yv1760",fontsize=16,color="magenta"];3021 -> 3242[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3021 -> 3243[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3022 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3022[label="yv1720 == yv1760",fontsize=16,color="magenta"];3022 -> 3244[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3022 -> 3245[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3023 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3023[label="yv1720 == yv1760",fontsize=16,color="magenta"];3023 -> 3246[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3023 -> 3247[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3024 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3024[label="yv1720 == yv1760",fontsize=16,color="magenta"];3024 -> 3248[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3024 -> 3249[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3025 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3025[label="yv1720 == yv1760",fontsize=16,color="magenta"];3025 -> 3250[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3025 -> 3251[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3026 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3026[label="yv1720 == yv1760",fontsize=16,color="magenta"];3026 -> 3252[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3026 -> 3253[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3027 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3027[label="yv1720 == yv1760",fontsize=16,color="magenta"];3027 -> 3254[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3027 -> 3255[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3028 -> 2957[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3028[label="yv1721 * yv1760",fontsize=16,color="magenta"];3028 -> 3256[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3028 -> 3257[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3029 -> 2957[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3029[label="yv1720 * yv1761",fontsize=16,color="magenta"];3029 -> 3258[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3029 -> 3259[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3030 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3030[label="yv1721 == yv1761",fontsize=16,color="magenta"];3030 -> 3260[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3030 -> 3261[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3031 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3031[label="yv1721 == yv1761",fontsize=16,color="magenta"];3031 -> 3262[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3031 -> 3263[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3032 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3032[label="yv1721 == yv1761",fontsize=16,color="magenta"];3032 -> 3264[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3032 -> 3265[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3033 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3033[label="yv1721 == yv1761",fontsize=16,color="magenta"];3033 -> 3266[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3033 -> 3267[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3034 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3034[label="yv1721 == yv1761",fontsize=16,color="magenta"];3034 -> 3268[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3034 -> 3269[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3035 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3035[label="yv1721 == yv1761",fontsize=16,color="magenta"];3035 -> 3270[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3035 -> 3271[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3036 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3036[label="yv1721 == yv1761",fontsize=16,color="magenta"];3036 -> 3272[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3036 -> 3273[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3037 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3037[label="yv1721 == yv1761",fontsize=16,color="magenta"];3037 -> 3274[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3037 -> 3275[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3038 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3038[label="yv1721 == yv1761",fontsize=16,color="magenta"];3038 -> 3276[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3038 -> 3277[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3039 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3039[label="yv1721 == yv1761",fontsize=16,color="magenta"];3039 -> 3278[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3039 -> 3279[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3040 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3040[label="yv1721 == yv1761",fontsize=16,color="magenta"];3040 -> 3280[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3040 -> 3281[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3041 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3041[label="yv1721 == yv1761",fontsize=16,color="magenta"];3041 -> 3282[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3041 -> 3283[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3042 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3042[label="yv1721 == yv1761",fontsize=16,color="magenta"];3042 -> 3284[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3042 -> 3285[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3043 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3043[label="yv1721 == yv1761",fontsize=16,color="magenta"];3043 -> 3286[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3043 -> 3287[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3044 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3044[label="yv1720 == yv1760",fontsize=16,color="magenta"];3044 -> 3288[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3044 -> 3289[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3045 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3045[label="yv1720 == yv1760",fontsize=16,color="magenta"];3045 -> 3290[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3045 -> 3291[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3046 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3046[label="yv1720 == yv1760",fontsize=16,color="magenta"];3046 -> 3292[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3046 -> 3293[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3047 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3047[label="yv1720 == yv1760",fontsize=16,color="magenta"];3047 -> 3294[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3047 -> 3295[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3048 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3048[label="yv1720 == yv1760",fontsize=16,color="magenta"];3048 -> 3296[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3048 -> 3297[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3049 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3049[label="yv1720 == yv1760",fontsize=16,color="magenta"];3049 -> 3298[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3049 -> 3299[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3050 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3050[label="yv1720 == yv1760",fontsize=16,color="magenta"];3050 -> 3300[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3050 -> 3301[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3051 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3051[label="yv1720 == yv1760",fontsize=16,color="magenta"];3051 -> 3302[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3051 -> 3303[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3052 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3052[label="yv1720 == yv1760",fontsize=16,color="magenta"];3052 -> 3304[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3052 -> 3305[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3053 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3053[label="yv1720 == yv1760",fontsize=16,color="magenta"];3053 -> 3306[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3053 -> 3307[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3054 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3054[label="yv1720 == yv1760",fontsize=16,color="magenta"];3054 -> 3308[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3054 -> 3309[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3055 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3055[label="yv1720 == yv1760",fontsize=16,color="magenta"];3055 -> 3310[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3055 -> 3311[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3056 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3056[label="yv1720 == yv1760",fontsize=16,color="magenta"];3056 -> 3312[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3056 -> 3313[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3057 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3057[label="yv1720 == yv1760",fontsize=16,color="magenta"];3057 -> 3314[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3057 -> 3315[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3058[label="yv1760",fontsize=16,color="green",shape="box"];3059[label="yv1720",fontsize=16,color="green",shape="box"];3060[label="yv1760",fontsize=16,color="green",shape="box"];3061[label="yv1720",fontsize=16,color="green",shape="box"];3062[label="yv1760",fontsize=16,color="green",shape="box"];3063[label="yv1720",fontsize=16,color="green",shape="box"];3064[label="yv1760",fontsize=16,color="green",shape="box"];3065[label="yv1720",fontsize=16,color="green",shape="box"];3066[label="yv1760",fontsize=16,color="green",shape="box"];3067[label="yv1720",fontsize=16,color="green",shape="box"];3068[label="yv1760",fontsize=16,color="green",shape="box"];3069[label="yv1720",fontsize=16,color="green",shape="box"];3070[label="yv1760",fontsize=16,color="green",shape="box"];3071[label="yv1720",fontsize=16,color="green",shape="box"];3072[label="yv1760",fontsize=16,color="green",shape="box"];3073[label="yv1720",fontsize=16,color="green",shape="box"];3074[label="yv1760",fontsize=16,color="green",shape="box"];3075[label="yv1720",fontsize=16,color="green",shape="box"];3076[label="yv1760",fontsize=16,color="green",shape="box"];3077[label="yv1720",fontsize=16,color="green",shape="box"];3078[label="yv1760",fontsize=16,color="green",shape="box"];3079[label="yv1720",fontsize=16,color="green",shape="box"];3080[label="yv1760",fontsize=16,color="green",shape="box"];3081[label="yv1720",fontsize=16,color="green",shape="box"];3082[label="yv1760",fontsize=16,color="green",shape="box"];3083[label="yv1720",fontsize=16,color="green",shape="box"];3084[label="yv1760",fontsize=16,color="green",shape="box"];3085[label="yv1720",fontsize=16,color="green",shape="box"];3086[label="yv1760",fontsize=16,color="green",shape="box"];3087[label="yv1720",fontsize=16,color="green",shape="box"];3088[label="yv1760",fontsize=16,color="green",shape="box"];3089[label="yv1720",fontsize=16,color="green",shape="box"];3090[label="yv1760",fontsize=16,color="green",shape="box"];3091[label="yv1720",fontsize=16,color="green",shape="box"];3092[label="yv1760",fontsize=16,color="green",shape="box"];3093[label="yv1720",fontsize=16,color="green",shape="box"];3094[label="yv1760",fontsize=16,color="green",shape="box"];3095[label="yv1720",fontsize=16,color="green",shape="box"];3096[label="yv1760",fontsize=16,color="green",shape="box"];3097[label="yv1720",fontsize=16,color="green",shape="box"];3098[label="yv1760",fontsize=16,color="green",shape="box"];3099[label="yv1720",fontsize=16,color="green",shape="box"];3100[label="yv1760",fontsize=16,color="green",shape="box"];3101[label="yv1720",fontsize=16,color="green",shape="box"];3102[label="yv1760",fontsize=16,color="green",shape="box"];3103[label="yv1720",fontsize=16,color="green",shape="box"];3104[label="yv1760",fontsize=16,color="green",shape="box"];3105[label="yv1720",fontsize=16,color="green",shape="box"];3106[label="yv1760",fontsize=16,color="green",shape="box"];3107[label="yv1720",fontsize=16,color="green",shape="box"];3108[label="yv1760",fontsize=16,color="green",shape="box"];3109[label="yv1720",fontsize=16,color="green",shape="box"];3110[label="yv1760",fontsize=16,color="green",shape="box"];3111[label="yv1720",fontsize=16,color="green",shape="box"];3112[label="yv1760",fontsize=16,color="green",shape="box"];3113[label="yv1720",fontsize=16,color="green",shape="box"];3114[label="yv1760",fontsize=16,color="green",shape="box"];3115[label="yv1720",fontsize=16,color="green",shape="box"];3116[label="yv1760",fontsize=16,color="green",shape="box"];3117[label="yv1720",fontsize=16,color="green",shape="box"];3118[label="yv1760",fontsize=16,color="green",shape="box"];3119[label="yv1720",fontsize=16,color="green",shape="box"];3120[label="yv1760",fontsize=16,color="green",shape="box"];3121[label="yv1720",fontsize=16,color="green",shape="box"];3122[label="yv1760",fontsize=16,color="green",shape="box"];3123[label="yv1720",fontsize=16,color="green",shape="box"];3124[label="yv1760",fontsize=16,color="green",shape="box"];3125[label="yv1720",fontsize=16,color="green",shape="box"];3126[label="yv1760",fontsize=16,color="green",shape="box"];3127[label="yv1720",fontsize=16,color="green",shape="box"];3128[label="yv1760",fontsize=16,color="green",shape="box"];3129[label="yv1720",fontsize=16,color="green",shape="box"];3130[label="yv1760",fontsize=16,color="green",shape="box"];3131[label="yv1720",fontsize=16,color="green",shape="box"];3132[label="yv1760",fontsize=16,color="green",shape="box"];3133[label="yv1720",fontsize=16,color="green",shape="box"];3134[label="yv1760",fontsize=16,color="green",shape="box"];3135[label="yv1720",fontsize=16,color="green",shape="box"];3136[label="yv1760",fontsize=16,color="green",shape="box"];3137[label="yv1720",fontsize=16,color="green",shape="box"];3138[label="yv1760",fontsize=16,color="green",shape="box"];3139[label="yv1720",fontsize=16,color="green",shape="box"];3140[label="yv1760",fontsize=16,color="green",shape="box"];3141[label="yv1720",fontsize=16,color="green",shape="box"];3142[label="List.nubNub'0 yv185 yv186 (yv187 : yv188) otherwise",fontsize=16,color="black",shape="box"];3142 -> 3316[label="",style="solid", color="black", weight=3]; 18.48/6.85 3143[label="primMulInt yv1721 yv1760",fontsize=16,color="burlywood",shape="box"];3676[label="yv1721/Pos yv17210",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3676[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3676 -> 3317[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3677[label="yv1721/Neg yv17210",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3677[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3677 -> 3318[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3144[label="yv1720",fontsize=16,color="green",shape="box"];3145[label="yv1761",fontsize=16,color="green",shape="box"];3146[label="yv1760",fontsize=16,color="green",shape="box"];3147[label="yv1720",fontsize=16,color="green",shape="box"];3148[label="yv1760",fontsize=16,color="green",shape="box"];3149[label="yv1720",fontsize=16,color="green",shape="box"];3150[label="yv1760",fontsize=16,color="green",shape="box"];3151[label="yv1720",fontsize=16,color="green",shape="box"];3152[label="yv1760",fontsize=16,color="green",shape="box"];3153[label="yv1720",fontsize=16,color="green",shape="box"];3154[label="yv1760",fontsize=16,color="green",shape="box"];3155[label="yv1720",fontsize=16,color="green",shape="box"];3156[label="yv1760",fontsize=16,color="green",shape="box"];3157[label="yv1720",fontsize=16,color="green",shape="box"];3158[label="yv1760",fontsize=16,color="green",shape="box"];3159[label="yv1720",fontsize=16,color="green",shape="box"];3160[label="yv1760",fontsize=16,color="green",shape="box"];3161[label="yv1720",fontsize=16,color="green",shape="box"];3162[label="yv1760",fontsize=16,color="green",shape="box"];3163[label="yv1720",fontsize=16,color="green",shape="box"];3164[label="yv1760",fontsize=16,color="green",shape="box"];3165[label="yv1720",fontsize=16,color="green",shape="box"];3166[label="yv1760",fontsize=16,color="green",shape="box"];3167[label="yv1720",fontsize=16,color="green",shape="box"];3168[label="yv1760",fontsize=16,color="green",shape="box"];3169[label="yv1720",fontsize=16,color="green",shape="box"];3170[label="yv1760",fontsize=16,color="green",shape="box"];3171[label="yv1720",fontsize=16,color="green",shape="box"];3172[label="yv1760",fontsize=16,color="green",shape="box"];3173[label="yv1720",fontsize=16,color="green",shape="box"];3174[label="False",fontsize=16,color="green",shape="box"];3175[label="yv196",fontsize=16,color="green",shape="box"];3176 -> 2906[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3176[label="primEqNat yv17200 yv17600",fontsize=16,color="magenta"];3176 -> 3319[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3176 -> 3320[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3177[label="False",fontsize=16,color="green",shape="box"];3178[label="False",fontsize=16,color="green",shape="box"];3179[label="True",fontsize=16,color="green",shape="box"];3180[label="False",fontsize=16,color="green",shape="box"];3181[label="True",fontsize=16,color="green",shape="box"];3182 -> 2906[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3182[label="primEqNat yv17200 yv17600",fontsize=16,color="magenta"];3182 -> 3321[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3182 -> 3322[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3183[label="False",fontsize=16,color="green",shape="box"];3184[label="False",fontsize=16,color="green",shape="box"];3185[label="True",fontsize=16,color="green",shape="box"];3186[label="False",fontsize=16,color="green",shape="box"];3187[label="True",fontsize=16,color="green",shape="box"];3188[label="yv1761",fontsize=16,color="green",shape="box"];3189[label="yv1721",fontsize=16,color="green",shape="box"];3190[label="yv1761",fontsize=16,color="green",shape="box"];3191[label="yv1721",fontsize=16,color="green",shape="box"];3192[label="yv1760",fontsize=16,color="green",shape="box"];3193[label="yv1720",fontsize=16,color="green",shape="box"];3194[label="yv1760",fontsize=16,color="green",shape="box"];3195[label="yv1720",fontsize=16,color="green",shape="box"];3196[label="primEqNat (Succ yv17200) (Succ yv17600)",fontsize=16,color="black",shape="box"];3196 -> 3323[label="",style="solid", color="black", weight=3]; 18.48/6.85 3197[label="primEqNat (Succ yv17200) Zero",fontsize=16,color="black",shape="box"];3197 -> 3324[label="",style="solid", color="black", weight=3]; 18.48/6.85 3198[label="primEqNat Zero (Succ yv17600)",fontsize=16,color="black",shape="box"];3198 -> 3325[label="",style="solid", color="black", weight=3]; 18.48/6.85 3199[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3199 -> 3326[label="",style="solid", color="black", weight=3]; 18.48/6.85 3200 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3200[label="yv1722 == yv1762",fontsize=16,color="magenta"];3200 -> 3327[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3200 -> 3328[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3201 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3201[label="yv1722 == yv1762",fontsize=16,color="magenta"];3201 -> 3329[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3201 -> 3330[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3202 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3202[label="yv1722 == yv1762",fontsize=16,color="magenta"];3202 -> 3331[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3202 -> 3332[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3203 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3203[label="yv1722 == yv1762",fontsize=16,color="magenta"];3203 -> 3333[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3203 -> 3334[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3204 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3204[label="yv1722 == yv1762",fontsize=16,color="magenta"];3204 -> 3335[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3204 -> 3336[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3205 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3205[label="yv1722 == yv1762",fontsize=16,color="magenta"];3205 -> 3337[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3205 -> 3338[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3206 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3206[label="yv1722 == yv1762",fontsize=16,color="magenta"];3206 -> 3339[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3206 -> 3340[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3207 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3207[label="yv1722 == yv1762",fontsize=16,color="magenta"];3207 -> 3341[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3207 -> 3342[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3208 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3208[label="yv1722 == yv1762",fontsize=16,color="magenta"];3208 -> 3343[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3208 -> 3344[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3209 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3209[label="yv1722 == yv1762",fontsize=16,color="magenta"];3209 -> 3345[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3209 -> 3346[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3210 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3210[label="yv1722 == yv1762",fontsize=16,color="magenta"];3210 -> 3347[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3210 -> 3348[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3211 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3211[label="yv1722 == yv1762",fontsize=16,color="magenta"];3211 -> 3349[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3211 -> 3350[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3212 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3212[label="yv1722 == yv1762",fontsize=16,color="magenta"];3212 -> 3351[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3212 -> 3352[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3213 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3213[label="yv1722 == yv1762",fontsize=16,color="magenta"];3213 -> 3353[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3213 -> 3354[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3214 -> 2766[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3214[label="yv1721 == yv1761",fontsize=16,color="magenta"];3214 -> 3355[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3214 -> 3356[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3215 -> 2767[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3215[label="yv1721 == yv1761",fontsize=16,color="magenta"];3215 -> 3357[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3215 -> 3358[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3216 -> 2768[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3216[label="yv1721 == yv1761",fontsize=16,color="magenta"];3216 -> 3359[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3216 -> 3360[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3217 -> 2769[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3217[label="yv1721 == yv1761",fontsize=16,color="magenta"];3217 -> 3361[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3217 -> 3362[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3218 -> 2770[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3218[label="yv1721 == yv1761",fontsize=16,color="magenta"];3218 -> 3363[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3218 -> 3364[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3219 -> 2771[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3219[label="yv1721 == yv1761",fontsize=16,color="magenta"];3219 -> 3365[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3219 -> 3366[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3220 -> 2772[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3220[label="yv1721 == yv1761",fontsize=16,color="magenta"];3220 -> 3367[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3220 -> 3368[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3221 -> 2773[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3221[label="yv1721 == yv1761",fontsize=16,color="magenta"];3221 -> 3369[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3221 -> 3370[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3222 -> 2774[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3222[label="yv1721 == yv1761",fontsize=16,color="magenta"];3222 -> 3371[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3222 -> 3372[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3223 -> 2775[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3223[label="yv1721 == yv1761",fontsize=16,color="magenta"];3223 -> 3373[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3223 -> 3374[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3224 -> 2776[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3224[label="yv1721 == yv1761",fontsize=16,color="magenta"];3224 -> 3375[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3224 -> 3376[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3225 -> 2777[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3225[label="yv1721 == yv1761",fontsize=16,color="magenta"];3225 -> 3377[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3225 -> 3378[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3226 -> 2778[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3226[label="yv1721 == yv1761",fontsize=16,color="magenta"];3226 -> 3379[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3226 -> 3380[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3227 -> 2779[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3227[label="yv1721 == yv1761",fontsize=16,color="magenta"];3227 -> 3381[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3227 -> 3382[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3228[label="yv1760",fontsize=16,color="green",shape="box"];3229[label="yv1720",fontsize=16,color="green",shape="box"];3230[label="yv1760",fontsize=16,color="green",shape="box"];3231[label="yv1720",fontsize=16,color="green",shape="box"];3232[label="yv1760",fontsize=16,color="green",shape="box"];3233[label="yv1720",fontsize=16,color="green",shape="box"];3234[label="yv1760",fontsize=16,color="green",shape="box"];3235[label="yv1720",fontsize=16,color="green",shape="box"];3236[label="yv1760",fontsize=16,color="green",shape="box"];3237[label="yv1720",fontsize=16,color="green",shape="box"];3238[label="yv1760",fontsize=16,color="green",shape="box"];3239[label="yv1720",fontsize=16,color="green",shape="box"];3240[label="yv1760",fontsize=16,color="green",shape="box"];3241[label="yv1720",fontsize=16,color="green",shape="box"];3242[label="yv1760",fontsize=16,color="green",shape="box"];3243[label="yv1720",fontsize=16,color="green",shape="box"];3244[label="yv1760",fontsize=16,color="green",shape="box"];3245[label="yv1720",fontsize=16,color="green",shape="box"];3246[label="yv1760",fontsize=16,color="green",shape="box"];3247[label="yv1720",fontsize=16,color="green",shape="box"];3248[label="yv1760",fontsize=16,color="green",shape="box"];3249[label="yv1720",fontsize=16,color="green",shape="box"];3250[label="yv1760",fontsize=16,color="green",shape="box"];3251[label="yv1720",fontsize=16,color="green",shape="box"];3252[label="yv1760",fontsize=16,color="green",shape="box"];3253[label="yv1720",fontsize=16,color="green",shape="box"];3254[label="yv1760",fontsize=16,color="green",shape="box"];3255[label="yv1720",fontsize=16,color="green",shape="box"];3256[label="yv1721",fontsize=16,color="green",shape="box"];3257[label="yv1760",fontsize=16,color="green",shape="box"];3258[label="yv1720",fontsize=16,color="green",shape="box"];3259[label="yv1761",fontsize=16,color="green",shape="box"];3260[label="yv1761",fontsize=16,color="green",shape="box"];3261[label="yv1721",fontsize=16,color="green",shape="box"];3262[label="yv1761",fontsize=16,color="green",shape="box"];3263[label="yv1721",fontsize=16,color="green",shape="box"];3264[label="yv1761",fontsize=16,color="green",shape="box"];3265[label="yv1721",fontsize=16,color="green",shape="box"];3266[label="yv1761",fontsize=16,color="green",shape="box"];3267[label="yv1721",fontsize=16,color="green",shape="box"];3268[label="yv1761",fontsize=16,color="green",shape="box"];3269[label="yv1721",fontsize=16,color="green",shape="box"];3270[label="yv1761",fontsize=16,color="green",shape="box"];3271[label="yv1721",fontsize=16,color="green",shape="box"];3272[label="yv1761",fontsize=16,color="green",shape="box"];3273[label="yv1721",fontsize=16,color="green",shape="box"];3274[label="yv1761",fontsize=16,color="green",shape="box"];3275[label="yv1721",fontsize=16,color="green",shape="box"];3276[label="yv1761",fontsize=16,color="green",shape="box"];3277[label="yv1721",fontsize=16,color="green",shape="box"];3278[label="yv1761",fontsize=16,color="green",shape="box"];3279[label="yv1721",fontsize=16,color="green",shape="box"];3280[label="yv1761",fontsize=16,color="green",shape="box"];3281[label="yv1721",fontsize=16,color="green",shape="box"];3282[label="yv1761",fontsize=16,color="green",shape="box"];3283[label="yv1721",fontsize=16,color="green",shape="box"];3284[label="yv1761",fontsize=16,color="green",shape="box"];3285[label="yv1721",fontsize=16,color="green",shape="box"];3286[label="yv1761",fontsize=16,color="green",shape="box"];3287[label="yv1721",fontsize=16,color="green",shape="box"];3288[label="yv1760",fontsize=16,color="green",shape="box"];3289[label="yv1720",fontsize=16,color="green",shape="box"];3290[label="yv1760",fontsize=16,color="green",shape="box"];3291[label="yv1720",fontsize=16,color="green",shape="box"];3292[label="yv1760",fontsize=16,color="green",shape="box"];3293[label="yv1720",fontsize=16,color="green",shape="box"];3294[label="yv1760",fontsize=16,color="green",shape="box"];3295[label="yv1720",fontsize=16,color="green",shape="box"];3296[label="yv1760",fontsize=16,color="green",shape="box"];3297[label="yv1720",fontsize=16,color="green",shape="box"];3298[label="yv1760",fontsize=16,color="green",shape="box"];3299[label="yv1720",fontsize=16,color="green",shape="box"];3300[label="yv1760",fontsize=16,color="green",shape="box"];3301[label="yv1720",fontsize=16,color="green",shape="box"];3302[label="yv1760",fontsize=16,color="green",shape="box"];3303[label="yv1720",fontsize=16,color="green",shape="box"];3304[label="yv1760",fontsize=16,color="green",shape="box"];3305[label="yv1720",fontsize=16,color="green",shape="box"];3306[label="yv1760",fontsize=16,color="green",shape="box"];3307[label="yv1720",fontsize=16,color="green",shape="box"];3308[label="yv1760",fontsize=16,color="green",shape="box"];3309[label="yv1720",fontsize=16,color="green",shape="box"];3310[label="yv1760",fontsize=16,color="green",shape="box"];3311[label="yv1720",fontsize=16,color="green",shape="box"];3312[label="yv1760",fontsize=16,color="green",shape="box"];3313[label="yv1720",fontsize=16,color="green",shape="box"];3314[label="yv1760",fontsize=16,color="green",shape="box"];3315[label="yv1720",fontsize=16,color="green",shape="box"];3316[label="List.nubNub'0 yv185 yv186 (yv187 : yv188) True",fontsize=16,color="black",shape="box"];3316 -> 3383[label="",style="solid", color="black", weight=3]; 18.48/6.85 3317[label="primMulInt (Pos yv17210) yv1760",fontsize=16,color="burlywood",shape="box"];3678[label="yv1760/Pos yv17600",fontsize=10,color="white",style="solid",shape="box"];3317 -> 3678[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3678 -> 3384[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3679[label="yv1760/Neg yv17600",fontsize=10,color="white",style="solid",shape="box"];3317 -> 3679[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3679 -> 3385[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3318[label="primMulInt (Neg yv17210) yv1760",fontsize=16,color="burlywood",shape="box"];3680[label="yv1760/Pos yv17600",fontsize=10,color="white",style="solid",shape="box"];3318 -> 3680[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3680 -> 3386[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3681[label="yv1760/Neg yv17600",fontsize=10,color="white",style="solid",shape="box"];3318 -> 3681[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3681 -> 3387[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3319[label="yv17200",fontsize=16,color="green",shape="box"];3320[label="yv17600",fontsize=16,color="green",shape="box"];3321[label="yv17200",fontsize=16,color="green",shape="box"];3322[label="yv17600",fontsize=16,color="green",shape="box"];3323 -> 2906[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3323[label="primEqNat yv17200 yv17600",fontsize=16,color="magenta"];3323 -> 3388[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3323 -> 3389[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3324[label="False",fontsize=16,color="green",shape="box"];3325[label="False",fontsize=16,color="green",shape="box"];3326[label="True",fontsize=16,color="green",shape="box"];3327[label="yv1762",fontsize=16,color="green",shape="box"];3328[label="yv1722",fontsize=16,color="green",shape="box"];3329[label="yv1762",fontsize=16,color="green",shape="box"];3330[label="yv1722",fontsize=16,color="green",shape="box"];3331[label="yv1762",fontsize=16,color="green",shape="box"];3332[label="yv1722",fontsize=16,color="green",shape="box"];3333[label="yv1762",fontsize=16,color="green",shape="box"];3334[label="yv1722",fontsize=16,color="green",shape="box"];3335[label="yv1762",fontsize=16,color="green",shape="box"];3336[label="yv1722",fontsize=16,color="green",shape="box"];3337[label="yv1762",fontsize=16,color="green",shape="box"];3338[label="yv1722",fontsize=16,color="green",shape="box"];3339[label="yv1762",fontsize=16,color="green",shape="box"];3340[label="yv1722",fontsize=16,color="green",shape="box"];3341[label="yv1762",fontsize=16,color="green",shape="box"];3342[label="yv1722",fontsize=16,color="green",shape="box"];3343[label="yv1762",fontsize=16,color="green",shape="box"];3344[label="yv1722",fontsize=16,color="green",shape="box"];3345[label="yv1762",fontsize=16,color="green",shape="box"];3346[label="yv1722",fontsize=16,color="green",shape="box"];3347[label="yv1762",fontsize=16,color="green",shape="box"];3348[label="yv1722",fontsize=16,color="green",shape="box"];3349[label="yv1762",fontsize=16,color="green",shape="box"];3350[label="yv1722",fontsize=16,color="green",shape="box"];3351[label="yv1762",fontsize=16,color="green",shape="box"];3352[label="yv1722",fontsize=16,color="green",shape="box"];3353[label="yv1762",fontsize=16,color="green",shape="box"];3354[label="yv1722",fontsize=16,color="green",shape="box"];3355[label="yv1761",fontsize=16,color="green",shape="box"];3356[label="yv1721",fontsize=16,color="green",shape="box"];3357[label="yv1761",fontsize=16,color="green",shape="box"];3358[label="yv1721",fontsize=16,color="green",shape="box"];3359[label="yv1761",fontsize=16,color="green",shape="box"];3360[label="yv1721",fontsize=16,color="green",shape="box"];3361[label="yv1761",fontsize=16,color="green",shape="box"];3362[label="yv1721",fontsize=16,color="green",shape="box"];3363[label="yv1761",fontsize=16,color="green",shape="box"];3364[label="yv1721",fontsize=16,color="green",shape="box"];3365[label="yv1761",fontsize=16,color="green",shape="box"];3366[label="yv1721",fontsize=16,color="green",shape="box"];3367[label="yv1761",fontsize=16,color="green",shape="box"];3368[label="yv1721",fontsize=16,color="green",shape="box"];3369[label="yv1761",fontsize=16,color="green",shape="box"];3370[label="yv1721",fontsize=16,color="green",shape="box"];3371[label="yv1761",fontsize=16,color="green",shape="box"];3372[label="yv1721",fontsize=16,color="green",shape="box"];3373[label="yv1761",fontsize=16,color="green",shape="box"];3374[label="yv1721",fontsize=16,color="green",shape="box"];3375[label="yv1761",fontsize=16,color="green",shape="box"];3376[label="yv1721",fontsize=16,color="green",shape="box"];3377[label="yv1761",fontsize=16,color="green",shape="box"];3378[label="yv1721",fontsize=16,color="green",shape="box"];3379[label="yv1761",fontsize=16,color="green",shape="box"];3380[label="yv1721",fontsize=16,color="green",shape="box"];3381[label="yv1761",fontsize=16,color="green",shape="box"];3382[label="yv1721",fontsize=16,color="green",shape="box"];3383[label="yv185 : List.nubNub' yv186 (yv185 : yv187 : yv188)",fontsize=16,color="green",shape="box"];3383 -> 3390[label="",style="dashed", color="green", weight=3]; 18.48/6.85 3384[label="primMulInt (Pos yv17210) (Pos yv17600)",fontsize=16,color="black",shape="box"];3384 -> 3391[label="",style="solid", color="black", weight=3]; 18.48/6.85 3385[label="primMulInt (Pos yv17210) (Neg yv17600)",fontsize=16,color="black",shape="box"];3385 -> 3392[label="",style="solid", color="black", weight=3]; 18.48/6.85 3386[label="primMulInt (Neg yv17210) (Pos yv17600)",fontsize=16,color="black",shape="box"];3386 -> 3393[label="",style="solid", color="black", weight=3]; 18.48/6.85 3387[label="primMulInt (Neg yv17210) (Neg yv17600)",fontsize=16,color="black",shape="box"];3387 -> 3394[label="",style="solid", color="black", weight=3]; 18.48/6.85 3388[label="yv17200",fontsize=16,color="green",shape="box"];3389[label="yv17600",fontsize=16,color="green",shape="box"];3390 -> 1646[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3390[label="List.nubNub' yv186 (yv185 : yv187 : yv188)",fontsize=16,color="magenta"];3390 -> 3395[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3390 -> 3396[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3390 -> 3397[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3391[label="Pos (primMulNat yv17210 yv17600)",fontsize=16,color="green",shape="box"];3391 -> 3398[label="",style="dashed", color="green", weight=3]; 18.48/6.85 3392[label="Neg (primMulNat yv17210 yv17600)",fontsize=16,color="green",shape="box"];3392 -> 3399[label="",style="dashed", color="green", weight=3]; 18.48/6.85 3393[label="Neg (primMulNat yv17210 yv17600)",fontsize=16,color="green",shape="box"];3393 -> 3400[label="",style="dashed", color="green", weight=3]; 18.48/6.85 3394[label="Pos (primMulNat yv17210 yv17600)",fontsize=16,color="green",shape="box"];3394 -> 3401[label="",style="dashed", color="green", weight=3]; 18.48/6.85 3395[label="yv187 : yv188",fontsize=16,color="green",shape="box"];3396[label="yv185",fontsize=16,color="green",shape="box"];3397[label="yv186",fontsize=16,color="green",shape="box"];3398[label="primMulNat yv17210 yv17600",fontsize=16,color="burlywood",shape="triangle"];3682[label="yv17210/Succ yv172100",fontsize=10,color="white",style="solid",shape="box"];3398 -> 3682[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3682 -> 3402[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3683[label="yv17210/Zero",fontsize=10,color="white",style="solid",shape="box"];3398 -> 3683[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3683 -> 3403[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3399 -> 3398[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3399[label="primMulNat yv17210 yv17600",fontsize=16,color="magenta"];3399 -> 3404[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3400 -> 3398[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3400[label="primMulNat yv17210 yv17600",fontsize=16,color="magenta"];3400 -> 3405[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3401 -> 3398[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3401[label="primMulNat yv17210 yv17600",fontsize=16,color="magenta"];3401 -> 3406[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3401 -> 3407[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3402[label="primMulNat (Succ yv172100) yv17600",fontsize=16,color="burlywood",shape="box"];3684[label="yv17600/Succ yv176000",fontsize=10,color="white",style="solid",shape="box"];3402 -> 3684[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3684 -> 3408[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3685[label="yv17600/Zero",fontsize=10,color="white",style="solid",shape="box"];3402 -> 3685[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3685 -> 3409[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3403[label="primMulNat Zero yv17600",fontsize=16,color="burlywood",shape="box"];3686[label="yv17600/Succ yv176000",fontsize=10,color="white",style="solid",shape="box"];3403 -> 3686[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3686 -> 3410[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3687[label="yv17600/Zero",fontsize=10,color="white",style="solid",shape="box"];3403 -> 3687[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3687 -> 3411[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3404[label="yv17600",fontsize=16,color="green",shape="box"];3405[label="yv17210",fontsize=16,color="green",shape="box"];3406[label="yv17210",fontsize=16,color="green",shape="box"];3407[label="yv17600",fontsize=16,color="green",shape="box"];3408[label="primMulNat (Succ yv172100) (Succ yv176000)",fontsize=16,color="black",shape="box"];3408 -> 3412[label="",style="solid", color="black", weight=3]; 18.48/6.85 3409[label="primMulNat (Succ yv172100) Zero",fontsize=16,color="black",shape="box"];3409 -> 3413[label="",style="solid", color="black", weight=3]; 18.48/6.85 3410[label="primMulNat Zero (Succ yv176000)",fontsize=16,color="black",shape="box"];3410 -> 3414[label="",style="solid", color="black", weight=3]; 18.48/6.85 3411[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];3411 -> 3415[label="",style="solid", color="black", weight=3]; 18.48/6.85 3412 -> 3416[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3412[label="primPlusNat (primMulNat yv172100 (Succ yv176000)) (Succ yv176000)",fontsize=16,color="magenta"];3412 -> 3417[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3413[label="Zero",fontsize=16,color="green",shape="box"];3414[label="Zero",fontsize=16,color="green",shape="box"];3415[label="Zero",fontsize=16,color="green",shape="box"];3417 -> 3398[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3417[label="primMulNat yv172100 (Succ yv176000)",fontsize=16,color="magenta"];3417 -> 3418[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3417 -> 3419[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3416[label="primPlusNat yv197 (Succ yv176000)",fontsize=16,color="burlywood",shape="triangle"];3688[label="yv197/Succ yv1970",fontsize=10,color="white",style="solid",shape="box"];3416 -> 3688[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3688 -> 3420[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3689[label="yv197/Zero",fontsize=10,color="white",style="solid",shape="box"];3416 -> 3689[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3689 -> 3421[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3418[label="yv172100",fontsize=16,color="green",shape="box"];3419[label="Succ yv176000",fontsize=16,color="green",shape="box"];3420[label="primPlusNat (Succ yv1970) (Succ yv176000)",fontsize=16,color="black",shape="box"];3420 -> 3422[label="",style="solid", color="black", weight=3]; 18.48/6.85 3421[label="primPlusNat Zero (Succ yv176000)",fontsize=16,color="black",shape="box"];3421 -> 3423[label="",style="solid", color="black", weight=3]; 18.48/6.85 3422[label="Succ (Succ (primPlusNat yv1970 yv176000))",fontsize=16,color="green",shape="box"];3422 -> 3424[label="",style="dashed", color="green", weight=3]; 18.48/6.85 3423[label="Succ yv176000",fontsize=16,color="green",shape="box"];3424[label="primPlusNat yv1970 yv176000",fontsize=16,color="burlywood",shape="triangle"];3690[label="yv1970/Succ yv19700",fontsize=10,color="white",style="solid",shape="box"];3424 -> 3690[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3690 -> 3425[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3691[label="yv1970/Zero",fontsize=10,color="white",style="solid",shape="box"];3424 -> 3691[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3691 -> 3426[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3425[label="primPlusNat (Succ yv19700) yv176000",fontsize=16,color="burlywood",shape="box"];3692[label="yv176000/Succ yv1760000",fontsize=10,color="white",style="solid",shape="box"];3425 -> 3692[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3692 -> 3427[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3693[label="yv176000/Zero",fontsize=10,color="white",style="solid",shape="box"];3425 -> 3693[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3693 -> 3428[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3426[label="primPlusNat Zero yv176000",fontsize=16,color="burlywood",shape="box"];3694[label="yv176000/Succ yv1760000",fontsize=10,color="white",style="solid",shape="box"];3426 -> 3694[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3694 -> 3429[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3695[label="yv176000/Zero",fontsize=10,color="white",style="solid",shape="box"];3426 -> 3695[label="",style="solid", color="burlywood", weight=9]; 18.48/6.85 3695 -> 3430[label="",style="solid", color="burlywood", weight=3]; 18.48/6.85 3427[label="primPlusNat (Succ yv19700) (Succ yv1760000)",fontsize=16,color="black",shape="box"];3427 -> 3431[label="",style="solid", color="black", weight=3]; 18.48/6.85 3428[label="primPlusNat (Succ yv19700) Zero",fontsize=16,color="black",shape="box"];3428 -> 3432[label="",style="solid", color="black", weight=3]; 18.48/6.85 3429[label="primPlusNat Zero (Succ yv1760000)",fontsize=16,color="black",shape="box"];3429 -> 3433[label="",style="solid", color="black", weight=3]; 18.48/6.85 3430[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3430 -> 3434[label="",style="solid", color="black", weight=3]; 18.48/6.85 3431[label="Succ (Succ (primPlusNat yv19700 yv1760000))",fontsize=16,color="green",shape="box"];3431 -> 3435[label="",style="dashed", color="green", weight=3]; 18.48/6.85 3432[label="Succ yv19700",fontsize=16,color="green",shape="box"];3433[label="Succ yv1760000",fontsize=16,color="green",shape="box"];3434[label="Zero",fontsize=16,color="green",shape="box"];3435 -> 3424[label="",style="dashed", color="red", weight=0]; 18.48/6.85 3435[label="primPlusNat yv19700 yv1760000",fontsize=16,color="magenta"];3435 -> 3436[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3435 -> 3437[label="",style="dashed", color="magenta", weight=3]; 18.48/6.85 3436[label="yv1760000",fontsize=16,color="green",shape="box"];3437[label="yv19700",fontsize=16,color="green",shape="box"];} 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (8) 18.48/6.85 Complex Obligation (AND) 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (9) 18.48/6.85 Obligation: 18.48/6.85 Q DP problem: 18.48/6.85 The TRS P consists of the following rules: 18.48/6.85 18.48/6.85 new_esEs2(Just(yv1720), Just(yv1760), app(app(ty_@2, bbc), bbd)) -> new_esEs1(yv1720, yv1760, bbc, bbd) 18.48/6.85 new_esEs3(Left(yv1720), Left(yv1760), app(app(ty_Either, bch), bda), bca) -> new_esEs3(yv1720, yv1760, bch, bda) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(ty_Maybe, ef), dh) -> new_esEs2(yv1721, yv1761, ef) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(ty_Maybe, fh), cd, dh) -> new_esEs2(yv1720, yv1760, fh) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(app(ty_@2, db), dc)) -> new_esEs1(yv1722, yv1762, db, dc) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(app(ty_Either, eg), eh), dh) -> new_esEs3(yv1721, yv1761, eg, eh) 18.48/6.85 new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(app(ty_@2, bf), bg)) -> new_esEs1(yv1720, yv1760, bf, bg) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(app(app(ty_@3, ea), eb), ec), dh) -> new_esEs0(yv1721, yv1761, ea, eb, ec) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(app(ty_@2, ed), ee), dh) -> new_esEs1(yv1721, yv1761, ed, ee) 18.48/6.85 new_esEs2(Just(yv1720), Just(yv1760), app(ty_[], bag)) -> new_esEs(yv1720, yv1760, bag) 18.48/6.85 new_esEs3(Right(yv1720), Right(yv1760), bdb, app(ty_[], bdc)) -> new_esEs(yv1720, yv1760, bdc) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(ty_[], he), hf) -> new_esEs(yv1720, yv1760, he) 18.48/6.85 new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), ba) -> new_esEs(yv1721, yv1761, ba) 18.48/6.85 new_esEs3(Left(yv1720), Left(yv1760), app(ty_[], bbh), bca) -> new_esEs(yv1720, yv1760, bbh) 18.48/6.85 new_esEs2(Just(yv1720), Just(yv1760), app(ty_Maybe, bbe)) -> new_esEs2(yv1720, yv1760, bbe) 18.48/6.85 new_esEs3(Left(yv1720), Left(yv1760), app(app(ty_@2, bce), bcf), bca) -> new_esEs1(yv1720, yv1760, bce, bcf) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(yv1720, yv1760, hg, hh, baa) 18.48/6.85 new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(ty_[], bb)) -> new_esEs(yv1720, yv1760, bb) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(app(ty_Either, de), df)) -> new_esEs3(yv1722, yv1762, de, df) 18.48/6.85 new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(app(ty_Either, ca), cb)) -> new_esEs3(yv1720, yv1760, ca, cb) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(ty_Maybe, hb)) -> new_esEs2(yv1721, yv1761, hb) 18.48/6.85 new_esEs3(Right(yv1720), Right(yv1760), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(yv1720, yv1760, beb, bec) 18.48/6.85 new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(yv1720, yv1760, bc, bd, be) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(app(app(ty_@3, cf), cg), da)) -> new_esEs0(yv1722, yv1762, cf, cg, da) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(ty_Maybe, dd)) -> new_esEs2(yv1722, yv1762, dd) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(ty_Maybe, bad), hf) -> new_esEs2(yv1720, yv1760, bad) 18.48/6.85 new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(ty_Maybe, bh)) -> new_esEs2(yv1720, yv1760, bh) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(yv1721, yv1761, ge, gf, gg) 18.48/6.85 new_esEs2(Just(yv1720), Just(yv1760), app(app(ty_Either, bbf), bbg)) -> new_esEs3(yv1720, yv1760, bbf, bbg) 18.48/6.85 new_esEs3(Left(yv1720), Left(yv1760), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(yv1720, yv1760, bcb, bcc, bcd) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(ty_[], fa), cd, dh) -> new_esEs(yv1720, yv1760, fa) 18.48/6.85 new_esEs3(Right(yv1720), Right(yv1760), bdb, app(app(ty_@2, bdg), bdh)) -> new_esEs1(yv1720, yv1760, bdg, bdh) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(ty_[], dg), dh) -> new_esEs(yv1721, yv1761, dg) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(app(ty_Either, bae), baf), hf) -> new_esEs3(yv1720, yv1760, bae, baf) 18.48/6.85 new_esEs3(Left(yv1720), Left(yv1760), app(ty_Maybe, bcg), bca) -> new_esEs2(yv1720, yv1760, bcg) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(ty_[], ce)) -> new_esEs(yv1722, yv1762, ce) 18.48/6.85 new_esEs3(Right(yv1720), Right(yv1760), bdb, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(yv1720, yv1760, bdd, bde, bdf) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(app(ty_@2, bab), bac), hf) -> new_esEs1(yv1720, yv1760, bab, bac) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(ty_[], gd)) -> new_esEs(yv1721, yv1761, gd) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(app(ty_@2, gh), ha)) -> new_esEs1(yv1721, yv1761, gh, ha) 18.48/6.85 new_esEs2(Just(yv1720), Just(yv1760), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(yv1720, yv1760, bah, bba, bbb) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(app(app(ty_@3, fb), fc), fd), cd, dh) -> new_esEs0(yv1720, yv1760, fb, fc, fd) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(app(ty_@2, ff), fg), cd, dh) -> new_esEs1(yv1720, yv1760, ff, fg) 18.48/6.85 new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(app(ty_Either, ga), gb), cd, dh) -> new_esEs3(yv1720, yv1760, ga, gb) 18.48/6.85 new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(app(ty_Either, hc), hd)) -> new_esEs3(yv1721, yv1761, hc, hd) 18.48/6.85 new_esEs3(Right(yv1720), Right(yv1760), bdb, app(ty_Maybe, bea)) -> new_esEs2(yv1720, yv1760, bea) 18.48/6.85 18.48/6.85 R is empty. 18.48/6.85 Q is empty. 18.48/6.85 We have to consider all minimal (P,Q,R)-chains. 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (10) QDPSizeChangeProof (EQUIVALENT) 18.48/6.85 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.48/6.85 18.48/6.85 From the DPs we obtained the following set of size-change graphs: 18.48/6.85 *new_esEs2(Just(yv1720), Just(yv1760), app(ty_Maybe, bbe)) -> new_esEs2(yv1720, yv1760, bbe) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs2(Just(yv1720), Just(yv1760), app(app(ty_Either, bbf), bbg)) -> new_esEs3(yv1720, yv1760, bbf, bbg) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs2(Just(yv1720), Just(yv1760), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(yv1720, yv1760, bah, bba, bbb) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs2(Just(yv1720), Just(yv1760), app(ty_[], bag)) -> new_esEs(yv1720, yv1760, bag) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs2(Just(yv1720), Just(yv1760), app(app(ty_@2, bbc), bbd)) -> new_esEs1(yv1720, yv1760, bbc, bbd) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(ty_Maybe, bh)) -> new_esEs2(yv1720, yv1760, bh) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(app(ty_Either, ca), cb)) -> new_esEs3(yv1720, yv1760, ca, cb) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(yv1720, yv1760, bc, bd, be) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(app(ty_@2, bf), bg)) -> new_esEs1(yv1720, yv1760, bf, bg) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(ty_Maybe, hb)) -> new_esEs2(yv1721, yv1761, hb) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(ty_Maybe, bad), hf) -> new_esEs2(yv1720, yv1760, bad) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(app(ty_Either, bae), baf), hf) -> new_esEs3(yv1720, yv1760, bae, baf) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(app(ty_Either, hc), hd)) -> new_esEs3(yv1721, yv1761, hc, hd) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(yv1720, yv1760, hg, hh, baa) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(yv1721, yv1761, ge, gf, gg) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(ty_[], he), hf) -> new_esEs(yv1720, yv1760, he) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(ty_[], gd)) -> new_esEs(yv1721, yv1761, gd) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), app(app(ty_@2, bab), bac), hf) -> new_esEs1(yv1720, yv1760, bab, bac) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs1(@2(yv1720, yv1721), @2(yv1760, yv1761), gc, app(app(ty_@2, gh), ha)) -> new_esEs1(yv1721, yv1761, gh, ha) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Left(yv1720), Left(yv1760), app(ty_Maybe, bcg), bca) -> new_esEs2(yv1720, yv1760, bcg) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Right(yv1720), Right(yv1760), bdb, app(ty_Maybe, bea)) -> new_esEs2(yv1720, yv1760, bea) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(ty_Maybe, ef), dh) -> new_esEs2(yv1721, yv1761, ef) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(ty_Maybe, fh), cd, dh) -> new_esEs2(yv1720, yv1760, fh) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(ty_Maybe, dd)) -> new_esEs2(yv1722, yv1762, dd) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Left(yv1720), Left(yv1760), app(app(ty_Either, bch), bda), bca) -> new_esEs3(yv1720, yv1760, bch, bda) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Right(yv1720), Right(yv1760), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(yv1720, yv1760, beb, bec) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Left(yv1720), Left(yv1760), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(yv1720, yv1760, bcb, bcc, bcd) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Right(yv1720), Right(yv1760), bdb, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(yv1720, yv1760, bdd, bde, bdf) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Right(yv1720), Right(yv1760), bdb, app(ty_[], bdc)) -> new_esEs(yv1720, yv1760, bdc) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Left(yv1720), Left(yv1760), app(ty_[], bbh), bca) -> new_esEs(yv1720, yv1760, bbh) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Left(yv1720), Left(yv1760), app(app(ty_@2, bce), bcf), bca) -> new_esEs1(yv1720, yv1760, bce, bcf) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs3(Right(yv1720), Right(yv1760), bdb, app(app(ty_@2, bdg), bdh)) -> new_esEs1(yv1720, yv1760, bdg, bdh) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(app(ty_Either, eg), eh), dh) -> new_esEs3(yv1721, yv1761, eg, eh) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(app(ty_Either, de), df)) -> new_esEs3(yv1722, yv1762, de, df) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(app(ty_Either, ga), gb), cd, dh) -> new_esEs3(yv1720, yv1760, ga, gb) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(app(app(ty_@3, ea), eb), ec), dh) -> new_esEs0(yv1721, yv1761, ea, eb, ec) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(app(app(ty_@3, cf), cg), da)) -> new_esEs0(yv1722, yv1762, cf, cg, da) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(app(app(ty_@3, fb), fc), fd), cd, dh) -> new_esEs0(yv1720, yv1760, fb, fc, fd) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(ty_[], fa), cd, dh) -> new_esEs(yv1720, yv1760, fa) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(ty_[], dg), dh) -> new_esEs(yv1721, yv1761, dg) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(ty_[], ce)) -> new_esEs(yv1722, yv1762, ce) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), ba) -> new_esEs(yv1721, yv1761, ba) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs(:(yv1720, yv1721), :(yv1760, yv1761), app(ty_[], bb)) -> new_esEs(yv1720, yv1760, bb) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, cd, app(app(ty_@2, db), dc)) -> new_esEs1(yv1722, yv1762, db, dc) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), cc, app(app(ty_@2, ed), ee), dh) -> new_esEs1(yv1721, yv1761, ed, ee) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_esEs0(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), app(app(ty_@2, ff), fg), cd, dh) -> new_esEs1(yv1720, yv1760, ff, fg) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.48/6.85 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (11) 18.48/6.85 YES 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (12) 18.48/6.85 Obligation: 18.48/6.85 Q DP problem: 18.48/6.85 The TRS P consists of the following rules: 18.48/6.85 18.48/6.85 new_nubNub'(:(yv860, yv861), yv87, yv88, bc) -> new_nubNub'1(yv860, yv861, yv87, yv88, yv87, yv88, bc) 18.48/6.85 new_nubNub'10(yv185, yv186, yv187, yv188, False, [], bb) -> new_nubNub'(yv186, yv185, :(yv187, yv188), bb) 18.48/6.85 new_nubNub'1(yv172, yv173, yv174, yv175, yv176, yv177, ba) -> new_nubNub'10(yv172, yv173, yv174, yv175, new_esEs4(yv172, yv176, ba), yv177, ba) 18.48/6.85 new_nubNub'10(yv185, yv186, yv187, yv188, False, :(yv1900, yv1901), bb) -> new_nubNub'1(yv185, yv186, yv187, yv188, yv1900, yv1901, bb) 18.48/6.85 new_nubNub'10(yv185, yv186, yv187, yv188, True, yv190, bb) -> new_nubNub'(yv186, yv187, yv188, bb) 18.48/6.85 18.48/6.85 The TRS R consists of the following rules: 18.48/6.85 18.48/6.85 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 18.48/6.85 new_esEs4(yv172, yv176, app(ty_Maybe, cc)) -> new_esEs17(yv172, yv176, cc) 18.48/6.85 new_esEs12(Char(yv1720), Char(yv1760)) -> new_primEqNat0(yv1720, yv1760) 18.48/6.85 new_esEs24(yv1721, yv1761, ty_Ordering) -> new_esEs15(yv1721, yv1761) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, ty_Bool) -> new_esEs5(yv1720, yv1760) 18.48/6.85 new_esEs15(LT, LT) -> True 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, ty_Ordering) -> new_esEs15(yv1720, yv1760) 18.48/6.85 new_esEs26(yv1720, yv1760, ty_Bool) -> new_esEs5(yv1720, yv1760) 18.48/6.85 new_esEs5(True, True) -> True 18.48/6.85 new_esEs22(yv1721, yv1761, ty_Integer) -> new_esEs11(yv1721, yv1761) 18.48/6.85 new_esEs24(yv1721, yv1761, ty_Double) -> new_esEs14(yv1721, yv1761) 18.48/6.85 new_esEs25(yv1720, yv1760, app(ty_Maybe, bee)) -> new_esEs17(yv1720, yv1760, bee) 18.48/6.85 new_esEs26(yv1720, yv1760, app(ty_[], beh)) -> new_esEs7(yv1720, yv1760, beh) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), ty_Ordering, ce) -> new_esEs15(yv1720, yv1760) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs13(yv1720, yv1760, bbd, bbe, bbf) 18.48/6.85 new_esEs22(yv1721, yv1761, ty_Int) -> new_esEs8(yv1721, yv1761) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, app(ty_Ratio, bbc)) -> new_esEs9(yv1720, yv1760, bbc) 18.48/6.85 new_esEs26(yv1720, yv1760, app(app(ty_Either, bfh), bga)) -> new_esEs18(yv1720, yv1760, bfh, bga) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), ty_Int, ce) -> new_esEs8(yv1720, yv1760) 18.48/6.85 new_esEs26(yv1720, yv1760, ty_@0) -> new_esEs10(yv1720, yv1760) 18.48/6.85 new_esEs20(yv1721, yv1761, app(ty_Ratio, eb)) -> new_esEs9(yv1721, yv1761, eb) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), ty_Bool, ce) -> new_esEs5(yv1720, yv1760) 18.48/6.85 new_esEs24(yv1721, yv1761, app(app(ty_Either, bdd), bde)) -> new_esEs18(yv1721, yv1761, bdd, bde) 18.48/6.85 new_esEs20(yv1721, yv1761, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs13(yv1721, yv1761, ec, ed, ee) 18.48/6.85 new_asAs(True, yv196) -> yv196 18.48/6.85 new_esEs21(yv1720, yv1760, ty_@0) -> new_esEs10(yv1720, yv1760) 18.48/6.85 new_esEs25(yv1720, yv1760, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs13(yv1720, yv1760, bdh, bea, beb) 18.48/6.85 new_esEs26(yv1720, yv1760, ty_Ordering) -> new_esEs15(yv1720, yv1760) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), ty_Float, ce) -> new_esEs6(yv1720, yv1760) 18.48/6.85 new_esEs16(@2(yv1720, yv1721), @2(yv1760, yv1761), ca, cb) -> new_asAs(new_esEs25(yv1720, yv1760, ca), new_esEs24(yv1721, yv1761, cb)) 18.48/6.85 new_esEs24(yv1721, yv1761, app(ty_[], bcd)) -> new_esEs7(yv1721, yv1761, bcd) 18.48/6.85 new_primEqInt(Pos(Succ(yv17200)), Pos(Zero)) -> False 18.48/6.85 new_primEqInt(Pos(Zero), Pos(Succ(yv17600))) -> False 18.48/6.85 new_esEs19(yv1722, yv1762, app(ty_Maybe, df)) -> new_esEs17(yv1722, yv1762, df) 18.48/6.85 new_esEs24(yv1721, yv1761, ty_Integer) -> new_esEs11(yv1721, yv1761) 18.48/6.85 new_esEs20(yv1721, yv1761, ty_Float) -> new_esEs6(yv1721, yv1761) 18.48/6.85 new_esEs21(yv1720, yv1760, app(ty_[], fc)) -> new_esEs7(yv1720, yv1760, fc) 18.48/6.85 new_esEs24(yv1721, yv1761, ty_@0) -> new_esEs10(yv1721, yv1761) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, ty_Float) -> new_esEs6(yv1720, yv1760) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), ty_Double, ce) -> new_esEs14(yv1720, yv1760) 18.48/6.85 new_esEs19(yv1722, yv1762, app(app(app(ty_@3, da), db), dc)) -> new_esEs13(yv1722, yv1762, da, db, dc) 18.48/6.85 new_esEs4(yv172, yv176, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs13(yv172, yv176, bf, bg, bh) 18.48/6.85 new_primEqNat0(Succ(yv17200), Succ(yv17600)) -> new_primEqNat0(yv17200, yv17600) 18.48/6.85 new_esEs17(Nothing, Nothing, cc) -> True 18.48/6.85 new_esEs20(yv1721, yv1761, ty_Ordering) -> new_esEs15(yv1721, yv1761) 18.48/6.85 new_esEs17(Nothing, Just(yv1760), cc) -> False 18.48/6.85 new_esEs17(Just(yv1720), Nothing, cc) -> False 18.48/6.85 new_esEs24(yv1721, yv1761, ty_Int) -> new_esEs8(yv1721, yv1761) 18.48/6.85 new_esEs4(yv172, yv176, ty_Char) -> new_esEs12(yv172, yv176) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), app(app(ty_@2, hc), hd)) -> new_esEs16(yv1720, yv1760, hc, hd) 18.48/6.85 new_primMulNat0(Zero, Zero) -> Zero 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), ty_@0) -> new_esEs10(yv1720, yv1760) 18.48/6.85 new_esEs4(yv172, yv176, app(app(ty_@2, ca), cb)) -> new_esEs16(yv172, yv176, ca, cb) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), ty_Char) -> new_esEs12(yv1720, yv1760) 18.48/6.85 new_esEs15(LT, EQ) -> False 18.48/6.85 new_esEs15(EQ, LT) -> False 18.48/6.85 new_primEqNat0(Succ(yv17200), Zero) -> False 18.48/6.85 new_primEqNat0(Zero, Succ(yv17600)) -> False 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), app(ty_Ratio, gg)) -> new_esEs9(yv1720, yv1760, gg) 18.48/6.85 new_esEs19(yv1722, yv1762, ty_Double) -> new_esEs14(yv1722, yv1762) 18.48/6.85 new_esEs24(yv1721, yv1761, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs13(yv1721, yv1761, bcf, bcg, bch) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, ty_Double) -> new_esEs14(yv1720, yv1760) 18.48/6.85 new_esEs4(yv172, yv176, ty_Integer) -> new_esEs11(yv172, yv176) 18.48/6.85 new_esEs6(Float(yv1720, yv1721), Float(yv1760, yv1761)) -> new_esEs8(new_sr(yv1720, yv1761), new_sr(yv1721, yv1760)) 18.48/6.85 new_esEs24(yv1721, yv1761, ty_Float) -> new_esEs6(yv1721, yv1761) 18.48/6.85 new_esEs20(yv1721, yv1761, ty_Double) -> new_esEs14(yv1721, yv1761) 18.48/6.85 new_esEs24(yv1721, yv1761, ty_Bool) -> new_esEs5(yv1721, yv1761) 18.48/6.85 new_primEqInt(Neg(Succ(yv17200)), Neg(Zero)) -> False 18.48/6.85 new_primEqInt(Neg(Zero), Neg(Succ(yv17600))) -> False 18.48/6.85 new_esEs11(Integer(yv1720), Integer(yv1760)) -> new_primEqInt(yv1720, yv1760) 18.48/6.85 new_esEs21(yv1720, yv1760, app(ty_Maybe, gc)) -> new_esEs17(yv1720, yv1760, gc) 18.48/6.85 new_primEqInt(Pos(Succ(yv17200)), Pos(Succ(yv17600))) -> new_primEqNat0(yv17200, yv17600) 18.48/6.85 new_esEs4(yv172, yv176, app(app(ty_Either, cd), ce)) -> new_esEs18(yv172, yv176, cd, ce) 18.48/6.85 new_esEs20(yv1721, yv1761, app(ty_[], ea)) -> new_esEs7(yv1721, yv1761, ea) 18.48/6.85 new_esEs26(yv1720, yv1760, ty_Double) -> new_esEs14(yv1720, yv1760) 18.48/6.85 new_esEs7([], [], bd) -> True 18.48/6.85 new_esEs4(yv172, yv176, app(ty_Ratio, be)) -> new_esEs9(yv172, yv176, be) 18.48/6.85 new_sr(Pos(yv17210), Neg(yv17600)) -> Neg(new_primMulNat0(yv17210, yv17600)) 18.48/6.85 new_sr(Neg(yv17210), Pos(yv17600)) -> Neg(new_primMulNat0(yv17210, yv17600)) 18.48/6.85 new_esEs4(yv172, yv176, ty_@0) -> new_esEs10(yv172, yv176) 18.48/6.85 new_primPlusNat1(Succ(yv19700), Succ(yv1760000)) -> Succ(Succ(new_primPlusNat1(yv19700, yv1760000))) 18.48/6.85 new_primEqInt(Pos(Succ(yv17200)), Neg(yv1760)) -> False 18.48/6.85 new_primEqInt(Neg(Succ(yv17200)), Pos(yv1760)) -> False 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), app(ty_Maybe, he)) -> new_esEs17(yv1720, yv1760, he) 18.48/6.85 new_esEs7(:(yv1720, yv1721), [], bd) -> False 18.48/6.85 new_esEs7([], :(yv1760, yv1761), bd) -> False 18.48/6.85 new_esEs19(yv1722, yv1762, app(ty_[], cf)) -> new_esEs7(yv1722, yv1762, cf) 18.48/6.85 new_esEs25(yv1720, yv1760, app(ty_[], bdf)) -> new_esEs7(yv1720, yv1760, bdf) 18.48/6.85 new_esEs24(yv1721, yv1761, app(ty_Maybe, bdc)) -> new_esEs17(yv1721, yv1761, bdc) 18.48/6.85 new_esEs8(yv172, yv176) -> new_primEqInt(yv172, yv176) 18.48/6.85 new_esEs4(yv172, yv176, ty_Ordering) -> new_esEs15(yv172, yv176) 18.48/6.85 new_esEs15(EQ, EQ) -> True 18.48/6.85 new_esEs21(yv1720, yv1760, app(ty_Ratio, fd)) -> new_esEs9(yv1720, yv1760, fd) 18.48/6.85 new_esEs23(yv1720, yv1760, ty_Int) -> new_esEs8(yv1720, yv1760) 18.48/6.85 new_esEs19(yv1722, yv1762, app(app(ty_Either, dg), dh)) -> new_esEs18(yv1722, yv1762, dg, dh) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), ty_Double) -> new_esEs14(yv1720, yv1760) 18.48/6.85 new_esEs15(GT, GT) -> True 18.48/6.85 new_sr(Neg(yv17210), Neg(yv17600)) -> Pos(new_primMulNat0(yv17210, yv17600)) 18.48/6.85 new_esEs15(EQ, GT) -> False 18.48/6.85 new_esEs15(GT, EQ) -> False 18.48/6.85 new_esEs4(yv172, yv176, ty_Int) -> new_esEs8(yv172, yv176) 18.48/6.85 new_esEs4(yv172, yv176, ty_Double) -> new_esEs14(yv172, yv176) 18.48/6.85 new_esEs21(yv1720, yv1760, ty_Double) -> new_esEs14(yv1720, yv1760) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), ty_Float) -> new_esEs6(yv1720, yv1760) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), app(app(app(ty_@3, bab), bac), bad), ce) -> new_esEs13(yv1720, yv1760, bab, bac, bad) 18.48/6.85 new_esEs25(yv1720, yv1760, ty_Ordering) -> new_esEs15(yv1720, yv1760) 18.48/6.85 new_primEqInt(Pos(Zero), Neg(Succ(yv17600))) -> False 18.48/6.85 new_primEqInt(Neg(Zero), Pos(Succ(yv17600))) -> False 18.48/6.85 new_esEs26(yv1720, yv1760, app(app(ty_@2, bfe), bff)) -> new_esEs16(yv1720, yv1760, bfe, bff) 18.48/6.85 new_esEs23(yv1720, yv1760, ty_Integer) -> new_esEs11(yv1720, yv1760) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), app(ty_[], hh), ce) -> new_esEs7(yv1720, yv1760, hh) 18.48/6.85 new_esEs10(@0, @0) -> True 18.48/6.85 new_esEs26(yv1720, yv1760, ty_Char) -> new_esEs12(yv1720, yv1760) 18.48/6.85 new_esEs25(yv1720, yv1760, ty_Double) -> new_esEs14(yv1720, yv1760) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), ty_Integer) -> new_esEs11(yv1720, yv1760) 18.48/6.85 new_esEs5(False, True) -> False 18.48/6.85 new_esEs5(True, False) -> False 18.48/6.85 new_esEs26(yv1720, yv1760, app(ty_Maybe, bfg)) -> new_esEs17(yv1720, yv1760, bfg) 18.48/6.85 new_esEs21(yv1720, yv1760, ty_Char) -> new_esEs12(yv1720, yv1760) 18.48/6.85 new_primEqInt(Neg(Succ(yv17200)), Neg(Succ(yv17600))) -> new_primEqNat0(yv17200, yv17600) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), app(app(ty_@2, bae), baf), ce) -> new_esEs16(yv1720, yv1760, bae, baf) 18.48/6.85 new_esEs19(yv1722, yv1762, ty_Ordering) -> new_esEs15(yv1722, yv1762) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), app(app(ty_Either, hf), hg)) -> new_esEs18(yv1720, yv1760, hf, hg) 18.48/6.85 new_primPlusNat0(Succ(yv1970), yv176000) -> Succ(Succ(new_primPlusNat1(yv1970, yv176000))) 18.48/6.85 new_esEs21(yv1720, yv1760, ty_Int) -> new_esEs8(yv1720, yv1760) 18.48/6.85 new_esEs21(yv1720, yv1760, app(app(ty_@2, ga), gb)) -> new_esEs16(yv1720, yv1760, ga, gb) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, app(ty_[], bbb)) -> new_esEs7(yv1720, yv1760, bbb) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), ty_Int) -> new_esEs8(yv1720, yv1760) 18.48/6.85 new_primPlusNat1(Zero, Zero) -> Zero 18.48/6.85 new_esEs26(yv1720, yv1760, app(ty_Ratio, bfa)) -> new_esEs9(yv1720, yv1760, bfa) 18.48/6.85 new_primMulNat0(Succ(yv172100), Zero) -> Zero 18.48/6.85 new_primMulNat0(Zero, Succ(yv176000)) -> Zero 18.48/6.85 new_sr(Pos(yv17210), Pos(yv17600)) -> Pos(new_primMulNat0(yv17210, yv17600)) 18.48/6.85 new_primPlusNat0(Zero, yv176000) -> Succ(yv176000) 18.48/6.85 new_esEs24(yv1721, yv1761, app(app(ty_@2, bda), bdb)) -> new_esEs16(yv1721, yv1761, bda, bdb) 18.48/6.85 new_esEs20(yv1721, yv1761, app(ty_Maybe, eh)) -> new_esEs17(yv1721, yv1761, eh) 18.48/6.85 new_esEs19(yv1722, yv1762, ty_Float) -> new_esEs6(yv1722, yv1762) 18.48/6.85 new_esEs4(yv172, yv176, ty_Float) -> new_esEs6(yv172, yv176) 18.48/6.85 new_esEs24(yv1721, yv1761, ty_Char) -> new_esEs12(yv1721, yv1761) 18.48/6.85 new_esEs25(yv1720, yv1760, ty_Float) -> new_esEs6(yv1720, yv1760) 18.48/6.85 new_esEs4(yv172, yv176, ty_Bool) -> new_esEs5(yv172, yv176) 18.48/6.85 new_esEs21(yv1720, yv1760, ty_Integer) -> new_esEs11(yv1720, yv1760) 18.48/6.85 new_esEs18(Left(yv1720), Right(yv1760), cd, ce) -> False 18.48/6.85 new_esEs18(Right(yv1720), Left(yv1760), cd, ce) -> False 18.48/6.85 new_esEs25(yv1720, yv1760, ty_Bool) -> new_esEs5(yv1720, yv1760) 18.48/6.85 new_esEs19(yv1722, yv1762, ty_Bool) -> new_esEs5(yv1722, yv1762) 18.48/6.85 new_esEs26(yv1720, yv1760, ty_Integer) -> new_esEs11(yv1720, yv1760) 18.48/6.85 new_esEs21(yv1720, yv1760, ty_Bool) -> new_esEs5(yv1720, yv1760) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), app(app(ty_Either, bah), bba), ce) -> new_esEs18(yv1720, yv1760, bah, bba) 18.48/6.85 new_esEs15(LT, GT) -> False 18.48/6.85 new_esEs15(GT, LT) -> False 18.48/6.85 new_esEs25(yv1720, yv1760, app(ty_Ratio, bdg)) -> new_esEs9(yv1720, yv1760, bdg) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), ty_Char, ce) -> new_esEs12(yv1720, yv1760) 18.48/6.85 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 18.48/6.85 new_esEs7(:(yv1720, yv1721), :(yv1760, yv1761), bd) -> new_asAs(new_esEs26(yv1720, yv1760, bd), new_esEs7(yv1721, yv1761, bd)) 18.48/6.85 new_primMulNat0(Succ(yv172100), Succ(yv176000)) -> new_primPlusNat0(new_primMulNat0(yv172100, Succ(yv176000)), yv176000) 18.48/6.85 new_esEs26(yv1720, yv1760, ty_Float) -> new_esEs6(yv1720, yv1760) 18.48/6.85 new_esEs20(yv1721, yv1761, ty_Bool) -> new_esEs5(yv1721, yv1761) 18.48/6.85 new_esEs14(Double(yv1720, yv1721), Double(yv1760, yv1761)) -> new_esEs8(new_sr(yv1720, yv1761), new_sr(yv1721, yv1760)) 18.48/6.85 new_esEs21(yv1720, yv1760, app(app(ty_Either, gd), ge)) -> new_esEs18(yv1720, yv1760, gd, ge) 18.48/6.85 new_esEs19(yv1722, yv1762, ty_Int) -> new_esEs8(yv1722, yv1762) 18.48/6.85 new_esEs13(@3(yv1720, yv1721, yv1722), @3(yv1760, yv1761, yv1762), bf, bg, bh) -> new_asAs(new_esEs21(yv1720, yv1760, bf), new_asAs(new_esEs20(yv1721, yv1761, bg), new_esEs19(yv1722, yv1762, bh))) 18.48/6.85 new_primPlusNat1(Succ(yv19700), Zero) -> Succ(yv19700) 18.48/6.85 new_primPlusNat1(Zero, Succ(yv1760000)) -> Succ(yv1760000) 18.48/6.85 new_esEs26(yv1720, yv1760, ty_Int) -> new_esEs8(yv1720, yv1760) 18.48/6.85 new_esEs21(yv1720, yv1760, ty_Ordering) -> new_esEs15(yv1720, yv1760) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs13(yv1720, yv1760, gh, ha, hb) 18.48/6.85 new_esEs24(yv1721, yv1761, app(ty_Ratio, bce)) -> new_esEs9(yv1721, yv1761, bce) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), app(ty_[], gf)) -> new_esEs7(yv1720, yv1760, gf) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), ty_@0, ce) -> new_esEs10(yv1720, yv1760) 18.48/6.85 new_esEs5(False, False) -> True 18.48/6.85 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 18.48/6.85 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 18.48/6.85 new_esEs9(:%(yv1720, yv1721), :%(yv1760, yv1761), be) -> new_asAs(new_esEs23(yv1720, yv1760, be), new_esEs22(yv1721, yv1761, be)) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), ty_Bool) -> new_esEs5(yv1720, yv1760) 18.48/6.85 new_esEs25(yv1720, yv1760, ty_@0) -> new_esEs10(yv1720, yv1760) 18.48/6.85 new_primEqNat0(Zero, Zero) -> True 18.48/6.85 new_esEs25(yv1720, yv1760, ty_Int) -> new_esEs8(yv1720, yv1760) 18.48/6.85 new_esEs19(yv1722, yv1762, ty_Char) -> new_esEs12(yv1722, yv1762) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, ty_Int) -> new_esEs8(yv1720, yv1760) 18.48/6.85 new_esEs20(yv1721, yv1761, ty_@0) -> new_esEs10(yv1721, yv1761) 18.48/6.85 new_esEs25(yv1720, yv1760, ty_Char) -> new_esEs12(yv1720, yv1760) 18.48/6.85 new_esEs19(yv1722, yv1762, app(app(ty_@2, dd), de)) -> new_esEs16(yv1722, yv1762, dd, de) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), app(ty_Maybe, bag), ce) -> new_esEs17(yv1720, yv1760, bag) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, app(app(ty_@2, bbg), bbh)) -> new_esEs16(yv1720, yv1760, bbg, bbh) 18.48/6.85 new_esEs25(yv1720, yv1760, app(app(ty_Either, bef), beg)) -> new_esEs18(yv1720, yv1760, bef, beg) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), ty_Integer, ce) -> new_esEs11(yv1720, yv1760) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, app(app(ty_Either, bcb), bcc)) -> new_esEs18(yv1720, yv1760, bcb, bcc) 18.48/6.85 new_asAs(False, yv196) -> False 18.48/6.85 new_esEs25(yv1720, yv1760, app(app(ty_@2, bec), bed)) -> new_esEs16(yv1720, yv1760, bec, bed) 18.48/6.85 new_esEs20(yv1721, yv1761, ty_Integer) -> new_esEs11(yv1721, yv1761) 18.48/6.85 new_esEs18(Left(yv1720), Left(yv1760), app(ty_Ratio, baa), ce) -> new_esEs9(yv1720, yv1760, baa) 18.48/6.85 new_esEs20(yv1721, yv1761, ty_Char) -> new_esEs12(yv1721, yv1761) 18.48/6.85 new_esEs20(yv1721, yv1761, app(app(ty_@2, ef), eg)) -> new_esEs16(yv1721, yv1761, ef, eg) 18.48/6.85 new_esEs19(yv1722, yv1762, app(ty_Ratio, cg)) -> new_esEs9(yv1722, yv1762, cg) 18.48/6.85 new_esEs19(yv1722, yv1762, ty_@0) -> new_esEs10(yv1722, yv1762) 18.48/6.85 new_esEs21(yv1720, yv1760, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs13(yv1720, yv1760, ff, fg, fh) 18.48/6.85 new_esEs17(Just(yv1720), Just(yv1760), ty_Ordering) -> new_esEs15(yv1720, yv1760) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, ty_Integer) -> new_esEs11(yv1720, yv1760) 18.48/6.85 new_esEs26(yv1720, yv1760, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs13(yv1720, yv1760, bfb, bfc, bfd) 18.48/6.85 new_esEs20(yv1721, yv1761, app(app(ty_Either, fa), fb)) -> new_esEs18(yv1721, yv1761, fa, fb) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, app(ty_Maybe, bca)) -> new_esEs17(yv1720, yv1760, bca) 18.48/6.85 new_esEs4(yv172, yv176, app(ty_[], bd)) -> new_esEs7(yv172, yv176, bd) 18.48/6.85 new_esEs21(yv1720, yv1760, ty_Float) -> new_esEs6(yv1720, yv1760) 18.48/6.85 new_esEs25(yv1720, yv1760, ty_Integer) -> new_esEs11(yv1720, yv1760) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, ty_Char) -> new_esEs12(yv1720, yv1760) 18.48/6.85 new_esEs20(yv1721, yv1761, ty_Int) -> new_esEs8(yv1721, yv1761) 18.48/6.85 new_esEs18(Right(yv1720), Right(yv1760), cd, ty_@0) -> new_esEs10(yv1720, yv1760) 18.48/6.85 new_esEs19(yv1722, yv1762, ty_Integer) -> new_esEs11(yv1722, yv1762) 18.48/6.85 18.48/6.85 The set Q consists of the following terms: 18.48/6.85 18.48/6.85 new_esEs21(x0, x1, ty_Int) 18.48/6.85 new_esEs8(x0, x1) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, ty_Bool) 18.48/6.85 new_esEs24(x0, x1, ty_Char) 18.48/6.85 new_esEs25(x0, x1, ty_Ordering) 18.48/6.85 new_primPlusNat1(Succ(x0), Succ(x1)) 18.48/6.85 new_esEs19(x0, x1, ty_Ordering) 18.48/6.85 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.48/6.85 new_esEs19(x0, x1, ty_Double) 18.48/6.85 new_esEs26(x0, x1, app(ty_Ratio, x2)) 18.48/6.85 new_esEs26(x0, x1, ty_Float) 18.48/6.85 new_esEs23(x0, x1, ty_Int) 18.48/6.85 new_esEs20(x0, x1, app(ty_Ratio, x2)) 18.48/6.85 new_esEs7([], [], x0) 18.48/6.85 new_primMulNat0(Zero, Zero) 18.48/6.85 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.48/6.85 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 18.48/6.85 new_primPlusNat1(Zero, Zero) 18.48/6.85 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.48/6.85 new_esEs21(x0, x1, ty_Char) 18.48/6.85 new_esEs6(Float(x0, x1), Float(x2, x3)) 18.48/6.85 new_esEs4(x0, x1, ty_Bool) 18.48/6.85 new_esEs26(x0, x1, ty_Double) 18.48/6.85 new_esEs15(EQ, EQ) 18.48/6.85 new_esEs25(x0, x1, ty_Int) 18.48/6.85 new_esEs19(x0, x1, ty_Float) 18.48/6.85 new_asAs(False, x0) 18.48/6.85 new_sr(Neg(x0), Neg(x1)) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, ty_@0) 18.48/6.85 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 18.48/6.85 new_sr(Pos(x0), Pos(x1)) 18.48/6.85 new_primEqInt(Pos(Zero), Pos(Zero)) 18.48/6.85 new_esEs24(x0, x1, ty_Int) 18.48/6.85 new_esEs26(x0, x1, ty_Int) 18.48/6.85 new_esEs18(Left(x0), Left(x1), ty_Float, x2) 18.48/6.85 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 18.48/6.85 new_esEs20(x0, x1, ty_Char) 18.48/6.85 new_esEs4(x0, x1, ty_Integer) 18.48/6.85 new_esEs20(x0, x1, ty_@0) 18.48/6.85 new_esEs4(x0, x1, app(ty_[], x2)) 18.48/6.85 new_esEs24(x0, x1, app(ty_Maybe, x2)) 18.48/6.85 new_esEs18(Left(x0), Left(x1), ty_Ordering, x2) 18.48/6.85 new_esEs24(x0, x1, app(ty_[], x2)) 18.48/6.85 new_esEs25(x0, x1, ty_Double) 18.48/6.85 new_esEs20(x0, x1, ty_Int) 18.48/6.85 new_esEs25(x0, x1, ty_Char) 18.48/6.85 new_esEs17(Just(x0), Just(x1), ty_@0) 18.48/6.85 new_primEqInt(Neg(Zero), Neg(Zero)) 18.48/6.85 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 18.48/6.85 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 18.48/6.85 new_esEs15(EQ, GT) 18.48/6.85 new_esEs15(GT, EQ) 18.48/6.85 new_esEs26(x0, x1, ty_Ordering) 18.48/6.85 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 18.48/6.85 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 18.48/6.85 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 18.48/6.85 new_esEs19(x0, x1, ty_Int) 18.48/6.85 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 18.48/6.85 new_esEs15(LT, LT) 18.48/6.85 new_esEs12(Char(x0), Char(x1)) 18.48/6.85 new_esEs11(Integer(x0), Integer(x1)) 18.48/6.85 new_esEs17(Just(x0), Just(x1), ty_Integer) 18.48/6.85 new_esEs24(x0, x1, ty_Float) 18.48/6.85 new_esEs21(x0, x1, app(ty_[], x2)) 18.48/6.85 new_esEs21(x0, x1, app(ty_Maybe, x2)) 18.48/6.85 new_esEs18(Left(x0), Left(x1), ty_Int, x2) 18.48/6.85 new_esEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 18.48/6.85 new_esEs17(Just(x0), Just(x1), ty_Int) 18.48/6.85 new_esEs18(Left(x0), Right(x1), x2, x3) 18.48/6.85 new_esEs18(Right(x0), Left(x1), x2, x3) 18.48/6.85 new_esEs24(x0, x1, ty_Ordering) 18.48/6.85 new_esEs20(x0, x1, ty_Ordering) 18.48/6.85 new_esEs5(False, True) 18.48/6.85 new_esEs5(True, False) 18.48/6.85 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 18.48/6.85 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 18.48/6.85 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 18.48/6.85 new_esEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 18.48/6.85 new_esEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 18.48/6.85 new_esEs20(x0, x1, ty_Bool) 18.48/6.85 new_esEs18(Left(x0), Left(x1), ty_Integer, x2) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 18.48/6.85 new_esEs26(x0, x1, ty_Char) 18.48/6.85 new_esEs17(Just(x0), Just(x1), app(ty_[], x2)) 18.48/6.85 new_esEs5(True, True) 18.48/6.85 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.48/6.85 new_esEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 18.48/6.85 new_esEs17(Just(x0), Just(x1), ty_Char) 18.48/6.85 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.48/6.85 new_esEs26(x0, x1, app(ty_[], x2)) 18.48/6.85 new_esEs20(x0, x1, ty_Integer) 18.48/6.85 new_esEs18(Left(x0), Left(x1), ty_Double, x2) 18.48/6.85 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 18.48/6.85 new_primEqInt(Pos(Zero), Neg(Zero)) 18.48/6.85 new_primEqInt(Neg(Zero), Pos(Zero)) 18.48/6.85 new_esEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 18.48/6.85 new_sr(Pos(x0), Neg(x1)) 18.48/6.85 new_sr(Neg(x0), Pos(x1)) 18.48/6.85 new_esEs22(x0, x1, ty_Int) 18.48/6.85 new_esEs18(Left(x0), Left(x1), ty_Bool, x2) 18.48/6.85 new_esEs25(x0, x1, app(ty_Ratio, x2)) 18.48/6.85 new_esEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 18.48/6.85 new_esEs19(x0, x1, app(ty_Ratio, x2)) 18.48/6.85 new_esEs14(Double(x0, x1), Double(x2, x3)) 18.48/6.85 new_esEs17(Just(x0), Just(x1), ty_Bool) 18.48/6.85 new_primPlusNat0(Zero, x0) 18.48/6.85 new_esEs25(x0, x1, ty_Float) 18.48/6.85 new_esEs21(x0, x1, ty_Ordering) 18.48/6.85 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 18.48/6.85 new_esEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 18.48/6.85 new_primEqNat0(Succ(x0), Zero) 18.48/6.85 new_esEs19(x0, x1, ty_Bool) 18.48/6.85 new_esEs26(x0, x1, ty_Bool) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, ty_Float) 18.48/6.85 new_primPlusNat1(Zero, Succ(x0)) 18.48/6.85 new_asAs(True, x0) 18.48/6.85 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 18.48/6.85 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 18.48/6.85 new_esEs26(x0, x1, app(ty_Maybe, x2)) 18.48/6.85 new_esEs21(x0, x1, ty_Integer) 18.48/6.85 new_esEs20(x0, x1, app(ty_Maybe, x2)) 18.48/6.85 new_esEs25(x0, x1, ty_Bool) 18.48/6.85 new_esEs4(x0, x1, ty_Int) 18.48/6.85 new_primMulNat0(Succ(x0), Zero) 18.48/6.85 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 18.48/6.85 new_esEs15(LT, GT) 18.48/6.85 new_esEs15(GT, LT) 18.48/6.85 new_esEs17(Just(x0), Just(x1), ty_Double) 18.48/6.85 new_esEs25(x0, x1, ty_@0) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, ty_Ordering) 18.48/6.85 new_esEs25(x0, x1, app(ty_[], x2)) 18.48/6.85 new_esEs4(x0, x1, app(ty_Ratio, x2)) 18.48/6.85 new_esEs4(x0, x1, ty_Ordering) 18.48/6.85 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 18.48/6.85 new_esEs7(:(x0, x1), :(x2, x3), x4) 18.48/6.85 new_esEs18(Left(x0), Left(x1), ty_Char, x2) 18.48/6.85 new_primPlusNat1(Succ(x0), Zero) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, ty_Int) 18.48/6.85 new_esEs7([], :(x0, x1), x2) 18.48/6.85 new_esEs21(x0, x1, app(ty_Ratio, x2)) 18.48/6.85 new_esEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 18.48/6.85 new_primEqNat0(Succ(x0), Succ(x1)) 18.48/6.85 new_esEs17(Just(x0), Just(x1), ty_Ordering) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 18.48/6.85 new_esEs15(GT, GT) 18.48/6.85 new_primEqNat0(Zero, Succ(x0)) 18.48/6.85 new_esEs20(x0, x1, ty_Double) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 18.48/6.85 new_esEs26(x0, x1, ty_Integer) 18.48/6.85 new_esEs17(Just(x0), Nothing, x1) 18.48/6.85 new_esEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 18.48/6.85 new_esEs15(LT, EQ) 18.48/6.85 new_esEs15(EQ, LT) 18.48/6.85 new_esEs4(x0, x1, ty_Float) 18.48/6.85 new_esEs21(x0, x1, ty_Bool) 18.48/6.85 new_esEs26(x0, x1, ty_@0) 18.48/6.85 new_esEs24(x0, x1, ty_Integer) 18.48/6.85 new_esEs19(x0, x1, ty_@0) 18.48/6.85 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.48/6.85 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 18.48/6.85 new_esEs23(x0, x1, ty_Integer) 18.48/6.85 new_esEs17(Just(x0), Just(x1), ty_Float) 18.48/6.85 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.48/6.85 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 18.48/6.85 new_esEs4(x0, x1, app(ty_Maybe, x2)) 18.48/6.85 new_esEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, ty_Char) 18.48/6.85 new_esEs18(Left(x0), Left(x1), ty_@0, x2) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, ty_Double) 18.48/6.85 new_esEs19(x0, x1, app(ty_Maybe, x2)) 18.48/6.85 new_esEs17(Nothing, Nothing, x0) 18.48/6.85 new_esEs24(x0, x1, ty_Double) 18.48/6.85 new_esEs7(:(x0, x1), [], x2) 18.48/6.85 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 18.48/6.85 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 18.48/6.85 new_primEqNat0(Zero, Zero) 18.48/6.85 new_primMulNat0(Succ(x0), Succ(x1)) 18.48/6.85 new_esEs24(x0, x1, ty_@0) 18.48/6.85 new_esEs25(x0, x1, app(ty_Maybe, x2)) 18.48/6.85 new_esEs19(x0, x1, ty_Char) 18.48/6.85 new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 18.48/6.85 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 18.48/6.85 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 18.48/6.85 new_esEs19(x0, x1, app(ty_[], x2)) 18.48/6.85 new_esEs24(x0, x1, app(ty_Ratio, x2)) 18.48/6.85 new_primMulNat0(Zero, Succ(x0)) 18.48/6.85 new_esEs19(x0, x1, ty_Integer) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 18.48/6.85 new_esEs20(x0, x1, ty_Float) 18.48/6.85 new_esEs25(x0, x1, ty_Integer) 18.48/6.85 new_esEs22(x0, x1, ty_Integer) 18.48/6.85 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 18.48/6.85 new_esEs4(x0, x1, ty_@0) 18.48/6.85 new_esEs21(x0, x1, ty_Double) 18.48/6.85 new_esEs21(x0, x1, ty_Float) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, ty_Integer) 18.48/6.85 new_esEs10(@0, @0) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 18.48/6.85 new_esEs21(x0, x1, ty_@0) 18.48/6.85 new_esEs17(Nothing, Just(x0), x1) 18.48/6.85 new_esEs4(x0, x1, ty_Double) 18.48/6.85 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 18.48/6.85 new_esEs24(x0, x1, ty_Bool) 18.48/6.85 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 18.48/6.85 new_esEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 18.48/6.85 new_esEs5(False, False) 18.48/6.85 new_esEs20(x0, x1, app(ty_[], x2)) 18.48/6.85 new_primPlusNat0(Succ(x0), x1) 18.48/6.85 new_esEs4(x0, x1, ty_Char) 18.48/6.85 18.48/6.85 We have to consider all minimal (P,Q,R)-chains. 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (13) QDPSizeChangeProof (EQUIVALENT) 18.48/6.85 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.48/6.85 18.48/6.85 From the DPs we obtained the following set of size-change graphs: 18.48/6.85 *new_nubNub'1(yv172, yv173, yv174, yv175, yv176, yv177, ba) -> new_nubNub'10(yv172, yv173, yv174, yv175, new_esEs4(yv172, yv176, ba), yv177, ba) 18.48/6.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 6 >= 6, 7 >= 7 18.48/6.85 18.48/6.85 18.48/6.85 *new_nubNub'(:(yv860, yv861), yv87, yv88, bc) -> new_nubNub'1(yv860, yv861, yv87, yv88, yv87, yv88, bc) 18.48/6.85 The graph contains the following edges 1 > 1, 1 > 2, 2 >= 3, 3 >= 4, 2 >= 5, 3 >= 6, 4 >= 7 18.48/6.85 18.48/6.85 18.48/6.85 *new_nubNub'10(yv185, yv186, yv187, yv188, False, :(yv1900, yv1901), bb) -> new_nubNub'1(yv185, yv186, yv187, yv188, yv1900, yv1901, bb) 18.48/6.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 6 > 5, 6 > 6, 7 >= 7 18.48/6.85 18.48/6.85 18.48/6.85 *new_nubNub'10(yv185, yv186, yv187, yv188, False, [], bb) -> new_nubNub'(yv186, yv185, :(yv187, yv188), bb) 18.48/6.85 The graph contains the following edges 2 >= 1, 1 >= 2, 7 >= 4 18.48/6.85 18.48/6.85 18.48/6.85 *new_nubNub'10(yv185, yv186, yv187, yv188, True, yv190, bb) -> new_nubNub'(yv186, yv187, yv188, bb) 18.48/6.85 The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 7 >= 4 18.48/6.85 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (14) 18.48/6.85 YES 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (15) 18.48/6.85 Obligation: 18.48/6.85 Q DP problem: 18.48/6.85 The TRS P consists of the following rules: 18.48/6.85 18.48/6.85 new_primMulNat(Succ(yv172100), Succ(yv176000)) -> new_primMulNat(yv172100, Succ(yv176000)) 18.48/6.85 18.48/6.85 R is empty. 18.48/6.85 Q is empty. 18.48/6.85 We have to consider all minimal (P,Q,R)-chains. 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (16) QDPSizeChangeProof (EQUIVALENT) 18.48/6.85 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.48/6.85 18.48/6.85 From the DPs we obtained the following set of size-change graphs: 18.48/6.85 *new_primMulNat(Succ(yv172100), Succ(yv176000)) -> new_primMulNat(yv172100, Succ(yv176000)) 18.48/6.85 The graph contains the following edges 1 > 1, 2 >= 2 18.48/6.85 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (17) 18.48/6.85 YES 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (18) 18.48/6.85 Obligation: 18.48/6.85 Q DP problem: 18.48/6.85 The TRS P consists of the following rules: 18.48/6.85 18.48/6.85 new_primPlusNat(Succ(yv19700), Succ(yv1760000)) -> new_primPlusNat(yv19700, yv1760000) 18.48/6.85 18.48/6.85 R is empty. 18.48/6.85 Q is empty. 18.48/6.85 We have to consider all minimal (P,Q,R)-chains. 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (19) QDPSizeChangeProof (EQUIVALENT) 18.48/6.85 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.48/6.85 18.48/6.85 From the DPs we obtained the following set of size-change graphs: 18.48/6.85 *new_primPlusNat(Succ(yv19700), Succ(yv1760000)) -> new_primPlusNat(yv19700, yv1760000) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2 18.48/6.85 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (20) 18.48/6.85 YES 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (21) 18.48/6.85 Obligation: 18.48/6.85 Q DP problem: 18.48/6.85 The TRS P consists of the following rules: 18.48/6.85 18.48/6.85 new_primEqNat(Succ(yv17200), Succ(yv17600)) -> new_primEqNat(yv17200, yv17600) 18.48/6.85 18.48/6.85 R is empty. 18.48/6.85 Q is empty. 18.48/6.85 We have to consider all minimal (P,Q,R)-chains. 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (22) QDPSizeChangeProof (EQUIVALENT) 18.48/6.85 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.48/6.85 18.48/6.85 From the DPs we obtained the following set of size-change graphs: 18.48/6.85 *new_primEqNat(Succ(yv17200), Succ(yv17600)) -> new_primEqNat(yv17200, yv17600) 18.48/6.85 The graph contains the following edges 1 > 1, 2 > 2 18.48/6.85 18.48/6.85 18.48/6.85 ---------------------------------------- 18.48/6.85 18.48/6.85 (23) 18.48/6.85 YES 18.48/6.89 EOF