16.23/6.42 YES 18.24/6.99 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 18.24/6.99 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 18.24/6.99 18.24/6.99 18.24/6.99 H-Termination with start terms of the given HASKELL could be proven: 18.24/6.99 18.24/6.99 (0) HASKELL 18.24/6.99 (1) BR [EQUIVALENT, 15 ms] 18.24/6.99 (2) HASKELL 18.24/6.99 (3) COR [EQUIVALENT, 0 ms] 18.24/6.99 (4) HASKELL 18.24/6.99 (5) LetRed [EQUIVALENT, 0 ms] 18.24/6.99 (6) HASKELL 18.24/6.99 (7) Narrow [SOUND, 0 ms] 18.24/6.99 (8) AND 18.24/6.99 (9) QDP 18.24/6.99 (10) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.24/6.99 (11) YES 18.24/6.99 (12) QDP 18.24/6.99 (13) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.24/6.99 (14) YES 18.24/6.99 (15) QDP 18.24/6.99 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.24/6.99 (17) YES 18.24/6.99 (18) QDP 18.24/6.99 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.24/6.99 (20) YES 18.24/6.99 (21) QDP 18.24/6.99 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.24/6.99 (23) YES 18.24/6.99 18.24/6.99 18.24/6.99 ---------------------------------------- 18.24/6.99 18.24/6.99 (0) 18.24/6.99 Obligation: 18.24/6.99 mainModule Main 18.24/6.99 module Maybe where { 18.24/6.99 import qualified List; 18.24/6.99 import qualified Main; 18.24/6.99 import qualified Prelude; 18.24/6.99 } 18.24/6.99 module List where { 18.24/6.99 import qualified Main; 18.24/6.99 import qualified Maybe; 18.24/6.99 import qualified Prelude; 18.24/6.99 nub :: Eq a => [a] -> [a]; 18.24/6.99 nub l = nub' l [] where { 18.24/6.99 nub' [] _ = []; 18.24/6.99 nub' (x : xs) ls | x `elem` ls = nub' xs ls 18.24/6.99 | otherwise = x : nub' xs (x : ls); 18.24/6.99 }; 18.24/6.99 18.24/6.99 } 18.24/6.99 module Main where { 18.24/6.99 import qualified List; 18.24/6.99 import qualified Maybe; 18.24/6.99 import qualified Prelude; 18.24/6.99 } 18.24/6.99 18.24/6.99 ---------------------------------------- 18.24/6.99 18.24/6.99 (1) BR (EQUIVALENT) 18.24/6.99 Replaced joker patterns by fresh variables and removed binding patterns. 18.24/6.99 ---------------------------------------- 18.24/6.99 18.24/6.99 (2) 18.24/6.99 Obligation: 18.24/6.99 mainModule Main 18.24/6.99 module Maybe where { 18.24/6.99 import qualified List; 18.24/6.99 import qualified Main; 18.24/6.99 import qualified Prelude; 18.24/6.99 } 18.24/6.99 module List where { 18.24/6.99 import qualified Main; 18.24/6.99 import qualified Maybe; 18.24/6.99 import qualified Prelude; 18.24/6.99 nub :: Eq a => [a] -> [a]; 18.24/6.99 nub l = nub' l [] where { 18.24/6.99 nub' [] xw = []; 18.24/6.99 nub' (x : xs) ls | x `elem` ls = nub' xs ls 18.24/6.99 | otherwise = x : nub' xs (x : ls); 18.24/6.99 }; 18.24/6.99 18.24/6.99 } 18.24/6.99 module Main where { 18.24/6.99 import qualified List; 18.24/6.99 import qualified Maybe; 18.24/6.99 import qualified Prelude; 18.24/6.99 } 18.24/6.99 18.24/6.99 ---------------------------------------- 18.24/6.99 18.24/6.99 (3) COR (EQUIVALENT) 18.24/6.99 Cond Reductions: 18.24/6.99 The following Function with conditions 18.24/6.99 "undefined |Falseundefined; 18.24/6.99 " 18.24/6.99 is transformed to 18.24/6.99 "undefined = undefined1; 18.24/6.99 " 18.24/6.99 "undefined0 True = undefined; 18.24/6.99 " 18.24/6.99 "undefined1 = undefined0 False; 18.24/6.99 " 18.24/6.99 The following Function with conditions 18.24/6.99 "nub' [] xw = []; 18.24/6.99 nub' (x : xs) ls|x `elem` lsnub' xs ls|otherwisex : nub' xs (x : ls); 18.24/6.99 " 18.24/6.99 is transformed to 18.24/6.99 "nub' [] xw = nub'3 [] xw; 18.24/6.99 nub' (x : xs) ls = nub'2 (x : xs) ls; 18.24/6.99 " 18.24/6.99 "nub'0 x xs ls True = x : nub' xs (x : ls); 18.24/6.99 " 18.24/6.99 "nub'1 x xs ls True = nub' xs ls; 18.24/6.99 nub'1 x xs ls False = nub'0 x xs ls otherwise; 18.24/6.99 " 18.24/6.99 "nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 18.24/6.99 " 18.24/6.99 "nub'3 [] xw = []; 18.24/6.99 nub'3 xz yu = nub'2 xz yu; 18.24/6.99 " 18.24/6.99 18.24/6.99 ---------------------------------------- 18.24/6.99 18.24/6.99 (4) 18.24/6.99 Obligation: 18.24/6.99 mainModule Main 18.24/6.99 module Maybe where { 18.24/6.99 import qualified List; 18.24/6.99 import qualified Main; 18.24/6.99 import qualified Prelude; 18.24/6.99 } 18.24/6.99 module List where { 18.24/6.99 import qualified Main; 18.24/6.99 import qualified Maybe; 18.24/6.99 import qualified Prelude; 18.24/6.99 nub :: Eq a => [a] -> [a]; 18.24/6.99 nub l = nub' l [] where { 18.24/6.99 nub' [] xw = nub'3 [] xw; 18.24/6.99 nub' (x : xs) ls = nub'2 (x : xs) ls; 18.24/6.99 nub'0 x xs ls True = x : nub' xs (x : ls); 18.24/6.99 nub'1 x xs ls True = nub' xs ls; 18.24/6.99 nub'1 x xs ls False = nub'0 x xs ls otherwise; 18.24/6.99 nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 18.24/6.99 nub'3 [] xw = []; 18.24/6.99 nub'3 xz yu = nub'2 xz yu; 18.24/6.99 }; 18.24/6.99 18.24/6.99 } 18.24/6.99 module Main where { 18.24/6.99 import qualified List; 18.24/6.99 import qualified Maybe; 18.24/6.99 import qualified Prelude; 18.24/6.99 } 18.24/6.99 18.24/6.99 ---------------------------------------- 18.24/6.99 18.24/6.99 (5) LetRed (EQUIVALENT) 18.24/6.99 Let/Where Reductions: 18.24/6.99 The bindings of the following Let/Where expression 18.24/6.99 "nub' l [] where { 18.24/6.99 nub' [] xw = nub'3 [] xw; 18.24/6.99 nub' (x : xs) ls = nub'2 (x : xs) ls; 18.24/6.99 ; 18.24/6.99 nub'0 x xs ls True = x : nub' xs (x : ls); 18.24/6.99 ; 18.24/6.99 nub'1 x xs ls True = nub' xs ls; 18.24/6.99 nub'1 x xs ls False = nub'0 x xs ls otherwise; 18.24/6.99 ; 18.24/6.99 nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 18.24/6.99 ; 18.24/6.99 nub'3 [] xw = []; 18.24/6.99 nub'3 xz yu = nub'2 xz yu; 18.24/6.99 } 18.24/6.99 " 18.24/6.99 are unpacked to the following functions on top level 18.24/6.99 "nubNub'1 x xs ls True = nubNub' xs ls; 18.24/6.99 nubNub'1 x xs ls False = nubNub'0 x xs ls otherwise; 18.24/6.99 " 18.24/6.99 "nubNub' [] xw = nubNub'3 [] xw; 18.24/6.99 nubNub' (x : xs) ls = nubNub'2 (x : xs) ls; 18.24/6.99 " 18.24/6.99 "nubNub'0 x xs ls True = x : nubNub' xs (x : ls); 18.24/6.99 " 18.24/6.99 "nubNub'2 (x : xs) ls = nubNub'1 x xs ls (x `elem` ls); 18.24/6.99 " 18.24/6.99 "nubNub'3 [] xw = []; 18.24/6.99 nubNub'3 xz yu = nubNub'2 xz yu; 18.24/6.99 " 18.24/6.99 18.24/6.99 ---------------------------------------- 18.24/6.99 18.24/6.99 (6) 18.24/6.99 Obligation: 18.24/6.99 mainModule Main 18.24/6.99 module Maybe where { 18.24/6.99 import qualified List; 18.24/6.99 import qualified Main; 18.24/6.99 import qualified Prelude; 18.24/6.99 } 18.24/6.99 module List where { 18.24/6.99 import qualified Main; 18.24/6.99 import qualified Maybe; 18.24/6.99 import qualified Prelude; 18.24/6.99 nub :: Eq a => [a] -> [a]; 18.24/6.99 nub l = nubNub' l []; 18.24/6.99 18.24/6.99 nubNub' [] xw = nubNub'3 [] xw; 18.24/6.99 nubNub' (x : xs) ls = nubNub'2 (x : xs) ls; 18.24/6.99 18.24/6.99 nubNub'0 x xs ls True = x : nubNub' xs (x : ls); 18.24/6.99 18.24/6.99 nubNub'1 x xs ls True = nubNub' xs ls; 18.24/6.99 nubNub'1 x xs ls False = nubNub'0 x xs ls otherwise; 18.24/6.99 18.24/6.99 nubNub'2 (x : xs) ls = nubNub'1 x xs ls (x `elem` ls); 18.24/6.99 18.24/6.99 nubNub'3 [] xw = []; 18.24/6.99 nubNub'3 xz yu = nubNub'2 xz yu; 18.24/6.99 18.24/6.99 } 18.24/6.99 module Main where { 18.24/6.99 import qualified List; 18.24/6.99 import qualified Maybe; 18.24/6.99 import qualified Prelude; 18.24/6.99 } 18.24/6.99 18.24/6.99 ---------------------------------------- 18.24/6.99 18.24/6.99 (7) Narrow (SOUND) 18.24/6.99 Haskell To QDPs 18.24/6.99 18.24/6.99 digraph dp_graph { 18.24/6.99 node [outthreshold=100, inthreshold=100];1[label="List.nub",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 18.24/6.99 3[label="List.nub yv3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 18.24/6.99 4[label="List.nubNub' yv3 []",fontsize=16,color="burlywood",shape="box"];3173[label="yv3/yv30 : yv31",fontsize=10,color="white",style="solid",shape="box"];4 -> 3173[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3173 -> 5[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3174[label="yv3/[]",fontsize=10,color="white",style="solid",shape="box"];4 -> 3174[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3174 -> 6[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 5[label="List.nubNub' (yv30 : yv31) []",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 18.24/6.99 6[label="List.nubNub' [] []",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 18.24/6.99 7[label="List.nubNub'2 (yv30 : yv31) []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 18.24/6.99 8[label="List.nubNub'3 [] []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 18.24/6.99 9[label="List.nubNub'1 yv30 yv31 [] (yv30 `elem` [])",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 18.24/6.99 10[label="[]",fontsize=16,color="green",shape="box"];11[label="List.nubNub'1 yv30 yv31 [] (any . (==))",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 18.24/6.99 12[label="List.nubNub'1 yv30 yv31 [] (any ((==) yv30) [])",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 18.24/6.99 13[label="List.nubNub'1 yv30 yv31 [] (or . map ((==) yv30))",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 18.24/6.99 14[label="List.nubNub'1 yv30 yv31 [] (or (map ((==) yv30) []))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 18.24/6.99 15[label="List.nubNub'1 yv30 yv31 [] (foldr (||) False (map ((==) yv30) []))",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 18.24/6.99 16[label="List.nubNub'1 yv30 yv31 [] (foldr (||) False [])",fontsize=16,color="black",shape="box"];16 -> 17[label="",style="solid", color="black", weight=3]; 18.24/6.99 17[label="List.nubNub'1 yv30 yv31 [] False",fontsize=16,color="black",shape="box"];17 -> 18[label="",style="solid", color="black", weight=3]; 18.24/6.99 18[label="List.nubNub'0 yv30 yv31 [] otherwise",fontsize=16,color="black",shape="box"];18 -> 19[label="",style="solid", color="black", weight=3]; 18.24/6.99 19[label="List.nubNub'0 yv30 yv31 [] True",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 18.24/6.99 20[label="yv30 : List.nubNub' yv31 (yv30 : [])",fontsize=16,color="green",shape="box"];20 -> 21[label="",style="dashed", color="green", weight=3]; 18.24/6.99 21 -> 1385[label="",style="dashed", color="red", weight=0]; 18.24/6.99 21[label="List.nubNub' yv31 (yv30 : [])",fontsize=16,color="magenta"];21 -> 1386[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 21 -> 1387[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 21 -> 1388[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 1386[label="yv30",fontsize=16,color="green",shape="box"];1387[label="yv31",fontsize=16,color="green",shape="box"];1388[label="[]",fontsize=16,color="green",shape="box"];1385[label="List.nubNub' yv70 (yv71 : yv72)",fontsize=16,color="burlywood",shape="triangle"];3175[label="yv70/yv700 : yv701",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3175[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3175 -> 1473[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3176[label="yv70/[]",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3176[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3176 -> 1474[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 1473[label="List.nubNub' (yv700 : yv701) (yv71 : yv72)",fontsize=16,color="black",shape="box"];1473 -> 1475[label="",style="solid", color="black", weight=3]; 18.24/6.99 1474[label="List.nubNub' [] (yv71 : yv72)",fontsize=16,color="black",shape="box"];1474 -> 1476[label="",style="solid", color="black", weight=3]; 18.24/6.99 1475[label="List.nubNub'2 (yv700 : yv701) (yv71 : yv72)",fontsize=16,color="black",shape="box"];1475 -> 1477[label="",style="solid", color="black", weight=3]; 18.24/6.99 1476[label="List.nubNub'3 [] (yv71 : yv72)",fontsize=16,color="black",shape="box"];1476 -> 1478[label="",style="solid", color="black", weight=3]; 18.24/6.99 1477[label="List.nubNub'1 yv700 yv701 (yv71 : yv72) (yv700 `elem` yv71 : yv72)",fontsize=16,color="black",shape="box"];1477 -> 1479[label="",style="solid", color="black", weight=3]; 18.24/6.99 1478[label="[]",fontsize=16,color="green",shape="box"];1479[label="List.nubNub'1 yv700 yv701 (yv71 : yv72) (any . (==))",fontsize=16,color="black",shape="box"];1479 -> 1480[label="",style="solid", color="black", weight=3]; 18.24/6.99 1480[label="List.nubNub'1 yv700 yv701 (yv71 : yv72) (any ((==) yv700) (yv71 : yv72))",fontsize=16,color="black",shape="box"];1480 -> 1481[label="",style="solid", color="black", weight=3]; 18.24/6.99 1481[label="List.nubNub'1 yv700 yv701 (yv71 : yv72) (or . map ((==) yv700))",fontsize=16,color="black",shape="box"];1481 -> 1482[label="",style="solid", color="black", weight=3]; 18.24/6.99 1482[label="List.nubNub'1 yv700 yv701 (yv71 : yv72) (or (map ((==) yv700) (yv71 : yv72)))",fontsize=16,color="black",shape="box"];1482 -> 1483[label="",style="solid", color="black", weight=3]; 18.24/6.99 1483[label="List.nubNub'1 yv700 yv701 (yv71 : yv72) (foldr (||) False (map ((==) yv700) (yv71 : yv72)))",fontsize=16,color="black",shape="box"];1483 -> 1484[label="",style="solid", color="black", weight=3]; 18.24/6.99 1484 -> 2446[label="",style="dashed", color="red", weight=0]; 18.24/6.99 1484[label="List.nubNub'1 yv700 yv701 (yv71 : yv72) (foldr (||) False (((==) yv700 yv71) : map ((==) yv700) yv72))",fontsize=16,color="magenta"];1484 -> 2447[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 1484 -> 2448[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 1484 -> 2449[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 1484 -> 2450[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 1484 -> 2451[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 1484 -> 2452[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2447[label="yv701",fontsize=16,color="green",shape="box"];2448[label="yv71",fontsize=16,color="green",shape="box"];2449[label="yv700",fontsize=16,color="green",shape="box"];2450[label="yv72",fontsize=16,color="green",shape="box"];2451[label="yv71",fontsize=16,color="green",shape="box"];2452[label="yv72",fontsize=16,color="green",shape="box"];2446[label="List.nubNub'1 yv163 yv164 (yv165 : yv166) (foldr (||) False (((==) yv163 yv167) : map ((==) yv163) yv168))",fontsize=16,color="black",shape="triangle"];2446 -> 2483[label="",style="solid", color="black", weight=3]; 18.24/6.99 2483 -> 2484[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2483[label="List.nubNub'1 yv163 yv164 (yv165 : yv166) ((||) (==) yv163 yv167 foldr (||) False (map ((==) yv163) yv168))",fontsize=16,color="magenta"];2483 -> 2485[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2483 -> 2486[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2483 -> 2487[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2483 -> 2488[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2483 -> 2489[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2483 -> 2490[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2485[label="(==) yv163 yv167",fontsize=16,color="blue",shape="box"];3177[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3177[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3177 -> 2491[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3178[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3178[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3178 -> 2492[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3179[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3179[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3179 -> 2493[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3180[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3180[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3180 -> 2494[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3181[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3181[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3181 -> 2495[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3182[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3182[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3182 -> 2496[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3183[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3183[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3183 -> 2497[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3184[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3184[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3184 -> 2498[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3185[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3185[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3185 -> 2499[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3186[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3186[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3186 -> 2500[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3187[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3187[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3187 -> 2501[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3188[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3188[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3188 -> 2502[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3189[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3189[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3189 -> 2503[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3190[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3190[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3190 -> 2504[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2486[label="yv164",fontsize=16,color="green",shape="box"];2487[label="yv168",fontsize=16,color="green",shape="box"];2488[label="yv163",fontsize=16,color="green",shape="box"];2489[label="yv165",fontsize=16,color="green",shape="box"];2490[label="yv166",fontsize=16,color="green",shape="box"];2484[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) ((||) yv180 foldr (||) False (map ((==) yv176) yv181))",fontsize=16,color="burlywood",shape="triangle"];3191[label="yv180/False",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3191[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3191 -> 2505[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3192[label="yv180/True",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3192[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3192 -> 2506[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2491[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3193[label="yv163/()",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3193[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3193 -> 2507[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2492[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3194[label="yv163/yv1630 :% yv1631",fontsize=10,color="white",style="solid",shape="box"];2492 -> 3194[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3194 -> 2508[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2493[label="(==) yv163 yv167",fontsize=16,color="black",shape="triangle"];2493 -> 2509[label="",style="solid", color="black", weight=3]; 18.24/6.99 2494[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3195[label="yv163/LT",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3195[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3195 -> 2510[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3196[label="yv163/EQ",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3196[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3196 -> 2511[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3197[label="yv163/GT",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3197[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3197 -> 2512[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2495[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3198[label="yv163/(yv1630,yv1631,yv1632)",fontsize=10,color="white",style="solid",shape="box"];2495 -> 3198[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3198 -> 2513[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2496[label="(==) yv163 yv167",fontsize=16,color="black",shape="triangle"];2496 -> 2514[label="",style="solid", color="black", weight=3]; 18.24/6.99 2497[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3199[label="yv163/(yv1630,yv1631)",fontsize=10,color="white",style="solid",shape="box"];2497 -> 3199[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3199 -> 2515[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2498[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3200[label="yv163/yv1630 : yv1631",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3200[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3200 -> 2516[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3201[label="yv163/[]",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3201[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3201 -> 2517[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2499[label="(==) yv163 yv167",fontsize=16,color="black",shape="triangle"];2499 -> 2518[label="",style="solid", color="black", weight=3]; 18.24/6.99 2500[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3202[label="yv163/False",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3202[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3202 -> 2519[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3203[label="yv163/True",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3203[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3203 -> 2520[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2501[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3204[label="yv163/Left yv1630",fontsize=10,color="white",style="solid",shape="box"];2501 -> 3204[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3204 -> 2521[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3205[label="yv163/Right yv1630",fontsize=10,color="white",style="solid",shape="box"];2501 -> 3205[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3205 -> 2522[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2502[label="(==) yv163 yv167",fontsize=16,color="black",shape="triangle"];2502 -> 2523[label="",style="solid", color="black", weight=3]; 18.24/6.99 2503[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3206[label="yv163/Integer yv1630",fontsize=10,color="white",style="solid",shape="box"];2503 -> 3206[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3206 -> 2524[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2504[label="(==) yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3207[label="yv163/Nothing",fontsize=10,color="white",style="solid",shape="box"];2504 -> 3207[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3207 -> 2525[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3208[label="yv163/Just yv1630",fontsize=10,color="white",style="solid",shape="box"];2504 -> 3208[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3208 -> 2526[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2505[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) ((||) False foldr (||) False (map ((==) yv176) yv181))",fontsize=16,color="black",shape="box"];2505 -> 2527[label="",style="solid", color="black", weight=3]; 18.24/6.99 2506[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) ((||) True foldr (||) False (map ((==) yv176) yv181))",fontsize=16,color="black",shape="box"];2506 -> 2528[label="",style="solid", color="black", weight=3]; 18.24/6.99 2507[label="(==) () yv167",fontsize=16,color="burlywood",shape="box"];3209[label="yv167/()",fontsize=10,color="white",style="solid",shape="box"];2507 -> 3209[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3209 -> 2529[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2508[label="(==) yv1630 :% yv1631 yv167",fontsize=16,color="burlywood",shape="box"];3210[label="yv167/yv1670 :% yv1671",fontsize=10,color="white",style="solid",shape="box"];2508 -> 3210[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3210 -> 2530[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2509[label="primEqDouble yv163 yv167",fontsize=16,color="burlywood",shape="box"];3211[label="yv163/Double yv1630 yv1631",fontsize=10,color="white",style="solid",shape="box"];2509 -> 3211[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3211 -> 2531[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2510[label="(==) LT yv167",fontsize=16,color="burlywood",shape="box"];3212[label="yv167/LT",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3212[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3212 -> 2532[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3213[label="yv167/EQ",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3213[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3213 -> 2533[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3214[label="yv167/GT",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3214[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3214 -> 2534[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2511[label="(==) EQ yv167",fontsize=16,color="burlywood",shape="box"];3215[label="yv167/LT",fontsize=10,color="white",style="solid",shape="box"];2511 -> 3215[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3215 -> 2535[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3216[label="yv167/EQ",fontsize=10,color="white",style="solid",shape="box"];2511 -> 3216[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3216 -> 2536[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3217[label="yv167/GT",fontsize=10,color="white",style="solid",shape="box"];2511 -> 3217[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3217 -> 2537[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2512[label="(==) GT yv167",fontsize=16,color="burlywood",shape="box"];3218[label="yv167/LT",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3218[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3218 -> 2538[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3219[label="yv167/EQ",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3219[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3219 -> 2539[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3220[label="yv167/GT",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3220[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3220 -> 2540[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2513[label="(==) (yv1630,yv1631,yv1632) yv167",fontsize=16,color="burlywood",shape="box"];3221[label="yv167/(yv1670,yv1671,yv1672)",fontsize=10,color="white",style="solid",shape="box"];2513 -> 3221[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3221 -> 2541[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2514[label="primEqInt yv163 yv167",fontsize=16,color="burlywood",shape="triangle"];3222[label="yv163/Pos yv1630",fontsize=10,color="white",style="solid",shape="box"];2514 -> 3222[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3222 -> 2542[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3223[label="yv163/Neg yv1630",fontsize=10,color="white",style="solid",shape="box"];2514 -> 3223[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3223 -> 2543[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2515[label="(==) (yv1630,yv1631) yv167",fontsize=16,color="burlywood",shape="box"];3224[label="yv167/(yv1670,yv1671)",fontsize=10,color="white",style="solid",shape="box"];2515 -> 3224[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3224 -> 2544[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2516[label="(==) yv1630 : yv1631 yv167",fontsize=16,color="burlywood",shape="box"];3225[label="yv167/yv1670 : yv1671",fontsize=10,color="white",style="solid",shape="box"];2516 -> 3225[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3225 -> 2545[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3226[label="yv167/[]",fontsize=10,color="white",style="solid",shape="box"];2516 -> 3226[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3226 -> 2546[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2517[label="(==) [] yv167",fontsize=16,color="burlywood",shape="box"];3227[label="yv167/yv1670 : yv1671",fontsize=10,color="white",style="solid",shape="box"];2517 -> 3227[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3227 -> 2547[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3228[label="yv167/[]",fontsize=10,color="white",style="solid",shape="box"];2517 -> 3228[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3228 -> 2548[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2518[label="primEqFloat yv163 yv167",fontsize=16,color="burlywood",shape="box"];3229[label="yv163/Float yv1630 yv1631",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3229[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3229 -> 2549[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2519[label="(==) False yv167",fontsize=16,color="burlywood",shape="box"];3230[label="yv167/False",fontsize=10,color="white",style="solid",shape="box"];2519 -> 3230[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3230 -> 2550[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3231[label="yv167/True",fontsize=10,color="white",style="solid",shape="box"];2519 -> 3231[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3231 -> 2551[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2520[label="(==) True yv167",fontsize=16,color="burlywood",shape="box"];3232[label="yv167/False",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3232[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3232 -> 2552[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3233[label="yv167/True",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3233[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3233 -> 2553[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2521[label="(==) Left yv1630 yv167",fontsize=16,color="burlywood",shape="box"];3234[label="yv167/Left yv1670",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3234[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3234 -> 2554[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3235[label="yv167/Right yv1670",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3235[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3235 -> 2555[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2522[label="(==) Right yv1630 yv167",fontsize=16,color="burlywood",shape="box"];3236[label="yv167/Left yv1670",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3236[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3236 -> 2556[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3237[label="yv167/Right yv1670",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3237[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3237 -> 2557[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2523[label="primEqChar yv163 yv167",fontsize=16,color="burlywood",shape="box"];3238[label="yv163/Char yv1630",fontsize=10,color="white",style="solid",shape="box"];2523 -> 3238[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3238 -> 2558[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2524[label="(==) Integer yv1630 yv167",fontsize=16,color="burlywood",shape="box"];3239[label="yv167/Integer yv1670",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3239[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3239 -> 2559[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2525[label="(==) Nothing yv167",fontsize=16,color="burlywood",shape="box"];3240[label="yv167/Nothing",fontsize=10,color="white",style="solid",shape="box"];2525 -> 3240[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3240 -> 2560[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3241[label="yv167/Just yv1670",fontsize=10,color="white",style="solid",shape="box"];2525 -> 3241[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3241 -> 2561[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2526[label="(==) Just yv1630 yv167",fontsize=16,color="burlywood",shape="box"];3242[label="yv167/Nothing",fontsize=10,color="white",style="solid",shape="box"];2526 -> 3242[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3242 -> 2562[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3243[label="yv167/Just yv1670",fontsize=10,color="white",style="solid",shape="box"];2526 -> 3243[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3243 -> 2563[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2527[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) (foldr (||) False (map ((==) yv176) yv181))",fontsize=16,color="burlywood",shape="box"];3244[label="yv181/yv1810 : yv1811",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3244[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3244 -> 2564[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3245[label="yv181/[]",fontsize=10,color="white",style="solid",shape="box"];2527 -> 3245[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3245 -> 2565[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2528[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) True",fontsize=16,color="black",shape="box"];2528 -> 2566[label="",style="solid", color="black", weight=3]; 18.24/6.99 2529[label="(==) () ()",fontsize=16,color="black",shape="box"];2529 -> 2567[label="",style="solid", color="black", weight=3]; 18.24/6.99 2530[label="(==) yv1630 :% yv1631 yv1670 :% yv1671",fontsize=16,color="black",shape="box"];2530 -> 2568[label="",style="solid", color="black", weight=3]; 18.24/6.99 2531[label="primEqDouble (Double yv1630 yv1631) yv167",fontsize=16,color="burlywood",shape="box"];3246[label="yv167/Double yv1670 yv1671",fontsize=10,color="white",style="solid",shape="box"];2531 -> 3246[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3246 -> 2569[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2532[label="(==) LT LT",fontsize=16,color="black",shape="box"];2532 -> 2570[label="",style="solid", color="black", weight=3]; 18.24/6.99 2533[label="(==) LT EQ",fontsize=16,color="black",shape="box"];2533 -> 2571[label="",style="solid", color="black", weight=3]; 18.24/6.99 2534[label="(==) LT GT",fontsize=16,color="black",shape="box"];2534 -> 2572[label="",style="solid", color="black", weight=3]; 18.24/6.99 2535[label="(==) EQ LT",fontsize=16,color="black",shape="box"];2535 -> 2573[label="",style="solid", color="black", weight=3]; 18.24/6.99 2536[label="(==) EQ EQ",fontsize=16,color="black",shape="box"];2536 -> 2574[label="",style="solid", color="black", weight=3]; 18.24/6.99 2537[label="(==) EQ GT",fontsize=16,color="black",shape="box"];2537 -> 2575[label="",style="solid", color="black", weight=3]; 18.24/6.99 2538[label="(==) GT LT",fontsize=16,color="black",shape="box"];2538 -> 2576[label="",style="solid", color="black", weight=3]; 18.24/6.99 2539[label="(==) GT EQ",fontsize=16,color="black",shape="box"];2539 -> 2577[label="",style="solid", color="black", weight=3]; 18.24/6.99 2540[label="(==) GT GT",fontsize=16,color="black",shape="box"];2540 -> 2578[label="",style="solid", color="black", weight=3]; 18.24/6.99 2541[label="(==) (yv1630,yv1631,yv1632) (yv1670,yv1671,yv1672)",fontsize=16,color="black",shape="box"];2541 -> 2579[label="",style="solid", color="black", weight=3]; 18.24/6.99 2542[label="primEqInt (Pos yv1630) yv167",fontsize=16,color="burlywood",shape="box"];3247[label="yv1630/Succ yv16300",fontsize=10,color="white",style="solid",shape="box"];2542 -> 3247[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3247 -> 2580[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3248[label="yv1630/Zero",fontsize=10,color="white",style="solid",shape="box"];2542 -> 3248[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3248 -> 2581[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2543[label="primEqInt (Neg yv1630) yv167",fontsize=16,color="burlywood",shape="box"];3249[label="yv1630/Succ yv16300",fontsize=10,color="white",style="solid",shape="box"];2543 -> 3249[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3249 -> 2582[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3250[label="yv1630/Zero",fontsize=10,color="white",style="solid",shape="box"];2543 -> 3250[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3250 -> 2583[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2544[label="(==) (yv1630,yv1631) (yv1670,yv1671)",fontsize=16,color="black",shape="box"];2544 -> 2584[label="",style="solid", color="black", weight=3]; 18.24/6.99 2545[label="(==) yv1630 : yv1631 yv1670 : yv1671",fontsize=16,color="black",shape="box"];2545 -> 2585[label="",style="solid", color="black", weight=3]; 18.24/6.99 2546[label="(==) yv1630 : yv1631 []",fontsize=16,color="black",shape="box"];2546 -> 2586[label="",style="solid", color="black", weight=3]; 18.24/6.99 2547[label="(==) [] yv1670 : yv1671",fontsize=16,color="black",shape="box"];2547 -> 2587[label="",style="solid", color="black", weight=3]; 18.24/6.99 2548[label="(==) [] []",fontsize=16,color="black",shape="box"];2548 -> 2588[label="",style="solid", color="black", weight=3]; 18.24/6.99 2549[label="primEqFloat (Float yv1630 yv1631) yv167",fontsize=16,color="burlywood",shape="box"];3251[label="yv167/Float yv1670 yv1671",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3251[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3251 -> 2589[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2550[label="(==) False False",fontsize=16,color="black",shape="box"];2550 -> 2590[label="",style="solid", color="black", weight=3]; 18.24/6.99 2551[label="(==) False True",fontsize=16,color="black",shape="box"];2551 -> 2591[label="",style="solid", color="black", weight=3]; 18.24/6.99 2552[label="(==) True False",fontsize=16,color="black",shape="box"];2552 -> 2592[label="",style="solid", color="black", weight=3]; 18.24/6.99 2553[label="(==) True True",fontsize=16,color="black",shape="box"];2553 -> 2593[label="",style="solid", color="black", weight=3]; 18.24/6.99 2554[label="(==) Left yv1630 Left yv1670",fontsize=16,color="black",shape="box"];2554 -> 2594[label="",style="solid", color="black", weight=3]; 18.24/6.99 2555[label="(==) Left yv1630 Right yv1670",fontsize=16,color="black",shape="box"];2555 -> 2595[label="",style="solid", color="black", weight=3]; 18.24/6.99 2556[label="(==) Right yv1630 Left yv1670",fontsize=16,color="black",shape="box"];2556 -> 2596[label="",style="solid", color="black", weight=3]; 18.24/6.99 2557[label="(==) Right yv1630 Right yv1670",fontsize=16,color="black",shape="box"];2557 -> 2597[label="",style="solid", color="black", weight=3]; 18.24/6.99 2558[label="primEqChar (Char yv1630) yv167",fontsize=16,color="burlywood",shape="box"];3252[label="yv167/Char yv1670",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3252[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3252 -> 2598[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2559[label="(==) Integer yv1630 Integer yv1670",fontsize=16,color="black",shape="box"];2559 -> 2599[label="",style="solid", color="black", weight=3]; 18.24/6.99 2560[label="(==) Nothing Nothing",fontsize=16,color="black",shape="box"];2560 -> 2600[label="",style="solid", color="black", weight=3]; 18.24/6.99 2561[label="(==) Nothing Just yv1670",fontsize=16,color="black",shape="box"];2561 -> 2601[label="",style="solid", color="black", weight=3]; 18.24/6.99 2562[label="(==) Just yv1630 Nothing",fontsize=16,color="black",shape="box"];2562 -> 2602[label="",style="solid", color="black", weight=3]; 18.24/6.99 2563[label="(==) Just yv1630 Just yv1670",fontsize=16,color="black",shape="box"];2563 -> 2603[label="",style="solid", color="black", weight=3]; 18.24/6.99 2564[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) (foldr (||) False (map ((==) yv176) (yv1810 : yv1811)))",fontsize=16,color="black",shape="box"];2564 -> 2604[label="",style="solid", color="black", weight=3]; 18.24/6.99 2565[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) (foldr (||) False (map ((==) yv176) []))",fontsize=16,color="black",shape="box"];2565 -> 2605[label="",style="solid", color="black", weight=3]; 18.24/6.99 2566 -> 1385[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2566[label="List.nubNub' yv177 (yv178 : yv179)",fontsize=16,color="magenta"];2566 -> 2606[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2566 -> 2607[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2566 -> 2608[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2567[label="True",fontsize=16,color="green",shape="box"];2568 -> 2694[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2568[label="yv1630 == yv1670 && yv1631 == yv1671",fontsize=16,color="magenta"];2568 -> 2695[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2568 -> 2696[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2569[label="primEqDouble (Double yv1630 yv1631) (Double yv1670 yv1671)",fontsize=16,color="black",shape="box"];2569 -> 2619[label="",style="solid", color="black", weight=3]; 18.24/6.99 2570[label="True",fontsize=16,color="green",shape="box"];2571[label="False",fontsize=16,color="green",shape="box"];2572[label="False",fontsize=16,color="green",shape="box"];2573[label="False",fontsize=16,color="green",shape="box"];2574[label="True",fontsize=16,color="green",shape="box"];2575[label="False",fontsize=16,color="green",shape="box"];2576[label="False",fontsize=16,color="green",shape="box"];2577[label="False",fontsize=16,color="green",shape="box"];2578[label="True",fontsize=16,color="green",shape="box"];2579 -> 2694[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2579[label="yv1630 == yv1670 && yv1631 == yv1671 && yv1632 == yv1672",fontsize=16,color="magenta"];2579 -> 2697[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2579 -> 2698[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2580[label="primEqInt (Pos (Succ yv16300)) yv167",fontsize=16,color="burlywood",shape="box"];3253[label="yv167/Pos yv1670",fontsize=10,color="white",style="solid",shape="box"];2580 -> 3253[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3253 -> 2631[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3254[label="yv167/Neg yv1670",fontsize=10,color="white",style="solid",shape="box"];2580 -> 3254[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3254 -> 2632[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2581[label="primEqInt (Pos Zero) yv167",fontsize=16,color="burlywood",shape="box"];3255[label="yv167/Pos yv1670",fontsize=10,color="white",style="solid",shape="box"];2581 -> 3255[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3255 -> 2633[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3256[label="yv167/Neg yv1670",fontsize=10,color="white",style="solid",shape="box"];2581 -> 3256[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3256 -> 2634[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2582[label="primEqInt (Neg (Succ yv16300)) yv167",fontsize=16,color="burlywood",shape="box"];3257[label="yv167/Pos yv1670",fontsize=10,color="white",style="solid",shape="box"];2582 -> 3257[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3257 -> 2635[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3258[label="yv167/Neg yv1670",fontsize=10,color="white",style="solid",shape="box"];2582 -> 3258[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3258 -> 2636[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2583[label="primEqInt (Neg Zero) yv167",fontsize=16,color="burlywood",shape="box"];3259[label="yv167/Pos yv1670",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3259[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3259 -> 2637[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3260[label="yv167/Neg yv1670",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3260[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3260 -> 2638[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2584 -> 2694[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2584[label="yv1630 == yv1670 && yv1631 == yv1671",fontsize=16,color="magenta"];2584 -> 2699[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2584 -> 2700[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2585 -> 2694[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2585[label="yv1630 == yv1670 && yv1631 == yv1671",fontsize=16,color="magenta"];2585 -> 2701[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2585 -> 2702[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2586[label="False",fontsize=16,color="green",shape="box"];2587[label="False",fontsize=16,color="green",shape="box"];2588[label="True",fontsize=16,color="green",shape="box"];2589[label="primEqFloat (Float yv1630 yv1631) (Float yv1670 yv1671)",fontsize=16,color="black",shape="box"];2589 -> 2639[label="",style="solid", color="black", weight=3]; 18.24/6.99 2590[label="True",fontsize=16,color="green",shape="box"];2591[label="False",fontsize=16,color="green",shape="box"];2592[label="False",fontsize=16,color="green",shape="box"];2593[label="True",fontsize=16,color="green",shape="box"];2594[label="yv1630 == yv1670",fontsize=16,color="blue",shape="box"];3261[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3261[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3261 -> 2640[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3262[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3262[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3262 -> 2641[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3263[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3263[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3263 -> 2642[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3264[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3264[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3264 -> 2643[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3265[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3265[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3265 -> 2644[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3266[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3266[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3266 -> 2645[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3267[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3267[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3267 -> 2646[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3268[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3268[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3268 -> 2647[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3269[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3269[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3269 -> 2648[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3270[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3270[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3270 -> 2649[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3271[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3271[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3271 -> 2650[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3272[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3272[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3272 -> 2651[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3273[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3273[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3273 -> 2652[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3274[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3274[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3274 -> 2653[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2595[label="False",fontsize=16,color="green",shape="box"];2596[label="False",fontsize=16,color="green",shape="box"];2597[label="yv1630 == yv1670",fontsize=16,color="blue",shape="box"];3275[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3275[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3275 -> 2654[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3276[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3276[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3276 -> 2655[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3277[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3277[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3277 -> 2656[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3278[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3278[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3278 -> 2657[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3279[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3279[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3279 -> 2658[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3280[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3280[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3280 -> 2659[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3281[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3281[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3281 -> 2660[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3282[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3282[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3282 -> 2661[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3283[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3283[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3283 -> 2662[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3284[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3284[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3284 -> 2663[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3285[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3285[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3285 -> 2664[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3286[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3286[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3286 -> 2665[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3287[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3287[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3287 -> 2666[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3288[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3288[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3288 -> 2667[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2598[label="primEqChar (Char yv1630) (Char yv1670)",fontsize=16,color="black",shape="box"];2598 -> 2668[label="",style="solid", color="black", weight=3]; 18.24/6.99 2599 -> 2514[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2599[label="primEqInt yv1630 yv1670",fontsize=16,color="magenta"];2599 -> 2669[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2599 -> 2670[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2600[label="True",fontsize=16,color="green",shape="box"];2601[label="False",fontsize=16,color="green",shape="box"];2602[label="False",fontsize=16,color="green",shape="box"];2603[label="yv1630 == yv1670",fontsize=16,color="blue",shape="box"];3289[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3289[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3289 -> 2671[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3290[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3290[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3290 -> 2672[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3291[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3291[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3291 -> 2673[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3292[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3292[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3292 -> 2674[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3293[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3293[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3293 -> 2675[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3294[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3294[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3294 -> 2676[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3295[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3295[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3295 -> 2677[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3296[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3296[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3296 -> 2678[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3297[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3297[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3297 -> 2679[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3298[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3298[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3298 -> 2680[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3299[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3299[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3299 -> 2681[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3300[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3300[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3300 -> 2682[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3301[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3301[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3301 -> 2683[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3302[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3302[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3302 -> 2684[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2604 -> 2446[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2604[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) (foldr (||) False (((==) yv176 yv1810) : map ((==) yv176) yv1811))",fontsize=16,color="magenta"];2604 -> 2685[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2604 -> 2686[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2604 -> 2687[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2604 -> 2688[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2604 -> 2689[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2604 -> 2690[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2605[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) (foldr (||) False [])",fontsize=16,color="black",shape="box"];2605 -> 2691[label="",style="solid", color="black", weight=3]; 18.24/6.99 2606[label="yv178",fontsize=16,color="green",shape="box"];2607[label="yv177",fontsize=16,color="green",shape="box"];2608[label="yv179",fontsize=16,color="green",shape="box"];2695[label="yv1630 == yv1670",fontsize=16,color="blue",shape="box"];3303[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2695 -> 3303[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3303 -> 2707[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3304[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2695 -> 3304[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3304 -> 2708[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2696[label="yv1631 == yv1671",fontsize=16,color="blue",shape="box"];3305[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2696 -> 3305[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3305 -> 2709[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3306[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2696 -> 3306[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3306 -> 2710[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2694[label="yv193 && yv194",fontsize=16,color="burlywood",shape="triangle"];3307[label="yv193/False",fontsize=10,color="white",style="solid",shape="box"];2694 -> 3307[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3307 -> 2711[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3308[label="yv193/True",fontsize=10,color="white",style="solid",shape="box"];2694 -> 3308[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3308 -> 2712[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2619 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2619[label="yv1630 * yv1671 == yv1631 * yv1670",fontsize=16,color="magenta"];2619 -> 2713[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2619 -> 2714[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2697[label="yv1630 == yv1670",fontsize=16,color="blue",shape="box"];3309[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3309[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3309 -> 2715[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3310[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3310[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3310 -> 2716[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3311[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3311[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3311 -> 2717[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3312[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3312[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3312 -> 2718[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3313[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3313[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3313 -> 2719[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3314[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3314[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3314 -> 2720[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3315[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3315[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3315 -> 2721[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3316[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3316[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3316 -> 2722[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3317[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3317[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3317 -> 2723[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3318[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3318[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3318 -> 2724[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3319[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3319[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3319 -> 2725[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3320[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3320[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3320 -> 2726[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3321[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3321[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3321 -> 2727[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3322[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2697 -> 3322[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3322 -> 2728[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2698 -> 2694[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2698[label="yv1631 == yv1671 && yv1632 == yv1672",fontsize=16,color="magenta"];2698 -> 2729[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2698 -> 2730[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2631[label="primEqInt (Pos (Succ yv16300)) (Pos yv1670)",fontsize=16,color="burlywood",shape="box"];3323[label="yv1670/Succ yv16700",fontsize=10,color="white",style="solid",shape="box"];2631 -> 3323[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3323 -> 2731[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3324[label="yv1670/Zero",fontsize=10,color="white",style="solid",shape="box"];2631 -> 3324[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3324 -> 2732[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2632[label="primEqInt (Pos (Succ yv16300)) (Neg yv1670)",fontsize=16,color="black",shape="box"];2632 -> 2733[label="",style="solid", color="black", weight=3]; 18.24/6.99 2633[label="primEqInt (Pos Zero) (Pos yv1670)",fontsize=16,color="burlywood",shape="box"];3325[label="yv1670/Succ yv16700",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3325[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3325 -> 2734[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3326[label="yv1670/Zero",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3326[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3326 -> 2735[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2634[label="primEqInt (Pos Zero) (Neg yv1670)",fontsize=16,color="burlywood",shape="box"];3327[label="yv1670/Succ yv16700",fontsize=10,color="white",style="solid",shape="box"];2634 -> 3327[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3327 -> 2736[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3328[label="yv1670/Zero",fontsize=10,color="white",style="solid",shape="box"];2634 -> 3328[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3328 -> 2737[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2635[label="primEqInt (Neg (Succ yv16300)) (Pos yv1670)",fontsize=16,color="black",shape="box"];2635 -> 2738[label="",style="solid", color="black", weight=3]; 18.24/6.99 2636[label="primEqInt (Neg (Succ yv16300)) (Neg yv1670)",fontsize=16,color="burlywood",shape="box"];3329[label="yv1670/Succ yv16700",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3329[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3329 -> 2739[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3330[label="yv1670/Zero",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3330[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3330 -> 2740[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2637[label="primEqInt (Neg Zero) (Pos yv1670)",fontsize=16,color="burlywood",shape="box"];3331[label="yv1670/Succ yv16700",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3331[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3331 -> 2741[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3332[label="yv1670/Zero",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3332[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3332 -> 2742[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2638[label="primEqInt (Neg Zero) (Neg yv1670)",fontsize=16,color="burlywood",shape="box"];3333[label="yv1670/Succ yv16700",fontsize=10,color="white",style="solid",shape="box"];2638 -> 3333[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3333 -> 2743[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 3334[label="yv1670/Zero",fontsize=10,color="white",style="solid",shape="box"];2638 -> 3334[label="",style="solid", color="burlywood", weight=9]; 18.24/6.99 3334 -> 2744[label="",style="solid", color="burlywood", weight=3]; 18.24/6.99 2699[label="yv1630 == yv1670",fontsize=16,color="blue",shape="box"];3335[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3335[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3335 -> 2745[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3336[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3336[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3336 -> 2746[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3337[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3337[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3337 -> 2747[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3338[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3338[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3338 -> 2748[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3339[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3339[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3339 -> 2749[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3340[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3340[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3340 -> 2750[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3341[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3341[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3341 -> 2751[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3342[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3342[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3342 -> 2752[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3343[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3343[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3343 -> 2753[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3344[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3344[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3344 -> 2754[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3345[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3345[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3345 -> 2755[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3346[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3346[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3346 -> 2756[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3347[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3347[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3347 -> 2757[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3348[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2699 -> 3348[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3348 -> 2758[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2700[label="yv1631 == yv1671",fontsize=16,color="blue",shape="box"];3349[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3349[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3349 -> 2759[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3350[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3350[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3350 -> 2760[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3351[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3351[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3351 -> 2761[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3352[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3352[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3352 -> 2762[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3353[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3353[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3353 -> 2763[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3354[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3354[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3354 -> 2764[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3355[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3355[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3355 -> 2765[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3356[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3356[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3356 -> 2766[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3357[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3357[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3357 -> 2767[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3358[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3358[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3358 -> 2768[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3359[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3359[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3359 -> 2769[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3360[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3360[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3360 -> 2770[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3361[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3361[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3361 -> 2771[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3362[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2700 -> 3362[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3362 -> 2772[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2701[label="yv1630 == yv1670",fontsize=16,color="blue",shape="box"];3363[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3363[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3363 -> 2773[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3364[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3364[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3364 -> 2774[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3365[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3365[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3365 -> 2775[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3366[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3366[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3366 -> 2776[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3367[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3367[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3367 -> 2777[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3368[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3368[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3368 -> 2778[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3369[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3369[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3369 -> 2779[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3370[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3370[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3370 -> 2780[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3371[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3371[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3371 -> 2781[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3372[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3372[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3372 -> 2782[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3373[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3373[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3373 -> 2783[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3374[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3374[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3374 -> 2784[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3375[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3375[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3375 -> 2785[label="",style="solid", color="blue", weight=3]; 18.24/6.99 3376[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 3376[label="",style="solid", color="blue", weight=9]; 18.24/6.99 3376 -> 2786[label="",style="solid", color="blue", weight=3]; 18.24/6.99 2702 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2702[label="yv1631 == yv1671",fontsize=16,color="magenta"];2702 -> 2787[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2702 -> 2788[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2639 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2639[label="yv1630 * yv1671 == yv1631 * yv1670",fontsize=16,color="magenta"];2639 -> 2789[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2639 -> 2790[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2640 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2640[label="yv1630 == yv1670",fontsize=16,color="magenta"];2640 -> 2791[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2640 -> 2792[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2641 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2641[label="yv1630 == yv1670",fontsize=16,color="magenta"];2641 -> 2793[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2641 -> 2794[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2642 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2642[label="yv1630 == yv1670",fontsize=16,color="magenta"];2642 -> 2795[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2642 -> 2796[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2643 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2643[label="yv1630 == yv1670",fontsize=16,color="magenta"];2643 -> 2797[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2643 -> 2798[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2644 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2644[label="yv1630 == yv1670",fontsize=16,color="magenta"];2644 -> 2799[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2644 -> 2800[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2645 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2645[label="yv1630 == yv1670",fontsize=16,color="magenta"];2645 -> 2801[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2645 -> 2802[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2646 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2646[label="yv1630 == yv1670",fontsize=16,color="magenta"];2646 -> 2803[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2646 -> 2804[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2647 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2647[label="yv1630 == yv1670",fontsize=16,color="magenta"];2647 -> 2805[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2647 -> 2806[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2648 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2648[label="yv1630 == yv1670",fontsize=16,color="magenta"];2648 -> 2807[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2648 -> 2808[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2649 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2649[label="yv1630 == yv1670",fontsize=16,color="magenta"];2649 -> 2809[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2649 -> 2810[label="",style="dashed", color="magenta", weight=3]; 18.24/6.99 2650 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/6.99 2650[label="yv1630 == yv1670",fontsize=16,color="magenta"];2650 -> 2811[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2650 -> 2812[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2651 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2651[label="yv1630 == yv1670",fontsize=16,color="magenta"];2651 -> 2813[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2651 -> 2814[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2652 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2652[label="yv1630 == yv1670",fontsize=16,color="magenta"];2652 -> 2815[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2652 -> 2816[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2653 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2653[label="yv1630 == yv1670",fontsize=16,color="magenta"];2653 -> 2817[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2653 -> 2818[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2654 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2654[label="yv1630 == yv1670",fontsize=16,color="magenta"];2654 -> 2819[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2654 -> 2820[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2655 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2655[label="yv1630 == yv1670",fontsize=16,color="magenta"];2655 -> 2821[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2655 -> 2822[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2656 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2656[label="yv1630 == yv1670",fontsize=16,color="magenta"];2656 -> 2823[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2656 -> 2824[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2657 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2657[label="yv1630 == yv1670",fontsize=16,color="magenta"];2657 -> 2825[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2657 -> 2826[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2658 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2658[label="yv1630 == yv1670",fontsize=16,color="magenta"];2658 -> 2827[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2658 -> 2828[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2659 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2659[label="yv1630 == yv1670",fontsize=16,color="magenta"];2659 -> 2829[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2659 -> 2830[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2660 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2660[label="yv1630 == yv1670",fontsize=16,color="magenta"];2660 -> 2831[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2660 -> 2832[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2661 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2661[label="yv1630 == yv1670",fontsize=16,color="magenta"];2661 -> 2833[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2661 -> 2834[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2662 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2662[label="yv1630 == yv1670",fontsize=16,color="magenta"];2662 -> 2835[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2662 -> 2836[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2663 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2663[label="yv1630 == yv1670",fontsize=16,color="magenta"];2663 -> 2837[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2663 -> 2838[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2664 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2664[label="yv1630 == yv1670",fontsize=16,color="magenta"];2664 -> 2839[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2664 -> 2840[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2665 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2665[label="yv1630 == yv1670",fontsize=16,color="magenta"];2665 -> 2841[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2665 -> 2842[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2666 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2666[label="yv1630 == yv1670",fontsize=16,color="magenta"];2666 -> 2843[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2666 -> 2844[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2667 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2667[label="yv1630 == yv1670",fontsize=16,color="magenta"];2667 -> 2845[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2667 -> 2846[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2668[label="primEqNat yv1630 yv1670",fontsize=16,color="burlywood",shape="triangle"];3377[label="yv1630/Succ yv16300",fontsize=10,color="white",style="solid",shape="box"];2668 -> 3377[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3377 -> 2847[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3378[label="yv1630/Zero",fontsize=10,color="white",style="solid",shape="box"];2668 -> 3378[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3378 -> 2848[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 2669[label="yv1630",fontsize=16,color="green",shape="box"];2670[label="yv1670",fontsize=16,color="green",shape="box"];2671 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2671[label="yv1630 == yv1670",fontsize=16,color="magenta"];2671 -> 2849[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2671 -> 2850[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2672 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2672[label="yv1630 == yv1670",fontsize=16,color="magenta"];2672 -> 2851[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2672 -> 2852[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2673 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2673[label="yv1630 == yv1670",fontsize=16,color="magenta"];2673 -> 2853[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2673 -> 2854[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2674 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2674[label="yv1630 == yv1670",fontsize=16,color="magenta"];2674 -> 2855[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2674 -> 2856[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2675 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2675[label="yv1630 == yv1670",fontsize=16,color="magenta"];2675 -> 2857[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2675 -> 2858[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2676 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2676[label="yv1630 == yv1670",fontsize=16,color="magenta"];2676 -> 2859[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2676 -> 2860[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2677 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2677[label="yv1630 == yv1670",fontsize=16,color="magenta"];2677 -> 2861[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2677 -> 2862[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2678 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2678[label="yv1630 == yv1670",fontsize=16,color="magenta"];2678 -> 2863[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2678 -> 2864[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2679 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2679[label="yv1630 == yv1670",fontsize=16,color="magenta"];2679 -> 2865[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2679 -> 2866[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2680 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2680[label="yv1630 == yv1670",fontsize=16,color="magenta"];2680 -> 2867[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2680 -> 2868[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2681 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2681[label="yv1630 == yv1670",fontsize=16,color="magenta"];2681 -> 2869[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2681 -> 2870[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2682 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2682[label="yv1630 == yv1670",fontsize=16,color="magenta"];2682 -> 2871[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2682 -> 2872[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2683 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2683[label="yv1630 == yv1670",fontsize=16,color="magenta"];2683 -> 2873[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2683 -> 2874[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2684 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2684[label="yv1630 == yv1670",fontsize=16,color="magenta"];2684 -> 2875[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2684 -> 2876[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2685[label="yv177",fontsize=16,color="green",shape="box"];2686[label="yv178",fontsize=16,color="green",shape="box"];2687[label="yv176",fontsize=16,color="green",shape="box"];2688[label="yv1811",fontsize=16,color="green",shape="box"];2689[label="yv1810",fontsize=16,color="green",shape="box"];2690[label="yv179",fontsize=16,color="green",shape="box"];2691[label="List.nubNub'1 yv176 yv177 (yv178 : yv179) False",fontsize=16,color="black",shape="box"];2691 -> 2877[label="",style="solid", color="black", weight=3]; 18.24/7.00 2707 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2707[label="yv1630 == yv1670",fontsize=16,color="magenta"];2707 -> 2878[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2707 -> 2879[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2708 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2708[label="yv1630 == yv1670",fontsize=16,color="magenta"];2708 -> 2880[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2708 -> 2881[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2709 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2709[label="yv1631 == yv1671",fontsize=16,color="magenta"];2709 -> 2882[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2709 -> 2883[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2710 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2710[label="yv1631 == yv1671",fontsize=16,color="magenta"];2710 -> 2884[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2710 -> 2885[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2711[label="False && yv194",fontsize=16,color="black",shape="box"];2711 -> 2886[label="",style="solid", color="black", weight=3]; 18.24/7.00 2712[label="True && yv194",fontsize=16,color="black",shape="box"];2712 -> 2887[label="",style="solid", color="black", weight=3]; 18.24/7.00 2713[label="yv1630 * yv1671",fontsize=16,color="black",shape="triangle"];2713 -> 2888[label="",style="solid", color="black", weight=3]; 18.24/7.00 2714 -> 2713[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2714[label="yv1631 * yv1670",fontsize=16,color="magenta"];2714 -> 2889[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2714 -> 2890[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2715 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2715[label="yv1630 == yv1670",fontsize=16,color="magenta"];2715 -> 2891[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2715 -> 2892[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2716 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2716[label="yv1630 == yv1670",fontsize=16,color="magenta"];2716 -> 2893[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2716 -> 2894[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2717 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2717[label="yv1630 == yv1670",fontsize=16,color="magenta"];2717 -> 2895[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2717 -> 2896[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2718 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2718[label="yv1630 == yv1670",fontsize=16,color="magenta"];2718 -> 2897[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2718 -> 2898[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2719 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2719[label="yv1630 == yv1670",fontsize=16,color="magenta"];2719 -> 2899[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2719 -> 2900[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2720 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2720[label="yv1630 == yv1670",fontsize=16,color="magenta"];2720 -> 2901[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2720 -> 2902[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2721 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2721[label="yv1630 == yv1670",fontsize=16,color="magenta"];2721 -> 2903[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2721 -> 2904[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2722 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2722[label="yv1630 == yv1670",fontsize=16,color="magenta"];2722 -> 2905[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2722 -> 2906[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2723 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2723[label="yv1630 == yv1670",fontsize=16,color="magenta"];2723 -> 2907[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2723 -> 2908[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2724 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2724[label="yv1630 == yv1670",fontsize=16,color="magenta"];2724 -> 2909[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2724 -> 2910[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2725 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2725[label="yv1630 == yv1670",fontsize=16,color="magenta"];2725 -> 2911[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2725 -> 2912[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2726 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2726[label="yv1630 == yv1670",fontsize=16,color="magenta"];2726 -> 2913[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2726 -> 2914[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2727 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2727[label="yv1630 == yv1670",fontsize=16,color="magenta"];2727 -> 2915[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2727 -> 2916[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2728 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2728[label="yv1630 == yv1670",fontsize=16,color="magenta"];2728 -> 2917[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2728 -> 2918[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2729[label="yv1631 == yv1671",fontsize=16,color="blue",shape="box"];3379[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3379[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3379 -> 2919[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3380[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3380[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3380 -> 2920[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3381[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3381[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3381 -> 2921[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3382[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3382[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3382 -> 2922[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3383[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3383[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3383 -> 2923[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3384[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3384[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3384 -> 2924[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3385[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3385[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3385 -> 2925[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3386[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3386[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3386 -> 2926[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3387[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3387[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3387 -> 2927[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3388[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3388[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3388 -> 2928[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3389[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3389[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3389 -> 2929[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3390[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3390[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3390 -> 2930[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3391[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3391[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3391 -> 2931[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3392[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2729 -> 3392[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3392 -> 2932[label="",style="solid", color="blue", weight=3]; 18.24/7.00 2730[label="yv1632 == yv1672",fontsize=16,color="blue",shape="box"];3393[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3393[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3393 -> 2933[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3394[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3394[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3394 -> 2934[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3395[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3395[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3395 -> 2935[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3396[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3396 -> 2936[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3397[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3397[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3397 -> 2937[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3398[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3398[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3398 -> 2938[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3399[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3399[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3399 -> 2939[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3400[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3400[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3400 -> 2940[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3401[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3401[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3401 -> 2941[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3402[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3402[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3402 -> 2942[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3403[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3403[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3403 -> 2943[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3404[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3404[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3404 -> 2944[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3405[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3405[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3405 -> 2945[label="",style="solid", color="blue", weight=3]; 18.24/7.00 3406[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2730 -> 3406[label="",style="solid", color="blue", weight=9]; 18.24/7.00 3406 -> 2946[label="",style="solid", color="blue", weight=3]; 18.24/7.00 2731[label="primEqInt (Pos (Succ yv16300)) (Pos (Succ yv16700))",fontsize=16,color="black",shape="box"];2731 -> 2947[label="",style="solid", color="black", weight=3]; 18.24/7.00 2732[label="primEqInt (Pos (Succ yv16300)) (Pos Zero)",fontsize=16,color="black",shape="box"];2732 -> 2948[label="",style="solid", color="black", weight=3]; 18.24/7.00 2733[label="False",fontsize=16,color="green",shape="box"];2734[label="primEqInt (Pos Zero) (Pos (Succ yv16700))",fontsize=16,color="black",shape="box"];2734 -> 2949[label="",style="solid", color="black", weight=3]; 18.24/7.00 2735[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2735 -> 2950[label="",style="solid", color="black", weight=3]; 18.24/7.00 2736[label="primEqInt (Pos Zero) (Neg (Succ yv16700))",fontsize=16,color="black",shape="box"];2736 -> 2951[label="",style="solid", color="black", weight=3]; 18.24/7.00 2737[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2737 -> 2952[label="",style="solid", color="black", weight=3]; 18.24/7.00 2738[label="False",fontsize=16,color="green",shape="box"];2739[label="primEqInt (Neg (Succ yv16300)) (Neg (Succ yv16700))",fontsize=16,color="black",shape="box"];2739 -> 2953[label="",style="solid", color="black", weight=3]; 18.24/7.00 2740[label="primEqInt (Neg (Succ yv16300)) (Neg Zero)",fontsize=16,color="black",shape="box"];2740 -> 2954[label="",style="solid", color="black", weight=3]; 18.24/7.00 2741[label="primEqInt (Neg Zero) (Pos (Succ yv16700))",fontsize=16,color="black",shape="box"];2741 -> 2955[label="",style="solid", color="black", weight=3]; 18.24/7.00 2742[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2742 -> 2956[label="",style="solid", color="black", weight=3]; 18.24/7.00 2743[label="primEqInt (Neg Zero) (Neg (Succ yv16700))",fontsize=16,color="black",shape="box"];2743 -> 2957[label="",style="solid", color="black", weight=3]; 18.24/7.00 2744[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2744 -> 2958[label="",style="solid", color="black", weight=3]; 18.24/7.00 2745 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2745[label="yv1630 == yv1670",fontsize=16,color="magenta"];2745 -> 2959[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2745 -> 2960[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2746 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2746[label="yv1630 == yv1670",fontsize=16,color="magenta"];2746 -> 2961[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2746 -> 2962[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2747 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2747[label="yv1630 == yv1670",fontsize=16,color="magenta"];2747 -> 2963[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2747 -> 2964[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2748 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2748[label="yv1630 == yv1670",fontsize=16,color="magenta"];2748 -> 2965[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2748 -> 2966[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2749 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2749[label="yv1630 == yv1670",fontsize=16,color="magenta"];2749 -> 2967[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2749 -> 2968[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2750 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2750[label="yv1630 == yv1670",fontsize=16,color="magenta"];2750 -> 2969[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2750 -> 2970[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2751 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2751[label="yv1630 == yv1670",fontsize=16,color="magenta"];2751 -> 2971[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2751 -> 2972[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2752 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2752[label="yv1630 == yv1670",fontsize=16,color="magenta"];2752 -> 2973[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2752 -> 2974[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2753 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2753[label="yv1630 == yv1670",fontsize=16,color="magenta"];2753 -> 2975[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2753 -> 2976[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2754 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2754[label="yv1630 == yv1670",fontsize=16,color="magenta"];2754 -> 2977[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2754 -> 2978[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2755 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2755[label="yv1630 == yv1670",fontsize=16,color="magenta"];2755 -> 2979[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2755 -> 2980[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2756 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2756[label="yv1630 == yv1670",fontsize=16,color="magenta"];2756 -> 2981[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2756 -> 2982[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2757 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2757[label="yv1630 == yv1670",fontsize=16,color="magenta"];2757 -> 2983[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2757 -> 2984[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2758 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2758[label="yv1630 == yv1670",fontsize=16,color="magenta"];2758 -> 2985[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2758 -> 2986[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2759 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2759[label="yv1631 == yv1671",fontsize=16,color="magenta"];2759 -> 2987[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2759 -> 2988[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2760 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2760[label="yv1631 == yv1671",fontsize=16,color="magenta"];2760 -> 2989[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2760 -> 2990[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2761 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2761[label="yv1631 == yv1671",fontsize=16,color="magenta"];2761 -> 2991[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2761 -> 2992[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2762 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2762[label="yv1631 == yv1671",fontsize=16,color="magenta"];2762 -> 2993[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2762 -> 2994[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2763 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2763[label="yv1631 == yv1671",fontsize=16,color="magenta"];2763 -> 2995[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2763 -> 2996[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2764 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2764[label="yv1631 == yv1671",fontsize=16,color="magenta"];2764 -> 2997[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2764 -> 2998[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2765 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2765[label="yv1631 == yv1671",fontsize=16,color="magenta"];2765 -> 2999[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2765 -> 3000[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2766 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2766[label="yv1631 == yv1671",fontsize=16,color="magenta"];2766 -> 3001[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2766 -> 3002[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2767 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2767[label="yv1631 == yv1671",fontsize=16,color="magenta"];2767 -> 3003[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2767 -> 3004[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2768 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2768[label="yv1631 == yv1671",fontsize=16,color="magenta"];2768 -> 3005[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2768 -> 3006[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2769 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2769[label="yv1631 == yv1671",fontsize=16,color="magenta"];2769 -> 3007[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2769 -> 3008[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2770 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2770[label="yv1631 == yv1671",fontsize=16,color="magenta"];2770 -> 3009[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2770 -> 3010[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2771 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2771[label="yv1631 == yv1671",fontsize=16,color="magenta"];2771 -> 3011[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2771 -> 3012[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2772 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2772[label="yv1631 == yv1671",fontsize=16,color="magenta"];2772 -> 3013[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2772 -> 3014[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2773 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2773[label="yv1630 == yv1670",fontsize=16,color="magenta"];2773 -> 3015[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2773 -> 3016[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2774 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2774[label="yv1630 == yv1670",fontsize=16,color="magenta"];2774 -> 3017[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2774 -> 3018[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2775 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2775[label="yv1630 == yv1670",fontsize=16,color="magenta"];2775 -> 3019[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2775 -> 3020[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2776 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2776[label="yv1630 == yv1670",fontsize=16,color="magenta"];2776 -> 3021[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2776 -> 3022[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2777 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2777[label="yv1630 == yv1670",fontsize=16,color="magenta"];2777 -> 3023[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2777 -> 3024[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2778 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2778[label="yv1630 == yv1670",fontsize=16,color="magenta"];2778 -> 3025[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2778 -> 3026[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2779 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2779[label="yv1630 == yv1670",fontsize=16,color="magenta"];2779 -> 3027[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2779 -> 3028[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2780 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2780[label="yv1630 == yv1670",fontsize=16,color="magenta"];2780 -> 3029[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2780 -> 3030[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2781 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2781[label="yv1630 == yv1670",fontsize=16,color="magenta"];2781 -> 3031[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2781 -> 3032[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2782 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2782[label="yv1630 == yv1670",fontsize=16,color="magenta"];2782 -> 3033[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2782 -> 3034[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2783 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2783[label="yv1630 == yv1670",fontsize=16,color="magenta"];2783 -> 3035[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2783 -> 3036[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2784 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2784[label="yv1630 == yv1670",fontsize=16,color="magenta"];2784 -> 3037[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2784 -> 3038[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2785 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2785[label="yv1630 == yv1670",fontsize=16,color="magenta"];2785 -> 3039[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2785 -> 3040[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2786 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2786[label="yv1630 == yv1670",fontsize=16,color="magenta"];2786 -> 3041[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2786 -> 3042[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2787[label="yv1631",fontsize=16,color="green",shape="box"];2788[label="yv1671",fontsize=16,color="green",shape="box"];2789 -> 2713[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2789[label="yv1630 * yv1671",fontsize=16,color="magenta"];2789 -> 3043[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2789 -> 3044[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2790 -> 2713[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2790[label="yv1631 * yv1670",fontsize=16,color="magenta"];2790 -> 3045[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2790 -> 3046[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2791[label="yv1630",fontsize=16,color="green",shape="box"];2792[label="yv1670",fontsize=16,color="green",shape="box"];2793[label="yv1630",fontsize=16,color="green",shape="box"];2794[label="yv1670",fontsize=16,color="green",shape="box"];2795[label="yv1630",fontsize=16,color="green",shape="box"];2796[label="yv1670",fontsize=16,color="green",shape="box"];2797[label="yv1630",fontsize=16,color="green",shape="box"];2798[label="yv1670",fontsize=16,color="green",shape="box"];2799[label="yv1630",fontsize=16,color="green",shape="box"];2800[label="yv1670",fontsize=16,color="green",shape="box"];2801[label="yv1630",fontsize=16,color="green",shape="box"];2802[label="yv1670",fontsize=16,color="green",shape="box"];2803[label="yv1630",fontsize=16,color="green",shape="box"];2804[label="yv1670",fontsize=16,color="green",shape="box"];2805[label="yv1630",fontsize=16,color="green",shape="box"];2806[label="yv1670",fontsize=16,color="green",shape="box"];2807[label="yv1630",fontsize=16,color="green",shape="box"];2808[label="yv1670",fontsize=16,color="green",shape="box"];2809[label="yv1630",fontsize=16,color="green",shape="box"];2810[label="yv1670",fontsize=16,color="green",shape="box"];2811[label="yv1630",fontsize=16,color="green",shape="box"];2812[label="yv1670",fontsize=16,color="green",shape="box"];2813[label="yv1630",fontsize=16,color="green",shape="box"];2814[label="yv1670",fontsize=16,color="green",shape="box"];2815[label="yv1630",fontsize=16,color="green",shape="box"];2816[label="yv1670",fontsize=16,color="green",shape="box"];2817[label="yv1630",fontsize=16,color="green",shape="box"];2818[label="yv1670",fontsize=16,color="green",shape="box"];2819[label="yv1630",fontsize=16,color="green",shape="box"];2820[label="yv1670",fontsize=16,color="green",shape="box"];2821[label="yv1630",fontsize=16,color="green",shape="box"];2822[label="yv1670",fontsize=16,color="green",shape="box"];2823[label="yv1630",fontsize=16,color="green",shape="box"];2824[label="yv1670",fontsize=16,color="green",shape="box"];2825[label="yv1630",fontsize=16,color="green",shape="box"];2826[label="yv1670",fontsize=16,color="green",shape="box"];2827[label="yv1630",fontsize=16,color="green",shape="box"];2828[label="yv1670",fontsize=16,color="green",shape="box"];2829[label="yv1630",fontsize=16,color="green",shape="box"];2830[label="yv1670",fontsize=16,color="green",shape="box"];2831[label="yv1630",fontsize=16,color="green",shape="box"];2832[label="yv1670",fontsize=16,color="green",shape="box"];2833[label="yv1630",fontsize=16,color="green",shape="box"];2834[label="yv1670",fontsize=16,color="green",shape="box"];2835[label="yv1630",fontsize=16,color="green",shape="box"];2836[label="yv1670",fontsize=16,color="green",shape="box"];2837[label="yv1630",fontsize=16,color="green",shape="box"];2838[label="yv1670",fontsize=16,color="green",shape="box"];2839[label="yv1630",fontsize=16,color="green",shape="box"];2840[label="yv1670",fontsize=16,color="green",shape="box"];2841[label="yv1630",fontsize=16,color="green",shape="box"];2842[label="yv1670",fontsize=16,color="green",shape="box"];2843[label="yv1630",fontsize=16,color="green",shape="box"];2844[label="yv1670",fontsize=16,color="green",shape="box"];2845[label="yv1630",fontsize=16,color="green",shape="box"];2846[label="yv1670",fontsize=16,color="green",shape="box"];2847[label="primEqNat (Succ yv16300) yv1670",fontsize=16,color="burlywood",shape="box"];3407[label="yv1670/Succ yv16700",fontsize=10,color="white",style="solid",shape="box"];2847 -> 3407[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3407 -> 3047[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3408[label="yv1670/Zero",fontsize=10,color="white",style="solid",shape="box"];2847 -> 3408[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3408 -> 3048[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 2848[label="primEqNat Zero yv1670",fontsize=16,color="burlywood",shape="box"];3409[label="yv1670/Succ yv16700",fontsize=10,color="white",style="solid",shape="box"];2848 -> 3409[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3409 -> 3049[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3410[label="yv1670/Zero",fontsize=10,color="white",style="solid",shape="box"];2848 -> 3410[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3410 -> 3050[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 2849[label="yv1630",fontsize=16,color="green",shape="box"];2850[label="yv1670",fontsize=16,color="green",shape="box"];2851[label="yv1630",fontsize=16,color="green",shape="box"];2852[label="yv1670",fontsize=16,color="green",shape="box"];2853[label="yv1630",fontsize=16,color="green",shape="box"];2854[label="yv1670",fontsize=16,color="green",shape="box"];2855[label="yv1630",fontsize=16,color="green",shape="box"];2856[label="yv1670",fontsize=16,color="green",shape="box"];2857[label="yv1630",fontsize=16,color="green",shape="box"];2858[label="yv1670",fontsize=16,color="green",shape="box"];2859[label="yv1630",fontsize=16,color="green",shape="box"];2860[label="yv1670",fontsize=16,color="green",shape="box"];2861[label="yv1630",fontsize=16,color="green",shape="box"];2862[label="yv1670",fontsize=16,color="green",shape="box"];2863[label="yv1630",fontsize=16,color="green",shape="box"];2864[label="yv1670",fontsize=16,color="green",shape="box"];2865[label="yv1630",fontsize=16,color="green",shape="box"];2866[label="yv1670",fontsize=16,color="green",shape="box"];2867[label="yv1630",fontsize=16,color="green",shape="box"];2868[label="yv1670",fontsize=16,color="green",shape="box"];2869[label="yv1630",fontsize=16,color="green",shape="box"];2870[label="yv1670",fontsize=16,color="green",shape="box"];2871[label="yv1630",fontsize=16,color="green",shape="box"];2872[label="yv1670",fontsize=16,color="green",shape="box"];2873[label="yv1630",fontsize=16,color="green",shape="box"];2874[label="yv1670",fontsize=16,color="green",shape="box"];2875[label="yv1630",fontsize=16,color="green",shape="box"];2876[label="yv1670",fontsize=16,color="green",shape="box"];2877[label="List.nubNub'0 yv176 yv177 (yv178 : yv179) otherwise",fontsize=16,color="black",shape="box"];2877 -> 3051[label="",style="solid", color="black", weight=3]; 18.24/7.00 2878[label="yv1630",fontsize=16,color="green",shape="box"];2879[label="yv1670",fontsize=16,color="green",shape="box"];2880[label="yv1630",fontsize=16,color="green",shape="box"];2881[label="yv1670",fontsize=16,color="green",shape="box"];2882[label="yv1631",fontsize=16,color="green",shape="box"];2883[label="yv1671",fontsize=16,color="green",shape="box"];2884[label="yv1631",fontsize=16,color="green",shape="box"];2885[label="yv1671",fontsize=16,color="green",shape="box"];2886[label="False",fontsize=16,color="green",shape="box"];2887[label="yv194",fontsize=16,color="green",shape="box"];2888[label="primMulInt yv1630 yv1671",fontsize=16,color="burlywood",shape="box"];3411[label="yv1630/Pos yv16300",fontsize=10,color="white",style="solid",shape="box"];2888 -> 3411[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3411 -> 3052[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3412[label="yv1630/Neg yv16300",fontsize=10,color="white",style="solid",shape="box"];2888 -> 3412[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3412 -> 3053[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 2889[label="yv1631",fontsize=16,color="green",shape="box"];2890[label="yv1670",fontsize=16,color="green",shape="box"];2891[label="yv1630",fontsize=16,color="green",shape="box"];2892[label="yv1670",fontsize=16,color="green",shape="box"];2893[label="yv1630",fontsize=16,color="green",shape="box"];2894[label="yv1670",fontsize=16,color="green",shape="box"];2895[label="yv1630",fontsize=16,color="green",shape="box"];2896[label="yv1670",fontsize=16,color="green",shape="box"];2897[label="yv1630",fontsize=16,color="green",shape="box"];2898[label="yv1670",fontsize=16,color="green",shape="box"];2899[label="yv1630",fontsize=16,color="green",shape="box"];2900[label="yv1670",fontsize=16,color="green",shape="box"];2901[label="yv1630",fontsize=16,color="green",shape="box"];2902[label="yv1670",fontsize=16,color="green",shape="box"];2903[label="yv1630",fontsize=16,color="green",shape="box"];2904[label="yv1670",fontsize=16,color="green",shape="box"];2905[label="yv1630",fontsize=16,color="green",shape="box"];2906[label="yv1670",fontsize=16,color="green",shape="box"];2907[label="yv1630",fontsize=16,color="green",shape="box"];2908[label="yv1670",fontsize=16,color="green",shape="box"];2909[label="yv1630",fontsize=16,color="green",shape="box"];2910[label="yv1670",fontsize=16,color="green",shape="box"];2911[label="yv1630",fontsize=16,color="green",shape="box"];2912[label="yv1670",fontsize=16,color="green",shape="box"];2913[label="yv1630",fontsize=16,color="green",shape="box"];2914[label="yv1670",fontsize=16,color="green",shape="box"];2915[label="yv1630",fontsize=16,color="green",shape="box"];2916[label="yv1670",fontsize=16,color="green",shape="box"];2917[label="yv1630",fontsize=16,color="green",shape="box"];2918[label="yv1670",fontsize=16,color="green",shape="box"];2919 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2919[label="yv1631 == yv1671",fontsize=16,color="magenta"];2919 -> 3054[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2919 -> 3055[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2920 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2920[label="yv1631 == yv1671",fontsize=16,color="magenta"];2920 -> 3056[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2920 -> 3057[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2921 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2921[label="yv1631 == yv1671",fontsize=16,color="magenta"];2921 -> 3058[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2921 -> 3059[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2922 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2922[label="yv1631 == yv1671",fontsize=16,color="magenta"];2922 -> 3060[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2922 -> 3061[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2923 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2923[label="yv1631 == yv1671",fontsize=16,color="magenta"];2923 -> 3062[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2923 -> 3063[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2924 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2924[label="yv1631 == yv1671",fontsize=16,color="magenta"];2924 -> 3064[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2924 -> 3065[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2925 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2925[label="yv1631 == yv1671",fontsize=16,color="magenta"];2925 -> 3066[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2925 -> 3067[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2926 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2926[label="yv1631 == yv1671",fontsize=16,color="magenta"];2926 -> 3068[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2926 -> 3069[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2927 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2927[label="yv1631 == yv1671",fontsize=16,color="magenta"];2927 -> 3070[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2927 -> 3071[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2928 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2928[label="yv1631 == yv1671",fontsize=16,color="magenta"];2928 -> 3072[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2928 -> 3073[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2929 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2929[label="yv1631 == yv1671",fontsize=16,color="magenta"];2929 -> 3074[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2929 -> 3075[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2930 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2930[label="yv1631 == yv1671",fontsize=16,color="magenta"];2930 -> 3076[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2930 -> 3077[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2931 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2931[label="yv1631 == yv1671",fontsize=16,color="magenta"];2931 -> 3078[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2931 -> 3079[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2932 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2932[label="yv1631 == yv1671",fontsize=16,color="magenta"];2932 -> 3080[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2932 -> 3081[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2933 -> 2491[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2933[label="yv1632 == yv1672",fontsize=16,color="magenta"];2933 -> 3082[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2933 -> 3083[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2934 -> 2492[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2934[label="yv1632 == yv1672",fontsize=16,color="magenta"];2934 -> 3084[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2934 -> 3085[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2935 -> 2493[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2935[label="yv1632 == yv1672",fontsize=16,color="magenta"];2935 -> 3086[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2935 -> 3087[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2936 -> 2494[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2936[label="yv1632 == yv1672",fontsize=16,color="magenta"];2936 -> 3088[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2936 -> 3089[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2937 -> 2495[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2937[label="yv1632 == yv1672",fontsize=16,color="magenta"];2937 -> 3090[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2937 -> 3091[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2938 -> 2496[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2938[label="yv1632 == yv1672",fontsize=16,color="magenta"];2938 -> 3092[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2938 -> 3093[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2939 -> 2497[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2939[label="yv1632 == yv1672",fontsize=16,color="magenta"];2939 -> 3094[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2939 -> 3095[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2940 -> 2498[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2940[label="yv1632 == yv1672",fontsize=16,color="magenta"];2940 -> 3096[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2940 -> 3097[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2941 -> 2499[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2941[label="yv1632 == yv1672",fontsize=16,color="magenta"];2941 -> 3098[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2941 -> 3099[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2942 -> 2500[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2942[label="yv1632 == yv1672",fontsize=16,color="magenta"];2942 -> 3100[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2942 -> 3101[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2943 -> 2501[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2943[label="yv1632 == yv1672",fontsize=16,color="magenta"];2943 -> 3102[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2943 -> 3103[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2944 -> 2502[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2944[label="yv1632 == yv1672",fontsize=16,color="magenta"];2944 -> 3104[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2944 -> 3105[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2945 -> 2503[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2945[label="yv1632 == yv1672",fontsize=16,color="magenta"];2945 -> 3106[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2945 -> 3107[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2946 -> 2504[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2946[label="yv1632 == yv1672",fontsize=16,color="magenta"];2946 -> 3108[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2946 -> 3109[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2947 -> 2668[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2947[label="primEqNat yv16300 yv16700",fontsize=16,color="magenta"];2947 -> 3110[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2947 -> 3111[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2948[label="False",fontsize=16,color="green",shape="box"];2949[label="False",fontsize=16,color="green",shape="box"];2950[label="True",fontsize=16,color="green",shape="box"];2951[label="False",fontsize=16,color="green",shape="box"];2952[label="True",fontsize=16,color="green",shape="box"];2953 -> 2668[label="",style="dashed", color="red", weight=0]; 18.24/7.00 2953[label="primEqNat yv16300 yv16700",fontsize=16,color="magenta"];2953 -> 3112[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2953 -> 3113[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 2954[label="False",fontsize=16,color="green",shape="box"];2955[label="False",fontsize=16,color="green",shape="box"];2956[label="True",fontsize=16,color="green",shape="box"];2957[label="False",fontsize=16,color="green",shape="box"];2958[label="True",fontsize=16,color="green",shape="box"];2959[label="yv1630",fontsize=16,color="green",shape="box"];2960[label="yv1670",fontsize=16,color="green",shape="box"];2961[label="yv1630",fontsize=16,color="green",shape="box"];2962[label="yv1670",fontsize=16,color="green",shape="box"];2963[label="yv1630",fontsize=16,color="green",shape="box"];2964[label="yv1670",fontsize=16,color="green",shape="box"];2965[label="yv1630",fontsize=16,color="green",shape="box"];2966[label="yv1670",fontsize=16,color="green",shape="box"];2967[label="yv1630",fontsize=16,color="green",shape="box"];2968[label="yv1670",fontsize=16,color="green",shape="box"];2969[label="yv1630",fontsize=16,color="green",shape="box"];2970[label="yv1670",fontsize=16,color="green",shape="box"];2971[label="yv1630",fontsize=16,color="green",shape="box"];2972[label="yv1670",fontsize=16,color="green",shape="box"];2973[label="yv1630",fontsize=16,color="green",shape="box"];2974[label="yv1670",fontsize=16,color="green",shape="box"];2975[label="yv1630",fontsize=16,color="green",shape="box"];2976[label="yv1670",fontsize=16,color="green",shape="box"];2977[label="yv1630",fontsize=16,color="green",shape="box"];2978[label="yv1670",fontsize=16,color="green",shape="box"];2979[label="yv1630",fontsize=16,color="green",shape="box"];2980[label="yv1670",fontsize=16,color="green",shape="box"];2981[label="yv1630",fontsize=16,color="green",shape="box"];2982[label="yv1670",fontsize=16,color="green",shape="box"];2983[label="yv1630",fontsize=16,color="green",shape="box"];2984[label="yv1670",fontsize=16,color="green",shape="box"];2985[label="yv1630",fontsize=16,color="green",shape="box"];2986[label="yv1670",fontsize=16,color="green",shape="box"];2987[label="yv1631",fontsize=16,color="green",shape="box"];2988[label="yv1671",fontsize=16,color="green",shape="box"];2989[label="yv1631",fontsize=16,color="green",shape="box"];2990[label="yv1671",fontsize=16,color="green",shape="box"];2991[label="yv1631",fontsize=16,color="green",shape="box"];2992[label="yv1671",fontsize=16,color="green",shape="box"];2993[label="yv1631",fontsize=16,color="green",shape="box"];2994[label="yv1671",fontsize=16,color="green",shape="box"];2995[label="yv1631",fontsize=16,color="green",shape="box"];2996[label="yv1671",fontsize=16,color="green",shape="box"];2997[label="yv1631",fontsize=16,color="green",shape="box"];2998[label="yv1671",fontsize=16,color="green",shape="box"];2999[label="yv1631",fontsize=16,color="green",shape="box"];3000[label="yv1671",fontsize=16,color="green",shape="box"];3001[label="yv1631",fontsize=16,color="green",shape="box"];3002[label="yv1671",fontsize=16,color="green",shape="box"];3003[label="yv1631",fontsize=16,color="green",shape="box"];3004[label="yv1671",fontsize=16,color="green",shape="box"];3005[label="yv1631",fontsize=16,color="green",shape="box"];3006[label="yv1671",fontsize=16,color="green",shape="box"];3007[label="yv1631",fontsize=16,color="green",shape="box"];3008[label="yv1671",fontsize=16,color="green",shape="box"];3009[label="yv1631",fontsize=16,color="green",shape="box"];3010[label="yv1671",fontsize=16,color="green",shape="box"];3011[label="yv1631",fontsize=16,color="green",shape="box"];3012[label="yv1671",fontsize=16,color="green",shape="box"];3013[label="yv1631",fontsize=16,color="green",shape="box"];3014[label="yv1671",fontsize=16,color="green",shape="box"];3015[label="yv1630",fontsize=16,color="green",shape="box"];3016[label="yv1670",fontsize=16,color="green",shape="box"];3017[label="yv1630",fontsize=16,color="green",shape="box"];3018[label="yv1670",fontsize=16,color="green",shape="box"];3019[label="yv1630",fontsize=16,color="green",shape="box"];3020[label="yv1670",fontsize=16,color="green",shape="box"];3021[label="yv1630",fontsize=16,color="green",shape="box"];3022[label="yv1670",fontsize=16,color="green",shape="box"];3023[label="yv1630",fontsize=16,color="green",shape="box"];3024[label="yv1670",fontsize=16,color="green",shape="box"];3025[label="yv1630",fontsize=16,color="green",shape="box"];3026[label="yv1670",fontsize=16,color="green",shape="box"];3027[label="yv1630",fontsize=16,color="green",shape="box"];3028[label="yv1670",fontsize=16,color="green",shape="box"];3029[label="yv1630",fontsize=16,color="green",shape="box"];3030[label="yv1670",fontsize=16,color="green",shape="box"];3031[label="yv1630",fontsize=16,color="green",shape="box"];3032[label="yv1670",fontsize=16,color="green",shape="box"];3033[label="yv1630",fontsize=16,color="green",shape="box"];3034[label="yv1670",fontsize=16,color="green",shape="box"];3035[label="yv1630",fontsize=16,color="green",shape="box"];3036[label="yv1670",fontsize=16,color="green",shape="box"];3037[label="yv1630",fontsize=16,color="green",shape="box"];3038[label="yv1670",fontsize=16,color="green",shape="box"];3039[label="yv1630",fontsize=16,color="green",shape="box"];3040[label="yv1670",fontsize=16,color="green",shape="box"];3041[label="yv1630",fontsize=16,color="green",shape="box"];3042[label="yv1670",fontsize=16,color="green",shape="box"];3043[label="yv1630",fontsize=16,color="green",shape="box"];3044[label="yv1671",fontsize=16,color="green",shape="box"];3045[label="yv1631",fontsize=16,color="green",shape="box"];3046[label="yv1670",fontsize=16,color="green",shape="box"];3047[label="primEqNat (Succ yv16300) (Succ yv16700)",fontsize=16,color="black",shape="box"];3047 -> 3114[label="",style="solid", color="black", weight=3]; 18.24/7.00 3048[label="primEqNat (Succ yv16300) Zero",fontsize=16,color="black",shape="box"];3048 -> 3115[label="",style="solid", color="black", weight=3]; 18.24/7.00 3049[label="primEqNat Zero (Succ yv16700)",fontsize=16,color="black",shape="box"];3049 -> 3116[label="",style="solid", color="black", weight=3]; 18.24/7.00 3050[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3050 -> 3117[label="",style="solid", color="black", weight=3]; 18.24/7.00 3051[label="List.nubNub'0 yv176 yv177 (yv178 : yv179) True",fontsize=16,color="black",shape="box"];3051 -> 3118[label="",style="solid", color="black", weight=3]; 18.24/7.00 3052[label="primMulInt (Pos yv16300) yv1671",fontsize=16,color="burlywood",shape="box"];3413[label="yv1671/Pos yv16710",fontsize=10,color="white",style="solid",shape="box"];3052 -> 3413[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3413 -> 3119[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3414[label="yv1671/Neg yv16710",fontsize=10,color="white",style="solid",shape="box"];3052 -> 3414[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3414 -> 3120[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3053[label="primMulInt (Neg yv16300) yv1671",fontsize=16,color="burlywood",shape="box"];3415[label="yv1671/Pos yv16710",fontsize=10,color="white",style="solid",shape="box"];3053 -> 3415[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3415 -> 3121[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3416[label="yv1671/Neg yv16710",fontsize=10,color="white",style="solid",shape="box"];3053 -> 3416[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3416 -> 3122[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3054[label="yv1631",fontsize=16,color="green",shape="box"];3055[label="yv1671",fontsize=16,color="green",shape="box"];3056[label="yv1631",fontsize=16,color="green",shape="box"];3057[label="yv1671",fontsize=16,color="green",shape="box"];3058[label="yv1631",fontsize=16,color="green",shape="box"];3059[label="yv1671",fontsize=16,color="green",shape="box"];3060[label="yv1631",fontsize=16,color="green",shape="box"];3061[label="yv1671",fontsize=16,color="green",shape="box"];3062[label="yv1631",fontsize=16,color="green",shape="box"];3063[label="yv1671",fontsize=16,color="green",shape="box"];3064[label="yv1631",fontsize=16,color="green",shape="box"];3065[label="yv1671",fontsize=16,color="green",shape="box"];3066[label="yv1631",fontsize=16,color="green",shape="box"];3067[label="yv1671",fontsize=16,color="green",shape="box"];3068[label="yv1631",fontsize=16,color="green",shape="box"];3069[label="yv1671",fontsize=16,color="green",shape="box"];3070[label="yv1631",fontsize=16,color="green",shape="box"];3071[label="yv1671",fontsize=16,color="green",shape="box"];3072[label="yv1631",fontsize=16,color="green",shape="box"];3073[label="yv1671",fontsize=16,color="green",shape="box"];3074[label="yv1631",fontsize=16,color="green",shape="box"];3075[label="yv1671",fontsize=16,color="green",shape="box"];3076[label="yv1631",fontsize=16,color="green",shape="box"];3077[label="yv1671",fontsize=16,color="green",shape="box"];3078[label="yv1631",fontsize=16,color="green",shape="box"];3079[label="yv1671",fontsize=16,color="green",shape="box"];3080[label="yv1631",fontsize=16,color="green",shape="box"];3081[label="yv1671",fontsize=16,color="green",shape="box"];3082[label="yv1632",fontsize=16,color="green",shape="box"];3083[label="yv1672",fontsize=16,color="green",shape="box"];3084[label="yv1632",fontsize=16,color="green",shape="box"];3085[label="yv1672",fontsize=16,color="green",shape="box"];3086[label="yv1632",fontsize=16,color="green",shape="box"];3087[label="yv1672",fontsize=16,color="green",shape="box"];3088[label="yv1632",fontsize=16,color="green",shape="box"];3089[label="yv1672",fontsize=16,color="green",shape="box"];3090[label="yv1632",fontsize=16,color="green",shape="box"];3091[label="yv1672",fontsize=16,color="green",shape="box"];3092[label="yv1632",fontsize=16,color="green",shape="box"];3093[label="yv1672",fontsize=16,color="green",shape="box"];3094[label="yv1632",fontsize=16,color="green",shape="box"];3095[label="yv1672",fontsize=16,color="green",shape="box"];3096[label="yv1632",fontsize=16,color="green",shape="box"];3097[label="yv1672",fontsize=16,color="green",shape="box"];3098[label="yv1632",fontsize=16,color="green",shape="box"];3099[label="yv1672",fontsize=16,color="green",shape="box"];3100[label="yv1632",fontsize=16,color="green",shape="box"];3101[label="yv1672",fontsize=16,color="green",shape="box"];3102[label="yv1632",fontsize=16,color="green",shape="box"];3103[label="yv1672",fontsize=16,color="green",shape="box"];3104[label="yv1632",fontsize=16,color="green",shape="box"];3105[label="yv1672",fontsize=16,color="green",shape="box"];3106[label="yv1632",fontsize=16,color="green",shape="box"];3107[label="yv1672",fontsize=16,color="green",shape="box"];3108[label="yv1632",fontsize=16,color="green",shape="box"];3109[label="yv1672",fontsize=16,color="green",shape="box"];3110[label="yv16700",fontsize=16,color="green",shape="box"];3111[label="yv16300",fontsize=16,color="green",shape="box"];3112[label="yv16700",fontsize=16,color="green",shape="box"];3113[label="yv16300",fontsize=16,color="green",shape="box"];3114 -> 2668[label="",style="dashed", color="red", weight=0]; 18.24/7.00 3114[label="primEqNat yv16300 yv16700",fontsize=16,color="magenta"];3114 -> 3123[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3114 -> 3124[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3115[label="False",fontsize=16,color="green",shape="box"];3116[label="False",fontsize=16,color="green",shape="box"];3117[label="True",fontsize=16,color="green",shape="box"];3118[label="yv176 : List.nubNub' yv177 (yv176 : yv178 : yv179)",fontsize=16,color="green",shape="box"];3118 -> 3125[label="",style="dashed", color="green", weight=3]; 18.24/7.00 3119[label="primMulInt (Pos yv16300) (Pos yv16710)",fontsize=16,color="black",shape="box"];3119 -> 3126[label="",style="solid", color="black", weight=3]; 18.24/7.00 3120[label="primMulInt (Pos yv16300) (Neg yv16710)",fontsize=16,color="black",shape="box"];3120 -> 3127[label="",style="solid", color="black", weight=3]; 18.24/7.00 3121[label="primMulInt (Neg yv16300) (Pos yv16710)",fontsize=16,color="black",shape="box"];3121 -> 3128[label="",style="solid", color="black", weight=3]; 18.24/7.00 3122[label="primMulInt (Neg yv16300) (Neg yv16710)",fontsize=16,color="black",shape="box"];3122 -> 3129[label="",style="solid", color="black", weight=3]; 18.24/7.00 3123[label="yv16700",fontsize=16,color="green",shape="box"];3124[label="yv16300",fontsize=16,color="green",shape="box"];3125 -> 1385[label="",style="dashed", color="red", weight=0]; 18.24/7.00 3125[label="List.nubNub' yv177 (yv176 : yv178 : yv179)",fontsize=16,color="magenta"];3125 -> 3130[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3125 -> 3131[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3125 -> 3132[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3126[label="Pos (primMulNat yv16300 yv16710)",fontsize=16,color="green",shape="box"];3126 -> 3133[label="",style="dashed", color="green", weight=3]; 18.24/7.00 3127[label="Neg (primMulNat yv16300 yv16710)",fontsize=16,color="green",shape="box"];3127 -> 3134[label="",style="dashed", color="green", weight=3]; 18.24/7.00 3128[label="Neg (primMulNat yv16300 yv16710)",fontsize=16,color="green",shape="box"];3128 -> 3135[label="",style="dashed", color="green", weight=3]; 18.24/7.00 3129[label="Pos (primMulNat yv16300 yv16710)",fontsize=16,color="green",shape="box"];3129 -> 3136[label="",style="dashed", color="green", weight=3]; 18.24/7.00 3130[label="yv176",fontsize=16,color="green",shape="box"];3131[label="yv177",fontsize=16,color="green",shape="box"];3132[label="yv178 : yv179",fontsize=16,color="green",shape="box"];3133[label="primMulNat yv16300 yv16710",fontsize=16,color="burlywood",shape="triangle"];3417[label="yv16300/Succ yv163000",fontsize=10,color="white",style="solid",shape="box"];3133 -> 3417[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3417 -> 3137[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3418[label="yv16300/Zero",fontsize=10,color="white",style="solid",shape="box"];3133 -> 3418[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3418 -> 3138[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3134 -> 3133[label="",style="dashed", color="red", weight=0]; 18.24/7.00 3134[label="primMulNat yv16300 yv16710",fontsize=16,color="magenta"];3134 -> 3139[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3135 -> 3133[label="",style="dashed", color="red", weight=0]; 18.24/7.00 3135[label="primMulNat yv16300 yv16710",fontsize=16,color="magenta"];3135 -> 3140[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3136 -> 3133[label="",style="dashed", color="red", weight=0]; 18.24/7.00 3136[label="primMulNat yv16300 yv16710",fontsize=16,color="magenta"];3136 -> 3141[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3136 -> 3142[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3137[label="primMulNat (Succ yv163000) yv16710",fontsize=16,color="burlywood",shape="box"];3419[label="yv16710/Succ yv167100",fontsize=10,color="white",style="solid",shape="box"];3137 -> 3419[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3419 -> 3143[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3420[label="yv16710/Zero",fontsize=10,color="white",style="solid",shape="box"];3137 -> 3420[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3420 -> 3144[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3138[label="primMulNat Zero yv16710",fontsize=16,color="burlywood",shape="box"];3421[label="yv16710/Succ yv167100",fontsize=10,color="white",style="solid",shape="box"];3138 -> 3421[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3421 -> 3145[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3422[label="yv16710/Zero",fontsize=10,color="white",style="solid",shape="box"];3138 -> 3422[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3422 -> 3146[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3139[label="yv16710",fontsize=16,color="green",shape="box"];3140[label="yv16300",fontsize=16,color="green",shape="box"];3141[label="yv16300",fontsize=16,color="green",shape="box"];3142[label="yv16710",fontsize=16,color="green",shape="box"];3143[label="primMulNat (Succ yv163000) (Succ yv167100)",fontsize=16,color="black",shape="box"];3143 -> 3147[label="",style="solid", color="black", weight=3]; 18.24/7.00 3144[label="primMulNat (Succ yv163000) Zero",fontsize=16,color="black",shape="box"];3144 -> 3148[label="",style="solid", color="black", weight=3]; 18.24/7.00 3145[label="primMulNat Zero (Succ yv167100)",fontsize=16,color="black",shape="box"];3145 -> 3149[label="",style="solid", color="black", weight=3]; 18.24/7.00 3146[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];3146 -> 3150[label="",style="solid", color="black", weight=3]; 18.24/7.00 3147 -> 3151[label="",style="dashed", color="red", weight=0]; 18.24/7.00 3147[label="primPlusNat (primMulNat yv163000 (Succ yv167100)) (Succ yv167100)",fontsize=16,color="magenta"];3147 -> 3152[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3148[label="Zero",fontsize=16,color="green",shape="box"];3149[label="Zero",fontsize=16,color="green",shape="box"];3150[label="Zero",fontsize=16,color="green",shape="box"];3152 -> 3133[label="",style="dashed", color="red", weight=0]; 18.24/7.00 3152[label="primMulNat yv163000 (Succ yv167100)",fontsize=16,color="magenta"];3152 -> 3153[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3152 -> 3154[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3151[label="primPlusNat yv195 (Succ yv167100)",fontsize=16,color="burlywood",shape="triangle"];3423[label="yv195/Succ yv1950",fontsize=10,color="white",style="solid",shape="box"];3151 -> 3423[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3423 -> 3155[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3424[label="yv195/Zero",fontsize=10,color="white",style="solid",shape="box"];3151 -> 3424[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3424 -> 3156[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3153[label="yv163000",fontsize=16,color="green",shape="box"];3154[label="Succ yv167100",fontsize=16,color="green",shape="box"];3155[label="primPlusNat (Succ yv1950) (Succ yv167100)",fontsize=16,color="black",shape="box"];3155 -> 3157[label="",style="solid", color="black", weight=3]; 18.24/7.00 3156[label="primPlusNat Zero (Succ yv167100)",fontsize=16,color="black",shape="box"];3156 -> 3158[label="",style="solid", color="black", weight=3]; 18.24/7.00 3157[label="Succ (Succ (primPlusNat yv1950 yv167100))",fontsize=16,color="green",shape="box"];3157 -> 3159[label="",style="dashed", color="green", weight=3]; 18.24/7.00 3158[label="Succ yv167100",fontsize=16,color="green",shape="box"];3159[label="primPlusNat yv1950 yv167100",fontsize=16,color="burlywood",shape="triangle"];3425[label="yv1950/Succ yv19500",fontsize=10,color="white",style="solid",shape="box"];3159 -> 3425[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3425 -> 3160[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3426[label="yv1950/Zero",fontsize=10,color="white",style="solid",shape="box"];3159 -> 3426[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3426 -> 3161[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3160[label="primPlusNat (Succ yv19500) yv167100",fontsize=16,color="burlywood",shape="box"];3427[label="yv167100/Succ yv1671000",fontsize=10,color="white",style="solid",shape="box"];3160 -> 3427[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3427 -> 3162[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3428[label="yv167100/Zero",fontsize=10,color="white",style="solid",shape="box"];3160 -> 3428[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3428 -> 3163[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3161[label="primPlusNat Zero yv167100",fontsize=16,color="burlywood",shape="box"];3429[label="yv167100/Succ yv1671000",fontsize=10,color="white",style="solid",shape="box"];3161 -> 3429[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3429 -> 3164[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3430[label="yv167100/Zero",fontsize=10,color="white",style="solid",shape="box"];3161 -> 3430[label="",style="solid", color="burlywood", weight=9]; 18.24/7.00 3430 -> 3165[label="",style="solid", color="burlywood", weight=3]; 18.24/7.00 3162[label="primPlusNat (Succ yv19500) (Succ yv1671000)",fontsize=16,color="black",shape="box"];3162 -> 3166[label="",style="solid", color="black", weight=3]; 18.24/7.00 3163[label="primPlusNat (Succ yv19500) Zero",fontsize=16,color="black",shape="box"];3163 -> 3167[label="",style="solid", color="black", weight=3]; 18.24/7.00 3164[label="primPlusNat Zero (Succ yv1671000)",fontsize=16,color="black",shape="box"];3164 -> 3168[label="",style="solid", color="black", weight=3]; 18.24/7.00 3165[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3165 -> 3169[label="",style="solid", color="black", weight=3]; 18.24/7.00 3166[label="Succ (Succ (primPlusNat yv19500 yv1671000))",fontsize=16,color="green",shape="box"];3166 -> 3170[label="",style="dashed", color="green", weight=3]; 18.24/7.00 3167[label="Succ yv19500",fontsize=16,color="green",shape="box"];3168[label="Succ yv1671000",fontsize=16,color="green",shape="box"];3169[label="Zero",fontsize=16,color="green",shape="box"];3170 -> 3159[label="",style="dashed", color="red", weight=0]; 18.24/7.00 3170[label="primPlusNat yv19500 yv1671000",fontsize=16,color="magenta"];3170 -> 3171[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3170 -> 3172[label="",style="dashed", color="magenta", weight=3]; 18.24/7.00 3171[label="yv19500",fontsize=16,color="green",shape="box"];3172[label="yv1671000",fontsize=16,color="green",shape="box"];} 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (8) 18.24/7.00 Complex Obligation (AND) 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (9) 18.24/7.00 Obligation: 18.24/7.00 Q DP problem: 18.24/7.00 The TRS P consists of the following rules: 18.24/7.00 18.24/7.00 new_primMulNat(Succ(yv163000), Succ(yv167100)) -> new_primMulNat(yv163000, Succ(yv167100)) 18.24/7.00 18.24/7.00 R is empty. 18.24/7.00 Q is empty. 18.24/7.00 We have to consider all minimal (P,Q,R)-chains. 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (10) QDPSizeChangeProof (EQUIVALENT) 18.24/7.00 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.24/7.00 18.24/7.00 From the DPs we obtained the following set of size-change graphs: 18.24/7.00 *new_primMulNat(Succ(yv163000), Succ(yv167100)) -> new_primMulNat(yv163000, Succ(yv167100)) 18.24/7.00 The graph contains the following edges 1 > 1, 2 >= 2 18.24/7.00 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (11) 18.24/7.00 YES 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (12) 18.24/7.00 Obligation: 18.24/7.00 Q DP problem: 18.24/7.00 The TRS P consists of the following rules: 18.24/7.00 18.24/7.00 new_nubNub'(:(yv700, yv701), yv71, yv72, bc) -> new_nubNub'1(yv700, yv701, yv71, yv72, yv71, yv72, bc) 18.24/7.00 new_nubNub'10(yv176, yv177, yv178, yv179, False, [], bb) -> new_nubNub'(yv177, yv176, :(yv178, yv179), bb) 18.24/7.00 new_nubNub'1(yv163, yv164, yv165, yv166, yv167, yv168, ba) -> new_nubNub'10(yv163, yv164, yv165, yv166, new_esEs4(yv163, yv167, ba), yv168, ba) 18.24/7.00 new_nubNub'10(yv176, yv177, yv178, yv179, False, :(yv1810, yv1811), bb) -> new_nubNub'1(yv176, yv177, yv178, yv179, yv1810, yv1811, bb) 18.24/7.00 new_nubNub'10(yv176, yv177, yv178, yv179, True, yv181, bb) -> new_nubNub'(yv177, yv178, yv179, bb) 18.24/7.00 18.24/7.00 The TRS R consists of the following rules: 18.24/7.00 18.24/7.00 new_esEs7(yv1631, yv1671, ty_Bool) -> new_esEs16(yv1631, yv1671) 18.24/7.00 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 18.24/7.00 new_esEs7(yv1631, yv1671, ty_Char) -> new_esEs18(yv1631, yv1671) 18.24/7.00 new_esEs25(yv1631, yv1671, ty_Int) -> new_esEs13(yv1631, yv1671) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), ty_Integer) -> new_esEs19(yv1630, yv1670) 18.24/7.00 new_esEs11(LT, EQ) -> False 18.24/7.00 new_esEs11(EQ, LT) -> False 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), ty_@0) -> new_esEs8(yv1630, yv1670) 18.24/7.00 new_esEs26(yv1632, yv1672, ty_Ordering) -> new_esEs11(yv1632, yv1672) 18.24/7.00 new_esEs15(Float(yv1630, yv1631), Float(yv1670, yv1671)) -> new_esEs13(new_sr(yv1630, yv1671), new_sr(yv1631, yv1670)) 18.24/7.00 new_esEs12(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), baf, bag, bah) -> new_asAs(new_esEs24(yv1630, yv1670, baf), new_asAs(new_esEs25(yv1631, yv1671, bag), new_esEs26(yv1632, yv1672, bah))) 18.24/7.00 new_esEs24(yv1630, yv1670, ty_Ordering) -> new_esEs11(yv1630, yv1670) 18.24/7.00 new_esEs21(yv1630, yv1670, app(app(ty_Either, fc), fd)) -> new_esEs17(yv1630, yv1670, fc, fd) 18.24/7.00 new_esEs6(yv1630, yv1670, app(app(ty_@2, cb), cc)) -> new_esEs5(yv1630, yv1670, cb, cc) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, app(ty_[], baa)) -> new_esEs14(yv1630, yv1670, baa) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), app(ty_Ratio, bbb)) -> new_esEs9(yv1630, yv1670, bbb) 18.24/7.00 new_esEs23(yv1631, yv1671, ty_Int) -> new_esEs13(yv1631, yv1671) 18.24/7.00 new_esEs6(yv1630, yv1670, ty_Int) -> new_esEs13(yv1630, yv1670) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, ty_Float) -> new_esEs15(yv1630, yv1670) 18.24/7.00 new_esEs11(LT, GT) -> False 18.24/7.00 new_esEs11(GT, LT) -> False 18.24/7.00 new_esEs26(yv1632, yv1672, ty_Bool) -> new_esEs16(yv1632, yv1672) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, ty_Int) -> new_esEs13(yv1630, yv1670) 18.24/7.00 new_esEs13(yv163, yv167) -> new_primEqInt(yv163, yv167) 18.24/7.00 new_esEs25(yv1631, yv1671, app(app(ty_@2, beb), bec)) -> new_esEs5(yv1631, yv1671, beb, bec) 18.24/7.00 new_esEs20(Nothing, Just(yv1670), bba) -> False 18.24/7.00 new_esEs20(Just(yv1630), Nothing, bba) -> False 18.24/7.00 new_esEs22(yv1630, yv1670, ty_Integer) -> new_esEs19(yv1630, yv1670) 18.24/7.00 new_asAs(True, yv194) -> yv194 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), ty_Int, fg) -> new_esEs13(yv1630, yv1670) 18.24/7.00 new_esEs7(yv1631, yv1671, app(ty_[], dg)) -> new_esEs14(yv1631, yv1671, dg) 18.24/7.00 new_esEs20(Nothing, Nothing, bba) -> True 18.24/7.00 new_esEs7(yv1631, yv1671, ty_Ordering) -> new_esEs11(yv1631, yv1671) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, app(app(app(ty_@3, hd), he), hf)) -> new_esEs12(yv1630, yv1670, hd, he, hf) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, app(ty_Maybe, bad)) -> new_esEs20(yv1630, yv1670, bad) 18.24/7.00 new_primEqInt(Pos(Succ(yv16300)), Pos(Zero)) -> False 18.24/7.00 new_primEqInt(Pos(Zero), Pos(Succ(yv16700))) -> False 18.24/7.00 new_esEs21(yv1630, yv1670, app(ty_Maybe, ff)) -> new_esEs20(yv1630, yv1670, ff) 18.24/7.00 new_esEs21(yv1630, yv1670, ty_Char) -> new_esEs18(yv1630, yv1670) 18.24/7.00 new_esEs4(yv163, yv167, app(app(ty_@2, bd), be)) -> new_esEs5(yv163, yv167, bd, be) 18.24/7.00 new_esEs21(yv1630, yv1670, ty_Int) -> new_esEs13(yv1630, yv1670) 18.24/7.00 new_esEs26(yv1632, yv1672, ty_Char) -> new_esEs18(yv1632, yv1672) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs12(yv1630, yv1670, bbc, bbd, bbe) 18.24/7.00 new_esEs14(:(yv1630, yv1631), :(yv1670, yv1671), ec) -> new_asAs(new_esEs21(yv1630, yv1670, ec), new_esEs14(yv1631, yv1671, ec)) 18.24/7.00 new_esEs24(yv1630, yv1670, ty_@0) -> new_esEs8(yv1630, yv1670) 18.24/7.00 new_esEs21(yv1630, yv1670, ty_Bool) -> new_esEs16(yv1630, yv1670) 18.24/7.00 new_primEqNat0(Succ(yv16300), Succ(yv16700)) -> new_primEqNat0(yv16300, yv16700) 18.24/7.00 new_esEs4(yv163, yv167, ty_Float) -> new_esEs15(yv163, yv167) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), ty_Double) -> new_esEs10(yv1630, yv1670) 18.24/7.00 new_esEs25(yv1631, yv1671, ty_Float) -> new_esEs15(yv1631, yv1671) 18.24/7.00 new_esEs26(yv1632, yv1672, app(ty_Maybe, bga)) -> new_esEs20(yv1632, yv1672, bga) 18.24/7.00 new_esEs6(yv1630, yv1670, ty_@0) -> new_esEs8(yv1630, yv1670) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), app(ty_Maybe, ha), fg) -> new_esEs20(yv1630, yv1670, ha) 18.24/7.00 new_esEs24(yv1630, yv1670, ty_Bool) -> new_esEs16(yv1630, yv1670) 18.24/7.00 new_esEs24(yv1630, yv1670, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs12(yv1630, yv1670, bce, bcf, bcg) 18.24/7.00 new_esEs24(yv1630, yv1670, ty_Double) -> new_esEs10(yv1630, yv1670) 18.24/7.00 new_esEs4(yv163, yv167, app(ty_[], ec)) -> new_esEs14(yv163, yv167, ec) 18.24/7.00 new_esEs24(yv1630, yv1670, app(ty_Maybe, bde)) -> new_esEs20(yv1630, yv1670, bde) 18.24/7.00 new_esEs14([], [], ec) -> True 18.24/7.00 new_primMulNat0(Zero, Zero) -> Zero 18.24/7.00 new_esEs24(yv1630, yv1670, app(ty_[], bdb)) -> new_esEs14(yv1630, yv1670, bdb) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), ty_Int) -> new_esEs13(yv1630, yv1670) 18.24/7.00 new_esEs4(yv163, yv167, ty_@0) -> new_esEs8(yv163, yv167) 18.24/7.00 new_esEs11(EQ, GT) -> False 18.24/7.00 new_esEs11(GT, EQ) -> False 18.24/7.00 new_esEs8(@0, @0) -> True 18.24/7.00 new_esEs23(yv1631, yv1671, ty_Integer) -> new_esEs19(yv1631, yv1671) 18.24/7.00 new_primEqNat0(Succ(yv16300), Zero) -> False 18.24/7.00 new_primEqNat0(Zero, Succ(yv16700)) -> False 18.24/7.00 new_esEs18(Char(yv1630), Char(yv1670)) -> new_primEqNat0(yv1630, yv1670) 18.24/7.00 new_esEs6(yv1630, yv1670, ty_Integer) -> new_esEs19(yv1630, yv1670) 18.24/7.00 new_esEs24(yv1630, yv1670, ty_Integer) -> new_esEs19(yv1630, yv1670) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, ty_Integer) -> new_esEs19(yv1630, yv1670) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), app(ty_[], gf), fg) -> new_esEs14(yv1630, yv1670, gf) 18.24/7.00 new_esEs6(yv1630, yv1670, ty_Float) -> new_esEs15(yv1630, yv1670) 18.24/7.00 new_esEs7(yv1631, yv1671, ty_Int) -> new_esEs13(yv1631, yv1671) 18.24/7.00 new_esEs7(yv1631, yv1671, app(ty_Maybe, eb)) -> new_esEs20(yv1631, yv1671, eb) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), ty_Integer, fg) -> new_esEs19(yv1630, yv1670) 18.24/7.00 new_esEs4(yv163, yv167, app(app(ty_Either, hb), fg)) -> new_esEs17(yv163, yv167, hb, fg) 18.24/7.00 new_primEqInt(Neg(Succ(yv16300)), Neg(Zero)) -> False 18.24/7.00 new_primEqInt(Neg(Zero), Neg(Succ(yv16700))) -> False 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), app(app(app(ty_@3, ga), gb), gc), fg) -> new_esEs12(yv1630, yv1670, ga, gb, gc) 18.24/7.00 new_esEs25(yv1631, yv1671, ty_Bool) -> new_esEs16(yv1631, yv1671) 18.24/7.00 new_esEs6(yv1630, yv1670, app(ty_Maybe, cg)) -> new_esEs20(yv1630, yv1670, cg) 18.24/7.00 new_esEs11(GT, GT) -> True 18.24/7.00 new_primEqInt(Pos(Succ(yv16300)), Pos(Succ(yv16700))) -> new_primEqNat0(yv16300, yv16700) 18.24/7.00 new_esEs17(Left(yv1630), Right(yv1670), hb, fg) -> False 18.24/7.00 new_esEs17(Right(yv1630), Left(yv1670), hb, fg) -> False 18.24/7.00 new_esEs11(EQ, EQ) -> True 18.24/7.00 new_esEs4(yv163, yv167, app(ty_Ratio, bae)) -> new_esEs9(yv163, yv167, bae) 18.24/7.00 new_esEs4(yv163, yv167, ty_Char) -> new_esEs18(yv163, yv167) 18.24/7.00 new_esEs16(True, True) -> True 18.24/7.00 new_sr(Pos(yv16300), Neg(yv16710)) -> Neg(new_primMulNat0(yv16300, yv16710)) 18.24/7.00 new_sr(Neg(yv16300), Pos(yv16710)) -> Neg(new_primMulNat0(yv16300, yv16710)) 18.24/7.00 new_esEs25(yv1631, yv1671, app(ty_Maybe, beg)) -> new_esEs20(yv1631, yv1671, beg) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), ty_Float) -> new_esEs15(yv1630, yv1670) 18.24/7.00 new_primPlusNat1(Succ(yv19500), Succ(yv1671000)) -> Succ(Succ(new_primPlusNat1(yv19500, yv1671000))) 18.24/7.00 new_primEqInt(Pos(Succ(yv16300)), Neg(yv1670)) -> False 18.24/7.00 new_primEqInt(Neg(Succ(yv16300)), Pos(yv1670)) -> False 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), ty_Float, fg) -> new_esEs15(yv1630, yv1670) 18.24/7.00 new_esEs21(yv1630, yv1670, ty_Ordering) -> new_esEs11(yv1630, yv1670) 18.24/7.00 new_esEs21(yv1630, yv1670, app(app(ty_@2, eh), fa)) -> new_esEs5(yv1630, yv1670, eh, fa) 18.24/7.00 new_esEs14(:(yv1630, yv1631), [], ec) -> False 18.24/7.00 new_esEs14([], :(yv1670, yv1671), ec) -> False 18.24/7.00 new_esEs25(yv1631, yv1671, ty_Ordering) -> new_esEs11(yv1631, yv1671) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), app(ty_[], bbh)) -> new_esEs14(yv1630, yv1670, bbh) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), app(ty_Maybe, bcc)) -> new_esEs20(yv1630, yv1670, bcc) 18.24/7.00 new_esEs7(yv1631, yv1671, app(app(ty_@2, de), df)) -> new_esEs5(yv1631, yv1671, de, df) 18.24/7.00 new_esEs21(yv1630, yv1670, app(ty_Ratio, ed)) -> new_esEs9(yv1630, yv1670, ed) 18.24/7.00 new_esEs6(yv1630, yv1670, ty_Bool) -> new_esEs16(yv1630, yv1670) 18.24/7.00 new_sr(Neg(yv16300), Neg(yv16710)) -> Pos(new_primMulNat0(yv16300, yv16710)) 18.24/7.00 new_esEs24(yv1630, yv1670, ty_Float) -> new_esEs15(yv1630, yv1670) 18.24/7.00 new_esEs4(yv163, yv167, ty_Double) -> new_esEs10(yv163, yv167) 18.24/7.00 new_esEs4(yv163, yv167, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs12(yv163, yv167, baf, bag, bah) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), ty_Double, fg) -> new_esEs10(yv1630, yv1670) 18.24/7.00 new_esEs26(yv1632, yv1672, app(app(ty_@2, bfd), bfe)) -> new_esEs5(yv1632, yv1672, bfd, bfe) 18.24/7.00 new_esEs6(yv1630, yv1670, ty_Char) -> new_esEs18(yv1630, yv1670) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), ty_Char) -> new_esEs18(yv1630, yv1670) 18.24/7.00 new_esEs21(yv1630, yv1670, ty_@0) -> new_esEs8(yv1630, yv1670) 18.24/7.00 new_esEs24(yv1630, yv1670, ty_Int) -> new_esEs13(yv1630, yv1670) 18.24/7.00 new_primEqInt(Pos(Zero), Neg(Succ(yv16700))) -> False 18.24/7.00 new_primEqInt(Neg(Zero), Pos(Succ(yv16700))) -> False 18.24/7.00 new_esEs6(yv1630, yv1670, ty_Ordering) -> new_esEs11(yv1630, yv1670) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, ty_Ordering) -> new_esEs11(yv1630, yv1670) 18.24/7.00 new_esEs21(yv1630, yv1670, ty_Double) -> new_esEs10(yv1630, yv1670) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), ty_@0, fg) -> new_esEs8(yv1630, yv1670) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, app(ty_Ratio, hc)) -> new_esEs9(yv1630, yv1670, hc) 18.24/7.00 new_esEs6(yv1630, yv1670, app(ty_[], cd)) -> new_esEs14(yv1630, yv1670, cd) 18.24/7.00 new_primEqInt(Neg(Succ(yv16300)), Neg(Succ(yv16700))) -> new_primEqNat0(yv16300, yv16700) 18.24/7.00 new_esEs7(yv1631, yv1671, ty_Integer) -> new_esEs19(yv1631, yv1671) 18.24/7.00 new_primPlusNat0(Succ(yv1950), yv167100) -> Succ(Succ(new_primPlusNat1(yv1950, yv167100))) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, ty_Bool) -> new_esEs16(yv1630, yv1670) 18.24/7.00 new_esEs6(yv1630, yv1670, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs12(yv1630, yv1670, bg, bh, ca) 18.24/7.00 new_esEs21(yv1630, yv1670, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs12(yv1630, yv1670, ee, ef, eg) 18.24/7.00 new_esEs6(yv1630, yv1670, ty_Double) -> new_esEs10(yv1630, yv1670) 18.24/7.00 new_esEs25(yv1631, yv1671, app(ty_[], bed)) -> new_esEs14(yv1631, yv1671, bed) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), app(app(ty_Either, gg), gh), fg) -> new_esEs17(yv1630, yv1670, gg, gh) 18.24/7.00 new_esEs4(yv163, yv167, ty_Ordering) -> new_esEs11(yv163, yv167) 18.24/7.00 new_esEs7(yv1631, yv1671, ty_Float) -> new_esEs15(yv1631, yv1671) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, ty_Double) -> new_esEs10(yv1630, yv1670) 18.24/7.00 new_esEs26(yv1632, yv1672, ty_Int) -> new_esEs13(yv1632, yv1672) 18.24/7.00 new_esEs4(yv163, yv167, ty_Integer) -> new_esEs19(yv163, yv167) 18.24/7.00 new_primPlusNat1(Zero, Zero) -> Zero 18.24/7.00 new_esEs26(yv1632, yv1672, app(ty_Ratio, beh)) -> new_esEs9(yv1632, yv1672, beh) 18.24/7.00 new_primMulNat0(Succ(yv163000), Zero) -> Zero 18.24/7.00 new_primMulNat0(Zero, Succ(yv167100)) -> Zero 18.24/7.00 new_sr(Pos(yv16300), Pos(yv16710)) -> Pos(new_primMulNat0(yv16300, yv16710)) 18.24/7.00 new_primPlusNat0(Zero, yv167100) -> Succ(yv167100) 18.24/7.00 new_esEs26(yv1632, yv1672, app(app(ty_Either, bfg), bfh)) -> new_esEs17(yv1632, yv1672, bfg, bfh) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), ty_Bool) -> new_esEs16(yv1630, yv1670) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), app(ty_Ratio, fh), fg) -> new_esEs9(yv1630, yv1670, fh) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, ty_@0) -> new_esEs8(yv1630, yv1670) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), ty_Char, fg) -> new_esEs18(yv1630, yv1670) 18.24/7.00 new_esEs25(yv1631, yv1671, app(ty_Ratio, bdf)) -> new_esEs9(yv1631, yv1671, bdf) 18.24/7.00 new_esEs7(yv1631, yv1671, app(app(ty_Either, dh), ea)) -> new_esEs17(yv1631, yv1671, dh, ea) 18.24/7.00 new_esEs25(yv1631, yv1671, ty_@0) -> new_esEs8(yv1631, yv1671) 18.24/7.00 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 18.24/7.00 new_esEs11(LT, LT) -> True 18.24/7.00 new_primMulNat0(Succ(yv163000), Succ(yv167100)) -> new_primPlusNat0(new_primMulNat0(yv163000, Succ(yv167100)), yv167100) 18.24/7.00 new_esEs25(yv1631, yv1671, ty_Integer) -> new_esEs19(yv1631, yv1671) 18.24/7.00 new_esEs4(yv163, yv167, app(ty_Maybe, bba)) -> new_esEs20(yv163, yv167, bba) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), ty_Bool, fg) -> new_esEs16(yv1630, yv1670) 18.24/7.00 new_esEs6(yv1630, yv1670, app(app(ty_Either, ce), cf)) -> new_esEs17(yv1630, yv1670, ce, cf) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), ty_Ordering) -> new_esEs11(yv1630, yv1670) 18.24/7.00 new_esEs16(False, False) -> True 18.24/7.00 new_esEs5(@2(yv1630, yv1631), @2(yv1670, yv1671), bd, be) -> new_asAs(new_esEs6(yv1630, yv1670, bd), new_esEs7(yv1631, yv1671, be)) 18.24/7.00 new_esEs26(yv1632, yv1672, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs12(yv1632, yv1672, bfa, bfb, bfc) 18.24/7.00 new_primPlusNat1(Succ(yv19500), Zero) -> Succ(yv19500) 18.24/7.00 new_primPlusNat1(Zero, Succ(yv1671000)) -> Succ(yv1671000) 18.24/7.00 new_esEs26(yv1632, yv1672, ty_@0) -> new_esEs8(yv1632, yv1672) 18.24/7.00 new_esEs24(yv1630, yv1670, app(ty_Ratio, bcd)) -> new_esEs9(yv1630, yv1670, bcd) 18.24/7.00 new_esEs6(yv1630, yv1670, app(ty_Ratio, bf)) -> new_esEs9(yv1630, yv1670, bf) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, ty_Char) -> new_esEs18(yv1630, yv1670) 18.24/7.00 new_esEs7(yv1631, yv1671, app(ty_Ratio, da)) -> new_esEs9(yv1631, yv1671, da) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), app(app(ty_@2, gd), ge), fg) -> new_esEs5(yv1630, yv1670, gd, ge) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, app(app(ty_Either, bab), bac)) -> new_esEs17(yv1630, yv1670, bab, bac) 18.24/7.00 new_esEs24(yv1630, yv1670, ty_Char) -> new_esEs18(yv1630, yv1670) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), app(app(ty_Either, bca), bcb)) -> new_esEs17(yv1630, yv1670, bca, bcb) 18.24/7.00 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 18.24/7.00 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 18.24/7.00 new_esEs9(:%(yv1630, yv1631), :%(yv1670, yv1671), bae) -> new_asAs(new_esEs22(yv1630, yv1670, bae), new_esEs23(yv1631, yv1671, bae)) 18.24/7.00 new_esEs26(yv1632, yv1672, ty_Double) -> new_esEs10(yv1632, yv1672) 18.24/7.00 new_esEs25(yv1631, yv1671, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs12(yv1631, yv1671, bdg, bdh, bea) 18.24/7.00 new_primEqNat0(Zero, Zero) -> True 18.24/7.00 new_esEs24(yv1630, yv1670, app(app(ty_Either, bdc), bdd)) -> new_esEs17(yv1630, yv1670, bdc, bdd) 18.24/7.00 new_esEs22(yv1630, yv1670, ty_Int) -> new_esEs13(yv1630, yv1670) 18.24/7.00 new_esEs26(yv1632, yv1672, app(ty_[], bff)) -> new_esEs14(yv1632, yv1672, bff) 18.24/7.00 new_esEs4(yv163, yv167, ty_Bool) -> new_esEs16(yv163, yv167) 18.24/7.00 new_esEs25(yv1631, yv1671, ty_Double) -> new_esEs10(yv1631, yv1671) 18.24/7.00 new_esEs26(yv1632, yv1672, ty_Float) -> new_esEs15(yv1632, yv1672) 18.24/7.00 new_esEs7(yv1631, yv1671, ty_@0) -> new_esEs8(yv1631, yv1671) 18.24/7.00 new_esEs21(yv1630, yv1670, app(ty_[], fb)) -> new_esEs14(yv1630, yv1670, fb) 18.24/7.00 new_esEs25(yv1631, yv1671, app(app(ty_Either, bee), bef)) -> new_esEs17(yv1631, yv1671, bee, bef) 18.24/7.00 new_esEs25(yv1631, yv1671, ty_Char) -> new_esEs18(yv1631, yv1671) 18.24/7.00 new_esEs19(Integer(yv1630), Integer(yv1670)) -> new_primEqInt(yv1630, yv1670) 18.24/7.00 new_asAs(False, yv194) -> False 18.24/7.00 new_esEs10(Double(yv1630, yv1631), Double(yv1670, yv1671)) -> new_esEs13(new_sr(yv1630, yv1671), new_sr(yv1631, yv1670)) 18.24/7.00 new_esEs7(yv1631, yv1671, ty_Double) -> new_esEs10(yv1631, yv1671) 18.24/7.00 new_esEs17(Right(yv1630), Right(yv1670), hb, app(app(ty_@2, hg), hh)) -> new_esEs5(yv1630, yv1670, hg, hh) 18.24/7.00 new_esEs21(yv1630, yv1670, ty_Integer) -> new_esEs19(yv1630, yv1670) 18.24/7.00 new_esEs4(yv163, yv167, ty_Int) -> new_esEs13(yv163, yv167) 18.24/7.00 new_esEs24(yv1630, yv1670, app(app(ty_@2, bch), bda)) -> new_esEs5(yv1630, yv1670, bch, bda) 18.24/7.00 new_esEs20(Just(yv1630), Just(yv1670), app(app(ty_@2, bbf), bbg)) -> new_esEs5(yv1630, yv1670, bbf, bbg) 18.24/7.00 new_esEs26(yv1632, yv1672, ty_Integer) -> new_esEs19(yv1632, yv1672) 18.24/7.00 new_esEs7(yv1631, yv1671, app(app(app(ty_@3, db), dc), dd)) -> new_esEs12(yv1631, yv1671, db, dc, dd) 18.24/7.00 new_esEs17(Left(yv1630), Left(yv1670), ty_Ordering, fg) -> new_esEs11(yv1630, yv1670) 18.24/7.00 new_esEs16(False, True) -> False 18.24/7.00 new_esEs16(True, False) -> False 18.24/7.00 new_esEs21(yv1630, yv1670, ty_Float) -> new_esEs15(yv1630, yv1670) 18.24/7.00 18.24/7.00 The set Q consists of the following terms: 18.24/7.00 18.24/7.00 new_esEs24(x0, x1, ty_@0) 18.24/7.00 new_esEs25(x0, x1, app(ty_Maybe, x2)) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 18.24/7.00 new_esEs23(x0, x1, ty_Integer) 18.24/7.00 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 18.24/7.00 new_esEs21(x0, x1, ty_Bool) 18.24/7.00 new_esEs20(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 18.24/7.00 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 18.24/7.00 new_primMulNat0(Zero, Zero) 18.24/7.00 new_esEs25(x0, x1, ty_Integer) 18.24/7.00 new_sr(Pos(x0), Neg(x1)) 18.24/7.00 new_sr(Neg(x0), Pos(x1)) 18.24/7.00 new_primPlusNat1(Zero, Zero) 18.24/7.00 new_esEs24(x0, x1, ty_Bool) 18.24/7.00 new_esEs4(x0, x1, ty_Bool) 18.24/7.00 new_esEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 18.24/7.00 new_esEs4(x0, x1, ty_@0) 18.24/7.00 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 18.24/7.00 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 18.24/7.00 new_sr(Pos(x0), Pos(x1)) 18.24/7.00 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 18.24/7.00 new_esEs21(x0, x1, app(ty_Maybe, x2)) 18.24/7.00 new_esEs6(x0, x1, ty_Char) 18.24/7.00 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 18.24/7.00 new_primPlusNat1(Succ(x0), Zero) 18.24/7.00 new_esEs19(Integer(x0), Integer(x1)) 18.24/7.00 new_esEs14([], :(x0, x1), x2) 18.24/7.00 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 18.24/7.00 new_esEs6(x0, x1, app(ty_[], x2)) 18.24/7.00 new_esEs14(:(x0, x1), [], x2) 18.24/7.00 new_esEs7(x0, x1, app(ty_Ratio, x2)) 18.24/7.00 new_esEs20(Just(x0), Just(x1), ty_Bool) 18.24/7.00 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 18.24/7.00 new_esEs21(x0, x1, ty_Integer) 18.24/7.00 new_esEs6(x0, x1, ty_Int) 18.24/7.00 new_primEqInt(Pos(Zero), Pos(Zero)) 18.24/7.00 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 18.24/7.00 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 18.24/7.00 new_esEs25(x0, x1, ty_@0) 18.24/7.00 new_esEs21(x0, x1, app(ty_Ratio, x2)) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 18.24/7.00 new_esEs22(x0, x1, ty_Integer) 18.24/7.00 new_esEs26(x0, x1, ty_Integer) 18.24/7.00 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 18.24/7.00 new_esEs21(x0, x1, ty_@0) 18.24/7.00 new_esEs7(x0, x1, ty_@0) 18.24/7.00 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 18.24/7.00 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 18.24/7.00 new_sr(Neg(x0), Neg(x1)) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 18.24/7.00 new_esEs20(Nothing, Nothing, x0) 18.24/7.00 new_primMulNat0(Succ(x0), Zero) 18.24/7.00 new_primEqInt(Neg(Zero), Neg(Zero)) 18.24/7.00 new_esEs24(x0, x1, app(ty_Maybe, x2)) 18.24/7.00 new_primMulNat0(Succ(x0), Succ(x1)) 18.24/7.00 new_esEs20(Nothing, Just(x0), x1) 18.24/7.00 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 18.24/7.00 new_esEs6(x0, x1, ty_Ordering) 18.24/7.00 new_esEs6(x0, x1, ty_@0) 18.24/7.00 new_esEs20(Just(x0), Just(x1), ty_Int) 18.24/7.00 new_esEs26(x0, x1, ty_Float) 18.24/7.00 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 18.24/7.00 new_primMulNat0(Zero, Succ(x0)) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 18.24/7.00 new_esEs26(x0, x1, app(ty_Maybe, x2)) 18.24/7.00 new_esEs6(x0, x1, ty_Bool) 18.24/7.00 new_esEs4(x0, x1, ty_Integer) 18.24/7.00 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.24/7.00 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 18.24/7.00 new_esEs20(Just(x0), Just(x1), app(ty_Maybe, x2)) 18.24/7.00 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 18.24/7.00 new_esEs4(x0, x1, app(ty_Ratio, x2)) 18.24/7.00 new_esEs11(EQ, GT) 18.24/7.00 new_esEs11(GT, EQ) 18.24/7.00 new_esEs6(x0, x1, ty_Double) 18.24/7.00 new_esEs21(x0, x1, app(ty_[], x2)) 18.24/7.00 new_esEs25(x0, x1, app(ty_Ratio, x2)) 18.24/7.00 new_esEs22(x0, x1, ty_Int) 18.24/7.00 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 18.24/7.00 new_primEqInt(Pos(Zero), Neg(Zero)) 18.24/7.00 new_primEqInt(Neg(Zero), Pos(Zero)) 18.24/7.00 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 18.24/7.00 new_primPlusNat1(Succ(x0), Succ(x1)) 18.24/7.00 new_esEs20(Just(x0), Just(x1), ty_Char) 18.24/7.00 new_esEs16(True, True) 18.24/7.00 new_esEs25(x0, x1, ty_Bool) 18.24/7.00 new_esEs20(Just(x0), Just(x1), ty_@0) 18.24/7.00 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 18.24/7.00 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 18.24/7.00 new_esEs20(Just(x0), Just(x1), ty_Double) 18.24/7.00 new_esEs11(EQ, EQ) 18.24/7.00 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 18.24/7.00 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 18.24/7.00 new_primEqNat0(Zero, Succ(x0)) 18.24/7.00 new_asAs(False, x0) 18.24/7.00 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 18.24/7.00 new_esEs21(x0, x1, ty_Ordering) 18.24/7.00 new_esEs7(x0, x1, app(ty_Maybe, x2)) 18.24/7.00 new_esEs20(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 18.24/7.00 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 18.24/7.00 new_esEs21(x0, x1, ty_Float) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 18.24/7.00 new_esEs26(x0, x1, app(ty_[], x2)) 18.24/7.00 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 18.24/7.00 new_primPlusNat0(Succ(x0), x1) 18.24/7.00 new_esEs25(x0, x1, app(ty_[], x2)) 18.24/7.00 new_esEs23(x0, x1, ty_Int) 18.24/7.00 new_esEs24(x0, x1, ty_Double) 18.24/7.00 new_primEqNat0(Succ(x0), Zero) 18.24/7.00 new_esEs21(x0, x1, ty_Double) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 18.24/7.00 new_esEs26(x0, x1, ty_Char) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 18.24/7.00 new_esEs7(x0, x1, ty_Double) 18.24/7.00 new_esEs4(x0, x1, ty_Ordering) 18.24/7.00 new_esEs20(Just(x0), Just(x1), ty_Float) 18.24/7.00 new_esEs24(x0, x1, ty_Float) 18.24/7.00 new_esEs26(x0, x1, ty_Int) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 18.24/7.00 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 18.24/7.00 new_esEs25(x0, x1, ty_Double) 18.24/7.00 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 18.24/7.00 new_esEs25(x0, x1, ty_Float) 18.24/7.00 new_esEs7(x0, x1, ty_Ordering) 18.24/7.00 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 18.24/7.00 new_esEs21(x0, x1, ty_Int) 18.24/7.00 new_esEs11(LT, GT) 18.24/7.00 new_esEs11(GT, LT) 18.24/7.00 new_esEs17(Left(x0), Right(x1), x2, x3) 18.24/7.00 new_esEs17(Right(x0), Left(x1), x2, x3) 18.24/7.00 new_esEs25(x0, x1, ty_Char) 18.24/7.00 new_esEs24(x0, x1, app(ty_[], x2)) 18.24/7.00 new_esEs6(x0, x1, ty_Integer) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 18.24/7.00 new_esEs7(x0, x1, ty_Float) 18.24/7.00 new_esEs20(Just(x0), Just(x1), app(ty_[], x2)) 18.24/7.00 new_esEs4(x0, x1, ty_Float) 18.24/7.00 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 18.24/7.00 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 18.24/7.00 new_esEs24(x0, x1, ty_Ordering) 18.24/7.00 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.24/7.00 new_esEs4(x0, x1, app(ty_[], x2)) 18.24/7.00 new_esEs26(x0, x1, app(ty_Ratio, x2)) 18.24/7.00 new_esEs26(x0, x1, ty_@0) 18.24/7.00 new_esEs6(x0, x1, app(ty_Maybe, x2)) 18.24/7.00 new_esEs11(LT, EQ) 18.24/7.00 new_esEs11(EQ, LT) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 18.24/7.00 new_asAs(True, x0) 18.24/7.00 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 18.24/7.00 new_esEs25(x0, x1, ty_Ordering) 18.24/7.00 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 18.24/7.00 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.24/7.00 new_esEs11(GT, GT) 18.24/7.00 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 18.24/7.00 new_esEs26(x0, x1, ty_Ordering) 18.24/7.00 new_esEs4(x0, x1, app(ty_Maybe, x2)) 18.24/7.00 new_esEs24(x0, x1, ty_Int) 18.24/7.00 new_esEs25(x0, x1, ty_Int) 18.24/7.00 new_esEs8(@0, @0) 18.24/7.00 new_primPlusNat1(Zero, Succ(x0)) 18.24/7.00 new_primPlusNat0(Zero, x0) 18.24/7.00 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 18.24/7.00 new_esEs24(x0, x1, ty_Char) 18.24/7.00 new_esEs6(x0, x1, ty_Float) 18.24/7.00 new_primEqNat0(Zero, Zero) 18.24/7.00 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 18.24/7.00 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 18.24/7.00 new_esEs7(x0, x1, ty_Integer) 18.24/7.00 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 18.24/7.00 new_esEs4(x0, x1, ty_Int) 18.24/7.00 new_esEs7(x0, x1, ty_Int) 18.24/7.00 new_esEs26(x0, x1, ty_Bool) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 18.24/7.00 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.24/7.00 new_esEs21(x0, x1, ty_Char) 18.24/7.00 new_esEs14(:(x0, x1), :(x2, x3), x4) 18.24/7.00 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.24/7.00 new_esEs20(Just(x0), Just(x1), app(ty_Ratio, x2)) 18.24/7.00 new_esEs14([], [], x0) 18.24/7.00 new_esEs16(False, False) 18.24/7.00 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 18.24/7.00 new_esEs11(LT, LT) 18.24/7.00 new_esEs20(Just(x0), Just(x1), ty_Integer) 18.24/7.00 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.24/7.00 new_esEs26(x0, x1, ty_Double) 18.24/7.00 new_esEs7(x0, x1, ty_Char) 18.24/7.00 new_esEs10(Double(x0, x1), Double(x2, x3)) 18.24/7.00 new_esEs16(False, True) 18.24/7.00 new_esEs16(True, False) 18.24/7.00 new_esEs24(x0, x1, ty_Integer) 18.24/7.00 new_esEs7(x0, x1, ty_Bool) 18.24/7.00 new_esEs15(Float(x0, x1), Float(x2, x3)) 18.24/7.00 new_esEs18(Char(x0), Char(x1)) 18.24/7.00 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 18.24/7.00 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 18.24/7.00 new_esEs13(x0, x1) 18.24/7.00 new_esEs20(Just(x0), Just(x1), ty_Ordering) 18.24/7.00 new_esEs20(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 18.24/7.00 new_esEs20(Just(x0), Nothing, x1) 18.24/7.00 new_esEs24(x0, x1, app(ty_Ratio, x2)) 18.24/7.00 new_primEqNat0(Succ(x0), Succ(x1)) 18.24/7.00 new_esEs6(x0, x1, app(ty_Ratio, x2)) 18.24/7.00 new_esEs7(x0, x1, app(ty_[], x2)) 18.24/7.00 new_esEs4(x0, x1, ty_Char) 18.24/7.00 new_esEs4(x0, x1, ty_Double) 18.24/7.00 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 18.24/7.00 18.24/7.00 We have to consider all minimal (P,Q,R)-chains. 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (13) QDPSizeChangeProof (EQUIVALENT) 18.24/7.00 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.24/7.00 18.24/7.00 From the DPs we obtained the following set of size-change graphs: 18.24/7.00 *new_nubNub'1(yv163, yv164, yv165, yv166, yv167, yv168, ba) -> new_nubNub'10(yv163, yv164, yv165, yv166, new_esEs4(yv163, yv167, ba), yv168, ba) 18.24/7.00 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 6 >= 6, 7 >= 7 18.24/7.00 18.24/7.00 18.24/7.00 *new_nubNub'(:(yv700, yv701), yv71, yv72, bc) -> new_nubNub'1(yv700, yv701, yv71, yv72, yv71, yv72, bc) 18.24/7.00 The graph contains the following edges 1 > 1, 1 > 2, 2 >= 3, 3 >= 4, 2 >= 5, 3 >= 6, 4 >= 7 18.24/7.00 18.24/7.00 18.24/7.00 *new_nubNub'10(yv176, yv177, yv178, yv179, False, :(yv1810, yv1811), bb) -> new_nubNub'1(yv176, yv177, yv178, yv179, yv1810, yv1811, bb) 18.24/7.00 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 6 > 5, 6 > 6, 7 >= 7 18.24/7.00 18.24/7.00 18.24/7.00 *new_nubNub'10(yv176, yv177, yv178, yv179, False, [], bb) -> new_nubNub'(yv177, yv176, :(yv178, yv179), bb) 18.24/7.00 The graph contains the following edges 2 >= 1, 1 >= 2, 7 >= 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_nubNub'10(yv176, yv177, yv178, yv179, True, yv181, bb) -> new_nubNub'(yv177, yv178, yv179, bb) 18.24/7.00 The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 7 >= 4 18.24/7.00 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (14) 18.24/7.00 YES 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (15) 18.24/7.00 Obligation: 18.24/7.00 Q DP problem: 18.24/7.00 The TRS P consists of the following rules: 18.24/7.00 18.24/7.00 new_primPlusNat(Succ(yv19500), Succ(yv1671000)) -> new_primPlusNat(yv19500, yv1671000) 18.24/7.00 18.24/7.00 R is empty. 18.24/7.00 Q is empty. 18.24/7.00 We have to consider all minimal (P,Q,R)-chains. 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (16) QDPSizeChangeProof (EQUIVALENT) 18.24/7.00 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.24/7.00 18.24/7.00 From the DPs we obtained the following set of size-change graphs: 18.24/7.00 *new_primPlusNat(Succ(yv19500), Succ(yv1671000)) -> new_primPlusNat(yv19500, yv1671000) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2 18.24/7.00 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (17) 18.24/7.00 YES 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (18) 18.24/7.00 Obligation: 18.24/7.00 Q DP problem: 18.24/7.00 The TRS P consists of the following rules: 18.24/7.00 18.24/7.00 new_primEqNat(Succ(yv16300), Succ(yv16700)) -> new_primEqNat(yv16300, yv16700) 18.24/7.00 18.24/7.00 R is empty. 18.24/7.00 Q is empty. 18.24/7.00 We have to consider all minimal (P,Q,R)-chains. 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (19) QDPSizeChangeProof (EQUIVALENT) 18.24/7.00 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.24/7.00 18.24/7.00 From the DPs we obtained the following set of size-change graphs: 18.24/7.00 *new_primEqNat(Succ(yv16300), Succ(yv16700)) -> new_primEqNat(yv16300, yv16700) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2 18.24/7.00 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (20) 18.24/7.00 YES 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (21) 18.24/7.00 Obligation: 18.24/7.00 Q DP problem: 18.24/7.00 The TRS P consists of the following rules: 18.24/7.00 18.24/7.00 new_esEs2(Left(yv1630), Left(yv1670), app(ty_Maybe, bbh), bbb) -> new_esEs3(yv1630, yv1670, bbh) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(ty_[], ed)) -> new_esEs1(yv1632, yv1672, ed) 18.24/7.00 new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(ty_Maybe, bae)) -> new_esEs3(yv1630, yv1670, bae) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs(yv1632, yv1672, dg, dh, ea) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(ty_Maybe, gb), fc) -> new_esEs3(yv1630, yv1670, gb) 18.24/7.00 new_esEs2(Right(yv1630), Right(yv1670), bca, app(app(ty_@2, bce), bcf)) -> new_esEs0(yv1630, yv1670, bce, bcf) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(app(ty_@2, da), db), be) -> new_esEs0(yv1631, yv1671, da, db) 18.24/7.00 new_esEs2(Right(yv1630), Right(yv1670), bca, app(app(ty_Either, bch), bda)) -> new_esEs2(yv1630, yv1670, bch, bda) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(ty_[], bh), bd, be) -> new_esEs1(yv1630, yv1670, bh) 18.24/7.00 new_esEs3(Just(yv1630), Just(yv1670), app(app(ty_Either, bea), beb)) -> new_esEs2(yv1630, yv1670, bea, beb) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(app(app(ty_@3, eh), fa), fb), fc) -> new_esEs(yv1630, yv1670, eh, fa, fb) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(app(ty_@2, gg), gh)) -> new_esEs0(yv1631, yv1671, gg, gh) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(ty_Maybe, hd)) -> new_esEs3(yv1631, yv1671, hd) 18.24/7.00 new_esEs2(Left(yv1630), Left(yv1670), app(ty_[], bbe), bbb) -> new_esEs1(yv1630, yv1670, bbe) 18.24/7.00 new_esEs2(Right(yv1630), Right(yv1670), bca, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs(yv1630, yv1670, bcb, bcc, bcd) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(ty_[], dc), be) -> new_esEs1(yv1631, yv1671, dc) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(app(ty_Either, hb), hc)) -> new_esEs2(yv1631, yv1671, hb, hc) 18.24/7.00 new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(app(app(ty_@3, he), hf), hg)) -> new_esEs(yv1630, yv1670, he, hf, hg) 18.24/7.00 new_esEs3(Just(yv1630), Just(yv1670), app(ty_Maybe, bec)) -> new_esEs3(yv1630, yv1670, bec) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(ty_[], fg), fc) -> new_esEs1(yv1630, yv1670, fg) 18.24/7.00 new_esEs3(Just(yv1630), Just(yv1670), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(yv1630, yv1670, bdc, bdd, bde) 18.24/7.00 new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(app(ty_Either, bac), bad)) -> new_esEs2(yv1630, yv1670, bac, bad) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(app(app(ty_@3, ce), cf), cg), be) -> new_esEs(yv1631, yv1671, ce, cf, cg) 18.24/7.00 new_esEs3(Just(yv1630), Just(yv1670), app(ty_[], bdh)) -> new_esEs1(yv1630, yv1670, bdh) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(app(ty_Either, ee), ef)) -> new_esEs2(yv1632, yv1672, ee, ef) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(ty_[], ha)) -> new_esEs1(yv1631, yv1671, ha) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(app(ty_@2, eb), ec)) -> new_esEs0(yv1632, yv1672, eb, ec) 18.24/7.00 new_esEs2(Left(yv1630), Left(yv1670), app(app(ty_Either, bbf), bbg), bbb) -> new_esEs2(yv1630, yv1670, bbf, bbg) 18.24/7.00 new_esEs2(Right(yv1630), Right(yv1670), bca, app(ty_[], bcg)) -> new_esEs1(yv1630, yv1670, bcg) 18.24/7.00 new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(app(ty_@2, hh), baa)) -> new_esEs0(yv1630, yv1670, hh, baa) 18.24/7.00 new_esEs3(Just(yv1630), Just(yv1670), app(app(ty_@2, bdf), bdg)) -> new_esEs0(yv1630, yv1670, bdf, bdg) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(app(ty_Either, dd), de), be) -> new_esEs2(yv1631, yv1671, dd, de) 18.24/7.00 new_esEs2(Right(yv1630), Right(yv1670), bca, app(ty_Maybe, bdb)) -> new_esEs3(yv1630, yv1670, bdb) 18.24/7.00 new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), baf) -> new_esEs1(yv1631, yv1671, baf) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(app(app(ty_@3, ba), bb), bc), bd, be) -> new_esEs(yv1630, yv1670, ba, bb, bc) 18.24/7.00 new_esEs2(Left(yv1630), Left(yv1670), app(app(ty_@2, bbc), bbd), bbb) -> new_esEs0(yv1630, yv1670, bbc, bbd) 18.24/7.00 new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(ty_[], bab)) -> new_esEs1(yv1630, yv1670, bab) 18.24/7.00 new_esEs2(Left(yv1630), Left(yv1670), app(app(app(ty_@3, bag), bah), bba), bbb) -> new_esEs(yv1630, yv1670, bag, bah, bba) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(ty_Maybe, eg)) -> new_esEs3(yv1632, yv1672, eg) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(app(ty_Either, ca), cb), bd, be) -> new_esEs2(yv1630, yv1670, ca, cb) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(ty_Maybe, df), be) -> new_esEs3(yv1631, yv1671, df) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(app(ty_@2, fd), ff), fc) -> new_esEs0(yv1630, yv1670, fd, ff) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(app(ty_Either, fh), ga), fc) -> new_esEs2(yv1630, yv1670, fh, ga) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(app(ty_@2, bf), bg), bd, be) -> new_esEs0(yv1630, yv1670, bf, bg) 18.24/7.00 new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs(yv1631, yv1671, gd, ge, gf) 18.24/7.00 new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(ty_Maybe, cc), bd, be) -> new_esEs3(yv1630, yv1670, cc) 18.24/7.00 18.24/7.00 R is empty. 18.24/7.00 Q is empty. 18.24/7.00 We have to consider all minimal (P,Q,R)-chains. 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (22) QDPSizeChangeProof (EQUIVALENT) 18.24/7.00 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 18.24/7.00 18.24/7.00 From the DPs we obtained the following set of size-change graphs: 18.24/7.00 *new_esEs3(Just(yv1630), Just(yv1670), app(app(ty_Either, bea), beb)) -> new_esEs2(yv1630, yv1670, bea, beb) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs3(Just(yv1630), Just(yv1670), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(yv1630, yv1670, bdc, bdd, bde) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(app(ty_Either, bac), bad)) -> new_esEs2(yv1630, yv1670, bac, bad) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(app(app(ty_@3, he), hf), hg)) -> new_esEs(yv1630, yv1670, he, hf, hg) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs3(Just(yv1630), Just(yv1670), app(ty_[], bdh)) -> new_esEs1(yv1630, yv1670, bdh) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs3(Just(yv1630), Just(yv1670), app(app(ty_@2, bdf), bdg)) -> new_esEs0(yv1630, yv1670, bdf, bdg) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs3(Just(yv1630), Just(yv1670), app(ty_Maybe, bec)) -> new_esEs3(yv1630, yv1670, bec) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(app(ty_@2, hh), baa)) -> new_esEs0(yv1630, yv1670, hh, baa) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(ty_Maybe, bae)) -> new_esEs3(yv1630, yv1670, bae) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(app(ty_Either, ee), ef)) -> new_esEs2(yv1632, yv1672, ee, ef) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(app(ty_Either, dd), de), be) -> new_esEs2(yv1631, yv1671, dd, de) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(app(ty_Either, ca), cb), bd, be) -> new_esEs2(yv1630, yv1670, ca, cb) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(app(ty_Either, hb), hc)) -> new_esEs2(yv1631, yv1671, hb, hc) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(app(ty_Either, fh), ga), fc) -> new_esEs2(yv1630, yv1670, fh, ga) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Right(yv1630), Right(yv1670), bca, app(app(ty_Either, bch), bda)) -> new_esEs2(yv1630, yv1670, bch, bda) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Left(yv1630), Left(yv1670), app(app(ty_Either, bbf), bbg), bbb) -> new_esEs2(yv1630, yv1670, bbf, bbg) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), baf) -> new_esEs1(yv1631, yv1671, baf) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs1(:(yv1630, yv1631), :(yv1670, yv1671), app(ty_[], bab)) -> new_esEs1(yv1630, yv1670, bab) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs(yv1632, yv1672, dg, dh, ea) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(app(app(ty_@3, ce), cf), cg), be) -> new_esEs(yv1631, yv1671, ce, cf, cg) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(app(app(ty_@3, ba), bb), bc), bd, be) -> new_esEs(yv1630, yv1670, ba, bb, bc) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(app(app(ty_@3, eh), fa), fb), fc) -> new_esEs(yv1630, yv1670, eh, fa, fb) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs(yv1631, yv1671, gd, ge, gf) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Right(yv1630), Right(yv1670), bca, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs(yv1630, yv1670, bcb, bcc, bcd) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Left(yv1630), Left(yv1670), app(app(app(ty_@3, bag), bah), bba), bbb) -> new_esEs(yv1630, yv1670, bag, bah, bba) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(ty_[], ed)) -> new_esEs1(yv1632, yv1672, ed) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(ty_[], bh), bd, be) -> new_esEs1(yv1630, yv1670, bh) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(ty_[], dc), be) -> new_esEs1(yv1631, yv1671, dc) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(ty_[], fg), fc) -> new_esEs1(yv1630, yv1670, fg) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(ty_[], ha)) -> new_esEs1(yv1631, yv1671, ha) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Left(yv1630), Left(yv1670), app(ty_[], bbe), bbb) -> new_esEs1(yv1630, yv1670, bbe) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Right(yv1630), Right(yv1670), bca, app(ty_[], bcg)) -> new_esEs1(yv1630, yv1670, bcg) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(app(ty_@2, da), db), be) -> new_esEs0(yv1631, yv1671, da, db) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(app(ty_@2, eb), ec)) -> new_esEs0(yv1632, yv1672, eb, ec) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(app(ty_@2, bf), bg), bd, be) -> new_esEs0(yv1630, yv1670, bf, bg) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, bd, app(ty_Maybe, eg)) -> new_esEs3(yv1632, yv1672, eg) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), cd, app(ty_Maybe, df), be) -> new_esEs3(yv1631, yv1671, df) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs(@3(yv1630, yv1631, yv1632), @3(yv1670, yv1671, yv1672), app(ty_Maybe, cc), bd, be) -> new_esEs3(yv1630, yv1670, cc) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(app(ty_@2, gg), gh)) -> new_esEs0(yv1631, yv1671, gg, gh) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(app(ty_@2, fd), ff), fc) -> new_esEs0(yv1630, yv1670, fd, ff) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Right(yv1630), Right(yv1670), bca, app(app(ty_@2, bce), bcf)) -> new_esEs0(yv1630, yv1670, bce, bcf) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Left(yv1630), Left(yv1670), app(app(ty_@2, bbc), bbd), bbb) -> new_esEs0(yv1630, yv1670, bbc, bbd) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), app(ty_Maybe, gb), fc) -> new_esEs3(yv1630, yv1670, gb) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs0(@2(yv1630, yv1631), @2(yv1670, yv1671), gc, app(ty_Maybe, hd)) -> new_esEs3(yv1631, yv1671, hd) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Left(yv1630), Left(yv1670), app(ty_Maybe, bbh), bbb) -> new_esEs3(yv1630, yv1670, bbh) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.24/7.00 18.24/7.00 18.24/7.00 *new_esEs2(Right(yv1630), Right(yv1670), bca, app(ty_Maybe, bdb)) -> new_esEs3(yv1630, yv1670, bdb) 18.24/7.00 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.24/7.00 18.24/7.00 18.24/7.00 ---------------------------------------- 18.24/7.00 18.24/7.00 (23) 18.24/7.00 YES 18.41/9.18 EOF