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