14.64/5.75 YES 16.93/6.32 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 16.93/6.32 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 16.93/6.32 16.93/6.32 16.93/6.32 H-Termination with start terms of the given HASKELL could be proven: 16.93/6.32 16.93/6.32 (0) HASKELL 16.93/6.32 (1) BR [EQUIVALENT, 0 ms] 16.93/6.32 (2) HASKELL 16.93/6.32 (3) COR [EQUIVALENT, 5 ms] 16.93/6.32 (4) HASKELL 16.93/6.32 (5) LetRed [EQUIVALENT, 0 ms] 16.93/6.32 (6) HASKELL 16.93/6.32 (7) Narrow [SOUND, 0 ms] 16.93/6.32 (8) AND 16.93/6.32 (9) QDP 16.93/6.32 (10) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.93/6.32 (11) YES 16.93/6.32 (12) QDP 16.93/6.32 (13) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.93/6.32 (14) YES 16.93/6.32 (15) QDP 16.93/6.32 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.93/6.32 (17) YES 16.93/6.32 (18) QDP 16.93/6.32 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.93/6.32 (20) YES 16.93/6.32 (21) QDP 16.93/6.32 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.93/6.32 (23) YES 16.93/6.32 16.93/6.32 16.93/6.32 ---------------------------------------- 16.93/6.32 16.93/6.32 (0) 16.93/6.32 Obligation: 16.93/6.32 mainModule Main 16.93/6.32 module Maybe where { 16.93/6.32 import qualified List; 16.93/6.32 import qualified Main; 16.93/6.32 import qualified Prelude; 16.93/6.32 } 16.93/6.32 module List where { 16.93/6.32 import qualified Main; 16.93/6.32 import qualified Maybe; 16.93/6.32 import qualified Prelude; 16.93/6.32 nub :: Eq a => [a] -> [a]; 16.93/6.32 nub l = nub' l [] where { 16.93/6.32 nub' [] _ = []; 16.93/6.32 nub' (x : xs) ls | x `elem` ls = nub' xs ls 16.93/6.32 | otherwise = x : nub' xs (x : ls); 16.93/6.32 }; 16.93/6.32 16.93/6.32 } 16.93/6.32 module Main where { 16.93/6.32 import qualified List; 16.93/6.32 import qualified Maybe; 16.93/6.32 import qualified Prelude; 16.93/6.32 } 16.93/6.32 16.93/6.32 ---------------------------------------- 16.93/6.32 16.93/6.32 (1) BR (EQUIVALENT) 16.93/6.32 Replaced joker patterns by fresh variables and removed binding patterns. 16.93/6.32 ---------------------------------------- 16.93/6.32 16.93/6.32 (2) 16.93/6.32 Obligation: 16.93/6.32 mainModule Main 16.93/6.32 module Maybe where { 16.93/6.32 import qualified List; 16.93/6.32 import qualified Main; 16.93/6.32 import qualified Prelude; 16.93/6.32 } 16.93/6.32 module List where { 16.93/6.32 import qualified Main; 16.93/6.32 import qualified Maybe; 16.93/6.32 import qualified Prelude; 16.93/6.32 nub :: Eq a => [a] -> [a]; 16.93/6.32 nub l = nub' l [] where { 16.93/6.32 nub' [] xw = []; 16.93/6.32 nub' (x : xs) ls | x `elem` ls = nub' xs ls 16.93/6.32 | otherwise = x : nub' xs (x : ls); 16.93/6.32 }; 16.93/6.32 16.93/6.32 } 16.93/6.32 module Main where { 16.93/6.32 import qualified List; 16.93/6.32 import qualified Maybe; 16.93/6.32 import qualified Prelude; 16.93/6.32 } 16.93/6.32 16.93/6.32 ---------------------------------------- 16.93/6.32 16.93/6.32 (3) COR (EQUIVALENT) 16.93/6.32 Cond Reductions: 16.93/6.32 The following Function with conditions 16.93/6.32 "undefined |Falseundefined; 16.93/6.32 " 16.93/6.32 is transformed to 16.93/6.32 "undefined = undefined1; 16.93/6.32 " 16.93/6.32 "undefined0 True = undefined; 16.93/6.32 " 16.93/6.32 "undefined1 = undefined0 False; 16.93/6.32 " 16.93/6.32 The following Function with conditions 16.93/6.32 "nub' [] xw = []; 16.93/6.32 nub' (x : xs) ls|x `elem` lsnub' xs ls|otherwisex : nub' xs (x : ls); 16.93/6.32 " 16.93/6.32 is transformed to 16.93/6.32 "nub' [] xw = nub'3 [] xw; 16.93/6.32 nub' (x : xs) ls = nub'2 (x : xs) ls; 16.93/6.32 " 16.93/6.32 "nub'1 x xs ls True = nub' xs ls; 16.93/6.32 nub'1 x xs ls False = nub'0 x xs ls otherwise; 16.93/6.32 " 16.93/6.32 "nub'0 x xs ls True = x : nub' xs (x : ls); 16.93/6.32 " 16.93/6.32 "nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 16.93/6.32 " 16.93/6.32 "nub'3 [] xw = []; 16.93/6.32 nub'3 xz yu = nub'2 xz yu; 16.93/6.32 " 16.93/6.32 16.93/6.32 ---------------------------------------- 16.93/6.32 16.93/6.32 (4) 16.93/6.32 Obligation: 16.93/6.32 mainModule Main 16.93/6.32 module Maybe where { 16.93/6.32 import qualified List; 16.93/6.32 import qualified Main; 16.93/6.32 import qualified Prelude; 16.93/6.32 } 16.93/6.32 module List where { 16.93/6.32 import qualified Main; 16.93/6.32 import qualified Maybe; 16.93/6.32 import qualified Prelude; 16.93/6.32 nub :: Eq a => [a] -> [a]; 16.93/6.32 nub l = nub' l [] where { 16.93/6.32 nub' [] xw = nub'3 [] xw; 16.93/6.32 nub' (x : xs) ls = nub'2 (x : xs) ls; 16.93/6.32 nub'0 x xs ls True = x : nub' xs (x : ls); 16.93/6.32 nub'1 x xs ls True = nub' xs ls; 16.93/6.32 nub'1 x xs ls False = nub'0 x xs ls otherwise; 16.93/6.32 nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 16.93/6.32 nub'3 [] xw = []; 16.93/6.32 nub'3 xz yu = nub'2 xz yu; 16.93/6.32 }; 16.93/6.32 16.93/6.32 } 16.93/6.32 module Main where { 16.93/6.32 import qualified List; 16.93/6.32 import qualified Maybe; 16.93/6.32 import qualified Prelude; 16.93/6.32 } 16.93/6.32 16.93/6.32 ---------------------------------------- 16.93/6.32 16.93/6.32 (5) LetRed (EQUIVALENT) 16.93/6.32 Let/Where Reductions: 16.93/6.32 The bindings of the following Let/Where expression 16.93/6.32 "nub' l [] where { 16.93/6.32 nub' [] xw = nub'3 [] xw; 16.93/6.32 nub' (x : xs) ls = nub'2 (x : xs) ls; 16.93/6.32 ; 16.93/6.32 nub'0 x xs ls True = x : nub' xs (x : ls); 16.93/6.32 ; 16.93/6.32 nub'1 x xs ls True = nub' xs ls; 16.93/6.32 nub'1 x xs ls False = nub'0 x xs ls otherwise; 16.93/6.32 ; 16.93/6.32 nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 16.93/6.32 ; 16.93/6.32 nub'3 [] xw = []; 16.93/6.32 nub'3 xz yu = nub'2 xz yu; 16.93/6.32 } 16.93/6.32 " 16.93/6.32 are unpacked to the following functions on top level 16.93/6.32 "nubNub'1 x xs ls True = nubNub' xs ls; 16.93/6.32 nubNub'1 x xs ls False = nubNub'0 x xs ls otherwise; 16.93/6.32 " 16.93/6.32 "nubNub' [] xw = nubNub'3 [] xw; 16.93/6.32 nubNub' (x : xs) ls = nubNub'2 (x : xs) ls; 16.93/6.32 " 16.93/6.32 "nubNub'3 [] xw = []; 16.93/6.32 nubNub'3 xz yu = nubNub'2 xz yu; 16.93/6.32 " 16.93/6.32 "nubNub'2 (x : xs) ls = nubNub'1 x xs ls (x `elem` ls); 16.93/6.32 " 16.93/6.32 "nubNub'0 x xs ls True = x : nubNub' xs (x : ls); 16.93/6.32 " 16.93/6.32 16.93/6.32 ---------------------------------------- 16.93/6.32 16.93/6.32 (6) 16.93/6.32 Obligation: 16.93/6.32 mainModule Main 16.93/6.32 module Maybe where { 16.93/6.32 import qualified List; 16.93/6.32 import qualified Main; 16.93/6.32 import qualified Prelude; 16.93/6.32 } 16.93/6.32 module List where { 16.93/6.32 import qualified Main; 16.93/6.32 import qualified Maybe; 16.93/6.32 import qualified Prelude; 16.93/6.32 nub :: Eq a => [a] -> [a]; 16.93/6.32 nub l = nubNub' l []; 16.93/6.32 16.93/6.32 nubNub' [] xw = nubNub'3 [] xw; 16.93/6.32 nubNub' (x : xs) ls = nubNub'2 (x : xs) ls; 16.93/6.32 16.93/6.32 nubNub'0 x xs ls True = x : nubNub' xs (x : ls); 16.93/6.32 16.93/6.32 nubNub'1 x xs ls True = nubNub' xs ls; 16.93/6.32 nubNub'1 x xs ls False = nubNub'0 x xs ls otherwise; 16.93/6.32 16.93/6.32 nubNub'2 (x : xs) ls = nubNub'1 x xs ls (x `elem` ls); 16.93/6.32 16.93/6.32 nubNub'3 [] xw = []; 16.93/6.32 nubNub'3 xz yu = nubNub'2 xz yu; 16.93/6.32 16.93/6.32 } 16.93/6.32 module Main where { 16.93/6.32 import qualified List; 16.93/6.32 import qualified Maybe; 16.93/6.32 import qualified Prelude; 16.93/6.32 } 16.93/6.32 16.93/6.32 ---------------------------------------- 16.93/6.32 16.93/6.32 (7) Narrow (SOUND) 16.93/6.32 Haskell To QDPs 16.93/6.32 16.93/6.32 digraph dp_graph { 16.93/6.32 node [outthreshold=100, inthreshold=100];1[label="List.nub",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 16.93/6.32 3[label="List.nub yv3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 16.93/6.32 4[label="List.nubNub' yv3 []",fontsize=16,color="burlywood",shape="box"];2969[label="yv3/yv30 : yv31",fontsize=10,color="white",style="solid",shape="box"];4 -> 2969[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2969 -> 5[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2970[label="yv3/[]",fontsize=10,color="white",style="solid",shape="box"];4 -> 2970[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2970 -> 6[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 5[label="List.nubNub' (yv30 : yv31) []",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 16.93/6.32 6[label="List.nubNub' [] []",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 16.93/6.32 7[label="List.nubNub'2 (yv30 : yv31) []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 16.93/6.32 8[label="List.nubNub'3 [] []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 16.93/6.32 9[label="List.nubNub'1 yv30 yv31 [] (yv30 `elem` [])",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 16.93/6.32 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]; 16.93/6.32 12[label="List.nubNub'1 yv30 yv31 [] (any ((==) yv30) [])",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 16.93/6.32 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]; 16.93/6.32 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]; 16.93/6.32 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]; 16.93/6.32 16[label="List.nubNub'1 yv30 yv31 [] (foldr (||) False [])",fontsize=16,color="black",shape="box"];16 -> 17[label="",style="solid", color="black", weight=3]; 16.93/6.32 17[label="List.nubNub'1 yv30 yv31 [] False",fontsize=16,color="black",shape="box"];17 -> 18[label="",style="solid", color="black", weight=3]; 16.93/6.32 18[label="List.nubNub'0 yv30 yv31 [] otherwise",fontsize=16,color="black",shape="box"];18 -> 19[label="",style="solid", color="black", weight=3]; 16.93/6.32 19[label="List.nubNub'0 yv30 yv31 [] True",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 16.93/6.32 20[label="yv30 : List.nubNub' yv31 (yv30 : [])",fontsize=16,color="green",shape="box"];20 -> 21[label="",style="dashed", color="green", weight=3]; 16.93/6.32 21[label="List.nubNub' yv31 (yv30 : [])",fontsize=16,color="burlywood",shape="triangle"];2971[label="yv31/yv310 : yv311",fontsize=10,color="white",style="solid",shape="box"];21 -> 2971[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2971 -> 22[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2972[label="yv31/[]",fontsize=10,color="white",style="solid",shape="box"];21 -> 2972[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2972 -> 23[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 22[label="List.nubNub' (yv310 : yv311) (yv30 : [])",fontsize=16,color="black",shape="box"];22 -> 24[label="",style="solid", color="black", weight=3]; 16.93/6.32 23[label="List.nubNub' [] (yv30 : [])",fontsize=16,color="black",shape="box"];23 -> 25[label="",style="solid", color="black", weight=3]; 16.93/6.32 24[label="List.nubNub'2 (yv310 : yv311) (yv30 : [])",fontsize=16,color="black",shape="box"];24 -> 26[label="",style="solid", color="black", weight=3]; 16.93/6.32 25[label="List.nubNub'3 [] (yv30 : [])",fontsize=16,color="black",shape="box"];25 -> 27[label="",style="solid", color="black", weight=3]; 16.93/6.32 26[label="List.nubNub'1 yv310 yv311 (yv30 : []) (yv310 `elem` yv30 : [])",fontsize=16,color="black",shape="box"];26 -> 28[label="",style="solid", color="black", weight=3]; 16.93/6.32 27[label="[]",fontsize=16,color="green",shape="box"];28 -> 1257[label="",style="dashed", color="red", weight=0]; 16.93/6.32 28[label="List.nubNub'1 yv310 yv311 (yv30 : []) (any . (==))",fontsize=16,color="magenta"];28 -> 1258[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 28 -> 1259[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 28 -> 1260[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 28 -> 1261[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 1258[label="yv311",fontsize=16,color="green",shape="box"];1259[label="yv30",fontsize=16,color="green",shape="box"];1260[label="[]",fontsize=16,color="green",shape="box"];1261[label="yv310",fontsize=16,color="green",shape="box"];1257[label="List.nubNub'1 yv59 yv60 (yv61 : yv62) (any . (==))",fontsize=16,color="black",shape="triangle"];1257 -> 1282[label="",style="solid", color="black", weight=3]; 16.93/6.32 1282[label="List.nubNub'1 yv59 yv60 (yv61 : yv62) (any ((==) yv59) (yv61 : yv62))",fontsize=16,color="black",shape="box"];1282 -> 1283[label="",style="solid", color="black", weight=3]; 16.93/6.32 1283[label="List.nubNub'1 yv59 yv60 (yv61 : yv62) (or . map ((==) yv59))",fontsize=16,color="black",shape="box"];1283 -> 1284[label="",style="solid", color="black", weight=3]; 16.93/6.32 1284[label="List.nubNub'1 yv59 yv60 (yv61 : yv62) (or (map ((==) yv59) (yv61 : yv62)))",fontsize=16,color="black",shape="box"];1284 -> 1285[label="",style="solid", color="black", weight=3]; 16.93/6.32 1285[label="List.nubNub'1 yv59 yv60 (yv61 : yv62) (foldr (||) False (map ((==) yv59) (yv61 : yv62)))",fontsize=16,color="black",shape="box"];1285 -> 1286[label="",style="solid", color="black", weight=3]; 16.93/6.32 1286 -> 2245[label="",style="dashed", color="red", weight=0]; 16.93/6.32 1286[label="List.nubNub'1 yv59 yv60 (yv61 : yv62) (foldr (||) False (((==) yv59 yv61) : map ((==) yv59) yv62))",fontsize=16,color="magenta"];1286 -> 2246[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 1286 -> 2247[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 1286 -> 2248[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 1286 -> 2249[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 1286 -> 2250[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 1286 -> 2251[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2246[label="yv60",fontsize=16,color="green",shape="box"];2247[label="yv61",fontsize=16,color="green",shape="box"];2248[label="yv59",fontsize=16,color="green",shape="box"];2249[label="yv62",fontsize=16,color="green",shape="box"];2250[label="yv61",fontsize=16,color="green",shape="box"];2251[label="yv62",fontsize=16,color="green",shape="box"];2245[label="List.nubNub'1 yv146 yv147 (yv148 : yv149) (foldr (||) False (((==) yv146 yv150) : map ((==) yv146) yv151))",fontsize=16,color="black",shape="triangle"];2245 -> 2282[label="",style="solid", color="black", weight=3]; 16.93/6.32 2282 -> 2283[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2282[label="List.nubNub'1 yv146 yv147 (yv148 : yv149) ((||) (==) yv146 yv150 foldr (||) False (map ((==) yv146) yv151))",fontsize=16,color="magenta"];2282 -> 2284[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2282 -> 2285[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2282 -> 2286[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2282 -> 2287[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2282 -> 2288[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2282 -> 2289[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2284[label="yv146",fontsize=16,color="green",shape="box"];2285[label="yv149",fontsize=16,color="green",shape="box"];2286[label="yv147",fontsize=16,color="green",shape="box"];2287[label="yv148",fontsize=16,color="green",shape="box"];2288[label="yv151",fontsize=16,color="green",shape="box"];2289[label="(==) yv146 yv150",fontsize=16,color="blue",shape="box"];2973[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2973[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2973 -> 2290[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2974[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2974[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2974 -> 2291[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2975[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2975[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2975 -> 2292[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2976[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2976[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2976 -> 2293[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2977[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2977[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2977 -> 2294[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2978[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2978[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2978 -> 2295[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2979[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2979[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2979 -> 2296[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2980[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2980[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2980 -> 2297[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2981[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2981[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2981 -> 2298[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2982[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2982[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2982 -> 2299[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2983[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2983[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2983 -> 2300[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2984[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2984[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2984 -> 2301[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2985[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2985[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2985 -> 2302[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2986[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2289 -> 2986[label="",style="solid", color="blue", weight=9]; 16.93/6.32 2986 -> 2303[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2283[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) ((||) yv163 foldr (||) False (map ((==) yv159) yv164))",fontsize=16,color="burlywood",shape="triangle"];2987[label="yv163/False",fontsize=10,color="white",style="solid",shape="box"];2283 -> 2987[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2987 -> 2304[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2988[label="yv163/True",fontsize=10,color="white",style="solid",shape="box"];2283 -> 2988[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2988 -> 2305[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2290[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];2989[label="yv146/False",fontsize=10,color="white",style="solid",shape="box"];2290 -> 2989[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2989 -> 2306[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2990[label="yv146/True",fontsize=10,color="white",style="solid",shape="box"];2290 -> 2990[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2990 -> 2307[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2291[label="(==) yv146 yv150",fontsize=16,color="black",shape="triangle"];2291 -> 2308[label="",style="solid", color="black", weight=3]; 16.93/6.32 2292[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];2991[label="yv146/yv1460 : yv1461",fontsize=10,color="white",style="solid",shape="box"];2292 -> 2991[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2991 -> 2309[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2992[label="yv146/[]",fontsize=10,color="white",style="solid",shape="box"];2292 -> 2992[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2992 -> 2310[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2293[label="(==) yv146 yv150",fontsize=16,color="black",shape="triangle"];2293 -> 2311[label="",style="solid", color="black", weight=3]; 16.93/6.32 2294[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];2993[label="yv146/yv1460 :% yv1461",fontsize=10,color="white",style="solid",shape="box"];2294 -> 2993[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2993 -> 2312[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2295[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];2994[label="yv146/()",fontsize=10,color="white",style="solid",shape="box"];2295 -> 2994[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2994 -> 2313[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2296[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];2995[label="yv146/Integer yv1460",fontsize=10,color="white",style="solid",shape="box"];2296 -> 2995[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2995 -> 2314[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2297[label="(==) yv146 yv150",fontsize=16,color="black",shape="triangle"];2297 -> 2315[label="",style="solid", color="black", weight=3]; 16.93/6.32 2298[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];2996[label="yv146/(yv1460,yv1461,yv1462)",fontsize=10,color="white",style="solid",shape="box"];2298 -> 2996[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2996 -> 2316[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2299[label="(==) yv146 yv150",fontsize=16,color="black",shape="triangle"];2299 -> 2317[label="",style="solid", color="black", weight=3]; 16.93/6.32 2300[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];2997[label="yv146/LT",fontsize=10,color="white",style="solid",shape="box"];2300 -> 2997[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2997 -> 2318[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2998[label="yv146/EQ",fontsize=10,color="white",style="solid",shape="box"];2300 -> 2998[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2998 -> 2319[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2999[label="yv146/GT",fontsize=10,color="white",style="solid",shape="box"];2300 -> 2999[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 2999 -> 2320[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2301[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];3000[label="yv146/(yv1460,yv1461)",fontsize=10,color="white",style="solid",shape="box"];2301 -> 3000[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3000 -> 2321[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2302[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];3001[label="yv146/Nothing",fontsize=10,color="white",style="solid",shape="box"];2302 -> 3001[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3001 -> 2322[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3002[label="yv146/Just yv1460",fontsize=10,color="white",style="solid",shape="box"];2302 -> 3002[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3002 -> 2323[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2303[label="(==) yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];3003[label="yv146/Left yv1460",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3003[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3003 -> 2324[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3004[label="yv146/Right yv1460",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3004[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3004 -> 2325[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2304[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) ((||) False foldr (||) False (map ((==) yv159) yv164))",fontsize=16,color="black",shape="box"];2304 -> 2326[label="",style="solid", color="black", weight=3]; 16.93/6.32 2305[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) ((||) True foldr (||) False (map ((==) yv159) yv164))",fontsize=16,color="black",shape="box"];2305 -> 2327[label="",style="solid", color="black", weight=3]; 16.93/6.32 2306[label="(==) False yv150",fontsize=16,color="burlywood",shape="box"];3005[label="yv150/False",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3005[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3005 -> 2328[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3006[label="yv150/True",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3006[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3006 -> 2329[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2307[label="(==) True yv150",fontsize=16,color="burlywood",shape="box"];3007[label="yv150/False",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3007[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3007 -> 2330[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3008[label="yv150/True",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3008[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3008 -> 2331[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2308[label="primEqFloat yv146 yv150",fontsize=16,color="burlywood",shape="box"];3009[label="yv146/Float yv1460 yv1461",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3009[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3009 -> 2332[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2309[label="(==) yv1460 : yv1461 yv150",fontsize=16,color="burlywood",shape="box"];3010[label="yv150/yv1500 : yv1501",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3010[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3010 -> 2333[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3011[label="yv150/[]",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3011[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3011 -> 2334[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2310[label="(==) [] yv150",fontsize=16,color="burlywood",shape="box"];3012[label="yv150/yv1500 : yv1501",fontsize=10,color="white",style="solid",shape="box"];2310 -> 3012[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3012 -> 2335[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3013[label="yv150/[]",fontsize=10,color="white",style="solid",shape="box"];2310 -> 3013[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3013 -> 2336[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2311[label="primEqInt yv146 yv150",fontsize=16,color="burlywood",shape="triangle"];3014[label="yv146/Pos yv1460",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3014[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3014 -> 2337[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3015[label="yv146/Neg yv1460",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3015[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3015 -> 2338[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2312[label="(==) yv1460 :% yv1461 yv150",fontsize=16,color="burlywood",shape="box"];3016[label="yv150/yv1500 :% yv1501",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3016[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3016 -> 2339[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2313[label="(==) () yv150",fontsize=16,color="burlywood",shape="box"];3017[label="yv150/()",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3017[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3017 -> 2340[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2314[label="(==) Integer yv1460 yv150",fontsize=16,color="burlywood",shape="box"];3018[label="yv150/Integer yv1500",fontsize=10,color="white",style="solid",shape="box"];2314 -> 3018[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3018 -> 2341[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2315[label="primEqChar yv146 yv150",fontsize=16,color="burlywood",shape="box"];3019[label="yv146/Char yv1460",fontsize=10,color="white",style="solid",shape="box"];2315 -> 3019[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3019 -> 2342[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2316[label="(==) (yv1460,yv1461,yv1462) yv150",fontsize=16,color="burlywood",shape="box"];3020[label="yv150/(yv1500,yv1501,yv1502)",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3020[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3020 -> 2343[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2317[label="primEqDouble yv146 yv150",fontsize=16,color="burlywood",shape="box"];3021[label="yv146/Double yv1460 yv1461",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3021[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3021 -> 2344[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2318[label="(==) LT yv150",fontsize=16,color="burlywood",shape="box"];3022[label="yv150/LT",fontsize=10,color="white",style="solid",shape="box"];2318 -> 3022[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3022 -> 2345[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3023[label="yv150/EQ",fontsize=10,color="white",style="solid",shape="box"];2318 -> 3023[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3023 -> 2346[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3024[label="yv150/GT",fontsize=10,color="white",style="solid",shape="box"];2318 -> 3024[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3024 -> 2347[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2319[label="(==) EQ yv150",fontsize=16,color="burlywood",shape="box"];3025[label="yv150/LT",fontsize=10,color="white",style="solid",shape="box"];2319 -> 3025[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3025 -> 2348[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3026[label="yv150/EQ",fontsize=10,color="white",style="solid",shape="box"];2319 -> 3026[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3026 -> 2349[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3027[label="yv150/GT",fontsize=10,color="white",style="solid",shape="box"];2319 -> 3027[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3027 -> 2350[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2320[label="(==) GT yv150",fontsize=16,color="burlywood",shape="box"];3028[label="yv150/LT",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3028[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3028 -> 2351[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3029[label="yv150/EQ",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3029[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3029 -> 2352[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3030[label="yv150/GT",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3030[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3030 -> 2353[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2321[label="(==) (yv1460,yv1461) yv150",fontsize=16,color="burlywood",shape="box"];3031[label="yv150/(yv1500,yv1501)",fontsize=10,color="white",style="solid",shape="box"];2321 -> 3031[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3031 -> 2354[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2322[label="(==) Nothing yv150",fontsize=16,color="burlywood",shape="box"];3032[label="yv150/Nothing",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3032[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3032 -> 2355[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3033[label="yv150/Just yv1500",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3033[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3033 -> 2356[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2323[label="(==) Just yv1460 yv150",fontsize=16,color="burlywood",shape="box"];3034[label="yv150/Nothing",fontsize=10,color="white",style="solid",shape="box"];2323 -> 3034[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3034 -> 2357[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3035[label="yv150/Just yv1500",fontsize=10,color="white",style="solid",shape="box"];2323 -> 3035[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3035 -> 2358[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2324[label="(==) Left yv1460 yv150",fontsize=16,color="burlywood",shape="box"];3036[label="yv150/Left yv1500",fontsize=10,color="white",style="solid",shape="box"];2324 -> 3036[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3036 -> 2359[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3037[label="yv150/Right yv1500",fontsize=10,color="white",style="solid",shape="box"];2324 -> 3037[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3037 -> 2360[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2325[label="(==) Right yv1460 yv150",fontsize=16,color="burlywood",shape="box"];3038[label="yv150/Left yv1500",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3038[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3038 -> 2361[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3039[label="yv150/Right yv1500",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3039[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3039 -> 2362[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2326[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) (foldr (||) False (map ((==) yv159) yv164))",fontsize=16,color="burlywood",shape="box"];3040[label="yv164/yv1640 : yv1641",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3040[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3040 -> 2363[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3041[label="yv164/[]",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3041[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3041 -> 2364[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2327[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) True",fontsize=16,color="black",shape="box"];2327 -> 2365[label="",style="solid", color="black", weight=3]; 16.93/6.32 2328[label="(==) False False",fontsize=16,color="black",shape="box"];2328 -> 2366[label="",style="solid", color="black", weight=3]; 16.93/6.32 2329[label="(==) False True",fontsize=16,color="black",shape="box"];2329 -> 2367[label="",style="solid", color="black", weight=3]; 16.93/6.32 2330[label="(==) True False",fontsize=16,color="black",shape="box"];2330 -> 2368[label="",style="solid", color="black", weight=3]; 16.93/6.32 2331[label="(==) True True",fontsize=16,color="black",shape="box"];2331 -> 2369[label="",style="solid", color="black", weight=3]; 16.93/6.32 2332[label="primEqFloat (Float yv1460 yv1461) yv150",fontsize=16,color="burlywood",shape="box"];3042[label="yv150/Float yv1500 yv1501",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3042[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3042 -> 2370[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2333[label="(==) yv1460 : yv1461 yv1500 : yv1501",fontsize=16,color="black",shape="box"];2333 -> 2371[label="",style="solid", color="black", weight=3]; 16.93/6.32 2334[label="(==) yv1460 : yv1461 []",fontsize=16,color="black",shape="box"];2334 -> 2372[label="",style="solid", color="black", weight=3]; 16.93/6.32 2335[label="(==) [] yv1500 : yv1501",fontsize=16,color="black",shape="box"];2335 -> 2373[label="",style="solid", color="black", weight=3]; 16.93/6.32 2336[label="(==) [] []",fontsize=16,color="black",shape="box"];2336 -> 2374[label="",style="solid", color="black", weight=3]; 16.93/6.32 2337[label="primEqInt (Pos yv1460) yv150",fontsize=16,color="burlywood",shape="box"];3043[label="yv1460/Succ yv14600",fontsize=10,color="white",style="solid",shape="box"];2337 -> 3043[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3043 -> 2375[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3044[label="yv1460/Zero",fontsize=10,color="white",style="solid",shape="box"];2337 -> 3044[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3044 -> 2376[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2338[label="primEqInt (Neg yv1460) yv150",fontsize=16,color="burlywood",shape="box"];3045[label="yv1460/Succ yv14600",fontsize=10,color="white",style="solid",shape="box"];2338 -> 3045[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3045 -> 2377[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3046[label="yv1460/Zero",fontsize=10,color="white",style="solid",shape="box"];2338 -> 3046[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3046 -> 2378[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2339[label="(==) yv1460 :% yv1461 yv1500 :% yv1501",fontsize=16,color="black",shape="box"];2339 -> 2379[label="",style="solid", color="black", weight=3]; 16.93/6.32 2340[label="(==) () ()",fontsize=16,color="black",shape="box"];2340 -> 2380[label="",style="solid", color="black", weight=3]; 16.93/6.32 2341[label="(==) Integer yv1460 Integer yv1500",fontsize=16,color="black",shape="box"];2341 -> 2381[label="",style="solid", color="black", weight=3]; 16.93/6.32 2342[label="primEqChar (Char yv1460) yv150",fontsize=16,color="burlywood",shape="box"];3047[label="yv150/Char yv1500",fontsize=10,color="white",style="solid",shape="box"];2342 -> 3047[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3047 -> 2382[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2343[label="(==) (yv1460,yv1461,yv1462) (yv1500,yv1501,yv1502)",fontsize=16,color="black",shape="box"];2343 -> 2383[label="",style="solid", color="black", weight=3]; 16.93/6.32 2344[label="primEqDouble (Double yv1460 yv1461) yv150",fontsize=16,color="burlywood",shape="box"];3048[label="yv150/Double yv1500 yv1501",fontsize=10,color="white",style="solid",shape="box"];2344 -> 3048[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3048 -> 2384[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2345[label="(==) LT LT",fontsize=16,color="black",shape="box"];2345 -> 2385[label="",style="solid", color="black", weight=3]; 16.93/6.32 2346[label="(==) LT EQ",fontsize=16,color="black",shape="box"];2346 -> 2386[label="",style="solid", color="black", weight=3]; 16.93/6.32 2347[label="(==) LT GT",fontsize=16,color="black",shape="box"];2347 -> 2387[label="",style="solid", color="black", weight=3]; 16.93/6.32 2348[label="(==) EQ LT",fontsize=16,color="black",shape="box"];2348 -> 2388[label="",style="solid", color="black", weight=3]; 16.93/6.32 2349[label="(==) EQ EQ",fontsize=16,color="black",shape="box"];2349 -> 2389[label="",style="solid", color="black", weight=3]; 16.93/6.32 2350[label="(==) EQ GT",fontsize=16,color="black",shape="box"];2350 -> 2390[label="",style="solid", color="black", weight=3]; 16.93/6.32 2351[label="(==) GT LT",fontsize=16,color="black",shape="box"];2351 -> 2391[label="",style="solid", color="black", weight=3]; 16.93/6.32 2352[label="(==) GT EQ",fontsize=16,color="black",shape="box"];2352 -> 2392[label="",style="solid", color="black", weight=3]; 16.93/6.32 2353[label="(==) GT GT",fontsize=16,color="black",shape="box"];2353 -> 2393[label="",style="solid", color="black", weight=3]; 16.93/6.32 2354[label="(==) (yv1460,yv1461) (yv1500,yv1501)",fontsize=16,color="black",shape="box"];2354 -> 2394[label="",style="solid", color="black", weight=3]; 16.93/6.32 2355[label="(==) Nothing Nothing",fontsize=16,color="black",shape="box"];2355 -> 2395[label="",style="solid", color="black", weight=3]; 16.93/6.32 2356[label="(==) Nothing Just yv1500",fontsize=16,color="black",shape="box"];2356 -> 2396[label="",style="solid", color="black", weight=3]; 16.93/6.32 2357[label="(==) Just yv1460 Nothing",fontsize=16,color="black",shape="box"];2357 -> 2397[label="",style="solid", color="black", weight=3]; 16.93/6.32 2358[label="(==) Just yv1460 Just yv1500",fontsize=16,color="black",shape="box"];2358 -> 2398[label="",style="solid", color="black", weight=3]; 16.93/6.32 2359[label="(==) Left yv1460 Left yv1500",fontsize=16,color="black",shape="box"];2359 -> 2399[label="",style="solid", color="black", weight=3]; 16.93/6.32 2360[label="(==) Left yv1460 Right yv1500",fontsize=16,color="black",shape="box"];2360 -> 2400[label="",style="solid", color="black", weight=3]; 16.93/6.32 2361[label="(==) Right yv1460 Left yv1500",fontsize=16,color="black",shape="box"];2361 -> 2401[label="",style="solid", color="black", weight=3]; 16.93/6.32 2362[label="(==) Right yv1460 Right yv1500",fontsize=16,color="black",shape="box"];2362 -> 2402[label="",style="solid", color="black", weight=3]; 16.93/6.32 2363[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) (foldr (||) False (map ((==) yv159) (yv1640 : yv1641)))",fontsize=16,color="black",shape="box"];2363 -> 2403[label="",style="solid", color="black", weight=3]; 16.93/6.32 2364[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) (foldr (||) False (map ((==) yv159) []))",fontsize=16,color="black",shape="box"];2364 -> 2404[label="",style="solid", color="black", weight=3]; 16.93/6.32 2365[label="List.nubNub' yv160 (yv161 : yv162)",fontsize=16,color="burlywood",shape="triangle"];3049[label="yv160/yv1600 : yv1601",fontsize=10,color="white",style="solid",shape="box"];2365 -> 3049[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3049 -> 2405[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3050[label="yv160/[]",fontsize=10,color="white",style="solid",shape="box"];2365 -> 3050[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3050 -> 2406[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2366[label="True",fontsize=16,color="green",shape="box"];2367[label="False",fontsize=16,color="green",shape="box"];2368[label="False",fontsize=16,color="green",shape="box"];2369[label="True",fontsize=16,color="green",shape="box"];2370[label="primEqFloat (Float yv1460 yv1461) (Float yv1500 yv1501)",fontsize=16,color="black",shape="box"];2370 -> 2407[label="",style="solid", color="black", weight=3]; 16.93/6.32 2371 -> 2486[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2371[label="yv1460 == yv1500 && yv1461 == yv1501",fontsize=16,color="magenta"];2371 -> 2487[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2371 -> 2488[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2372[label="False",fontsize=16,color="green",shape="box"];2373[label="False",fontsize=16,color="green",shape="box"];2374[label="True",fontsize=16,color="green",shape="box"];2375[label="primEqInt (Pos (Succ yv14600)) yv150",fontsize=16,color="burlywood",shape="box"];3051[label="yv150/Pos yv1500",fontsize=10,color="white",style="solid",shape="box"];2375 -> 3051[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3051 -> 2419[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3052[label="yv150/Neg yv1500",fontsize=10,color="white",style="solid",shape="box"];2375 -> 3052[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3052 -> 2420[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2376[label="primEqInt (Pos Zero) yv150",fontsize=16,color="burlywood",shape="box"];3053[label="yv150/Pos yv1500",fontsize=10,color="white",style="solid",shape="box"];2376 -> 3053[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3053 -> 2421[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3054[label="yv150/Neg yv1500",fontsize=10,color="white",style="solid",shape="box"];2376 -> 3054[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3054 -> 2422[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2377[label="primEqInt (Neg (Succ yv14600)) yv150",fontsize=16,color="burlywood",shape="box"];3055[label="yv150/Pos yv1500",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3055[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3055 -> 2423[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3056[label="yv150/Neg yv1500",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3056[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3056 -> 2424[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2378[label="primEqInt (Neg Zero) yv150",fontsize=16,color="burlywood",shape="box"];3057[label="yv150/Pos yv1500",fontsize=10,color="white",style="solid",shape="box"];2378 -> 3057[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3057 -> 2425[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3058[label="yv150/Neg yv1500",fontsize=10,color="white",style="solid",shape="box"];2378 -> 3058[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3058 -> 2426[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2379 -> 2486[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2379[label="yv1460 == yv1500 && yv1461 == yv1501",fontsize=16,color="magenta"];2379 -> 2489[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2379 -> 2490[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2380[label="True",fontsize=16,color="green",shape="box"];2381 -> 2311[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2381[label="primEqInt yv1460 yv1500",fontsize=16,color="magenta"];2381 -> 2427[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2381 -> 2428[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2382[label="primEqChar (Char yv1460) (Char yv1500)",fontsize=16,color="black",shape="box"];2382 -> 2429[label="",style="solid", color="black", weight=3]; 16.93/6.32 2383 -> 2486[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2383[label="yv1460 == yv1500 && yv1461 == yv1501 && yv1462 == yv1502",fontsize=16,color="magenta"];2383 -> 2491[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2383 -> 2492[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2384[label="primEqDouble (Double yv1460 yv1461) (Double yv1500 yv1501)",fontsize=16,color="black",shape="box"];2384 -> 2430[label="",style="solid", color="black", weight=3]; 16.93/6.32 2385[label="True",fontsize=16,color="green",shape="box"];2386[label="False",fontsize=16,color="green",shape="box"];2387[label="False",fontsize=16,color="green",shape="box"];2388[label="False",fontsize=16,color="green",shape="box"];2389[label="True",fontsize=16,color="green",shape="box"];2390[label="False",fontsize=16,color="green",shape="box"];2391[label="False",fontsize=16,color="green",shape="box"];2392[label="False",fontsize=16,color="green",shape="box"];2393[label="True",fontsize=16,color="green",shape="box"];2394 -> 2486[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2394[label="yv1460 == yv1500 && yv1461 == yv1501",fontsize=16,color="magenta"];2394 -> 2493[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2394 -> 2494[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2395[label="True",fontsize=16,color="green",shape="box"];2396[label="False",fontsize=16,color="green",shape="box"];2397[label="False",fontsize=16,color="green",shape="box"];2398[label="yv1460 == yv1500",fontsize=16,color="blue",shape="box"];3059[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3059[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3059 -> 2431[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3060[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3060[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3060 -> 2432[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3061[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3061[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3061 -> 2433[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3062[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3062[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3062 -> 2434[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3063[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3063[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3063 -> 2435[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3064[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3064[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3064 -> 2436[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3065[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3065[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3065 -> 2437[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3066[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3066[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3066 -> 2438[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3067[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3067[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3067 -> 2439[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3068[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3068[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3068 -> 2440[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3069[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3069[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3069 -> 2441[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3070[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3070[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3070 -> 2442[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3071[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3071[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3071 -> 2443[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3072[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3072[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3072 -> 2444[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2399[label="yv1460 == yv1500",fontsize=16,color="blue",shape="box"];3073[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3073[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3073 -> 2445[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3074[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3074[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3074 -> 2446[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3075[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3075[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3075 -> 2447[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3076[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3076[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3076 -> 2448[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3077[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3077[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3077 -> 2449[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3078[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3078[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3078 -> 2450[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3079[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3079[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3079 -> 2451[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3080[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3080[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3080 -> 2452[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3081[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3081[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3081 -> 2453[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3082[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3082[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3082 -> 2454[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3083[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3083[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3083 -> 2455[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3084[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3084[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3084 -> 2456[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3085[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3085[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3085 -> 2457[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3086[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3086[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3086 -> 2458[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2400[label="False",fontsize=16,color="green",shape="box"];2401[label="False",fontsize=16,color="green",shape="box"];2402[label="yv1460 == yv1500",fontsize=16,color="blue",shape="box"];3087[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3087[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3087 -> 2459[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3088[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3088[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3088 -> 2460[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3089[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3089[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3089 -> 2461[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3090[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3090[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3090 -> 2462[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3091[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3091[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3091 -> 2463[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3092[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3092[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3092 -> 2464[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3093[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3093[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3093 -> 2465[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3094[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3094[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3094 -> 2466[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3095[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3095[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3095 -> 2467[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3096[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3096[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3096 -> 2468[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3097[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3097[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3097 -> 2469[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3098[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3098[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3098 -> 2470[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3099[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3099[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3099 -> 2471[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3100[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3100[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3100 -> 2472[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2403 -> 2245[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2403[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) (foldr (||) False (((==) yv159 yv1640) : map ((==) yv159) yv1641))",fontsize=16,color="magenta"];2403 -> 2473[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2403 -> 2474[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2403 -> 2475[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2403 -> 2476[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2403 -> 2477[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2403 -> 2478[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2404[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) (foldr (||) False [])",fontsize=16,color="black",shape="box"];2404 -> 2479[label="",style="solid", color="black", weight=3]; 16.93/6.32 2405[label="List.nubNub' (yv1600 : yv1601) (yv161 : yv162)",fontsize=16,color="black",shape="box"];2405 -> 2480[label="",style="solid", color="black", weight=3]; 16.93/6.32 2406[label="List.nubNub' [] (yv161 : yv162)",fontsize=16,color="black",shape="box"];2406 -> 2481[label="",style="solid", color="black", weight=3]; 16.93/6.32 2407 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2407[label="yv1460 * yv1501 == yv1461 * yv1500",fontsize=16,color="magenta"];2407 -> 2482[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2407 -> 2483[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2487[label="yv1460 == yv1500",fontsize=16,color="blue",shape="box"];3101[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3101[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3101 -> 2499[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3102[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3102[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3102 -> 2500[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3103[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3103[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3103 -> 2501[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3104[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3104[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3104 -> 2502[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3105[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3105[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3105 -> 2503[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3106[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3106[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3106 -> 2504[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3107[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3107[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3107 -> 2505[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3108[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3108[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3108 -> 2506[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3109[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3109[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3109 -> 2507[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3110[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3110[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3110 -> 2508[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3111[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3111[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3111 -> 2509[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3112[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3112[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3112 -> 2510[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3113[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3113[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3113 -> 2511[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3114[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3114[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3114 -> 2512[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2488 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.32 2488[label="yv1461 == yv1501",fontsize=16,color="magenta"];2488 -> 2513[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2488 -> 2514[label="",style="dashed", color="magenta", weight=3]; 16.93/6.32 2486[label="yv169 && yv170",fontsize=16,color="burlywood",shape="triangle"];3115[label="yv169/False",fontsize=10,color="white",style="solid",shape="box"];2486 -> 3115[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3115 -> 2515[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3116[label="yv169/True",fontsize=10,color="white",style="solid",shape="box"];2486 -> 3116[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3116 -> 2516[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2419[label="primEqInt (Pos (Succ yv14600)) (Pos yv1500)",fontsize=16,color="burlywood",shape="box"];3117[label="yv1500/Succ yv15000",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3117[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3117 -> 2517[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3118[label="yv1500/Zero",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3118[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3118 -> 2518[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2420[label="primEqInt (Pos (Succ yv14600)) (Neg yv1500)",fontsize=16,color="black",shape="box"];2420 -> 2519[label="",style="solid", color="black", weight=3]; 16.93/6.32 2421[label="primEqInt (Pos Zero) (Pos yv1500)",fontsize=16,color="burlywood",shape="box"];3119[label="yv1500/Succ yv15000",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3119[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3119 -> 2520[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3120[label="yv1500/Zero",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3120[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3120 -> 2521[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2422[label="primEqInt (Pos Zero) (Neg yv1500)",fontsize=16,color="burlywood",shape="box"];3121[label="yv1500/Succ yv15000",fontsize=10,color="white",style="solid",shape="box"];2422 -> 3121[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3121 -> 2522[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3122[label="yv1500/Zero",fontsize=10,color="white",style="solid",shape="box"];2422 -> 3122[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3122 -> 2523[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2423[label="primEqInt (Neg (Succ yv14600)) (Pos yv1500)",fontsize=16,color="black",shape="box"];2423 -> 2524[label="",style="solid", color="black", weight=3]; 16.93/6.32 2424[label="primEqInt (Neg (Succ yv14600)) (Neg yv1500)",fontsize=16,color="burlywood",shape="box"];3123[label="yv1500/Succ yv15000",fontsize=10,color="white",style="solid",shape="box"];2424 -> 3123[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3123 -> 2525[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3124[label="yv1500/Zero",fontsize=10,color="white",style="solid",shape="box"];2424 -> 3124[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3124 -> 2526[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2425[label="primEqInt (Neg Zero) (Pos yv1500)",fontsize=16,color="burlywood",shape="box"];3125[label="yv1500/Succ yv15000",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3125[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3125 -> 2527[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3126[label="yv1500/Zero",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3126[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3126 -> 2528[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2426[label="primEqInt (Neg Zero) (Neg yv1500)",fontsize=16,color="burlywood",shape="box"];3127[label="yv1500/Succ yv15000",fontsize=10,color="white",style="solid",shape="box"];2426 -> 3127[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3127 -> 2529[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3128[label="yv1500/Zero",fontsize=10,color="white",style="solid",shape="box"];2426 -> 3128[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3128 -> 2530[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2489[label="yv1460 == yv1500",fontsize=16,color="blue",shape="box"];3129[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2489 -> 3129[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3129 -> 2531[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3130[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2489 -> 3130[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3130 -> 2532[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2490[label="yv1461 == yv1501",fontsize=16,color="blue",shape="box"];3131[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 3131[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3131 -> 2533[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3132[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 3132[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3132 -> 2534[label="",style="solid", color="blue", weight=3]; 16.93/6.32 2427[label="yv1500",fontsize=16,color="green",shape="box"];2428[label="yv1460",fontsize=16,color="green",shape="box"];2429[label="primEqNat yv1460 yv1500",fontsize=16,color="burlywood",shape="triangle"];3133[label="yv1460/Succ yv14600",fontsize=10,color="white",style="solid",shape="box"];2429 -> 3133[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3133 -> 2535[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 3134[label="yv1460/Zero",fontsize=10,color="white",style="solid",shape="box"];2429 -> 3134[label="",style="solid", color="burlywood", weight=9]; 16.93/6.32 3134 -> 2536[label="",style="solid", color="burlywood", weight=3]; 16.93/6.32 2491[label="yv1460 == yv1500",fontsize=16,color="blue",shape="box"];3135[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3135[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3135 -> 2537[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3136[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3136[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3136 -> 2538[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3137[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3137[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3137 -> 2539[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3138[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3138[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3138 -> 2540[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3139[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3139[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3139 -> 2541[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3140[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3140[label="",style="solid", color="blue", weight=9]; 16.93/6.32 3140 -> 2542[label="",style="solid", color="blue", weight=3]; 16.93/6.32 3141[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3141[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3141 -> 2543[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3142[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3142[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3142 -> 2544[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3143[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3143[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3143 -> 2545[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3144[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3144[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3144 -> 2546[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3145[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3145[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3145 -> 2547[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3146[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3146[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3146 -> 2548[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3147[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3147[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3147 -> 2549[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3148[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3148[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3148 -> 2550[label="",style="solid", color="blue", weight=3]; 16.93/6.33 2492 -> 2486[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2492[label="yv1461 == yv1501 && yv1462 == yv1502",fontsize=16,color="magenta"];2492 -> 2551[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2492 -> 2552[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2430 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2430[label="yv1460 * yv1501 == yv1461 * yv1500",fontsize=16,color="magenta"];2430 -> 2553[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2430 -> 2554[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2493[label="yv1460 == yv1500",fontsize=16,color="blue",shape="box"];3149[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3149[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3149 -> 2555[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3150[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3150[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3150 -> 2556[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3151[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3151[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3151 -> 2557[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3152[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3152[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3152 -> 2558[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3153[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3153[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3153 -> 2559[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3154[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3154[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3154 -> 2560[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3155[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3155[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3155 -> 2561[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3156[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3156[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3156 -> 2562[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3157[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3157[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3157 -> 2563[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3158[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3158[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3158 -> 2564[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3159[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3159[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3159 -> 2565[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3160[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3160[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3160 -> 2566[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3161[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3161[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3161 -> 2567[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3162[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 3162[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3162 -> 2568[label="",style="solid", color="blue", weight=3]; 16.93/6.33 2494[label="yv1461 == yv1501",fontsize=16,color="blue",shape="box"];3163[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3163[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3163 -> 2569[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3164[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3164[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3164 -> 2570[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3165[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3165[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3165 -> 2571[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3166[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3166[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3166 -> 2572[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3167[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3167[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3167 -> 2573[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3168[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3168[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3168 -> 2574[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3169[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3169[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3169 -> 2575[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3170[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3170[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3170 -> 2576[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3171[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3171[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3171 -> 2577[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3172[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3172[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3172 -> 2578[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3173[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3173[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3173 -> 2579[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3174[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3174[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3174 -> 2580[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3175[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3175[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3175 -> 2581[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3176[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3176[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3176 -> 2582[label="",style="solid", color="blue", weight=3]; 16.93/6.33 2431 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2431[label="yv1460 == yv1500",fontsize=16,color="magenta"];2431 -> 2583[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2431 -> 2584[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2432 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2432[label="yv1460 == yv1500",fontsize=16,color="magenta"];2432 -> 2585[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2432 -> 2586[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2433 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2433[label="yv1460 == yv1500",fontsize=16,color="magenta"];2433 -> 2587[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2433 -> 2588[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2434 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2434[label="yv1460 == yv1500",fontsize=16,color="magenta"];2434 -> 2589[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2434 -> 2590[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2435 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2435[label="yv1460 == yv1500",fontsize=16,color="magenta"];2435 -> 2591[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2435 -> 2592[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2436 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2436[label="yv1460 == yv1500",fontsize=16,color="magenta"];2436 -> 2593[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2436 -> 2594[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2437 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2437[label="yv1460 == yv1500",fontsize=16,color="magenta"];2437 -> 2595[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2437 -> 2596[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2438 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2438[label="yv1460 == yv1500",fontsize=16,color="magenta"];2438 -> 2597[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2438 -> 2598[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2439 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2439[label="yv1460 == yv1500",fontsize=16,color="magenta"];2439 -> 2599[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2439 -> 2600[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2440 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2440[label="yv1460 == yv1500",fontsize=16,color="magenta"];2440 -> 2601[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2440 -> 2602[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2441 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2441[label="yv1460 == yv1500",fontsize=16,color="magenta"];2441 -> 2603[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2441 -> 2604[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2442 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2442[label="yv1460 == yv1500",fontsize=16,color="magenta"];2442 -> 2605[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2442 -> 2606[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2443 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2443[label="yv1460 == yv1500",fontsize=16,color="magenta"];2443 -> 2607[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2443 -> 2608[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2444 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2444[label="yv1460 == yv1500",fontsize=16,color="magenta"];2444 -> 2609[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2444 -> 2610[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2445 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2445[label="yv1460 == yv1500",fontsize=16,color="magenta"];2445 -> 2611[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2445 -> 2612[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2446 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2446[label="yv1460 == yv1500",fontsize=16,color="magenta"];2446 -> 2613[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2446 -> 2614[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2447 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2447[label="yv1460 == yv1500",fontsize=16,color="magenta"];2447 -> 2615[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2447 -> 2616[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2448 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2448[label="yv1460 == yv1500",fontsize=16,color="magenta"];2448 -> 2617[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2448 -> 2618[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2449 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2449[label="yv1460 == yv1500",fontsize=16,color="magenta"];2449 -> 2619[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2449 -> 2620[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2450 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2450[label="yv1460 == yv1500",fontsize=16,color="magenta"];2450 -> 2621[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2450 -> 2622[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2451 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2451[label="yv1460 == yv1500",fontsize=16,color="magenta"];2451 -> 2623[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2451 -> 2624[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2452 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2452[label="yv1460 == yv1500",fontsize=16,color="magenta"];2452 -> 2625[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2452 -> 2626[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2453 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2453[label="yv1460 == yv1500",fontsize=16,color="magenta"];2453 -> 2627[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2453 -> 2628[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2454 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2454[label="yv1460 == yv1500",fontsize=16,color="magenta"];2454 -> 2629[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2454 -> 2630[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2455 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2455[label="yv1460 == yv1500",fontsize=16,color="magenta"];2455 -> 2631[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2455 -> 2632[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2456 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2456[label="yv1460 == yv1500",fontsize=16,color="magenta"];2456 -> 2633[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2456 -> 2634[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2457 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2457[label="yv1460 == yv1500",fontsize=16,color="magenta"];2457 -> 2635[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2457 -> 2636[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2458 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2458[label="yv1460 == yv1500",fontsize=16,color="magenta"];2458 -> 2637[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2458 -> 2638[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2459 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2459[label="yv1460 == yv1500",fontsize=16,color="magenta"];2459 -> 2639[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2459 -> 2640[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2460 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2460[label="yv1460 == yv1500",fontsize=16,color="magenta"];2460 -> 2641[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2460 -> 2642[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2461 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2461[label="yv1460 == yv1500",fontsize=16,color="magenta"];2461 -> 2643[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2461 -> 2644[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2462 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2462[label="yv1460 == yv1500",fontsize=16,color="magenta"];2462 -> 2645[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2462 -> 2646[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2463 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2463[label="yv1460 == yv1500",fontsize=16,color="magenta"];2463 -> 2647[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2463 -> 2648[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2464 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2464[label="yv1460 == yv1500",fontsize=16,color="magenta"];2464 -> 2649[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2464 -> 2650[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2465 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2465[label="yv1460 == yv1500",fontsize=16,color="magenta"];2465 -> 2651[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2465 -> 2652[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2466 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2466[label="yv1460 == yv1500",fontsize=16,color="magenta"];2466 -> 2653[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2466 -> 2654[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2467 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2467[label="yv1460 == yv1500",fontsize=16,color="magenta"];2467 -> 2655[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2467 -> 2656[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2468 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2468[label="yv1460 == yv1500",fontsize=16,color="magenta"];2468 -> 2657[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2468 -> 2658[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2469 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2469[label="yv1460 == yv1500",fontsize=16,color="magenta"];2469 -> 2659[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2469 -> 2660[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2470 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2470[label="yv1460 == yv1500",fontsize=16,color="magenta"];2470 -> 2661[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2470 -> 2662[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2471 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2471[label="yv1460 == yv1500",fontsize=16,color="magenta"];2471 -> 2663[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2471 -> 2664[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2472 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2472[label="yv1460 == yv1500",fontsize=16,color="magenta"];2472 -> 2665[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2472 -> 2666[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2473[label="yv160",fontsize=16,color="green",shape="box"];2474[label="yv1640",fontsize=16,color="green",shape="box"];2475[label="yv159",fontsize=16,color="green",shape="box"];2476[label="yv162",fontsize=16,color="green",shape="box"];2477[label="yv161",fontsize=16,color="green",shape="box"];2478[label="yv1641",fontsize=16,color="green",shape="box"];2479[label="List.nubNub'1 yv159 yv160 (yv161 : yv162) False",fontsize=16,color="black",shape="box"];2479 -> 2667[label="",style="solid", color="black", weight=3]; 16.93/6.33 2480[label="List.nubNub'2 (yv1600 : yv1601) (yv161 : yv162)",fontsize=16,color="black",shape="box"];2480 -> 2668[label="",style="solid", color="black", weight=3]; 16.93/6.33 2481[label="List.nubNub'3 [] (yv161 : yv162)",fontsize=16,color="black",shape="box"];2481 -> 2669[label="",style="solid", color="black", weight=3]; 16.93/6.33 2482[label="yv1461 * yv1500",fontsize=16,color="black",shape="triangle"];2482 -> 2670[label="",style="solid", color="black", weight=3]; 16.93/6.33 2483 -> 2482[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2483[label="yv1460 * yv1501",fontsize=16,color="magenta"];2483 -> 2671[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2483 -> 2672[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2499 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2499[label="yv1460 == yv1500",fontsize=16,color="magenta"];2499 -> 2673[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2499 -> 2674[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2500 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2500[label="yv1460 == yv1500",fontsize=16,color="magenta"];2500 -> 2675[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2500 -> 2676[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2501 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2501[label="yv1460 == yv1500",fontsize=16,color="magenta"];2501 -> 2677[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2501 -> 2678[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2502 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2502[label="yv1460 == yv1500",fontsize=16,color="magenta"];2502 -> 2679[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2502 -> 2680[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2503 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2503[label="yv1460 == yv1500",fontsize=16,color="magenta"];2503 -> 2681[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2503 -> 2682[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2504 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2504[label="yv1460 == yv1500",fontsize=16,color="magenta"];2504 -> 2683[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2504 -> 2684[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2505 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2505[label="yv1460 == yv1500",fontsize=16,color="magenta"];2505 -> 2685[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2505 -> 2686[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2506 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2506[label="yv1460 == yv1500",fontsize=16,color="magenta"];2506 -> 2687[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2506 -> 2688[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2507 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2507[label="yv1460 == yv1500",fontsize=16,color="magenta"];2507 -> 2689[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2507 -> 2690[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2508 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2508[label="yv1460 == yv1500",fontsize=16,color="magenta"];2508 -> 2691[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2508 -> 2692[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2509 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2509[label="yv1460 == yv1500",fontsize=16,color="magenta"];2509 -> 2693[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2509 -> 2694[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2510 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2510[label="yv1460 == yv1500",fontsize=16,color="magenta"];2510 -> 2695[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2510 -> 2696[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2511 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2511[label="yv1460 == yv1500",fontsize=16,color="magenta"];2511 -> 2697[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2511 -> 2698[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2512 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2512[label="yv1460 == yv1500",fontsize=16,color="magenta"];2512 -> 2699[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2512 -> 2700[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2513[label="yv1501",fontsize=16,color="green",shape="box"];2514[label="yv1461",fontsize=16,color="green",shape="box"];2515[label="False && yv170",fontsize=16,color="black",shape="box"];2515 -> 2701[label="",style="solid", color="black", weight=3]; 16.93/6.33 2516[label="True && yv170",fontsize=16,color="black",shape="box"];2516 -> 2702[label="",style="solid", color="black", weight=3]; 16.93/6.33 2517[label="primEqInt (Pos (Succ yv14600)) (Pos (Succ yv15000))",fontsize=16,color="black",shape="box"];2517 -> 2703[label="",style="solid", color="black", weight=3]; 16.93/6.33 2518[label="primEqInt (Pos (Succ yv14600)) (Pos Zero)",fontsize=16,color="black",shape="box"];2518 -> 2704[label="",style="solid", color="black", weight=3]; 16.93/6.33 2519[label="False",fontsize=16,color="green",shape="box"];2520[label="primEqInt (Pos Zero) (Pos (Succ yv15000))",fontsize=16,color="black",shape="box"];2520 -> 2705[label="",style="solid", color="black", weight=3]; 16.93/6.33 2521[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2521 -> 2706[label="",style="solid", color="black", weight=3]; 16.93/6.33 2522[label="primEqInt (Pos Zero) (Neg (Succ yv15000))",fontsize=16,color="black",shape="box"];2522 -> 2707[label="",style="solid", color="black", weight=3]; 16.93/6.33 2523[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2523 -> 2708[label="",style="solid", color="black", weight=3]; 16.93/6.33 2524[label="False",fontsize=16,color="green",shape="box"];2525[label="primEqInt (Neg (Succ yv14600)) (Neg (Succ yv15000))",fontsize=16,color="black",shape="box"];2525 -> 2709[label="",style="solid", color="black", weight=3]; 16.93/6.33 2526[label="primEqInt (Neg (Succ yv14600)) (Neg Zero)",fontsize=16,color="black",shape="box"];2526 -> 2710[label="",style="solid", color="black", weight=3]; 16.93/6.33 2527[label="primEqInt (Neg Zero) (Pos (Succ yv15000))",fontsize=16,color="black",shape="box"];2527 -> 2711[label="",style="solid", color="black", weight=3]; 16.93/6.33 2528[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2528 -> 2712[label="",style="solid", color="black", weight=3]; 16.93/6.33 2529[label="primEqInt (Neg Zero) (Neg (Succ yv15000))",fontsize=16,color="black",shape="box"];2529 -> 2713[label="",style="solid", color="black", weight=3]; 16.93/6.33 2530[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2530 -> 2714[label="",style="solid", color="black", weight=3]; 16.93/6.33 2531 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2531[label="yv1460 == yv1500",fontsize=16,color="magenta"];2531 -> 2715[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2531 -> 2716[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2532 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2532[label="yv1460 == yv1500",fontsize=16,color="magenta"];2532 -> 2717[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2532 -> 2718[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2533 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2533[label="yv1461 == yv1501",fontsize=16,color="magenta"];2533 -> 2719[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2533 -> 2720[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2534 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2534[label="yv1461 == yv1501",fontsize=16,color="magenta"];2534 -> 2721[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2534 -> 2722[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2535[label="primEqNat (Succ yv14600) yv1500",fontsize=16,color="burlywood",shape="box"];3177[label="yv1500/Succ yv15000",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3177[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3177 -> 2723[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3178[label="yv1500/Zero",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3178[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3178 -> 2724[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2536[label="primEqNat Zero yv1500",fontsize=16,color="burlywood",shape="box"];3179[label="yv1500/Succ yv15000",fontsize=10,color="white",style="solid",shape="box"];2536 -> 3179[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3179 -> 2725[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3180[label="yv1500/Zero",fontsize=10,color="white",style="solid",shape="box"];2536 -> 3180[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3180 -> 2726[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2537 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2537[label="yv1460 == yv1500",fontsize=16,color="magenta"];2537 -> 2727[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2537 -> 2728[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2538 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2538[label="yv1460 == yv1500",fontsize=16,color="magenta"];2538 -> 2729[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2538 -> 2730[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2539 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2539[label="yv1460 == yv1500",fontsize=16,color="magenta"];2539 -> 2731[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2539 -> 2732[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2540 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2540[label="yv1460 == yv1500",fontsize=16,color="magenta"];2540 -> 2733[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2540 -> 2734[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2541 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2541[label="yv1460 == yv1500",fontsize=16,color="magenta"];2541 -> 2735[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2541 -> 2736[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2542 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2542[label="yv1460 == yv1500",fontsize=16,color="magenta"];2542 -> 2737[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2542 -> 2738[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2543 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2543[label="yv1460 == yv1500",fontsize=16,color="magenta"];2543 -> 2739[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2543 -> 2740[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2544 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2544[label="yv1460 == yv1500",fontsize=16,color="magenta"];2544 -> 2741[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2544 -> 2742[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2545 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2545[label="yv1460 == yv1500",fontsize=16,color="magenta"];2545 -> 2743[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2545 -> 2744[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2546 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2546[label="yv1460 == yv1500",fontsize=16,color="magenta"];2546 -> 2745[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2546 -> 2746[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2547 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2547[label="yv1460 == yv1500",fontsize=16,color="magenta"];2547 -> 2747[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2547 -> 2748[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2548 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2548[label="yv1460 == yv1500",fontsize=16,color="magenta"];2548 -> 2749[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2548 -> 2750[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2549 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2549[label="yv1460 == yv1500",fontsize=16,color="magenta"];2549 -> 2751[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2549 -> 2752[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2550 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2550[label="yv1460 == yv1500",fontsize=16,color="magenta"];2550 -> 2753[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2550 -> 2754[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2551[label="yv1461 == yv1501",fontsize=16,color="blue",shape="box"];3181[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3181[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3181 -> 2755[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3182[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3182[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3182 -> 2756[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3183[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3183[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3183 -> 2757[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3184[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3184[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3184 -> 2758[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3185[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3185[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3185 -> 2759[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3186[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3186[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3186 -> 2760[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3187[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3187[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3187 -> 2761[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3188[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3188[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3188 -> 2762[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3189[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3189[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3189 -> 2763[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3190[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3190[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3190 -> 2764[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3191[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3191[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3191 -> 2765[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3192[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3192[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3192 -> 2766[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3193[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3193[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3193 -> 2767[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3194[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3194[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3194 -> 2768[label="",style="solid", color="blue", weight=3]; 16.93/6.33 2552[label="yv1462 == yv1502",fontsize=16,color="blue",shape="box"];3195[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3195[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3195 -> 2769[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3196[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3196[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3196 -> 2770[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3197[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3197[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3197 -> 2771[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3198[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3198[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3198 -> 2772[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3199[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3199[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3199 -> 2773[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3200[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3200[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3200 -> 2774[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3201[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3201[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3201 -> 2775[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3202[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3202[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3202 -> 2776[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3203[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3203[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3203 -> 2777[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3204[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3204[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3204 -> 2778[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3205[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3205[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3205 -> 2779[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3206[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3206[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3206 -> 2780[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3207[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3207[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3207 -> 2781[label="",style="solid", color="blue", weight=3]; 16.93/6.33 3208[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2552 -> 3208[label="",style="solid", color="blue", weight=9]; 16.93/6.33 3208 -> 2782[label="",style="solid", color="blue", weight=3]; 16.93/6.33 2553 -> 2482[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2553[label="yv1461 * yv1500",fontsize=16,color="magenta"];2553 -> 2783[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2553 -> 2784[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2554 -> 2482[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2554[label="yv1460 * yv1501",fontsize=16,color="magenta"];2554 -> 2785[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2554 -> 2786[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2555 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2555[label="yv1460 == yv1500",fontsize=16,color="magenta"];2555 -> 2787[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2555 -> 2788[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2556 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2556[label="yv1460 == yv1500",fontsize=16,color="magenta"];2556 -> 2789[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2556 -> 2790[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2557 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2557[label="yv1460 == yv1500",fontsize=16,color="magenta"];2557 -> 2791[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2557 -> 2792[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2558 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2558[label="yv1460 == yv1500",fontsize=16,color="magenta"];2558 -> 2793[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2558 -> 2794[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2559 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2559[label="yv1460 == yv1500",fontsize=16,color="magenta"];2559 -> 2795[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2559 -> 2796[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2560 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2560[label="yv1460 == yv1500",fontsize=16,color="magenta"];2560 -> 2797[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2560 -> 2798[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2561 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2561[label="yv1460 == yv1500",fontsize=16,color="magenta"];2561 -> 2799[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2561 -> 2800[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2562 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2562[label="yv1460 == yv1500",fontsize=16,color="magenta"];2562 -> 2801[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2562 -> 2802[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2563 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2563[label="yv1460 == yv1500",fontsize=16,color="magenta"];2563 -> 2803[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2563 -> 2804[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2564 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2564[label="yv1460 == yv1500",fontsize=16,color="magenta"];2564 -> 2805[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2564 -> 2806[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2565 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2565[label="yv1460 == yv1500",fontsize=16,color="magenta"];2565 -> 2807[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2565 -> 2808[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2566 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2566[label="yv1460 == yv1500",fontsize=16,color="magenta"];2566 -> 2809[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2566 -> 2810[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2567 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2567[label="yv1460 == yv1500",fontsize=16,color="magenta"];2567 -> 2811[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2567 -> 2812[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2568 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2568[label="yv1460 == yv1500",fontsize=16,color="magenta"];2568 -> 2813[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2568 -> 2814[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2569 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2569[label="yv1461 == yv1501",fontsize=16,color="magenta"];2569 -> 2815[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2569 -> 2816[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2570 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2570[label="yv1461 == yv1501",fontsize=16,color="magenta"];2570 -> 2817[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2570 -> 2818[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2571 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2571[label="yv1461 == yv1501",fontsize=16,color="magenta"];2571 -> 2819[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2571 -> 2820[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2572 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2572[label="yv1461 == yv1501",fontsize=16,color="magenta"];2572 -> 2821[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2572 -> 2822[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2573 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2573[label="yv1461 == yv1501",fontsize=16,color="magenta"];2573 -> 2823[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2573 -> 2824[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2574 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2574[label="yv1461 == yv1501",fontsize=16,color="magenta"];2574 -> 2825[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2574 -> 2826[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2575 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2575[label="yv1461 == yv1501",fontsize=16,color="magenta"];2575 -> 2827[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2575 -> 2828[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2576 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2576[label="yv1461 == yv1501",fontsize=16,color="magenta"];2576 -> 2829[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2576 -> 2830[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2577 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2577[label="yv1461 == yv1501",fontsize=16,color="magenta"];2577 -> 2831[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2577 -> 2832[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2578 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2578[label="yv1461 == yv1501",fontsize=16,color="magenta"];2578 -> 2833[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2578 -> 2834[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2579 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2579[label="yv1461 == yv1501",fontsize=16,color="magenta"];2579 -> 2835[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2579 -> 2836[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2580 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2580[label="yv1461 == yv1501",fontsize=16,color="magenta"];2580 -> 2837[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2580 -> 2838[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2581 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2581[label="yv1461 == yv1501",fontsize=16,color="magenta"];2581 -> 2839[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2581 -> 2840[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2582 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2582[label="yv1461 == yv1501",fontsize=16,color="magenta"];2582 -> 2841[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2582 -> 2842[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2583[label="yv1500",fontsize=16,color="green",shape="box"];2584[label="yv1460",fontsize=16,color="green",shape="box"];2585[label="yv1500",fontsize=16,color="green",shape="box"];2586[label="yv1460",fontsize=16,color="green",shape="box"];2587[label="yv1500",fontsize=16,color="green",shape="box"];2588[label="yv1460",fontsize=16,color="green",shape="box"];2589[label="yv1500",fontsize=16,color="green",shape="box"];2590[label="yv1460",fontsize=16,color="green",shape="box"];2591[label="yv1500",fontsize=16,color="green",shape="box"];2592[label="yv1460",fontsize=16,color="green",shape="box"];2593[label="yv1500",fontsize=16,color="green",shape="box"];2594[label="yv1460",fontsize=16,color="green",shape="box"];2595[label="yv1500",fontsize=16,color="green",shape="box"];2596[label="yv1460",fontsize=16,color="green",shape="box"];2597[label="yv1500",fontsize=16,color="green",shape="box"];2598[label="yv1460",fontsize=16,color="green",shape="box"];2599[label="yv1500",fontsize=16,color="green",shape="box"];2600[label="yv1460",fontsize=16,color="green",shape="box"];2601[label="yv1500",fontsize=16,color="green",shape="box"];2602[label="yv1460",fontsize=16,color="green",shape="box"];2603[label="yv1500",fontsize=16,color="green",shape="box"];2604[label="yv1460",fontsize=16,color="green",shape="box"];2605[label="yv1500",fontsize=16,color="green",shape="box"];2606[label="yv1460",fontsize=16,color="green",shape="box"];2607[label="yv1500",fontsize=16,color="green",shape="box"];2608[label="yv1460",fontsize=16,color="green",shape="box"];2609[label="yv1500",fontsize=16,color="green",shape="box"];2610[label="yv1460",fontsize=16,color="green",shape="box"];2611[label="yv1500",fontsize=16,color="green",shape="box"];2612[label="yv1460",fontsize=16,color="green",shape="box"];2613[label="yv1500",fontsize=16,color="green",shape="box"];2614[label="yv1460",fontsize=16,color="green",shape="box"];2615[label="yv1500",fontsize=16,color="green",shape="box"];2616[label="yv1460",fontsize=16,color="green",shape="box"];2617[label="yv1500",fontsize=16,color="green",shape="box"];2618[label="yv1460",fontsize=16,color="green",shape="box"];2619[label="yv1500",fontsize=16,color="green",shape="box"];2620[label="yv1460",fontsize=16,color="green",shape="box"];2621[label="yv1500",fontsize=16,color="green",shape="box"];2622[label="yv1460",fontsize=16,color="green",shape="box"];2623[label="yv1500",fontsize=16,color="green",shape="box"];2624[label="yv1460",fontsize=16,color="green",shape="box"];2625[label="yv1500",fontsize=16,color="green",shape="box"];2626[label="yv1460",fontsize=16,color="green",shape="box"];2627[label="yv1500",fontsize=16,color="green",shape="box"];2628[label="yv1460",fontsize=16,color="green",shape="box"];2629[label="yv1500",fontsize=16,color="green",shape="box"];2630[label="yv1460",fontsize=16,color="green",shape="box"];2631[label="yv1500",fontsize=16,color="green",shape="box"];2632[label="yv1460",fontsize=16,color="green",shape="box"];2633[label="yv1500",fontsize=16,color="green",shape="box"];2634[label="yv1460",fontsize=16,color="green",shape="box"];2635[label="yv1500",fontsize=16,color="green",shape="box"];2636[label="yv1460",fontsize=16,color="green",shape="box"];2637[label="yv1500",fontsize=16,color="green",shape="box"];2638[label="yv1460",fontsize=16,color="green",shape="box"];2639[label="yv1500",fontsize=16,color="green",shape="box"];2640[label="yv1460",fontsize=16,color="green",shape="box"];2641[label="yv1500",fontsize=16,color="green",shape="box"];2642[label="yv1460",fontsize=16,color="green",shape="box"];2643[label="yv1500",fontsize=16,color="green",shape="box"];2644[label="yv1460",fontsize=16,color="green",shape="box"];2645[label="yv1500",fontsize=16,color="green",shape="box"];2646[label="yv1460",fontsize=16,color="green",shape="box"];2647[label="yv1500",fontsize=16,color="green",shape="box"];2648[label="yv1460",fontsize=16,color="green",shape="box"];2649[label="yv1500",fontsize=16,color="green",shape="box"];2650[label="yv1460",fontsize=16,color="green",shape="box"];2651[label="yv1500",fontsize=16,color="green",shape="box"];2652[label="yv1460",fontsize=16,color="green",shape="box"];2653[label="yv1500",fontsize=16,color="green",shape="box"];2654[label="yv1460",fontsize=16,color="green",shape="box"];2655[label="yv1500",fontsize=16,color="green",shape="box"];2656[label="yv1460",fontsize=16,color="green",shape="box"];2657[label="yv1500",fontsize=16,color="green",shape="box"];2658[label="yv1460",fontsize=16,color="green",shape="box"];2659[label="yv1500",fontsize=16,color="green",shape="box"];2660[label="yv1460",fontsize=16,color="green",shape="box"];2661[label="yv1500",fontsize=16,color="green",shape="box"];2662[label="yv1460",fontsize=16,color="green",shape="box"];2663[label="yv1500",fontsize=16,color="green",shape="box"];2664[label="yv1460",fontsize=16,color="green",shape="box"];2665[label="yv1500",fontsize=16,color="green",shape="box"];2666[label="yv1460",fontsize=16,color="green",shape="box"];2667[label="List.nubNub'0 yv159 yv160 (yv161 : yv162) otherwise",fontsize=16,color="black",shape="box"];2667 -> 2843[label="",style="solid", color="black", weight=3]; 16.93/6.33 2668[label="List.nubNub'1 yv1600 yv1601 (yv161 : yv162) (yv1600 `elem` yv161 : yv162)",fontsize=16,color="black",shape="box"];2668 -> 2844[label="",style="solid", color="black", weight=3]; 16.93/6.33 2669[label="[]",fontsize=16,color="green",shape="box"];2670[label="primMulInt yv1461 yv1500",fontsize=16,color="burlywood",shape="box"];3209[label="yv1461/Pos yv14610",fontsize=10,color="white",style="solid",shape="box"];2670 -> 3209[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3209 -> 2845[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3210[label="yv1461/Neg yv14610",fontsize=10,color="white",style="solid",shape="box"];2670 -> 3210[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3210 -> 2846[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2671[label="yv1501",fontsize=16,color="green",shape="box"];2672[label="yv1460",fontsize=16,color="green",shape="box"];2673[label="yv1500",fontsize=16,color="green",shape="box"];2674[label="yv1460",fontsize=16,color="green",shape="box"];2675[label="yv1500",fontsize=16,color="green",shape="box"];2676[label="yv1460",fontsize=16,color="green",shape="box"];2677[label="yv1500",fontsize=16,color="green",shape="box"];2678[label="yv1460",fontsize=16,color="green",shape="box"];2679[label="yv1500",fontsize=16,color="green",shape="box"];2680[label="yv1460",fontsize=16,color="green",shape="box"];2681[label="yv1500",fontsize=16,color="green",shape="box"];2682[label="yv1460",fontsize=16,color="green",shape="box"];2683[label="yv1500",fontsize=16,color="green",shape="box"];2684[label="yv1460",fontsize=16,color="green",shape="box"];2685[label="yv1500",fontsize=16,color="green",shape="box"];2686[label="yv1460",fontsize=16,color="green",shape="box"];2687[label="yv1500",fontsize=16,color="green",shape="box"];2688[label="yv1460",fontsize=16,color="green",shape="box"];2689[label="yv1500",fontsize=16,color="green",shape="box"];2690[label="yv1460",fontsize=16,color="green",shape="box"];2691[label="yv1500",fontsize=16,color="green",shape="box"];2692[label="yv1460",fontsize=16,color="green",shape="box"];2693[label="yv1500",fontsize=16,color="green",shape="box"];2694[label="yv1460",fontsize=16,color="green",shape="box"];2695[label="yv1500",fontsize=16,color="green",shape="box"];2696[label="yv1460",fontsize=16,color="green",shape="box"];2697[label="yv1500",fontsize=16,color="green",shape="box"];2698[label="yv1460",fontsize=16,color="green",shape="box"];2699[label="yv1500",fontsize=16,color="green",shape="box"];2700[label="yv1460",fontsize=16,color="green",shape="box"];2701[label="False",fontsize=16,color="green",shape="box"];2702[label="yv170",fontsize=16,color="green",shape="box"];2703 -> 2429[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2703[label="primEqNat yv14600 yv15000",fontsize=16,color="magenta"];2703 -> 2847[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2703 -> 2848[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2704[label="False",fontsize=16,color="green",shape="box"];2705[label="False",fontsize=16,color="green",shape="box"];2706[label="True",fontsize=16,color="green",shape="box"];2707[label="False",fontsize=16,color="green",shape="box"];2708[label="True",fontsize=16,color="green",shape="box"];2709 -> 2429[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2709[label="primEqNat yv14600 yv15000",fontsize=16,color="magenta"];2709 -> 2849[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2709 -> 2850[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2710[label="False",fontsize=16,color="green",shape="box"];2711[label="False",fontsize=16,color="green",shape="box"];2712[label="True",fontsize=16,color="green",shape="box"];2713[label="False",fontsize=16,color="green",shape="box"];2714[label="True",fontsize=16,color="green",shape="box"];2715[label="yv1500",fontsize=16,color="green",shape="box"];2716[label="yv1460",fontsize=16,color="green",shape="box"];2717[label="yv1500",fontsize=16,color="green",shape="box"];2718[label="yv1460",fontsize=16,color="green",shape="box"];2719[label="yv1501",fontsize=16,color="green",shape="box"];2720[label="yv1461",fontsize=16,color="green",shape="box"];2721[label="yv1501",fontsize=16,color="green",shape="box"];2722[label="yv1461",fontsize=16,color="green",shape="box"];2723[label="primEqNat (Succ yv14600) (Succ yv15000)",fontsize=16,color="black",shape="box"];2723 -> 2851[label="",style="solid", color="black", weight=3]; 16.93/6.33 2724[label="primEqNat (Succ yv14600) Zero",fontsize=16,color="black",shape="box"];2724 -> 2852[label="",style="solid", color="black", weight=3]; 16.93/6.33 2725[label="primEqNat Zero (Succ yv15000)",fontsize=16,color="black",shape="box"];2725 -> 2853[label="",style="solid", color="black", weight=3]; 16.93/6.33 2726[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2726 -> 2854[label="",style="solid", color="black", weight=3]; 16.93/6.33 2727[label="yv1500",fontsize=16,color="green",shape="box"];2728[label="yv1460",fontsize=16,color="green",shape="box"];2729[label="yv1500",fontsize=16,color="green",shape="box"];2730[label="yv1460",fontsize=16,color="green",shape="box"];2731[label="yv1500",fontsize=16,color="green",shape="box"];2732[label="yv1460",fontsize=16,color="green",shape="box"];2733[label="yv1500",fontsize=16,color="green",shape="box"];2734[label="yv1460",fontsize=16,color="green",shape="box"];2735[label="yv1500",fontsize=16,color="green",shape="box"];2736[label="yv1460",fontsize=16,color="green",shape="box"];2737[label="yv1500",fontsize=16,color="green",shape="box"];2738[label="yv1460",fontsize=16,color="green",shape="box"];2739[label="yv1500",fontsize=16,color="green",shape="box"];2740[label="yv1460",fontsize=16,color="green",shape="box"];2741[label="yv1500",fontsize=16,color="green",shape="box"];2742[label="yv1460",fontsize=16,color="green",shape="box"];2743[label="yv1500",fontsize=16,color="green",shape="box"];2744[label="yv1460",fontsize=16,color="green",shape="box"];2745[label="yv1500",fontsize=16,color="green",shape="box"];2746[label="yv1460",fontsize=16,color="green",shape="box"];2747[label="yv1500",fontsize=16,color="green",shape="box"];2748[label="yv1460",fontsize=16,color="green",shape="box"];2749[label="yv1500",fontsize=16,color="green",shape="box"];2750[label="yv1460",fontsize=16,color="green",shape="box"];2751[label="yv1500",fontsize=16,color="green",shape="box"];2752[label="yv1460",fontsize=16,color="green",shape="box"];2753[label="yv1500",fontsize=16,color="green",shape="box"];2754[label="yv1460",fontsize=16,color="green",shape="box"];2755 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2755[label="yv1461 == yv1501",fontsize=16,color="magenta"];2755 -> 2855[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2755 -> 2856[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2756 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2756[label="yv1461 == yv1501",fontsize=16,color="magenta"];2756 -> 2857[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2756 -> 2858[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2757 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2757[label="yv1461 == yv1501",fontsize=16,color="magenta"];2757 -> 2859[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2757 -> 2860[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2758 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2758[label="yv1461 == yv1501",fontsize=16,color="magenta"];2758 -> 2861[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2758 -> 2862[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2759 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2759[label="yv1461 == yv1501",fontsize=16,color="magenta"];2759 -> 2863[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2759 -> 2864[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2760 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2760[label="yv1461 == yv1501",fontsize=16,color="magenta"];2760 -> 2865[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2760 -> 2866[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2761 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2761[label="yv1461 == yv1501",fontsize=16,color="magenta"];2761 -> 2867[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2761 -> 2868[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2762 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2762[label="yv1461 == yv1501",fontsize=16,color="magenta"];2762 -> 2869[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2762 -> 2870[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2763 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2763[label="yv1461 == yv1501",fontsize=16,color="magenta"];2763 -> 2871[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2763 -> 2872[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2764 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2764[label="yv1461 == yv1501",fontsize=16,color="magenta"];2764 -> 2873[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2764 -> 2874[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2765 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2765[label="yv1461 == yv1501",fontsize=16,color="magenta"];2765 -> 2875[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2765 -> 2876[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2766 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2766[label="yv1461 == yv1501",fontsize=16,color="magenta"];2766 -> 2877[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2766 -> 2878[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2767 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2767[label="yv1461 == yv1501",fontsize=16,color="magenta"];2767 -> 2879[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2767 -> 2880[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2768 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2768[label="yv1461 == yv1501",fontsize=16,color="magenta"];2768 -> 2881[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2768 -> 2882[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2769 -> 2290[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2769[label="yv1462 == yv1502",fontsize=16,color="magenta"];2769 -> 2883[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2769 -> 2884[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2770 -> 2291[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2770[label="yv1462 == yv1502",fontsize=16,color="magenta"];2770 -> 2885[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2770 -> 2886[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2771 -> 2292[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2771[label="yv1462 == yv1502",fontsize=16,color="magenta"];2771 -> 2887[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2771 -> 2888[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2772 -> 2293[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2772[label="yv1462 == yv1502",fontsize=16,color="magenta"];2772 -> 2889[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2772 -> 2890[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2773 -> 2294[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2773[label="yv1462 == yv1502",fontsize=16,color="magenta"];2773 -> 2891[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2773 -> 2892[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2774 -> 2295[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2774[label="yv1462 == yv1502",fontsize=16,color="magenta"];2774 -> 2893[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2774 -> 2894[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2775 -> 2296[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2775[label="yv1462 == yv1502",fontsize=16,color="magenta"];2775 -> 2895[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2775 -> 2896[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2776 -> 2297[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2776[label="yv1462 == yv1502",fontsize=16,color="magenta"];2776 -> 2897[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2776 -> 2898[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2777 -> 2298[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2777[label="yv1462 == yv1502",fontsize=16,color="magenta"];2777 -> 2899[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2777 -> 2900[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2778 -> 2299[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2778[label="yv1462 == yv1502",fontsize=16,color="magenta"];2778 -> 2901[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2778 -> 2902[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2779 -> 2300[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2779[label="yv1462 == yv1502",fontsize=16,color="magenta"];2779 -> 2903[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2779 -> 2904[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2780 -> 2301[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2780[label="yv1462 == yv1502",fontsize=16,color="magenta"];2780 -> 2905[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2780 -> 2906[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2781 -> 2302[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2781[label="yv1462 == yv1502",fontsize=16,color="magenta"];2781 -> 2907[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2781 -> 2908[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2782 -> 2303[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2782[label="yv1462 == yv1502",fontsize=16,color="magenta"];2782 -> 2909[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2782 -> 2910[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2783[label="yv1500",fontsize=16,color="green",shape="box"];2784[label="yv1461",fontsize=16,color="green",shape="box"];2785[label="yv1501",fontsize=16,color="green",shape="box"];2786[label="yv1460",fontsize=16,color="green",shape="box"];2787[label="yv1500",fontsize=16,color="green",shape="box"];2788[label="yv1460",fontsize=16,color="green",shape="box"];2789[label="yv1500",fontsize=16,color="green",shape="box"];2790[label="yv1460",fontsize=16,color="green",shape="box"];2791[label="yv1500",fontsize=16,color="green",shape="box"];2792[label="yv1460",fontsize=16,color="green",shape="box"];2793[label="yv1500",fontsize=16,color="green",shape="box"];2794[label="yv1460",fontsize=16,color="green",shape="box"];2795[label="yv1500",fontsize=16,color="green",shape="box"];2796[label="yv1460",fontsize=16,color="green",shape="box"];2797[label="yv1500",fontsize=16,color="green",shape="box"];2798[label="yv1460",fontsize=16,color="green",shape="box"];2799[label="yv1500",fontsize=16,color="green",shape="box"];2800[label="yv1460",fontsize=16,color="green",shape="box"];2801[label="yv1500",fontsize=16,color="green",shape="box"];2802[label="yv1460",fontsize=16,color="green",shape="box"];2803[label="yv1500",fontsize=16,color="green",shape="box"];2804[label="yv1460",fontsize=16,color="green",shape="box"];2805[label="yv1500",fontsize=16,color="green",shape="box"];2806[label="yv1460",fontsize=16,color="green",shape="box"];2807[label="yv1500",fontsize=16,color="green",shape="box"];2808[label="yv1460",fontsize=16,color="green",shape="box"];2809[label="yv1500",fontsize=16,color="green",shape="box"];2810[label="yv1460",fontsize=16,color="green",shape="box"];2811[label="yv1500",fontsize=16,color="green",shape="box"];2812[label="yv1460",fontsize=16,color="green",shape="box"];2813[label="yv1500",fontsize=16,color="green",shape="box"];2814[label="yv1460",fontsize=16,color="green",shape="box"];2815[label="yv1501",fontsize=16,color="green",shape="box"];2816[label="yv1461",fontsize=16,color="green",shape="box"];2817[label="yv1501",fontsize=16,color="green",shape="box"];2818[label="yv1461",fontsize=16,color="green",shape="box"];2819[label="yv1501",fontsize=16,color="green",shape="box"];2820[label="yv1461",fontsize=16,color="green",shape="box"];2821[label="yv1501",fontsize=16,color="green",shape="box"];2822[label="yv1461",fontsize=16,color="green",shape="box"];2823[label="yv1501",fontsize=16,color="green",shape="box"];2824[label="yv1461",fontsize=16,color="green",shape="box"];2825[label="yv1501",fontsize=16,color="green",shape="box"];2826[label="yv1461",fontsize=16,color="green",shape="box"];2827[label="yv1501",fontsize=16,color="green",shape="box"];2828[label="yv1461",fontsize=16,color="green",shape="box"];2829[label="yv1501",fontsize=16,color="green",shape="box"];2830[label="yv1461",fontsize=16,color="green",shape="box"];2831[label="yv1501",fontsize=16,color="green",shape="box"];2832[label="yv1461",fontsize=16,color="green",shape="box"];2833[label="yv1501",fontsize=16,color="green",shape="box"];2834[label="yv1461",fontsize=16,color="green",shape="box"];2835[label="yv1501",fontsize=16,color="green",shape="box"];2836[label="yv1461",fontsize=16,color="green",shape="box"];2837[label="yv1501",fontsize=16,color="green",shape="box"];2838[label="yv1461",fontsize=16,color="green",shape="box"];2839[label="yv1501",fontsize=16,color="green",shape="box"];2840[label="yv1461",fontsize=16,color="green",shape="box"];2841[label="yv1501",fontsize=16,color="green",shape="box"];2842[label="yv1461",fontsize=16,color="green",shape="box"];2843[label="List.nubNub'0 yv159 yv160 (yv161 : yv162) True",fontsize=16,color="black",shape="box"];2843 -> 2911[label="",style="solid", color="black", weight=3]; 16.93/6.33 2844 -> 1257[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2844[label="List.nubNub'1 yv1600 yv1601 (yv161 : yv162) (any . (==))",fontsize=16,color="magenta"];2844 -> 2912[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2844 -> 2913[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2844 -> 2914[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2844 -> 2915[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2845[label="primMulInt (Pos yv14610) yv1500",fontsize=16,color="burlywood",shape="box"];3211[label="yv1500/Pos yv15000",fontsize=10,color="white",style="solid",shape="box"];2845 -> 3211[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3211 -> 2916[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3212[label="yv1500/Neg yv15000",fontsize=10,color="white",style="solid",shape="box"];2845 -> 3212[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3212 -> 2917[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2846[label="primMulInt (Neg yv14610) yv1500",fontsize=16,color="burlywood",shape="box"];3213[label="yv1500/Pos yv15000",fontsize=10,color="white",style="solid",shape="box"];2846 -> 3213[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3213 -> 2918[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3214[label="yv1500/Neg yv15000",fontsize=10,color="white",style="solid",shape="box"];2846 -> 3214[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3214 -> 2919[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2847[label="yv14600",fontsize=16,color="green",shape="box"];2848[label="yv15000",fontsize=16,color="green",shape="box"];2849[label="yv14600",fontsize=16,color="green",shape="box"];2850[label="yv15000",fontsize=16,color="green",shape="box"];2851 -> 2429[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2851[label="primEqNat yv14600 yv15000",fontsize=16,color="magenta"];2851 -> 2920[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2851 -> 2921[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2852[label="False",fontsize=16,color="green",shape="box"];2853[label="False",fontsize=16,color="green",shape="box"];2854[label="True",fontsize=16,color="green",shape="box"];2855[label="yv1501",fontsize=16,color="green",shape="box"];2856[label="yv1461",fontsize=16,color="green",shape="box"];2857[label="yv1501",fontsize=16,color="green",shape="box"];2858[label="yv1461",fontsize=16,color="green",shape="box"];2859[label="yv1501",fontsize=16,color="green",shape="box"];2860[label="yv1461",fontsize=16,color="green",shape="box"];2861[label="yv1501",fontsize=16,color="green",shape="box"];2862[label="yv1461",fontsize=16,color="green",shape="box"];2863[label="yv1501",fontsize=16,color="green",shape="box"];2864[label="yv1461",fontsize=16,color="green",shape="box"];2865[label="yv1501",fontsize=16,color="green",shape="box"];2866[label="yv1461",fontsize=16,color="green",shape="box"];2867[label="yv1501",fontsize=16,color="green",shape="box"];2868[label="yv1461",fontsize=16,color="green",shape="box"];2869[label="yv1501",fontsize=16,color="green",shape="box"];2870[label="yv1461",fontsize=16,color="green",shape="box"];2871[label="yv1501",fontsize=16,color="green",shape="box"];2872[label="yv1461",fontsize=16,color="green",shape="box"];2873[label="yv1501",fontsize=16,color="green",shape="box"];2874[label="yv1461",fontsize=16,color="green",shape="box"];2875[label="yv1501",fontsize=16,color="green",shape="box"];2876[label="yv1461",fontsize=16,color="green",shape="box"];2877[label="yv1501",fontsize=16,color="green",shape="box"];2878[label="yv1461",fontsize=16,color="green",shape="box"];2879[label="yv1501",fontsize=16,color="green",shape="box"];2880[label="yv1461",fontsize=16,color="green",shape="box"];2881[label="yv1501",fontsize=16,color="green",shape="box"];2882[label="yv1461",fontsize=16,color="green",shape="box"];2883[label="yv1502",fontsize=16,color="green",shape="box"];2884[label="yv1462",fontsize=16,color="green",shape="box"];2885[label="yv1502",fontsize=16,color="green",shape="box"];2886[label="yv1462",fontsize=16,color="green",shape="box"];2887[label="yv1502",fontsize=16,color="green",shape="box"];2888[label="yv1462",fontsize=16,color="green",shape="box"];2889[label="yv1502",fontsize=16,color="green",shape="box"];2890[label="yv1462",fontsize=16,color="green",shape="box"];2891[label="yv1502",fontsize=16,color="green",shape="box"];2892[label="yv1462",fontsize=16,color="green",shape="box"];2893[label="yv1502",fontsize=16,color="green",shape="box"];2894[label="yv1462",fontsize=16,color="green",shape="box"];2895[label="yv1502",fontsize=16,color="green",shape="box"];2896[label="yv1462",fontsize=16,color="green",shape="box"];2897[label="yv1502",fontsize=16,color="green",shape="box"];2898[label="yv1462",fontsize=16,color="green",shape="box"];2899[label="yv1502",fontsize=16,color="green",shape="box"];2900[label="yv1462",fontsize=16,color="green",shape="box"];2901[label="yv1502",fontsize=16,color="green",shape="box"];2902[label="yv1462",fontsize=16,color="green",shape="box"];2903[label="yv1502",fontsize=16,color="green",shape="box"];2904[label="yv1462",fontsize=16,color="green",shape="box"];2905[label="yv1502",fontsize=16,color="green",shape="box"];2906[label="yv1462",fontsize=16,color="green",shape="box"];2907[label="yv1502",fontsize=16,color="green",shape="box"];2908[label="yv1462",fontsize=16,color="green",shape="box"];2909[label="yv1502",fontsize=16,color="green",shape="box"];2910[label="yv1462",fontsize=16,color="green",shape="box"];2911[label="yv159 : List.nubNub' yv160 (yv159 : yv161 : yv162)",fontsize=16,color="green",shape="box"];2911 -> 2922[label="",style="dashed", color="green", weight=3]; 16.93/6.33 2912[label="yv1601",fontsize=16,color="green",shape="box"];2913[label="yv161",fontsize=16,color="green",shape="box"];2914[label="yv162",fontsize=16,color="green",shape="box"];2915[label="yv1600",fontsize=16,color="green",shape="box"];2916[label="primMulInt (Pos yv14610) (Pos yv15000)",fontsize=16,color="black",shape="box"];2916 -> 2923[label="",style="solid", color="black", weight=3]; 16.93/6.33 2917[label="primMulInt (Pos yv14610) (Neg yv15000)",fontsize=16,color="black",shape="box"];2917 -> 2924[label="",style="solid", color="black", weight=3]; 16.93/6.33 2918[label="primMulInt (Neg yv14610) (Pos yv15000)",fontsize=16,color="black",shape="box"];2918 -> 2925[label="",style="solid", color="black", weight=3]; 16.93/6.33 2919[label="primMulInt (Neg yv14610) (Neg yv15000)",fontsize=16,color="black",shape="box"];2919 -> 2926[label="",style="solid", color="black", weight=3]; 16.93/6.33 2920[label="yv14600",fontsize=16,color="green",shape="box"];2921[label="yv15000",fontsize=16,color="green",shape="box"];2922 -> 2365[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2922[label="List.nubNub' yv160 (yv159 : yv161 : yv162)",fontsize=16,color="magenta"];2922 -> 2927[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2922 -> 2928[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2923[label="Pos (primMulNat yv14610 yv15000)",fontsize=16,color="green",shape="box"];2923 -> 2929[label="",style="dashed", color="green", weight=3]; 16.93/6.33 2924[label="Neg (primMulNat yv14610 yv15000)",fontsize=16,color="green",shape="box"];2924 -> 2930[label="",style="dashed", color="green", weight=3]; 16.93/6.33 2925[label="Neg (primMulNat yv14610 yv15000)",fontsize=16,color="green",shape="box"];2925 -> 2931[label="",style="dashed", color="green", weight=3]; 16.93/6.33 2926[label="Pos (primMulNat yv14610 yv15000)",fontsize=16,color="green",shape="box"];2926 -> 2932[label="",style="dashed", color="green", weight=3]; 16.93/6.33 2927[label="yv161 : yv162",fontsize=16,color="green",shape="box"];2928[label="yv159",fontsize=16,color="green",shape="box"];2929[label="primMulNat yv14610 yv15000",fontsize=16,color="burlywood",shape="triangle"];3215[label="yv14610/Succ yv146100",fontsize=10,color="white",style="solid",shape="box"];2929 -> 3215[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3215 -> 2933[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3216[label="yv14610/Zero",fontsize=10,color="white",style="solid",shape="box"];2929 -> 3216[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3216 -> 2934[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2930 -> 2929[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2930[label="primMulNat yv14610 yv15000",fontsize=16,color="magenta"];2930 -> 2935[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2931 -> 2929[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2931[label="primMulNat yv14610 yv15000",fontsize=16,color="magenta"];2931 -> 2936[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2932 -> 2929[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2932[label="primMulNat yv14610 yv15000",fontsize=16,color="magenta"];2932 -> 2937[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2932 -> 2938[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2933[label="primMulNat (Succ yv146100) yv15000",fontsize=16,color="burlywood",shape="box"];3217[label="yv15000/Succ yv150000",fontsize=10,color="white",style="solid",shape="box"];2933 -> 3217[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3217 -> 2939[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3218[label="yv15000/Zero",fontsize=10,color="white",style="solid",shape="box"];2933 -> 3218[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3218 -> 2940[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2934[label="primMulNat Zero yv15000",fontsize=16,color="burlywood",shape="box"];3219[label="yv15000/Succ yv150000",fontsize=10,color="white",style="solid",shape="box"];2934 -> 3219[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3219 -> 2941[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3220[label="yv15000/Zero",fontsize=10,color="white",style="solid",shape="box"];2934 -> 3220[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3220 -> 2942[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2935[label="yv15000",fontsize=16,color="green",shape="box"];2936[label="yv14610",fontsize=16,color="green",shape="box"];2937[label="yv14610",fontsize=16,color="green",shape="box"];2938[label="yv15000",fontsize=16,color="green",shape="box"];2939[label="primMulNat (Succ yv146100) (Succ yv150000)",fontsize=16,color="black",shape="box"];2939 -> 2943[label="",style="solid", color="black", weight=3]; 16.93/6.33 2940[label="primMulNat (Succ yv146100) Zero",fontsize=16,color="black",shape="box"];2940 -> 2944[label="",style="solid", color="black", weight=3]; 16.93/6.33 2941[label="primMulNat Zero (Succ yv150000)",fontsize=16,color="black",shape="box"];2941 -> 2945[label="",style="solid", color="black", weight=3]; 16.93/6.33 2942[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2942 -> 2946[label="",style="solid", color="black", weight=3]; 16.93/6.33 2943 -> 2947[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2943[label="primPlusNat (primMulNat yv146100 (Succ yv150000)) (Succ yv150000)",fontsize=16,color="magenta"];2943 -> 2948[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2944[label="Zero",fontsize=16,color="green",shape="box"];2945[label="Zero",fontsize=16,color="green",shape="box"];2946[label="Zero",fontsize=16,color="green",shape="box"];2948 -> 2929[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2948[label="primMulNat yv146100 (Succ yv150000)",fontsize=16,color="magenta"];2948 -> 2949[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2948 -> 2950[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2947[label="primPlusNat yv171 (Succ yv150000)",fontsize=16,color="burlywood",shape="triangle"];3221[label="yv171/Succ yv1710",fontsize=10,color="white",style="solid",shape="box"];2947 -> 3221[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3221 -> 2951[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3222[label="yv171/Zero",fontsize=10,color="white",style="solid",shape="box"];2947 -> 3222[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3222 -> 2952[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2949[label="yv146100",fontsize=16,color="green",shape="box"];2950[label="Succ yv150000",fontsize=16,color="green",shape="box"];2951[label="primPlusNat (Succ yv1710) (Succ yv150000)",fontsize=16,color="black",shape="box"];2951 -> 2953[label="",style="solid", color="black", weight=3]; 16.93/6.33 2952[label="primPlusNat Zero (Succ yv150000)",fontsize=16,color="black",shape="box"];2952 -> 2954[label="",style="solid", color="black", weight=3]; 16.93/6.33 2953[label="Succ (Succ (primPlusNat yv1710 yv150000))",fontsize=16,color="green",shape="box"];2953 -> 2955[label="",style="dashed", color="green", weight=3]; 16.93/6.33 2954[label="Succ yv150000",fontsize=16,color="green",shape="box"];2955[label="primPlusNat yv1710 yv150000",fontsize=16,color="burlywood",shape="triangle"];3223[label="yv1710/Succ yv17100",fontsize=10,color="white",style="solid",shape="box"];2955 -> 3223[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3223 -> 2956[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3224[label="yv1710/Zero",fontsize=10,color="white",style="solid",shape="box"];2955 -> 3224[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3224 -> 2957[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2956[label="primPlusNat (Succ yv17100) yv150000",fontsize=16,color="burlywood",shape="box"];3225[label="yv150000/Succ yv1500000",fontsize=10,color="white",style="solid",shape="box"];2956 -> 3225[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3225 -> 2958[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3226[label="yv150000/Zero",fontsize=10,color="white",style="solid",shape="box"];2956 -> 3226[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3226 -> 2959[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2957[label="primPlusNat Zero yv150000",fontsize=16,color="burlywood",shape="box"];3227[label="yv150000/Succ yv1500000",fontsize=10,color="white",style="solid",shape="box"];2957 -> 3227[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3227 -> 2960[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 3228[label="yv150000/Zero",fontsize=10,color="white",style="solid",shape="box"];2957 -> 3228[label="",style="solid", color="burlywood", weight=9]; 16.93/6.33 3228 -> 2961[label="",style="solid", color="burlywood", weight=3]; 16.93/6.33 2958[label="primPlusNat (Succ yv17100) (Succ yv1500000)",fontsize=16,color="black",shape="box"];2958 -> 2962[label="",style="solid", color="black", weight=3]; 16.93/6.33 2959[label="primPlusNat (Succ yv17100) Zero",fontsize=16,color="black",shape="box"];2959 -> 2963[label="",style="solid", color="black", weight=3]; 16.93/6.33 2960[label="primPlusNat Zero (Succ yv1500000)",fontsize=16,color="black",shape="box"];2960 -> 2964[label="",style="solid", color="black", weight=3]; 16.93/6.33 2961[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2961 -> 2965[label="",style="solid", color="black", weight=3]; 16.93/6.33 2962[label="Succ (Succ (primPlusNat yv17100 yv1500000))",fontsize=16,color="green",shape="box"];2962 -> 2966[label="",style="dashed", color="green", weight=3]; 16.93/6.33 2963[label="Succ yv17100",fontsize=16,color="green",shape="box"];2964[label="Succ yv1500000",fontsize=16,color="green",shape="box"];2965[label="Zero",fontsize=16,color="green",shape="box"];2966 -> 2955[label="",style="dashed", color="red", weight=0]; 16.93/6.33 2966[label="primPlusNat yv17100 yv1500000",fontsize=16,color="magenta"];2966 -> 2967[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2966 -> 2968[label="",style="dashed", color="magenta", weight=3]; 16.93/6.33 2967[label="yv17100",fontsize=16,color="green",shape="box"];2968[label="yv1500000",fontsize=16,color="green",shape="box"];} 16.93/6.33 16.93/6.33 ---------------------------------------- 16.93/6.33 16.93/6.33 (8) 16.93/6.33 Complex Obligation (AND) 16.93/6.33 16.93/6.33 ---------------------------------------- 16.93/6.33 16.93/6.33 (9) 16.93/6.33 Obligation: 16.93/6.33 Q DP problem: 16.93/6.33 The TRS P consists of the following rules: 16.93/6.33 16.93/6.33 new_esEs2(Just(yv1460), Just(yv1500), app(app(ty_@2, bbc), bbd)) -> new_esEs1(yv1460, yv1500, bbc, bbd) 16.93/6.33 new_esEs3(Left(yv1460), Left(yv1500), app(app(ty_Either, bch), bda), bca) -> new_esEs3(yv1460, yv1500, bch, bda) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(ty_Maybe, ef), ce) -> new_esEs2(yv1461, yv1501, ef) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(ty_Maybe, dd), cd, ce) -> new_esEs2(yv1460, yv1500, dd) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(app(ty_@2, ff), fg)) -> new_esEs1(yv1462, yv1502, ff, fg) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(app(ty_Either, eg), eh), ce) -> new_esEs3(yv1461, yv1501, eg, eh) 16.93/6.33 new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(app(ty_@2, be), bf)) -> new_esEs1(yv1460, yv1500, be, bf) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(app(app(ty_@3, ea), eb), ec), ce) -> new_esEs0(yv1461, yv1501, ea, eb, ec) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(app(ty_@2, ed), ee), ce) -> new_esEs1(yv1461, yv1501, ed, ee) 16.93/6.33 new_esEs2(Just(yv1460), Just(yv1500), app(ty_[], bag)) -> new_esEs(yv1460, yv1500, bag) 16.93/6.33 new_esEs3(Right(yv1460), Right(yv1500), bdb, app(ty_[], bdc)) -> new_esEs(yv1460, yv1500, bdc) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(ty_[], gc), gd) -> new_esEs(yv1460, yv1500, gc) 16.93/6.33 new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), cb) -> new_esEs(yv1461, yv1501, cb) 16.93/6.33 new_esEs3(Left(yv1460), Left(yv1500), app(ty_[], bbh), bca) -> new_esEs(yv1460, yv1500, bbh) 16.93/6.33 new_esEs2(Just(yv1460), Just(yv1500), app(ty_Maybe, bbe)) -> new_esEs2(yv1460, yv1500, bbe) 16.93/6.33 new_esEs3(Left(yv1460), Left(yv1500), app(app(ty_@2, bce), bcf), bca) -> new_esEs1(yv1460, yv1500, bce, bcf) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(app(app(ty_@3, ge), gf), gg), gd) -> new_esEs0(yv1460, yv1500, ge, gf, gg) 16.93/6.33 new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(ty_[], ba)) -> new_esEs(yv1460, yv1500, ba) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(app(ty_Either, ga), gb)) -> new_esEs3(yv1462, yv1502, ga, gb) 16.93/6.33 new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(app(ty_Either, bh), ca)) -> new_esEs3(yv1460, yv1500, bh, ca) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(ty_Maybe, bad)) -> new_esEs2(yv1461, yv1501, bad) 16.93/6.33 new_esEs3(Right(yv1460), Right(yv1500), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(yv1460, yv1500, beb, bec) 16.93/6.33 new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yv1460, yv1500, bb, bc, bd) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs0(yv1462, yv1502, fb, fc, fd) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(ty_Maybe, fh)) -> new_esEs2(yv1462, yv1502, fh) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(ty_Maybe, hb), gd) -> new_esEs2(yv1460, yv1500, hb) 16.93/6.33 new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(ty_Maybe, bg)) -> new_esEs2(yv1460, yv1500, bg) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs0(yv1461, yv1501, hg, hh, baa) 16.93/6.33 new_esEs2(Just(yv1460), Just(yv1500), app(app(ty_Either, bbf), bbg)) -> new_esEs3(yv1460, yv1500, bbf, bbg) 16.93/6.33 new_esEs3(Left(yv1460), Left(yv1500), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(yv1460, yv1500, bcb, bcc, bcd) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(ty_[], cc), cd, ce) -> new_esEs(yv1460, yv1500, cc) 16.93/6.33 new_esEs3(Right(yv1460), Right(yv1500), bdb, app(app(ty_@2, bdg), bdh)) -> new_esEs1(yv1460, yv1500, bdg, bdh) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(ty_[], dh), ce) -> new_esEs(yv1461, yv1501, dh) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(app(ty_Either, hc), hd), gd) -> new_esEs3(yv1460, yv1500, hc, hd) 16.93/6.33 new_esEs3(Left(yv1460), Left(yv1500), app(ty_Maybe, bcg), bca) -> new_esEs2(yv1460, yv1500, bcg) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(ty_[], fa)) -> new_esEs(yv1462, yv1502, fa) 16.93/6.33 new_esEs3(Right(yv1460), Right(yv1500), bdb, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(yv1460, yv1500, bdd, bde, bdf) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(app(ty_@2, gh), ha), gd) -> new_esEs1(yv1460, yv1500, gh, ha) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(ty_[], hf)) -> new_esEs(yv1461, yv1501, hf) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(app(ty_@2, bab), bac)) -> new_esEs1(yv1461, yv1501, bab, bac) 16.93/6.33 new_esEs2(Just(yv1460), Just(yv1500), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(yv1460, yv1500, bah, bba, bbb) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(app(app(ty_@3, cf), cg), da), cd, ce) -> new_esEs0(yv1460, yv1500, cf, cg, da) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(app(ty_@2, db), dc), cd, ce) -> new_esEs1(yv1460, yv1500, db, dc) 16.93/6.33 new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(app(ty_Either, de), df), cd, ce) -> new_esEs3(yv1460, yv1500, de, df) 16.93/6.33 new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(app(ty_Either, bae), baf)) -> new_esEs3(yv1461, yv1501, bae, baf) 16.93/6.33 new_esEs3(Right(yv1460), Right(yv1500), bdb, app(ty_Maybe, bea)) -> new_esEs2(yv1460, yv1500, bea) 16.93/6.33 16.93/6.33 R is empty. 16.93/6.33 Q is empty. 16.93/6.33 We have to consider all minimal (P,Q,R)-chains. 16.93/6.33 ---------------------------------------- 16.93/6.33 16.93/6.33 (10) QDPSizeChangeProof (EQUIVALENT) 16.93/6.33 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. 16.93/6.33 16.93/6.33 From the DPs we obtained the following set of size-change graphs: 16.93/6.33 *new_esEs2(Just(yv1460), Just(yv1500), app(ty_Maybe, bbe)) -> new_esEs2(yv1460, yv1500, bbe) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs2(Just(yv1460), Just(yv1500), app(app(ty_Either, bbf), bbg)) -> new_esEs3(yv1460, yv1500, bbf, bbg) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs2(Just(yv1460), Just(yv1500), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(yv1460, yv1500, bah, bba, bbb) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs2(Just(yv1460), Just(yv1500), app(ty_[], bag)) -> new_esEs(yv1460, yv1500, bag) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs2(Just(yv1460), Just(yv1500), app(app(ty_@2, bbc), bbd)) -> new_esEs1(yv1460, yv1500, bbc, bbd) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(ty_Maybe, bg)) -> new_esEs2(yv1460, yv1500, bg) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(app(ty_Either, bh), ca)) -> new_esEs3(yv1460, yv1500, bh, ca) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yv1460, yv1500, bb, bc, bd) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(app(ty_@2, be), bf)) -> new_esEs1(yv1460, yv1500, be, bf) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(ty_Maybe, bad)) -> new_esEs2(yv1461, yv1501, bad) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(ty_Maybe, hb), gd) -> new_esEs2(yv1460, yv1500, hb) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(app(ty_Either, hc), hd), gd) -> new_esEs3(yv1460, yv1500, hc, hd) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(app(ty_Either, bae), baf)) -> new_esEs3(yv1461, yv1501, bae, baf) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(app(app(ty_@3, ge), gf), gg), gd) -> new_esEs0(yv1460, yv1500, ge, gf, gg) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs0(yv1461, yv1501, hg, hh, baa) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(ty_[], gc), gd) -> new_esEs(yv1460, yv1500, gc) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(ty_[], hf)) -> new_esEs(yv1461, yv1501, hf) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), app(app(ty_@2, gh), ha), gd) -> new_esEs1(yv1460, yv1500, gh, ha) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs1(@2(yv1460, yv1461), @2(yv1500, yv1501), he, app(app(ty_@2, bab), bac)) -> new_esEs1(yv1461, yv1501, bab, bac) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Left(yv1460), Left(yv1500), app(ty_Maybe, bcg), bca) -> new_esEs2(yv1460, yv1500, bcg) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Right(yv1460), Right(yv1500), bdb, app(ty_Maybe, bea)) -> new_esEs2(yv1460, yv1500, bea) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(ty_Maybe, ef), ce) -> new_esEs2(yv1461, yv1501, ef) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(ty_Maybe, dd), cd, ce) -> new_esEs2(yv1460, yv1500, dd) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(ty_Maybe, fh)) -> new_esEs2(yv1462, yv1502, fh) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Left(yv1460), Left(yv1500), app(app(ty_Either, bch), bda), bca) -> new_esEs3(yv1460, yv1500, bch, bda) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Right(yv1460), Right(yv1500), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(yv1460, yv1500, beb, bec) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Left(yv1460), Left(yv1500), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(yv1460, yv1500, bcb, bcc, bcd) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Right(yv1460), Right(yv1500), bdb, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(yv1460, yv1500, bdd, bde, bdf) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Right(yv1460), Right(yv1500), bdb, app(ty_[], bdc)) -> new_esEs(yv1460, yv1500, bdc) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Left(yv1460), Left(yv1500), app(ty_[], bbh), bca) -> new_esEs(yv1460, yv1500, bbh) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Left(yv1460), Left(yv1500), app(app(ty_@2, bce), bcf), bca) -> new_esEs1(yv1460, yv1500, bce, bcf) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs3(Right(yv1460), Right(yv1500), bdb, app(app(ty_@2, bdg), bdh)) -> new_esEs1(yv1460, yv1500, bdg, bdh) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(app(ty_Either, eg), eh), ce) -> new_esEs3(yv1461, yv1501, eg, eh) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(app(ty_Either, ga), gb)) -> new_esEs3(yv1462, yv1502, ga, gb) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(app(ty_Either, de), df), cd, ce) -> new_esEs3(yv1460, yv1500, de, df) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(app(app(ty_@3, ea), eb), ec), ce) -> new_esEs0(yv1461, yv1501, ea, eb, ec) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs0(yv1462, yv1502, fb, fc, fd) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(app(app(ty_@3, cf), cg), da), cd, ce) -> new_esEs0(yv1460, yv1500, cf, cg, da) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(ty_[], cc), cd, ce) -> new_esEs(yv1460, yv1500, cc) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(ty_[], dh), ce) -> new_esEs(yv1461, yv1501, dh) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(ty_[], fa)) -> new_esEs(yv1462, yv1502, fa) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), cb) -> new_esEs(yv1461, yv1501, cb) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs(:(yv1460, yv1461), :(yv1500, yv1501), app(ty_[], ba)) -> new_esEs(yv1460, yv1500, ba) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, cd, app(app(ty_@2, ff), fg)) -> new_esEs1(yv1462, yv1502, ff, fg) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), dg, app(app(ty_@2, ed), ee), ce) -> new_esEs1(yv1461, yv1501, ed, ee) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.93/6.33 16.93/6.33 16.93/6.33 *new_esEs0(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), app(app(ty_@2, db), dc), cd, ce) -> new_esEs1(yv1460, yv1500, db, dc) 16.93/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.93/6.33 16.93/6.33 16.93/6.33 ---------------------------------------- 16.93/6.33 16.93/6.33 (11) 16.93/6.33 YES 16.93/6.33 16.93/6.33 ---------------------------------------- 16.93/6.33 16.93/6.33 (12) 16.93/6.33 Obligation: 16.93/6.33 Q DP problem: 16.93/6.33 The TRS P consists of the following rules: 16.93/6.33 16.93/6.33 new_nubNub'(:(yv1600, yv1601), yv161, yv162, bb) -> new_nubNub'11(yv1600, yv1601, yv161, yv162, bb) 16.93/6.33 new_nubNub'10(yv159, yv160, yv161, yv162, False, [], bb) -> new_nubNub'(yv160, yv159, :(yv161, yv162), bb) 16.93/6.33 new_nubNub'1(yv146, yv147, yv148, yv149, yv150, yv151, ba) -> new_nubNub'10(yv146, yv147, yv148, yv149, new_esEs4(yv146, yv150, ba), yv151, ba) 16.93/6.33 new_nubNub'10(yv159, :(yv1600, yv1601), yv161, yv162, True, yv164, bb) -> new_nubNub'11(yv1600, yv1601, yv161, yv162, bb) 16.93/6.33 new_nubNub'10(yv159, yv160, yv161, yv162, False, :(yv1640, yv1641), bb) -> new_nubNub'1(yv159, yv160, yv161, yv162, yv1640, yv1641, bb) 16.93/6.33 new_nubNub'11(yv59, yv60, yv61, yv62, bc) -> new_nubNub'1(yv59, yv60, yv61, yv62, yv61, yv62, bc) 16.93/6.33 16.93/6.33 The TRS R consists of the following rules: 16.93/6.33 16.93/6.33 new_esEs24(yv1461, yv1501, app(ty_Maybe, ha)) -> new_esEs21(yv1461, yv1501, ha) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, ty_Float) -> new_esEs6(yv1460, yv1500) 16.93/6.33 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 16.93/6.33 new_esEs14(yv1461, yv1501, ty_Integer) -> new_esEs11(yv1461, yv1501) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, app(app(ty_Either, bdb), bdc)) -> new_esEs22(yv1460, yv1500, bdb, bdc) 16.93/6.33 new_esEs25(yv1462, yv1502, ty_@0) -> new_esEs5(yv1462, yv1502) 16.93/6.33 new_esEs23(yv1460, yv1500, ty_Char) -> new_esEs17(yv1460, yv1500) 16.93/6.33 new_esEs14(yv1461, yv1501, ty_Float) -> new_esEs6(yv1461, yv1501) 16.93/6.33 new_esEs13(yv1460, yv1500, app(app(app(ty_@3, ca), cb), cc)) -> new_esEs18(yv1460, yv1500, ca, cb, cc) 16.93/6.33 new_esEs25(yv1462, yv1502, ty_Double) -> new_esEs19(yv1462, yv1502) 16.93/6.33 new_esEs4(yv146, yv150, ty_Bool) -> new_esEs15(yv146, yv150) 16.93/6.33 new_esEs23(yv1460, yv1500, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs18(yv1460, yv1500, fa, fb, fc) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, ty_Integer) -> new_esEs11(yv1460, yv1500) 16.93/6.33 new_esEs25(yv1462, yv1502, app(app(ty_Either, bad), bae)) -> new_esEs22(yv1462, yv1502, bad, bae) 16.93/6.33 new_esEs20(EQ, GT) -> False 16.93/6.33 new_esEs20(GT, EQ) -> False 16.93/6.33 new_esEs4(yv146, yv150, ty_@0) -> new_esEs5(yv146, yv150) 16.93/6.33 new_esEs20(EQ, EQ) -> True 16.93/6.33 new_esEs13(yv1460, yv1500, ty_Ordering) -> new_esEs20(yv1460, yv1500) 16.93/6.33 new_esEs14(yv1461, yv1501, app(app(ty_@2, dg), dh)) -> new_esEs12(yv1461, yv1501, dg, dh) 16.93/6.33 new_esEs26(yv1460, yv1500, app(ty_Ratio, bfa)) -> new_esEs8(yv1460, yv1500, bfa) 16.93/6.33 new_esEs25(yv1462, yv1502, ty_Char) -> new_esEs17(yv1462, yv1502) 16.93/6.33 new_esEs4(yv146, yv150, app(app(ty_Either, bca), baf)) -> new_esEs22(yv146, yv150, bca, baf) 16.93/6.33 new_asAs(True, yv170) -> yv170 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, app(app(ty_@2, bcg), bch)) -> new_esEs12(yv1460, yv1500, bcg, bch) 16.93/6.33 new_esEs15(False, False) -> True 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), ty_Float, baf) -> new_esEs6(yv1460, yv1500) 16.93/6.33 new_primEqInt(Pos(Succ(yv14600)), Pos(Zero)) -> False 16.93/6.33 new_primEqInt(Pos(Zero), Pos(Succ(yv15000))) -> False 16.93/6.33 new_esEs24(yv1461, yv1501, ty_Integer) -> new_esEs11(yv1461, yv1501) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), ty_Char) -> new_esEs17(yv1460, yv1500) 16.93/6.33 new_esEs4(yv146, yv150, ty_Char) -> new_esEs17(yv146, yv150) 16.93/6.33 new_esEs19(Double(yv1460, yv1461), Double(yv1500, yv1501)) -> new_esEs7(new_sr(yv1460, yv1501), new_sr(yv1461, yv1500)) 16.93/6.33 new_esEs23(yv1460, yv1500, ty_Bool) -> new_esEs15(yv1460, yv1500) 16.93/6.33 new_esEs23(yv1460, yv1500, ty_Double) -> new_esEs19(yv1460, yv1500) 16.93/6.33 new_esEs23(yv1460, yv1500, app(app(ty_Either, fh), ga)) -> new_esEs22(yv1460, yv1500, fh, ga) 16.93/6.33 new_primEqNat0(Succ(yv14600), Succ(yv15000)) -> new_primEqNat0(yv14600, yv15000) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), ty_Ordering) -> new_esEs20(yv1460, yv1500) 16.93/6.33 new_esEs18(@3(yv1460, yv1461, yv1462), @3(yv1500, yv1501, yv1502), ed, ee, ef) -> new_asAs(new_esEs23(yv1460, yv1500, ed), new_asAs(new_esEs24(yv1461, yv1501, ee), new_esEs25(yv1462, yv1502, ef))) 16.93/6.33 new_esEs14(yv1461, yv1501, app(app(ty_Either, eb), ec)) -> new_esEs22(yv1461, yv1501, eb, ec) 16.93/6.33 new_esEs14(yv1461, yv1501, app(ty_Ratio, dc)) -> new_esEs8(yv1461, yv1501, dc) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs18(yv1460, yv1500, bcd, bce, bcf) 16.93/6.33 new_esEs26(yv1460, yv1500, ty_Int) -> new_esEs7(yv1460, yv1500) 16.93/6.33 new_esEs17(Char(yv1460), Char(yv1500)) -> new_primEqNat0(yv1460, yv1500) 16.93/6.33 new_esEs24(yv1461, yv1501, ty_Ordering) -> new_esEs20(yv1461, yv1501) 16.93/6.33 new_esEs23(yv1460, yv1500, ty_Int) -> new_esEs7(yv1460, yv1500) 16.93/6.33 new_primMulNat0(Zero, Zero) -> Zero 16.93/6.33 new_esEs24(yv1461, yv1501, app(app(ty_@2, gg), gh)) -> new_esEs12(yv1461, yv1501, gg, gh) 16.93/6.33 new_esEs14(yv1461, yv1501, ty_Double) -> new_esEs19(yv1461, yv1501) 16.93/6.33 new_esEs24(yv1461, yv1501, app(ty_[], gb)) -> new_esEs16(yv1461, yv1501, gb) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), ty_@0) -> new_esEs5(yv1460, yv1500) 16.93/6.33 new_esEs10(yv1461, yv1501, ty_Integer) -> new_esEs11(yv1461, yv1501) 16.93/6.33 new_esEs14(yv1461, yv1501, ty_@0) -> new_esEs5(yv1461, yv1501) 16.93/6.33 new_esEs21(Nothing, Just(yv1500), bdd) -> False 16.93/6.33 new_esEs21(Just(yv1460), Nothing, bdd) -> False 16.93/6.33 new_esEs26(yv1460, yv1500, ty_Char) -> new_esEs17(yv1460, yv1500) 16.93/6.33 new_esEs4(yv146, yv150, ty_Int) -> new_esEs7(yv146, yv150) 16.93/6.33 new_primEqNat0(Succ(yv14600), Zero) -> False 16.93/6.33 new_primEqNat0(Zero, Succ(yv15000)) -> False 16.93/6.33 new_esEs21(Nothing, Nothing, bdd) -> True 16.93/6.33 new_esEs25(yv1462, yv1502, ty_Bool) -> new_esEs15(yv1462, yv1502) 16.93/6.33 new_esEs16(:(yv1460, yv1461), :(yv1500, yv1501), beg) -> new_asAs(new_esEs26(yv1460, yv1500, beg), new_esEs16(yv1461, yv1501, beg)) 16.93/6.33 new_esEs8(:%(yv1460, yv1461), :%(yv1500, yv1501), bd) -> new_asAs(new_esEs9(yv1460, yv1500, bd), new_esEs10(yv1461, yv1501, bd)) 16.93/6.33 new_esEs23(yv1460, yv1500, ty_Ordering) -> new_esEs20(yv1460, yv1500) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), app(ty_Maybe, bed)) -> new_esEs21(yv1460, yv1500, bed) 16.93/6.33 new_esEs14(yv1461, yv1501, app(ty_[], db)) -> new_esEs16(yv1461, yv1501, db) 16.93/6.33 new_esEs4(yv146, yv150, ty_Integer) -> new_esEs11(yv146, yv150) 16.93/6.33 new_esEs24(yv1461, yv1501, ty_Double) -> new_esEs19(yv1461, yv1501) 16.93/6.33 new_esEs24(yv1461, yv1501, ty_Float) -> new_esEs6(yv1461, yv1501) 16.93/6.33 new_esEs26(yv1460, yv1500, app(ty_Maybe, bfg)) -> new_esEs21(yv1460, yv1500, bfg) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, ty_Ordering) -> new_esEs20(yv1460, yv1500) 16.93/6.33 new_esEs24(yv1461, yv1501, ty_Bool) -> new_esEs15(yv1461, yv1501) 16.93/6.33 new_esEs4(yv146, yv150, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs18(yv146, yv150, ed, ee, ef) 16.93/6.33 new_primEqInt(Neg(Succ(yv14600)), Neg(Zero)) -> False 16.93/6.33 new_primEqInt(Neg(Zero), Neg(Succ(yv15000))) -> False 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), ty_Bool) -> new_esEs15(yv1460, yv1500) 16.93/6.33 new_esEs11(Integer(yv1460), Integer(yv1500)) -> new_primEqInt(yv1460, yv1500) 16.93/6.33 new_esEs9(yv1460, yv1500, ty_Integer) -> new_esEs11(yv1460, yv1500) 16.93/6.33 new_primEqInt(Pos(Succ(yv14600)), Pos(Succ(yv15000))) -> new_primEqNat0(yv14600, yv15000) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), ty_Double) -> new_esEs19(yv1460, yv1500) 16.93/6.33 new_esEs7(yv146, yv150) -> new_primEqInt(yv146, yv150) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), ty_Integer, baf) -> new_esEs11(yv1460, yv1500) 16.93/6.33 new_sr(Pos(yv14610), Neg(yv15000)) -> Neg(new_primMulNat0(yv14610, yv15000)) 16.93/6.33 new_sr(Neg(yv14610), Pos(yv15000)) -> Neg(new_primMulNat0(yv14610, yv15000)) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), app(app(app(ty_@3, bba), bbb), bbc), baf) -> new_esEs18(yv1460, yv1500, bba, bbb, bbc) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), app(ty_[], bde)) -> new_esEs16(yv1460, yv1500, bde) 16.93/6.33 new_primPlusNat1(Succ(yv17100), Succ(yv1500000)) -> Succ(Succ(new_primPlusNat1(yv17100, yv1500000))) 16.93/6.33 new_esEs13(yv1460, yv1500, ty_Double) -> new_esEs19(yv1460, yv1500) 16.93/6.33 new_primEqInt(Pos(Succ(yv14600)), Neg(yv1500)) -> False 16.93/6.33 new_primEqInt(Neg(Succ(yv14600)), Pos(yv1500)) -> False 16.93/6.33 new_esEs25(yv1462, yv1502, app(app(ty_@2, baa), bab)) -> new_esEs12(yv1462, yv1502, baa, bab) 16.93/6.33 new_esEs14(yv1461, yv1501, app(ty_Maybe, ea)) -> new_esEs21(yv1461, yv1501, ea) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), app(app(ty_@2, beb), bec)) -> new_esEs12(yv1460, yv1500, beb, bec) 16.93/6.33 new_esEs25(yv1462, yv1502, app(ty_[], hd)) -> new_esEs16(yv1462, yv1502, hd) 16.93/6.33 new_esEs13(yv1460, yv1500, ty_Bool) -> new_esEs15(yv1460, yv1500) 16.93/6.33 new_esEs9(yv1460, yv1500, ty_Int) -> new_esEs7(yv1460, yv1500) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, ty_Bool) -> new_esEs15(yv1460, yv1500) 16.93/6.33 new_esEs26(yv1460, yv1500, ty_Double) -> new_esEs19(yv1460, yv1500) 16.93/6.33 new_esEs26(yv1460, yv1500, app(app(ty_Either, bfh), bga)) -> new_esEs22(yv1460, yv1500, bfh, bga) 16.93/6.33 new_esEs4(yv146, yv150, app(ty_Maybe, bdd)) -> new_esEs21(yv146, yv150, bdd) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), app(ty_Maybe, bbf), baf) -> new_esEs21(yv1460, yv1500, bbf) 16.93/6.33 new_esEs26(yv1460, yv1500, ty_@0) -> new_esEs5(yv1460, yv1500) 16.93/6.33 new_esEs13(yv1460, yv1500, app(app(ty_@2, cd), ce)) -> new_esEs12(yv1460, yv1500, cd, ce) 16.93/6.33 new_sr(Neg(yv14610), Neg(yv15000)) -> Pos(new_primMulNat0(yv14610, yv15000)) 16.93/6.33 new_esEs14(yv1461, yv1501, ty_Bool) -> new_esEs15(yv1461, yv1501) 16.93/6.33 new_esEs25(yv1462, yv1502, app(ty_Ratio, he)) -> new_esEs8(yv1462, yv1502, he) 16.93/6.33 new_esEs23(yv1460, yv1500, ty_Float) -> new_esEs6(yv1460, yv1500) 16.93/6.33 new_esEs13(yv1460, yv1500, app(ty_[], bg)) -> new_esEs16(yv1460, yv1500, bg) 16.93/6.33 new_esEs25(yv1462, yv1502, app(ty_Maybe, bac)) -> new_esEs21(yv1462, yv1502, bac) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, app(ty_Maybe, bda)) -> new_esEs21(yv1460, yv1500, bda) 16.93/6.33 new_esEs13(yv1460, yv1500, ty_Integer) -> new_esEs11(yv1460, yv1500) 16.93/6.33 new_esEs24(yv1461, yv1501, ty_@0) -> new_esEs5(yv1461, yv1501) 16.93/6.33 new_esEs10(yv1461, yv1501, ty_Int) -> new_esEs7(yv1461, yv1501) 16.93/6.33 new_esEs22(Left(yv1460), Right(yv1500), bca, baf) -> False 16.93/6.33 new_esEs22(Right(yv1460), Left(yv1500), bca, baf) -> False 16.93/6.33 new_primEqInt(Pos(Zero), Neg(Succ(yv15000))) -> False 16.93/6.33 new_primEqInt(Neg(Zero), Pos(Succ(yv15000))) -> False 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, ty_Char) -> new_esEs17(yv1460, yv1500) 16.93/6.33 new_esEs13(yv1460, yv1500, ty_Float) -> new_esEs6(yv1460, yv1500) 16.93/6.33 new_esEs14(yv1461, yv1501, app(app(app(ty_@3, dd), de), df)) -> new_esEs18(yv1461, yv1501, dd, de, df) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), app(app(ty_Either, bbg), bbh), baf) -> new_esEs22(yv1460, yv1500, bbg, bbh) 16.93/6.33 new_esEs23(yv1460, yv1500, ty_Integer) -> new_esEs11(yv1460, yv1500) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, app(ty_Ratio, bcc)) -> new_esEs8(yv1460, yv1500, bcc) 16.93/6.33 new_esEs20(LT, EQ) -> False 16.93/6.33 new_esEs20(EQ, LT) -> False 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), ty_Int, baf) -> new_esEs7(yv1460, yv1500) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), ty_Char, baf) -> new_esEs17(yv1460, yv1500) 16.93/6.33 new_esEs26(yv1460, yv1500, app(ty_[], beh)) -> new_esEs16(yv1460, yv1500, beh) 16.93/6.33 new_esEs15(True, True) -> True 16.93/6.33 new_primEqInt(Neg(Succ(yv14600)), Neg(Succ(yv15000))) -> new_primEqNat0(yv14600, yv15000) 16.93/6.33 new_esEs24(yv1461, yv1501, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs18(yv1461, yv1501, gd, ge, gf) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), ty_Bool, baf) -> new_esEs15(yv1460, yv1500) 16.93/6.33 new_esEs26(yv1460, yv1500, app(app(ty_@2, bfe), bff)) -> new_esEs12(yv1460, yv1500, bfe, bff) 16.93/6.33 new_primPlusNat0(Succ(yv1710), yv150000) -> Succ(Succ(new_primPlusNat1(yv1710, yv150000))) 16.93/6.33 new_esEs4(yv146, yv150, app(ty_Ratio, bd)) -> new_esEs8(yv146, yv150, bd) 16.93/6.33 new_esEs23(yv1460, yv1500, app(ty_Ratio, eh)) -> new_esEs8(yv1460, yv1500, eh) 16.93/6.33 new_esEs14(yv1461, yv1501, ty_Ordering) -> new_esEs20(yv1461, yv1501) 16.93/6.33 new_esEs20(LT, GT) -> False 16.93/6.33 new_esEs20(GT, LT) -> False 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), app(ty_Ratio, bah), baf) -> new_esEs8(yv1460, yv1500, bah) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), ty_Ordering, baf) -> new_esEs20(yv1460, yv1500) 16.93/6.33 new_esEs25(yv1462, yv1502, ty_Ordering) -> new_esEs20(yv1462, yv1502) 16.93/6.33 new_esEs13(yv1460, yv1500, app(ty_Maybe, cf)) -> new_esEs21(yv1460, yv1500, cf) 16.93/6.33 new_primPlusNat1(Zero, Zero) -> Zero 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), ty_Float) -> new_esEs6(yv1460, yv1500) 16.93/6.33 new_primMulNat0(Succ(yv146100), Zero) -> Zero 16.93/6.33 new_primMulNat0(Zero, Succ(yv150000)) -> Zero 16.93/6.33 new_sr(Pos(yv14610), Pos(yv15000)) -> Pos(new_primMulNat0(yv14610, yv15000)) 16.93/6.33 new_esEs26(yv1460, yv1500, ty_Bool) -> new_esEs15(yv1460, yv1500) 16.93/6.33 new_primPlusNat0(Zero, yv150000) -> Succ(yv150000) 16.93/6.33 new_esEs14(yv1461, yv1501, ty_Char) -> new_esEs17(yv1461, yv1501) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, ty_Double) -> new_esEs19(yv1460, yv1500) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, ty_Int) -> new_esEs7(yv1460, yv1500) 16.93/6.33 new_esEs4(yv146, yv150, ty_Float) -> new_esEs6(yv146, yv150) 16.93/6.33 new_esEs25(yv1462, yv1502, ty_Float) -> new_esEs6(yv1462, yv1502) 16.93/6.33 new_esEs6(Float(yv1460, yv1461), Float(yv1500, yv1501)) -> new_esEs7(new_sr(yv1460, yv1501), new_sr(yv1461, yv1500)) 16.93/6.33 new_esEs20(LT, LT) -> True 16.93/6.33 new_esEs13(yv1460, yv1500, ty_@0) -> new_esEs5(yv1460, yv1500) 16.93/6.33 new_esEs26(yv1460, yv1500, ty_Integer) -> new_esEs11(yv1460, yv1500) 16.93/6.33 new_esEs15(False, True) -> False 16.93/6.33 new_esEs15(True, False) -> False 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), app(ty_Ratio, bdf)) -> new_esEs8(yv1460, yv1500, bdf) 16.93/6.33 new_esEs4(yv146, yv150, ty_Ordering) -> new_esEs20(yv146, yv150) 16.93/6.33 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 16.93/6.33 new_esEs13(yv1460, yv1500, app(ty_Ratio, bh)) -> new_esEs8(yv1460, yv1500, bh) 16.93/6.33 new_esEs26(yv1460, yv1500, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs18(yv1460, yv1500, bfb, bfc, bfd) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), ty_@0, baf) -> new_esEs5(yv1460, yv1500) 16.93/6.33 new_primMulNat0(Succ(yv146100), Succ(yv150000)) -> new_primPlusNat0(new_primMulNat0(yv146100, Succ(yv150000)), yv150000) 16.93/6.33 new_esEs26(yv1460, yv1500, ty_Float) -> new_esEs6(yv1460, yv1500) 16.93/6.33 new_esEs4(yv146, yv150, app(app(ty_@2, be), bf)) -> new_esEs12(yv146, yv150, be, bf) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), ty_Double, baf) -> new_esEs19(yv1460, yv1500) 16.93/6.33 new_esEs23(yv1460, yv1500, app(app(ty_@2, fd), ff)) -> new_esEs12(yv1460, yv1500, fd, ff) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), app(app(ty_Either, bee), bef)) -> new_esEs22(yv1460, yv1500, bee, bef) 16.93/6.33 new_esEs24(yv1461, yv1501, ty_Int) -> new_esEs7(yv1461, yv1501) 16.93/6.33 new_primPlusNat1(Succ(yv17100), Zero) -> Succ(yv17100) 16.93/6.33 new_primPlusNat1(Zero, Succ(yv1500000)) -> Succ(yv1500000) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, app(ty_[], bcb)) -> new_esEs16(yv1460, yv1500, bcb) 16.93/6.33 new_esEs14(yv1461, yv1501, ty_Int) -> new_esEs7(yv1461, yv1501) 16.93/6.33 new_esEs16(:(yv1460, yv1461), [], beg) -> False 16.93/6.33 new_esEs16([], :(yv1500, yv1501), beg) -> False 16.93/6.33 new_esEs23(yv1460, yv1500, app(ty_[], eg)) -> new_esEs16(yv1460, yv1500, eg) 16.93/6.33 new_esEs12(@2(yv1460, yv1461), @2(yv1500, yv1501), be, bf) -> new_asAs(new_esEs13(yv1460, yv1500, be), new_esEs14(yv1461, yv1501, bf)) 16.93/6.33 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 16.93/6.33 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 16.93/6.33 new_esEs25(yv1462, yv1502, ty_Int) -> new_esEs7(yv1462, yv1502) 16.93/6.33 new_esEs23(yv1460, yv1500, ty_@0) -> new_esEs5(yv1460, yv1500) 16.93/6.33 new_esEs4(yv146, yv150, ty_Double) -> new_esEs19(yv146, yv150) 16.93/6.33 new_primEqNat0(Zero, Zero) -> True 16.93/6.33 new_esEs16([], [], beg) -> True 16.93/6.33 new_esEs13(yv1460, yv1500, ty_Int) -> new_esEs7(yv1460, yv1500) 16.93/6.33 new_esEs26(yv1460, yv1500, ty_Ordering) -> new_esEs20(yv1460, yv1500) 16.93/6.33 new_esEs13(yv1460, yv1500, ty_Char) -> new_esEs17(yv1460, yv1500) 16.93/6.33 new_esEs24(yv1461, yv1501, app(app(ty_Either, hb), hc)) -> new_esEs22(yv1461, yv1501, hb, hc) 16.93/6.33 new_asAs(False, yv170) -> False 16.93/6.33 new_esEs13(yv1460, yv1500, app(app(ty_Either, cg), da)) -> new_esEs22(yv1460, yv1500, cg, da) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), ty_Int) -> new_esEs7(yv1460, yv1500) 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs18(yv1460, yv1500, bdg, bdh, bea) 16.93/6.33 new_esEs24(yv1461, yv1501, app(ty_Ratio, gc)) -> new_esEs8(yv1461, yv1501, gc) 16.93/6.33 new_esEs25(yv1462, yv1502, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs18(yv1462, yv1502, hf, hg, hh) 16.93/6.33 new_esEs22(Right(yv1460), Right(yv1500), bca, ty_@0) -> new_esEs5(yv1460, yv1500) 16.93/6.33 new_esEs20(GT, GT) -> True 16.93/6.33 new_esEs21(Just(yv1460), Just(yv1500), ty_Integer) -> new_esEs11(yv1460, yv1500) 16.93/6.33 new_esEs23(yv1460, yv1500, app(ty_Maybe, fg)) -> new_esEs21(yv1460, yv1500, fg) 16.93/6.33 new_esEs5(@0, @0) -> True 16.93/6.33 new_esEs24(yv1461, yv1501, ty_Char) -> new_esEs17(yv1461, yv1501) 16.93/6.33 new_esEs4(yv146, yv150, app(ty_[], beg)) -> new_esEs16(yv146, yv150, beg) 16.93/6.33 new_esEs25(yv1462, yv1502, ty_Integer) -> new_esEs11(yv1462, yv1502) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), app(app(ty_@2, bbd), bbe), baf) -> new_esEs12(yv1460, yv1500, bbd, bbe) 16.93/6.33 new_esEs22(Left(yv1460), Left(yv1500), app(ty_[], bag), baf) -> new_esEs16(yv1460, yv1500, bag) 16.93/6.33 16.93/6.33 The set Q consists of the following terms: 16.93/6.33 16.93/6.33 new_primPlusNat1(Zero, Succ(x0)) 16.93/6.33 new_esEs21(Nothing, Just(x0), x1) 16.93/6.33 new_esEs9(x0, x1, ty_Integer) 16.93/6.33 new_esEs6(Float(x0, x1), Float(x2, x3)) 16.93/6.33 new_esEs23(x0, x1, ty_Float) 16.93/6.33 new_esEs13(x0, x1, ty_Integer) 16.93/6.33 new_primPlusNat1(Succ(x0), Zero) 16.93/6.33 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.93/6.33 new_esEs7(x0, x1) 16.93/6.33 new_esEs4(x0, x1, app(ty_[], x2)) 16.93/6.33 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 16.93/6.33 new_esEs24(x0, x1, ty_Int) 16.93/6.33 new_esEs22(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 16.93/6.34 new_esEs22(Left(x0), Left(x1), ty_Integer, x2) 16.93/6.34 new_primMulNat0(Zero, Zero) 16.93/6.34 new_esEs13(x0, x1, app(ty_Maybe, x2)) 16.93/6.34 new_esEs24(x0, x1, ty_Ordering) 16.93/6.34 new_primPlusNat1(Zero, Zero) 16.93/6.34 new_esEs26(x0, x1, app(ty_Ratio, x2)) 16.93/6.34 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 16.93/6.34 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 16.93/6.34 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, ty_Char) 16.93/6.34 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 16.93/6.34 new_esEs20(LT, GT) 16.93/6.34 new_esEs20(GT, LT) 16.93/6.34 new_esEs23(x0, x1, ty_Ordering) 16.93/6.34 new_esEs22(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 16.93/6.34 new_esEs24(x0, x1, ty_Double) 16.93/6.34 new_esEs22(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 16.93/6.34 new_esEs21(Just(x0), Just(x1), ty_Float) 16.93/6.34 new_esEs25(x0, x1, ty_Int) 16.93/6.34 new_primEqInt(Pos(Zero), Pos(Zero)) 16.93/6.34 new_esEs4(x0, x1, ty_@0) 16.93/6.34 new_esEs13(x0, x1, app(ty_Ratio, x2)) 16.93/6.34 new_esEs14(x0, x1, app(ty_[], x2)) 16.93/6.34 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 16.93/6.34 new_esEs26(x0, x1, ty_Double) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 16.93/6.34 new_esEs14(x0, x1, app(ty_Maybe, x2)) 16.93/6.34 new_esEs21(Just(x0), Just(x1), ty_Ordering) 16.93/6.34 new_primEqNat0(Succ(x0), Succ(x1)) 16.93/6.34 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 16.93/6.34 new_esEs4(x0, x1, ty_Integer) 16.93/6.34 new_esEs26(x0, x1, app(ty_[], x2)) 16.93/6.34 new_esEs25(x0, x1, ty_Char) 16.93/6.34 new_esEs25(x0, x1, app(ty_Maybe, x2)) 16.93/6.34 new_esEs22(Left(x0), Left(x1), ty_Bool, x2) 16.93/6.34 new_primEqInt(Neg(Zero), Neg(Zero)) 16.93/6.34 new_esEs21(Just(x0), Just(x1), ty_Integer) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, ty_Bool) 16.93/6.34 new_esEs23(x0, x1, ty_Double) 16.93/6.34 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 16.93/6.34 new_esEs24(x0, x1, ty_Char) 16.93/6.34 new_esEs23(x0, x1, ty_Char) 16.93/6.34 new_esEs20(LT, EQ) 16.93/6.34 new_esEs20(EQ, LT) 16.93/6.34 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 16.93/6.34 new_esEs10(x0, x1, ty_Integer) 16.93/6.34 new_esEs25(x0, x1, ty_Float) 16.93/6.34 new_esEs20(GT, GT) 16.93/6.34 new_esEs21(Just(x0), Nothing, x1) 16.93/6.34 new_esEs13(x0, x1, ty_Float) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, app(ty_[], x3)) 16.93/6.34 new_sr(Pos(x0), Pos(x1)) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, ty_Double) 16.93/6.34 new_esEs16([], :(x0, x1), x2) 16.93/6.34 new_esEs24(x0, x1, app(ty_Maybe, x2)) 16.93/6.34 new_esEs14(x0, x1, ty_Integer) 16.93/6.34 new_esEs13(x0, x1, ty_Bool) 16.93/6.34 new_esEs23(x0, x1, ty_Int) 16.93/6.34 new_esEs14(x0, x1, ty_Ordering) 16.93/6.34 new_esEs25(x0, x1, ty_@0) 16.93/6.34 new_esEs8(:%(x0, x1), :%(x2, x3), x4) 16.93/6.34 new_esEs10(x0, x1, ty_Int) 16.93/6.34 new_asAs(True, x0) 16.93/6.34 new_esEs13(x0, x1, ty_@0) 16.93/6.34 new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) 16.93/6.34 new_esEs21(Nothing, Nothing, x0) 16.93/6.34 new_esEs26(x0, x1, ty_Int) 16.93/6.34 new_esEs25(x0, x1, app(ty_Ratio, x2)) 16.93/6.34 new_esEs11(Integer(x0), Integer(x1)) 16.93/6.34 new_primMulNat0(Succ(x0), Zero) 16.93/6.34 new_primEqInt(Pos(Zero), Neg(Zero)) 16.93/6.34 new_primEqInt(Neg(Zero), Pos(Zero)) 16.93/6.34 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 16.93/6.34 new_esEs22(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 16.93/6.34 new_esEs20(LT, LT) 16.93/6.34 new_primPlusNat1(Succ(x0), Succ(x1)) 16.93/6.34 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, ty_Int) 16.93/6.34 new_esEs22(Left(x0), Right(x1), x2, x3) 16.93/6.34 new_esEs22(Right(x0), Left(x1), x2, x3) 16.93/6.34 new_esEs15(False, False) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, ty_Float) 16.93/6.34 new_esEs16([], [], x0) 16.93/6.34 new_esEs13(x0, x1, ty_Char) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, ty_@0) 16.93/6.34 new_esEs13(x0, x1, ty_Double) 16.93/6.34 new_esEs22(Left(x0), Left(x1), ty_Ordering, x2) 16.93/6.34 new_esEs26(x0, x1, ty_Float) 16.93/6.34 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 16.93/6.34 new_esEs24(x0, x1, app(ty_[], x2)) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 16.93/6.34 new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) 16.93/6.34 new_esEs9(x0, x1, ty_Int) 16.93/6.34 new_esEs23(x0, x1, ty_Bool) 16.93/6.34 new_esEs24(x0, x1, ty_Integer) 16.93/6.34 new_esEs22(Left(x0), Left(x1), ty_Int, x2) 16.93/6.34 new_primPlusNat0(Zero, x0) 16.93/6.34 new_esEs13(x0, x1, ty_Int) 16.93/6.34 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.93/6.34 new_primMulNat0(Zero, Succ(x0)) 16.93/6.34 new_esEs26(x0, x1, ty_@0) 16.93/6.34 new_esEs4(x0, x1, ty_Ordering) 16.93/6.34 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.93/6.34 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 16.93/6.34 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 16.93/6.34 new_esEs4(x0, x1, ty_Int) 16.93/6.34 new_esEs22(Left(x0), Left(x1), ty_Char, x2) 16.93/6.34 new_esEs23(x0, x1, ty_@0) 16.93/6.34 new_esEs22(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 16.93/6.34 new_esEs26(x0, x1, app(ty_Maybe, x2)) 16.93/6.34 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 16.93/6.34 new_esEs26(x0, x1, ty_Bool) 16.93/6.34 new_esEs24(x0, x1, ty_Bool) 16.93/6.34 new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 16.93/6.34 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 16.93/6.34 new_esEs19(Double(x0, x1), Double(x2, x3)) 16.93/6.34 new_esEs21(Just(x0), Just(x1), ty_@0) 16.93/6.34 new_sr(Pos(x0), Neg(x1)) 16.93/6.34 new_sr(Neg(x0), Pos(x1)) 16.93/6.34 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 16.93/6.34 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 16.93/6.34 new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 16.93/6.34 new_esEs26(x0, x1, ty_Char) 16.93/6.34 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 16.93/6.34 new_esEs22(Left(x0), Left(x1), app(ty_[], x2), x3) 16.93/6.34 new_esEs25(x0, x1, app(ty_[], x2)) 16.93/6.34 new_esEs20(EQ, GT) 16.93/6.34 new_esEs20(GT, EQ) 16.93/6.34 new_esEs5(@0, @0) 16.93/6.34 new_esEs15(False, True) 16.93/6.34 new_esEs15(True, False) 16.93/6.34 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 16.93/6.34 new_esEs4(x0, x1, ty_Float) 16.93/6.34 new_primPlusNat0(Succ(x0), x1) 16.93/6.34 new_esEs21(Just(x0), Just(x1), ty_Int) 16.93/6.34 new_esEs25(x0, x1, ty_Bool) 16.93/6.34 new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 16.93/6.34 new_primEqNat0(Zero, Zero) 16.93/6.34 new_esEs13(x0, x1, app(ty_[], x2)) 16.93/6.34 new_esEs16(:(x0, x1), :(x2, x3), x4) 16.93/6.34 new_esEs25(x0, x1, ty_Ordering) 16.93/6.34 new_esEs25(x0, x1, ty_Double) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, ty_Ordering) 16.93/6.34 new_esEs14(x0, x1, app(ty_Ratio, x2)) 16.93/6.34 new_esEs16(:(x0, x1), [], x2) 16.93/6.34 new_esEs23(x0, x1, app(ty_Ratio, x2)) 16.93/6.34 new_esEs22(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 16.93/6.34 new_esEs22(Left(x0), Left(x1), ty_Double, x2) 16.93/6.34 new_esEs15(True, True) 16.93/6.34 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.93/6.34 new_asAs(False, x0) 16.93/6.34 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.93/6.34 new_esEs14(x0, x1, ty_Float) 16.93/6.34 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.93/6.34 new_esEs4(x0, x1, app(ty_Maybe, x2)) 16.93/6.34 new_esEs13(x0, x1, ty_Ordering) 16.93/6.34 new_esEs23(x0, x1, app(ty_[], x2)) 16.93/6.34 new_esEs24(x0, x1, ty_@0) 16.93/6.34 new_esEs14(x0, x1, ty_Bool) 16.93/6.34 new_esEs12(@2(x0, x1), @2(x2, x3), x4, x5) 16.93/6.34 new_primMulNat0(Succ(x0), Succ(x1)) 16.93/6.34 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 16.93/6.34 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 16.93/6.34 new_esEs14(x0, x1, ty_@0) 16.93/6.34 new_esEs23(x0, x1, app(ty_Maybe, x2)) 16.93/6.34 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 16.93/6.34 new_esEs4(x0, x1, ty_Double) 16.93/6.34 new_esEs14(x0, x1, ty_Char) 16.93/6.34 new_esEs21(Just(x0), Just(x1), ty_Bool) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, ty_Integer) 16.93/6.34 new_esEs26(x0, x1, ty_Ordering) 16.93/6.34 new_esEs20(EQ, EQ) 16.93/6.34 new_esEs14(x0, x1, ty_Double) 16.93/6.34 new_esEs4(x0, x1, app(ty_Ratio, x2)) 16.93/6.34 new_esEs4(x0, x1, ty_Bool) 16.93/6.34 new_esEs25(x0, x1, ty_Integer) 16.93/6.34 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 16.93/6.34 new_esEs21(Just(x0), Just(x1), ty_Char) 16.93/6.34 new_esEs4(x0, x1, ty_Char) 16.93/6.34 new_esEs18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 16.93/6.34 new_esEs24(x0, x1, ty_Float) 16.93/6.34 new_esEs21(Just(x0), Just(x1), ty_Double) 16.93/6.34 new_esEs22(Left(x0), Left(x1), ty_Float, x2) 16.93/6.34 new_primEqNat0(Succ(x0), Zero) 16.93/6.34 new_esEs22(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 16.93/6.34 new_esEs23(x0, x1, ty_Integer) 16.93/6.34 new_esEs14(x0, x1, ty_Int) 16.93/6.34 new_esEs22(Left(x0), Left(x1), ty_@0, x2) 16.93/6.34 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 16.93/6.34 new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) 16.93/6.34 new_esEs26(x0, x1, ty_Integer) 16.93/6.34 new_esEs17(Char(x0), Char(x1)) 16.93/6.34 new_esEs24(x0, x1, app(ty_Ratio, x2)) 16.93/6.34 new_sr(Neg(x0), Neg(x1)) 16.93/6.34 new_primEqNat0(Zero, Succ(x0)) 16.93/6.34 16.93/6.34 We have to consider all minimal (P,Q,R)-chains. 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (13) QDPSizeChangeProof (EQUIVALENT) 16.93/6.34 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. 16.93/6.34 16.93/6.34 From the DPs we obtained the following set of size-change graphs: 16.93/6.34 *new_nubNub'11(yv59, yv60, yv61, yv62, bc) -> new_nubNub'1(yv59, yv60, yv61, yv62, yv61, yv62, bc) 16.93/6.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 3 >= 5, 4 >= 6, 5 >= 7 16.93/6.34 16.93/6.34 16.93/6.34 *new_nubNub'10(yv159, yv160, yv161, yv162, False, [], bb) -> new_nubNub'(yv160, yv159, :(yv161, yv162), bb) 16.93/6.34 The graph contains the following edges 2 >= 1, 1 >= 2, 7 >= 4 16.93/6.34 16.93/6.34 16.93/6.34 *new_nubNub'(:(yv1600, yv1601), yv161, yv162, bb) -> new_nubNub'11(yv1600, yv1601, yv161, yv162, bb) 16.93/6.34 The graph contains the following edges 1 > 1, 1 > 2, 2 >= 3, 3 >= 4, 4 >= 5 16.93/6.34 16.93/6.34 16.93/6.34 *new_nubNub'1(yv146, yv147, yv148, yv149, yv150, yv151, ba) -> new_nubNub'10(yv146, yv147, yv148, yv149, new_esEs4(yv146, yv150, ba), yv151, ba) 16.93/6.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 6 >= 6, 7 >= 7 16.93/6.34 16.93/6.34 16.93/6.34 *new_nubNub'10(yv159, yv160, yv161, yv162, False, :(yv1640, yv1641), bb) -> new_nubNub'1(yv159, yv160, yv161, yv162, yv1640, yv1641, bb) 16.93/6.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 6 > 5, 6 > 6, 7 >= 7 16.93/6.34 16.93/6.34 16.93/6.34 *new_nubNub'10(yv159, :(yv1600, yv1601), yv161, yv162, True, yv164, bb) -> new_nubNub'11(yv1600, yv1601, yv161, yv162, bb) 16.93/6.34 The graph contains the following edges 2 > 1, 2 > 2, 3 >= 3, 4 >= 4, 7 >= 5 16.93/6.34 16.93/6.34 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (14) 16.93/6.34 YES 16.93/6.34 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (15) 16.93/6.34 Obligation: 16.93/6.34 Q DP problem: 16.93/6.34 The TRS P consists of the following rules: 16.93/6.34 16.93/6.34 new_primMulNat(Succ(yv146100), Succ(yv150000)) -> new_primMulNat(yv146100, Succ(yv150000)) 16.93/6.34 16.93/6.34 R is empty. 16.93/6.34 Q is empty. 16.93/6.34 We have to consider all minimal (P,Q,R)-chains. 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (16) QDPSizeChangeProof (EQUIVALENT) 16.93/6.34 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. 16.93/6.34 16.93/6.34 From the DPs we obtained the following set of size-change graphs: 16.93/6.34 *new_primMulNat(Succ(yv146100), Succ(yv150000)) -> new_primMulNat(yv146100, Succ(yv150000)) 16.93/6.34 The graph contains the following edges 1 > 1, 2 >= 2 16.93/6.34 16.93/6.34 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (17) 16.93/6.34 YES 16.93/6.34 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (18) 16.93/6.34 Obligation: 16.93/6.34 Q DP problem: 16.93/6.34 The TRS P consists of the following rules: 16.93/6.34 16.93/6.34 new_primPlusNat(Succ(yv17100), Succ(yv1500000)) -> new_primPlusNat(yv17100, yv1500000) 16.93/6.34 16.93/6.34 R is empty. 16.93/6.34 Q is empty. 16.93/6.34 We have to consider all minimal (P,Q,R)-chains. 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (19) QDPSizeChangeProof (EQUIVALENT) 16.93/6.34 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. 16.93/6.34 16.93/6.34 From the DPs we obtained the following set of size-change graphs: 16.93/6.34 *new_primPlusNat(Succ(yv17100), Succ(yv1500000)) -> new_primPlusNat(yv17100, yv1500000) 16.93/6.34 The graph contains the following edges 1 > 1, 2 > 2 16.93/6.34 16.93/6.34 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (20) 16.93/6.34 YES 16.93/6.34 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (21) 16.93/6.34 Obligation: 16.93/6.34 Q DP problem: 16.93/6.34 The TRS P consists of the following rules: 16.93/6.34 16.93/6.34 new_primEqNat(Succ(yv14600), Succ(yv15000)) -> new_primEqNat(yv14600, yv15000) 16.93/6.34 16.93/6.34 R is empty. 16.93/6.34 Q is empty. 16.93/6.34 We have to consider all minimal (P,Q,R)-chains. 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (22) QDPSizeChangeProof (EQUIVALENT) 16.93/6.34 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. 16.93/6.34 16.93/6.34 From the DPs we obtained the following set of size-change graphs: 16.93/6.34 *new_primEqNat(Succ(yv14600), Succ(yv15000)) -> new_primEqNat(yv14600, yv15000) 16.93/6.34 The graph contains the following edges 1 > 1, 2 > 2 16.93/6.34 16.93/6.34 16.93/6.34 ---------------------------------------- 16.93/6.34 16.93/6.34 (23) 16.93/6.34 YES 16.93/6.38 EOF