14.88/6.07 YES 17.15/6.65 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 17.15/6.65 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 17.15/6.65 17.15/6.65 17.15/6.65 H-Termination with start terms of the given HASKELL could be proven: 17.15/6.65 17.15/6.65 (0) HASKELL 17.15/6.65 (1) IFR [EQUIVALENT, 0 ms] 17.15/6.65 (2) HASKELL 17.15/6.65 (3) BR [EQUIVALENT, 0 ms] 17.15/6.65 (4) HASKELL 17.15/6.65 (5) COR [EQUIVALENT, 13 ms] 17.15/6.65 (6) HASKELL 17.15/6.65 (7) Narrow [SOUND, 0 ms] 17.15/6.65 (8) AND 17.15/6.65 (9) QDP 17.15/6.65 (10) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.15/6.65 (11) YES 17.15/6.65 (12) QDP 17.15/6.65 (13) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.15/6.65 (14) YES 17.15/6.65 (15) QDP 17.15/6.65 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.15/6.65 (17) YES 17.15/6.65 (18) QDP 17.15/6.65 (19) QDPSizeChangeProof [EQUIVALENT, 2 ms] 17.15/6.65 (20) YES 17.15/6.65 (21) QDP 17.15/6.65 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.15/6.65 (23) YES 17.15/6.65 (24) QDP 17.15/6.65 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.15/6.65 (26) YES 17.15/6.65 17.15/6.65 17.15/6.65 ---------------------------------------- 17.15/6.65 17.15/6.65 (0) 17.15/6.65 Obligation: 17.15/6.65 mainModule Main 17.15/6.65 module Maybe where { 17.15/6.65 import qualified List; 17.15/6.65 import qualified Main; 17.15/6.65 import qualified Prelude; 17.15/6.65 } 17.15/6.65 module List where { 17.15/6.65 import qualified Main; 17.15/6.65 import qualified Maybe; 17.15/6.65 import qualified Prelude; 17.15/6.65 infix 5 \\; 17.15/6.65 (\\) :: Eq a => [a] -> [a] -> [a]; 17.15/6.65 (\\) = foldl (flip delete); 17.15/6.65 17.15/6.65 delete :: Eq a => a -> [a] -> [a]; 17.15/6.65 delete = deleteBy (==); 17.15/6.65 17.15/6.65 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 17.15/6.65 deleteBy _ _ [] = []; 17.15/6.65 deleteBy eq x (y : ys) = if x `eq` y then ys else y : deleteBy eq x ys; 17.15/6.65 17.15/6.65 } 17.15/6.65 module Main where { 17.15/6.65 import qualified List; 17.15/6.65 import qualified Maybe; 17.15/6.65 import qualified Prelude; 17.15/6.65 } 17.15/6.65 17.15/6.65 ---------------------------------------- 17.15/6.65 17.15/6.65 (1) IFR (EQUIVALENT) 17.15/6.65 If Reductions: 17.15/6.65 The following If expression 17.15/6.65 "if eq x y then ys else y : deleteBy eq x ys" 17.15/6.65 is transformed to 17.15/6.65 "deleteBy0 ys y eq x True = ys; 17.15/6.65 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 17.15/6.65 " 17.15/6.65 17.15/6.65 ---------------------------------------- 17.15/6.65 17.15/6.65 (2) 17.15/6.65 Obligation: 17.15/6.65 mainModule Main 17.15/6.65 module Maybe where { 17.15/6.65 import qualified List; 17.15/6.65 import qualified Main; 17.15/6.65 import qualified Prelude; 17.15/6.65 } 17.15/6.65 module List where { 17.15/6.65 import qualified Main; 17.15/6.65 import qualified Maybe; 17.15/6.65 import qualified Prelude; 17.15/6.65 infix 5 \\; 17.15/6.65 (\\) :: Eq a => [a] -> [a] -> [a]; 17.15/6.65 (\\) = foldl (flip delete); 17.15/6.65 17.15/6.65 delete :: Eq a => a -> [a] -> [a]; 17.15/6.65 delete = deleteBy (==); 17.15/6.65 17.15/6.65 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 17.15/6.65 deleteBy _ _ [] = []; 17.15/6.65 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 17.15/6.65 17.15/6.65 deleteBy0 ys y eq x True = ys; 17.15/6.65 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 17.15/6.65 17.15/6.65 } 17.15/6.65 module Main where { 17.15/6.65 import qualified List; 17.15/6.65 import qualified Maybe; 17.15/6.65 import qualified Prelude; 17.15/6.65 } 17.15/6.65 17.15/6.65 ---------------------------------------- 17.15/6.65 17.15/6.65 (3) BR (EQUIVALENT) 17.15/6.65 Replaced joker patterns by fresh variables and removed binding patterns. 17.15/6.65 ---------------------------------------- 17.15/6.65 17.15/6.65 (4) 17.15/6.65 Obligation: 17.15/6.65 mainModule Main 17.15/6.65 module Maybe where { 17.15/6.65 import qualified List; 17.15/6.65 import qualified Main; 17.15/6.65 import qualified Prelude; 17.15/6.65 } 17.15/6.65 module List where { 17.15/6.65 import qualified Main; 17.15/6.65 import qualified Maybe; 17.15/6.65 import qualified Prelude; 17.15/6.65 infix 5 \\; 17.15/6.65 (\\) :: Eq a => [a] -> [a] -> [a]; 17.15/6.65 (\\) = foldl (flip delete); 17.15/6.65 17.15/6.65 delete :: Eq a => a -> [a] -> [a]; 17.15/6.65 delete = deleteBy (==); 17.15/6.65 17.15/6.65 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 17.15/6.65 deleteBy xw xx [] = []; 17.15/6.65 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 17.15/6.65 17.15/6.65 deleteBy0 ys y eq x True = ys; 17.15/6.65 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 17.15/6.65 17.15/6.65 } 17.15/6.65 module Main where { 17.15/6.65 import qualified List; 17.15/6.65 import qualified Maybe; 17.15/6.65 import qualified Prelude; 17.15/6.65 } 17.15/6.65 17.15/6.65 ---------------------------------------- 17.15/6.65 17.15/6.65 (5) COR (EQUIVALENT) 17.15/6.65 Cond Reductions: 17.15/6.65 The following Function with conditions 17.15/6.65 "undefined |Falseundefined; 17.15/6.65 " 17.15/6.65 is transformed to 17.15/6.65 "undefined = undefined1; 17.15/6.65 " 17.15/6.65 "undefined0 True = undefined; 17.15/6.65 " 17.15/6.65 "undefined1 = undefined0 False; 17.15/6.65 " 17.15/6.65 17.15/6.65 ---------------------------------------- 17.15/6.65 17.15/6.65 (6) 17.15/6.65 Obligation: 17.15/6.65 mainModule Main 17.15/6.65 module Maybe where { 17.15/6.65 import qualified List; 17.15/6.65 import qualified Main; 17.15/6.65 import qualified Prelude; 17.15/6.65 } 17.15/6.65 module List where { 17.15/6.65 import qualified Main; 17.15/6.65 import qualified Maybe; 17.15/6.65 import qualified Prelude; 17.15/6.65 infix 5 \\; 17.15/6.65 (\\) :: Eq a => [a] -> [a] -> [a]; 17.15/6.65 (\\) = foldl (flip delete); 17.15/6.65 17.15/6.65 delete :: Eq a => a -> [a] -> [a]; 17.15/6.65 delete = deleteBy (==); 17.15/6.65 17.15/6.65 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 17.15/6.65 deleteBy xw xx [] = []; 17.15/6.65 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 17.15/6.65 17.15/6.65 deleteBy0 ys y eq x True = ys; 17.15/6.65 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 17.15/6.65 17.15/6.65 } 17.15/6.65 module Main where { 17.15/6.65 import qualified List; 17.15/6.65 import qualified Maybe; 17.15/6.65 import qualified Prelude; 17.15/6.65 } 17.15/6.65 17.15/6.65 ---------------------------------------- 17.15/6.65 17.15/6.65 (7) Narrow (SOUND) 17.15/6.65 Haskell To QDPs 17.15/6.65 17.15/6.65 digraph dp_graph { 17.15/6.65 node [outthreshold=100, inthreshold=100];1[label="(List.\\)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 17.15/6.65 3[label="xy3 (List.\\)",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 17.15/6.65 4[label="xy3 (List.\\) xy4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 17.15/6.65 5[label="foldl (flip List.delete) xy3 xy4",fontsize=16,color="burlywood",shape="triangle"];994[label="xy4/xy40 : xy41",fontsize=10,color="white",style="solid",shape="box"];5 -> 994[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 994 -> 6[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 995[label="xy4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 995[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 995 -> 7[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 6[label="foldl (flip List.delete) xy3 (xy40 : xy41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 17.15/6.65 7[label="foldl (flip List.delete) xy3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 17.15/6.65 8 -> 5[label="",style="dashed", color="red", weight=0]; 17.15/6.65 8[label="foldl (flip List.delete) (flip List.delete xy3 xy40) xy41",fontsize=16,color="magenta"];8 -> 10[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 8 -> 11[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 9[label="xy3",fontsize=16,color="green",shape="box"];10[label="xy41",fontsize=16,color="green",shape="box"];11[label="flip List.delete xy3 xy40",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 17.15/6.65 12[label="List.delete xy40 xy3",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 17.15/6.65 13[label="List.deleteBy (==) xy40 xy3",fontsize=16,color="burlywood",shape="triangle"];996[label="xy3/xy30 : xy31",fontsize=10,color="white",style="solid",shape="box"];13 -> 996[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 996 -> 14[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 997[label="xy3/[]",fontsize=10,color="white",style="solid",shape="box"];13 -> 997[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 997 -> 15[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 14[label="List.deleteBy (==) xy40 (xy30 : xy31)",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 17.15/6.65 15[label="List.deleteBy (==) xy40 []",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 17.15/6.65 16[label="List.deleteBy0 xy31 xy30 (==) xy40 ((==) xy40 xy30)",fontsize=16,color="burlywood",shape="box"];998[label="xy40/(xy400,xy401)",fontsize=10,color="white",style="solid",shape="box"];16 -> 998[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 998 -> 18[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 17[label="[]",fontsize=16,color="green",shape="box"];18[label="List.deleteBy0 xy31 xy30 (==) (xy400,xy401) ((==) (xy400,xy401) xy30)",fontsize=16,color="burlywood",shape="box"];999[label="xy30/(xy300,xy301)",fontsize=10,color="white",style="solid",shape="box"];18 -> 999[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 999 -> 19[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 19[label="List.deleteBy0 xy31 (xy300,xy301) (==) (xy400,xy401) ((==) (xy400,xy401) (xy300,xy301))",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 17.15/6.65 20 -> 102[label="",style="dashed", color="red", weight=0]; 17.15/6.65 20[label="List.deleteBy0 xy31 (xy300,xy301) (==) (xy400,xy401) (xy400 == xy300 && xy401 == xy301)",fontsize=16,color="magenta"];20 -> 103[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 20 -> 104[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 20 -> 105[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 20 -> 106[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 20 -> 107[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 20 -> 108[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 103[label="xy401",fontsize=16,color="green",shape="box"];104[label="xy31",fontsize=16,color="green",shape="box"];105[label="xy301",fontsize=16,color="green",shape="box"];106 -> 319[label="",style="dashed", color="red", weight=0]; 17.15/6.65 106[label="xy400 == xy300 && xy401 == xy301",fontsize=16,color="magenta"];106 -> 320[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 106 -> 321[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 107[label="xy300",fontsize=16,color="green",shape="box"];108[label="xy400",fontsize=16,color="green",shape="box"];102[label="List.deleteBy0 xy25 (xy26,xy27) (==) (xy28,xy29) xy30",fontsize=16,color="burlywood",shape="triangle"];1000[label="xy30/False",fontsize=10,color="white",style="solid",shape="box"];102 -> 1000[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1000 -> 131[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1001[label="xy30/True",fontsize=10,color="white",style="solid",shape="box"];102 -> 1001[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1001 -> 132[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 320[label="xy401 == xy301",fontsize=16,color="blue",shape="box"];1002[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1002[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1002 -> 324[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1003[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1003[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1003 -> 325[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1004[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1004[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1004 -> 326[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1005[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1005[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1005 -> 327[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1006[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1006[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1006 -> 328[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1007[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1007[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1007 -> 329[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1008[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1008[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1008 -> 330[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1009[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1009[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1009 -> 331[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1010[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1010[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1010 -> 332[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1011[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1011[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1011 -> 333[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1012[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1012[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1012 -> 334[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1013[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1013[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1013 -> 335[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1014[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1014[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1014 -> 336[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1015[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 1015[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1015 -> 337[label="",style="solid", color="blue", weight=3]; 17.15/6.65 321[label="xy400 == xy300",fontsize=16,color="blue",shape="box"];1016[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1016[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1016 -> 338[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1017[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1017[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1017 -> 339[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1018[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1018[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1018 -> 340[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1019[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1019[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1019 -> 341[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1020[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1020[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1020 -> 342[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1021[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1021[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1021 -> 343[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1022[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1022[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1022 -> 344[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1023[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1023[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1023 -> 345[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1024[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1024[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1024 -> 346[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1025[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1025[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1025 -> 347[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1026[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1026[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1026 -> 348[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1027[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1027[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1027 -> 349[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1028[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1028[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1028 -> 350[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1029[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1029[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1029 -> 351[label="",style="solid", color="blue", weight=3]; 17.15/6.65 319[label="xy42 && xy43",fontsize=16,color="burlywood",shape="triangle"];1030[label="xy42/False",fontsize=10,color="white",style="solid",shape="box"];319 -> 1030[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1030 -> 352[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1031[label="xy42/True",fontsize=10,color="white",style="solid",shape="box"];319 -> 1031[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1031 -> 353[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 131[label="List.deleteBy0 xy25 (xy26,xy27) (==) (xy28,xy29) False",fontsize=16,color="black",shape="box"];131 -> 149[label="",style="solid", color="black", weight=3]; 17.15/6.65 132[label="List.deleteBy0 xy25 (xy26,xy27) (==) (xy28,xy29) True",fontsize=16,color="black",shape="box"];132 -> 150[label="",style="solid", color="black", weight=3]; 17.15/6.65 324[label="xy401 == xy301",fontsize=16,color="black",shape="triangle"];324 -> 354[label="",style="solid", color="black", weight=3]; 17.15/6.65 325[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1032[label="xy401/(xy4010,xy4011,xy4012)",fontsize=10,color="white",style="solid",shape="box"];325 -> 1032[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1032 -> 355[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 326[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1033[label="xy401/Left xy4010",fontsize=10,color="white",style="solid",shape="box"];326 -> 1033[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1033 -> 356[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1034[label="xy401/Right xy4010",fontsize=10,color="white",style="solid",shape="box"];326 -> 1034[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1034 -> 357[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 327[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1035[label="xy401/False",fontsize=10,color="white",style="solid",shape="box"];327 -> 1035[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1035 -> 358[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1036[label="xy401/True",fontsize=10,color="white",style="solid",shape="box"];327 -> 1036[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1036 -> 359[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 328[label="xy401 == xy301",fontsize=16,color="black",shape="triangle"];328 -> 360[label="",style="solid", color="black", weight=3]; 17.15/6.65 329[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1037[label="xy401/Nothing",fontsize=10,color="white",style="solid",shape="box"];329 -> 1037[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1037 -> 361[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1038[label="xy401/Just xy4010",fontsize=10,color="white",style="solid",shape="box"];329 -> 1038[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1038 -> 362[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 330[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1039[label="xy401/xy4010 :% xy4011",fontsize=10,color="white",style="solid",shape="box"];330 -> 1039[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1039 -> 363[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 331[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1040[label="xy401/(xy4010,xy4011)",fontsize=10,color="white",style="solid",shape="box"];331 -> 1040[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1040 -> 364[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 332[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1041[label="xy401/()",fontsize=10,color="white",style="solid",shape="box"];332 -> 1041[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1041 -> 365[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 333[label="xy401 == xy301",fontsize=16,color="black",shape="triangle"];333 -> 366[label="",style="solid", color="black", weight=3]; 17.15/6.65 334[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1042[label="xy401/xy4010 : xy4011",fontsize=10,color="white",style="solid",shape="box"];334 -> 1042[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1042 -> 367[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1043[label="xy401/[]",fontsize=10,color="white",style="solid",shape="box"];334 -> 1043[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1043 -> 368[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 335[label="xy401 == xy301",fontsize=16,color="black",shape="triangle"];335 -> 369[label="",style="solid", color="black", weight=3]; 17.15/6.65 336[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1044[label="xy401/LT",fontsize=10,color="white",style="solid",shape="box"];336 -> 1044[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1044 -> 370[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1045[label="xy401/EQ",fontsize=10,color="white",style="solid",shape="box"];336 -> 1045[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1045 -> 371[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1046[label="xy401/GT",fontsize=10,color="white",style="solid",shape="box"];336 -> 1046[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1046 -> 372[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 337[label="xy401 == xy301",fontsize=16,color="burlywood",shape="triangle"];1047[label="xy401/Integer xy4010",fontsize=10,color="white",style="solid",shape="box"];337 -> 1047[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1047 -> 373[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 338 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 338[label="xy400 == xy300",fontsize=16,color="magenta"];338 -> 374[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 338 -> 375[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 339 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 339[label="xy400 == xy300",fontsize=16,color="magenta"];339 -> 376[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 339 -> 377[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 340 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 340[label="xy400 == xy300",fontsize=16,color="magenta"];340 -> 378[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 340 -> 379[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 341 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 341[label="xy400 == xy300",fontsize=16,color="magenta"];341 -> 380[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 341 -> 381[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 342 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 342[label="xy400 == xy300",fontsize=16,color="magenta"];342 -> 382[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 342 -> 383[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 343 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 343[label="xy400 == xy300",fontsize=16,color="magenta"];343 -> 384[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 343 -> 385[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 344 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 344[label="xy400 == xy300",fontsize=16,color="magenta"];344 -> 386[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 344 -> 387[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 345 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 345[label="xy400 == xy300",fontsize=16,color="magenta"];345 -> 388[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 345 -> 389[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 346 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 346[label="xy400 == xy300",fontsize=16,color="magenta"];346 -> 390[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 346 -> 391[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 347 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 347[label="xy400 == xy300",fontsize=16,color="magenta"];347 -> 392[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 347 -> 393[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 348 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 348[label="xy400 == xy300",fontsize=16,color="magenta"];348 -> 394[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 348 -> 395[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 349 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 349[label="xy400 == xy300",fontsize=16,color="magenta"];349 -> 396[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 349 -> 397[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 350 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 350[label="xy400 == xy300",fontsize=16,color="magenta"];350 -> 398[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 350 -> 399[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 351 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 351[label="xy400 == xy300",fontsize=16,color="magenta"];351 -> 400[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 351 -> 401[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 352[label="False && xy43",fontsize=16,color="black",shape="box"];352 -> 402[label="",style="solid", color="black", weight=3]; 17.15/6.65 353[label="True && xy43",fontsize=16,color="black",shape="box"];353 -> 403[label="",style="solid", color="black", weight=3]; 17.15/6.65 149[label="(xy26,xy27) : List.deleteBy (==) (xy28,xy29) xy25",fontsize=16,color="green",shape="box"];149 -> 173[label="",style="dashed", color="green", weight=3]; 17.15/6.65 150[label="xy25",fontsize=16,color="green",shape="box"];354[label="primEqChar xy401 xy301",fontsize=16,color="burlywood",shape="box"];1048[label="xy401/Char xy4010",fontsize=10,color="white",style="solid",shape="box"];354 -> 1048[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1048 -> 404[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 355[label="(xy4010,xy4011,xy4012) == xy301",fontsize=16,color="burlywood",shape="box"];1049[label="xy301/(xy3010,xy3011,xy3012)",fontsize=10,color="white",style="solid",shape="box"];355 -> 1049[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1049 -> 405[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 356[label="Left xy4010 == xy301",fontsize=16,color="burlywood",shape="box"];1050[label="xy301/Left xy3010",fontsize=10,color="white",style="solid",shape="box"];356 -> 1050[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1050 -> 406[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1051[label="xy301/Right xy3010",fontsize=10,color="white",style="solid",shape="box"];356 -> 1051[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1051 -> 407[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 357[label="Right xy4010 == xy301",fontsize=16,color="burlywood",shape="box"];1052[label="xy301/Left xy3010",fontsize=10,color="white",style="solid",shape="box"];357 -> 1052[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1052 -> 408[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1053[label="xy301/Right xy3010",fontsize=10,color="white",style="solid",shape="box"];357 -> 1053[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1053 -> 409[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 358[label="False == xy301",fontsize=16,color="burlywood",shape="box"];1054[label="xy301/False",fontsize=10,color="white",style="solid",shape="box"];358 -> 1054[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1054 -> 410[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1055[label="xy301/True",fontsize=10,color="white",style="solid",shape="box"];358 -> 1055[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1055 -> 411[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 359[label="True == xy301",fontsize=16,color="burlywood",shape="box"];1056[label="xy301/False",fontsize=10,color="white",style="solid",shape="box"];359 -> 1056[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1056 -> 412[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1057[label="xy301/True",fontsize=10,color="white",style="solid",shape="box"];359 -> 1057[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1057 -> 413[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 360[label="primEqInt xy401 xy301",fontsize=16,color="burlywood",shape="triangle"];1058[label="xy401/Pos xy4010",fontsize=10,color="white",style="solid",shape="box"];360 -> 1058[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1058 -> 414[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1059[label="xy401/Neg xy4010",fontsize=10,color="white",style="solid",shape="box"];360 -> 1059[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1059 -> 415[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 361[label="Nothing == xy301",fontsize=16,color="burlywood",shape="box"];1060[label="xy301/Nothing",fontsize=10,color="white",style="solid",shape="box"];361 -> 1060[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1060 -> 416[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1061[label="xy301/Just xy3010",fontsize=10,color="white",style="solid",shape="box"];361 -> 1061[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1061 -> 417[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 362[label="Just xy4010 == xy301",fontsize=16,color="burlywood",shape="box"];1062[label="xy301/Nothing",fontsize=10,color="white",style="solid",shape="box"];362 -> 1062[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1062 -> 418[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1063[label="xy301/Just xy3010",fontsize=10,color="white",style="solid",shape="box"];362 -> 1063[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1063 -> 419[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 363[label="xy4010 :% xy4011 == xy301",fontsize=16,color="burlywood",shape="box"];1064[label="xy301/xy3010 :% xy3011",fontsize=10,color="white",style="solid",shape="box"];363 -> 1064[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1064 -> 420[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 364[label="(xy4010,xy4011) == xy301",fontsize=16,color="burlywood",shape="box"];1065[label="xy301/(xy3010,xy3011)",fontsize=10,color="white",style="solid",shape="box"];364 -> 1065[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1065 -> 421[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 365[label="() == xy301",fontsize=16,color="burlywood",shape="box"];1066[label="xy301/()",fontsize=10,color="white",style="solid",shape="box"];365 -> 1066[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1066 -> 422[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 366[label="primEqFloat xy401 xy301",fontsize=16,color="burlywood",shape="box"];1067[label="xy401/Float xy4010 xy4011",fontsize=10,color="white",style="solid",shape="box"];366 -> 1067[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1067 -> 423[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 367[label="xy4010 : xy4011 == xy301",fontsize=16,color="burlywood",shape="box"];1068[label="xy301/xy3010 : xy3011",fontsize=10,color="white",style="solid",shape="box"];367 -> 1068[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1068 -> 424[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1069[label="xy301/[]",fontsize=10,color="white",style="solid",shape="box"];367 -> 1069[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1069 -> 425[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 368[label="[] == xy301",fontsize=16,color="burlywood",shape="box"];1070[label="xy301/xy3010 : xy3011",fontsize=10,color="white",style="solid",shape="box"];368 -> 1070[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1070 -> 426[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1071[label="xy301/[]",fontsize=10,color="white",style="solid",shape="box"];368 -> 1071[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1071 -> 427[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 369[label="primEqDouble xy401 xy301",fontsize=16,color="burlywood",shape="box"];1072[label="xy401/Double xy4010 xy4011",fontsize=10,color="white",style="solid",shape="box"];369 -> 1072[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1072 -> 428[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 370[label="LT == xy301",fontsize=16,color="burlywood",shape="box"];1073[label="xy301/LT",fontsize=10,color="white",style="solid",shape="box"];370 -> 1073[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1073 -> 429[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1074[label="xy301/EQ",fontsize=10,color="white",style="solid",shape="box"];370 -> 1074[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1074 -> 430[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1075[label="xy301/GT",fontsize=10,color="white",style="solid",shape="box"];370 -> 1075[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1075 -> 431[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 371[label="EQ == xy301",fontsize=16,color="burlywood",shape="box"];1076[label="xy301/LT",fontsize=10,color="white",style="solid",shape="box"];371 -> 1076[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1076 -> 432[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1077[label="xy301/EQ",fontsize=10,color="white",style="solid",shape="box"];371 -> 1077[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1077 -> 433[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1078[label="xy301/GT",fontsize=10,color="white",style="solid",shape="box"];371 -> 1078[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1078 -> 434[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 372[label="GT == xy301",fontsize=16,color="burlywood",shape="box"];1079[label="xy301/LT",fontsize=10,color="white",style="solid",shape="box"];372 -> 1079[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1079 -> 435[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1080[label="xy301/EQ",fontsize=10,color="white",style="solid",shape="box"];372 -> 1080[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1080 -> 436[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1081[label="xy301/GT",fontsize=10,color="white",style="solid",shape="box"];372 -> 1081[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1081 -> 437[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 373[label="Integer xy4010 == xy301",fontsize=16,color="burlywood",shape="box"];1082[label="xy301/Integer xy3010",fontsize=10,color="white",style="solid",shape="box"];373 -> 1082[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1082 -> 438[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 374[label="xy400",fontsize=16,color="green",shape="box"];375[label="xy300",fontsize=16,color="green",shape="box"];376[label="xy400",fontsize=16,color="green",shape="box"];377[label="xy300",fontsize=16,color="green",shape="box"];378[label="xy400",fontsize=16,color="green",shape="box"];379[label="xy300",fontsize=16,color="green",shape="box"];380[label="xy400",fontsize=16,color="green",shape="box"];381[label="xy300",fontsize=16,color="green",shape="box"];382[label="xy400",fontsize=16,color="green",shape="box"];383[label="xy300",fontsize=16,color="green",shape="box"];384[label="xy400",fontsize=16,color="green",shape="box"];385[label="xy300",fontsize=16,color="green",shape="box"];386[label="xy400",fontsize=16,color="green",shape="box"];387[label="xy300",fontsize=16,color="green",shape="box"];388[label="xy400",fontsize=16,color="green",shape="box"];389[label="xy300",fontsize=16,color="green",shape="box"];390[label="xy400",fontsize=16,color="green",shape="box"];391[label="xy300",fontsize=16,color="green",shape="box"];392[label="xy400",fontsize=16,color="green",shape="box"];393[label="xy300",fontsize=16,color="green",shape="box"];394[label="xy400",fontsize=16,color="green",shape="box"];395[label="xy300",fontsize=16,color="green",shape="box"];396[label="xy400",fontsize=16,color="green",shape="box"];397[label="xy300",fontsize=16,color="green",shape="box"];398[label="xy400",fontsize=16,color="green",shape="box"];399[label="xy300",fontsize=16,color="green",shape="box"];400[label="xy400",fontsize=16,color="green",shape="box"];401[label="xy300",fontsize=16,color="green",shape="box"];402[label="False",fontsize=16,color="green",shape="box"];403[label="xy43",fontsize=16,color="green",shape="box"];173 -> 13[label="",style="dashed", color="red", weight=0]; 17.15/6.65 173[label="List.deleteBy (==) (xy28,xy29) xy25",fontsize=16,color="magenta"];173 -> 223[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 173 -> 224[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 404[label="primEqChar (Char xy4010) xy301",fontsize=16,color="burlywood",shape="box"];1083[label="xy301/Char xy3010",fontsize=10,color="white",style="solid",shape="box"];404 -> 1083[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1083 -> 439[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 405[label="(xy4010,xy4011,xy4012) == (xy3010,xy3011,xy3012)",fontsize=16,color="black",shape="box"];405 -> 440[label="",style="solid", color="black", weight=3]; 17.15/6.65 406[label="Left xy4010 == Left xy3010",fontsize=16,color="black",shape="box"];406 -> 441[label="",style="solid", color="black", weight=3]; 17.15/6.65 407[label="Left xy4010 == Right xy3010",fontsize=16,color="black",shape="box"];407 -> 442[label="",style="solid", color="black", weight=3]; 17.15/6.65 408[label="Right xy4010 == Left xy3010",fontsize=16,color="black",shape="box"];408 -> 443[label="",style="solid", color="black", weight=3]; 17.15/6.65 409[label="Right xy4010 == Right xy3010",fontsize=16,color="black",shape="box"];409 -> 444[label="",style="solid", color="black", weight=3]; 17.15/6.65 410[label="False == False",fontsize=16,color="black",shape="box"];410 -> 445[label="",style="solid", color="black", weight=3]; 17.15/6.65 411[label="False == True",fontsize=16,color="black",shape="box"];411 -> 446[label="",style="solid", color="black", weight=3]; 17.15/6.65 412[label="True == False",fontsize=16,color="black",shape="box"];412 -> 447[label="",style="solid", color="black", weight=3]; 17.15/6.65 413[label="True == True",fontsize=16,color="black",shape="box"];413 -> 448[label="",style="solid", color="black", weight=3]; 17.15/6.65 414[label="primEqInt (Pos xy4010) xy301",fontsize=16,color="burlywood",shape="box"];1084[label="xy4010/Succ xy40100",fontsize=10,color="white",style="solid",shape="box"];414 -> 1084[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1084 -> 449[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1085[label="xy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];414 -> 1085[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1085 -> 450[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 415[label="primEqInt (Neg xy4010) xy301",fontsize=16,color="burlywood",shape="box"];1086[label="xy4010/Succ xy40100",fontsize=10,color="white",style="solid",shape="box"];415 -> 1086[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1086 -> 451[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1087[label="xy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];415 -> 1087[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1087 -> 452[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 416[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];416 -> 453[label="",style="solid", color="black", weight=3]; 17.15/6.65 417[label="Nothing == Just xy3010",fontsize=16,color="black",shape="box"];417 -> 454[label="",style="solid", color="black", weight=3]; 17.15/6.65 418[label="Just xy4010 == Nothing",fontsize=16,color="black",shape="box"];418 -> 455[label="",style="solid", color="black", weight=3]; 17.15/6.65 419[label="Just xy4010 == Just xy3010",fontsize=16,color="black",shape="box"];419 -> 456[label="",style="solid", color="black", weight=3]; 17.15/6.65 420[label="xy4010 :% xy4011 == xy3010 :% xy3011",fontsize=16,color="black",shape="box"];420 -> 457[label="",style="solid", color="black", weight=3]; 17.15/6.65 421[label="(xy4010,xy4011) == (xy3010,xy3011)",fontsize=16,color="black",shape="box"];421 -> 458[label="",style="solid", color="black", weight=3]; 17.15/6.65 422[label="() == ()",fontsize=16,color="black",shape="box"];422 -> 459[label="",style="solid", color="black", weight=3]; 17.15/6.65 423[label="primEqFloat (Float xy4010 xy4011) xy301",fontsize=16,color="burlywood",shape="box"];1088[label="xy301/Float xy3010 xy3011",fontsize=10,color="white",style="solid",shape="box"];423 -> 1088[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1088 -> 460[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 424[label="xy4010 : xy4011 == xy3010 : xy3011",fontsize=16,color="black",shape="box"];424 -> 461[label="",style="solid", color="black", weight=3]; 17.15/6.65 425[label="xy4010 : xy4011 == []",fontsize=16,color="black",shape="box"];425 -> 462[label="",style="solid", color="black", weight=3]; 17.15/6.65 426[label="[] == xy3010 : xy3011",fontsize=16,color="black",shape="box"];426 -> 463[label="",style="solid", color="black", weight=3]; 17.15/6.65 427[label="[] == []",fontsize=16,color="black",shape="box"];427 -> 464[label="",style="solid", color="black", weight=3]; 17.15/6.65 428[label="primEqDouble (Double xy4010 xy4011) xy301",fontsize=16,color="burlywood",shape="box"];1089[label="xy301/Double xy3010 xy3011",fontsize=10,color="white",style="solid",shape="box"];428 -> 1089[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1089 -> 465[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 429[label="LT == LT",fontsize=16,color="black",shape="box"];429 -> 466[label="",style="solid", color="black", weight=3]; 17.15/6.65 430[label="LT == EQ",fontsize=16,color="black",shape="box"];430 -> 467[label="",style="solid", color="black", weight=3]; 17.15/6.65 431[label="LT == GT",fontsize=16,color="black",shape="box"];431 -> 468[label="",style="solid", color="black", weight=3]; 17.15/6.65 432[label="EQ == LT",fontsize=16,color="black",shape="box"];432 -> 469[label="",style="solid", color="black", weight=3]; 17.15/6.65 433[label="EQ == EQ",fontsize=16,color="black",shape="box"];433 -> 470[label="",style="solid", color="black", weight=3]; 17.15/6.65 434[label="EQ == GT",fontsize=16,color="black",shape="box"];434 -> 471[label="",style="solid", color="black", weight=3]; 17.15/6.65 435[label="GT == LT",fontsize=16,color="black",shape="box"];435 -> 472[label="",style="solid", color="black", weight=3]; 17.15/6.65 436[label="GT == EQ",fontsize=16,color="black",shape="box"];436 -> 473[label="",style="solid", color="black", weight=3]; 17.15/6.65 437[label="GT == GT",fontsize=16,color="black",shape="box"];437 -> 474[label="",style="solid", color="black", weight=3]; 17.15/6.65 438[label="Integer xy4010 == Integer xy3010",fontsize=16,color="black",shape="box"];438 -> 475[label="",style="solid", color="black", weight=3]; 17.15/6.65 223[label="(xy28,xy29)",fontsize=16,color="green",shape="box"];224[label="xy25",fontsize=16,color="green",shape="box"];439[label="primEqChar (Char xy4010) (Char xy3010)",fontsize=16,color="black",shape="box"];439 -> 476[label="",style="solid", color="black", weight=3]; 17.15/6.65 440 -> 319[label="",style="dashed", color="red", weight=0]; 17.15/6.65 440[label="xy4010 == xy3010 && xy4011 == xy3011 && xy4012 == xy3012",fontsize=16,color="magenta"];440 -> 477[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 440 -> 478[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 441[label="xy4010 == xy3010",fontsize=16,color="blue",shape="box"];1090[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1090[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1090 -> 479[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1091[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1091[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1091 -> 480[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1092[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1092[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1092 -> 481[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1093[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1093[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1093 -> 482[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1094[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1094[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1094 -> 483[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1095[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1095[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1095 -> 484[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1096[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1096[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1096 -> 485[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1097[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1097[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1097 -> 486[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1098[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1098[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1098 -> 487[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1099[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1099[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1099 -> 488[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1100[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1100[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1100 -> 489[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1101[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1101[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1101 -> 490[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1102[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1102[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1102 -> 491[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1103[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 1103[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1103 -> 492[label="",style="solid", color="blue", weight=3]; 17.15/6.65 442[label="False",fontsize=16,color="green",shape="box"];443[label="False",fontsize=16,color="green",shape="box"];444[label="xy4010 == xy3010",fontsize=16,color="blue",shape="box"];1104[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1104[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1104 -> 493[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1105[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1105[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1105 -> 494[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1106[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1106[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1106 -> 495[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1107[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1107[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1107 -> 496[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1108[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1108[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1108 -> 497[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1109[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1109[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1109 -> 498[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1110[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1110[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1110 -> 499[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1111[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1111[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1111 -> 500[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1112[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1112[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1112 -> 501[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1113[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1113[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1113 -> 502[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1114[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1114[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1114 -> 503[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1115[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1115[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1115 -> 504[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1116[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1116[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1116 -> 505[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1117[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 1117[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1117 -> 506[label="",style="solid", color="blue", weight=3]; 17.15/6.65 445[label="True",fontsize=16,color="green",shape="box"];446[label="False",fontsize=16,color="green",shape="box"];447[label="False",fontsize=16,color="green",shape="box"];448[label="True",fontsize=16,color="green",shape="box"];449[label="primEqInt (Pos (Succ xy40100)) xy301",fontsize=16,color="burlywood",shape="box"];1118[label="xy301/Pos xy3010",fontsize=10,color="white",style="solid",shape="box"];449 -> 1118[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1118 -> 507[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1119[label="xy301/Neg xy3010",fontsize=10,color="white",style="solid",shape="box"];449 -> 1119[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1119 -> 508[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 450[label="primEqInt (Pos Zero) xy301",fontsize=16,color="burlywood",shape="box"];1120[label="xy301/Pos xy3010",fontsize=10,color="white",style="solid",shape="box"];450 -> 1120[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1120 -> 509[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1121[label="xy301/Neg xy3010",fontsize=10,color="white",style="solid",shape="box"];450 -> 1121[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1121 -> 510[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 451[label="primEqInt (Neg (Succ xy40100)) xy301",fontsize=16,color="burlywood",shape="box"];1122[label="xy301/Pos xy3010",fontsize=10,color="white",style="solid",shape="box"];451 -> 1122[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1122 -> 511[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1123[label="xy301/Neg xy3010",fontsize=10,color="white",style="solid",shape="box"];451 -> 1123[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1123 -> 512[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 452[label="primEqInt (Neg Zero) xy301",fontsize=16,color="burlywood",shape="box"];1124[label="xy301/Pos xy3010",fontsize=10,color="white",style="solid",shape="box"];452 -> 1124[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1124 -> 513[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1125[label="xy301/Neg xy3010",fontsize=10,color="white",style="solid",shape="box"];452 -> 1125[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1125 -> 514[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 453[label="True",fontsize=16,color="green",shape="box"];454[label="False",fontsize=16,color="green",shape="box"];455[label="False",fontsize=16,color="green",shape="box"];456[label="xy4010 == xy3010",fontsize=16,color="blue",shape="box"];1126[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1126[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1126 -> 515[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1127[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1127[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1127 -> 516[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1128[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1128[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1128 -> 517[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1129[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1129[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1129 -> 518[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1130[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1130[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1130 -> 519[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1131[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1131[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1131 -> 520[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1132[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1132[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1132 -> 521[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1133[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1133[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1133 -> 522[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1134[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1134[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1134 -> 523[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1135[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1135[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1135 -> 524[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1136[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1136[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1136 -> 525[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1137[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1137[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1137 -> 526[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1138[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1138[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1138 -> 527[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1139[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];456 -> 1139[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1139 -> 528[label="",style="solid", color="blue", weight=3]; 17.15/6.65 457 -> 319[label="",style="dashed", color="red", weight=0]; 17.15/6.65 457[label="xy4010 == xy3010 && xy4011 == xy3011",fontsize=16,color="magenta"];457 -> 529[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 457 -> 530[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 458 -> 319[label="",style="dashed", color="red", weight=0]; 17.15/6.65 458[label="xy4010 == xy3010 && xy4011 == xy3011",fontsize=16,color="magenta"];458 -> 531[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 458 -> 532[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 459[label="True",fontsize=16,color="green",shape="box"];460[label="primEqFloat (Float xy4010 xy4011) (Float xy3010 xy3011)",fontsize=16,color="black",shape="box"];460 -> 533[label="",style="solid", color="black", weight=3]; 17.15/6.65 461 -> 319[label="",style="dashed", color="red", weight=0]; 17.15/6.65 461[label="xy4010 == xy3010 && xy4011 == xy3011",fontsize=16,color="magenta"];461 -> 534[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 461 -> 535[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 462[label="False",fontsize=16,color="green",shape="box"];463[label="False",fontsize=16,color="green",shape="box"];464[label="True",fontsize=16,color="green",shape="box"];465[label="primEqDouble (Double xy4010 xy4011) (Double xy3010 xy3011)",fontsize=16,color="black",shape="box"];465 -> 536[label="",style="solid", color="black", weight=3]; 17.15/6.65 466[label="True",fontsize=16,color="green",shape="box"];467[label="False",fontsize=16,color="green",shape="box"];468[label="False",fontsize=16,color="green",shape="box"];469[label="False",fontsize=16,color="green",shape="box"];470[label="True",fontsize=16,color="green",shape="box"];471[label="False",fontsize=16,color="green",shape="box"];472[label="False",fontsize=16,color="green",shape="box"];473[label="False",fontsize=16,color="green",shape="box"];474[label="True",fontsize=16,color="green",shape="box"];475 -> 360[label="",style="dashed", color="red", weight=0]; 17.15/6.65 475[label="primEqInt xy4010 xy3010",fontsize=16,color="magenta"];475 -> 537[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 475 -> 538[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 476[label="primEqNat xy4010 xy3010",fontsize=16,color="burlywood",shape="triangle"];1140[label="xy4010/Succ xy40100",fontsize=10,color="white",style="solid",shape="box"];476 -> 1140[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1140 -> 539[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1141[label="xy4010/Zero",fontsize=10,color="white",style="solid",shape="box"];476 -> 1141[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1141 -> 540[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 477 -> 319[label="",style="dashed", color="red", weight=0]; 17.15/6.65 477[label="xy4011 == xy3011 && xy4012 == xy3012",fontsize=16,color="magenta"];477 -> 541[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 477 -> 542[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 478[label="xy4010 == xy3010",fontsize=16,color="blue",shape="box"];1142[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1142[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1142 -> 543[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1143[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1143[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1143 -> 544[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1144[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1144[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1144 -> 545[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1145[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1145[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1145 -> 546[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1146[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1146[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1146 -> 547[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1147[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1147[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1147 -> 548[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1148[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1148[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1148 -> 549[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1149[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1149[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1149 -> 550[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1150[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1150[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1150 -> 551[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1151[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1151[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1151 -> 552[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1152[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1152[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1152 -> 553[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1153[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1153[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1153 -> 554[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1154[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1154[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1154 -> 555[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1155[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];478 -> 1155[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1155 -> 556[label="",style="solid", color="blue", weight=3]; 17.15/6.65 479 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 479[label="xy4010 == xy3010",fontsize=16,color="magenta"];479 -> 557[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 479 -> 558[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 480 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 480[label="xy4010 == xy3010",fontsize=16,color="magenta"];480 -> 559[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 480 -> 560[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 481 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 481[label="xy4010 == xy3010",fontsize=16,color="magenta"];481 -> 561[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 481 -> 562[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 482 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 482[label="xy4010 == xy3010",fontsize=16,color="magenta"];482 -> 563[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 482 -> 564[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 483 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 483[label="xy4010 == xy3010",fontsize=16,color="magenta"];483 -> 565[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 483 -> 566[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 484 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 484[label="xy4010 == xy3010",fontsize=16,color="magenta"];484 -> 567[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 484 -> 568[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 485 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 485[label="xy4010 == xy3010",fontsize=16,color="magenta"];485 -> 569[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 485 -> 570[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 486 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 486[label="xy4010 == xy3010",fontsize=16,color="magenta"];486 -> 571[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 486 -> 572[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 487 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 487[label="xy4010 == xy3010",fontsize=16,color="magenta"];487 -> 573[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 487 -> 574[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 488 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 488[label="xy4010 == xy3010",fontsize=16,color="magenta"];488 -> 575[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 488 -> 576[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 489 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 489[label="xy4010 == xy3010",fontsize=16,color="magenta"];489 -> 577[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 489 -> 578[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 490 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 490[label="xy4010 == xy3010",fontsize=16,color="magenta"];490 -> 579[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 490 -> 580[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 491 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 491[label="xy4010 == xy3010",fontsize=16,color="magenta"];491 -> 581[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 491 -> 582[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 492 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 492[label="xy4010 == xy3010",fontsize=16,color="magenta"];492 -> 583[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 492 -> 584[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 493 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 493[label="xy4010 == xy3010",fontsize=16,color="magenta"];493 -> 585[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 493 -> 586[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 494 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 494[label="xy4010 == xy3010",fontsize=16,color="magenta"];494 -> 587[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 494 -> 588[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 495 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 495[label="xy4010 == xy3010",fontsize=16,color="magenta"];495 -> 589[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 495 -> 590[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 496 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 496[label="xy4010 == xy3010",fontsize=16,color="magenta"];496 -> 591[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 496 -> 592[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 497 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 497[label="xy4010 == xy3010",fontsize=16,color="magenta"];497 -> 593[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 497 -> 594[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 498 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 498[label="xy4010 == xy3010",fontsize=16,color="magenta"];498 -> 595[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 498 -> 596[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 499 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 499[label="xy4010 == xy3010",fontsize=16,color="magenta"];499 -> 597[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 499 -> 598[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 500 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 500[label="xy4010 == xy3010",fontsize=16,color="magenta"];500 -> 599[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 500 -> 600[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 501 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 501[label="xy4010 == xy3010",fontsize=16,color="magenta"];501 -> 601[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 501 -> 602[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 502 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 502[label="xy4010 == xy3010",fontsize=16,color="magenta"];502 -> 603[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 502 -> 604[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 503 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 503[label="xy4010 == xy3010",fontsize=16,color="magenta"];503 -> 605[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 503 -> 606[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 504 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 504[label="xy4010 == xy3010",fontsize=16,color="magenta"];504 -> 607[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 504 -> 608[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 505 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 505[label="xy4010 == xy3010",fontsize=16,color="magenta"];505 -> 609[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 505 -> 610[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 506 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 506[label="xy4010 == xy3010",fontsize=16,color="magenta"];506 -> 611[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 506 -> 612[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 507[label="primEqInt (Pos (Succ xy40100)) (Pos xy3010)",fontsize=16,color="burlywood",shape="box"];1156[label="xy3010/Succ xy30100",fontsize=10,color="white",style="solid",shape="box"];507 -> 1156[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1156 -> 613[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1157[label="xy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];507 -> 1157[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1157 -> 614[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 508[label="primEqInt (Pos (Succ xy40100)) (Neg xy3010)",fontsize=16,color="black",shape="box"];508 -> 615[label="",style="solid", color="black", weight=3]; 17.15/6.65 509[label="primEqInt (Pos Zero) (Pos xy3010)",fontsize=16,color="burlywood",shape="box"];1158[label="xy3010/Succ xy30100",fontsize=10,color="white",style="solid",shape="box"];509 -> 1158[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1158 -> 616[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1159[label="xy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];509 -> 1159[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1159 -> 617[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 510[label="primEqInt (Pos Zero) (Neg xy3010)",fontsize=16,color="burlywood",shape="box"];1160[label="xy3010/Succ xy30100",fontsize=10,color="white",style="solid",shape="box"];510 -> 1160[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1160 -> 618[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1161[label="xy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];510 -> 1161[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1161 -> 619[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 511[label="primEqInt (Neg (Succ xy40100)) (Pos xy3010)",fontsize=16,color="black",shape="box"];511 -> 620[label="",style="solid", color="black", weight=3]; 17.15/6.65 512[label="primEqInt (Neg (Succ xy40100)) (Neg xy3010)",fontsize=16,color="burlywood",shape="box"];1162[label="xy3010/Succ xy30100",fontsize=10,color="white",style="solid",shape="box"];512 -> 1162[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1162 -> 621[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1163[label="xy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];512 -> 1163[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1163 -> 622[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 513[label="primEqInt (Neg Zero) (Pos xy3010)",fontsize=16,color="burlywood",shape="box"];1164[label="xy3010/Succ xy30100",fontsize=10,color="white",style="solid",shape="box"];513 -> 1164[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1164 -> 623[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1165[label="xy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];513 -> 1165[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1165 -> 624[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 514[label="primEqInt (Neg Zero) (Neg xy3010)",fontsize=16,color="burlywood",shape="box"];1166[label="xy3010/Succ xy30100",fontsize=10,color="white",style="solid",shape="box"];514 -> 1166[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1166 -> 625[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1167[label="xy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];514 -> 1167[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1167 -> 626[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 515 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 515[label="xy4010 == xy3010",fontsize=16,color="magenta"];515 -> 627[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 515 -> 628[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 516 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 516[label="xy4010 == xy3010",fontsize=16,color="magenta"];516 -> 629[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 516 -> 630[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 517 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 517[label="xy4010 == xy3010",fontsize=16,color="magenta"];517 -> 631[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 517 -> 632[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 518 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 518[label="xy4010 == xy3010",fontsize=16,color="magenta"];518 -> 633[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 518 -> 634[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 519 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 519[label="xy4010 == xy3010",fontsize=16,color="magenta"];519 -> 635[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 519 -> 636[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 520 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 520[label="xy4010 == xy3010",fontsize=16,color="magenta"];520 -> 637[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 520 -> 638[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 521 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 521[label="xy4010 == xy3010",fontsize=16,color="magenta"];521 -> 639[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 521 -> 640[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 522 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 522[label="xy4010 == xy3010",fontsize=16,color="magenta"];522 -> 641[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 522 -> 642[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 523 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 523[label="xy4010 == xy3010",fontsize=16,color="magenta"];523 -> 643[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 523 -> 644[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 524 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 524[label="xy4010 == xy3010",fontsize=16,color="magenta"];524 -> 645[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 524 -> 646[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 525 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 525[label="xy4010 == xy3010",fontsize=16,color="magenta"];525 -> 647[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 525 -> 648[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 526 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 526[label="xy4010 == xy3010",fontsize=16,color="magenta"];526 -> 649[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 526 -> 650[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 527 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 527[label="xy4010 == xy3010",fontsize=16,color="magenta"];527 -> 651[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 527 -> 652[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 528 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 528[label="xy4010 == xy3010",fontsize=16,color="magenta"];528 -> 653[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 528 -> 654[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 529[label="xy4011 == xy3011",fontsize=16,color="blue",shape="box"];1168[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];529 -> 1168[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1168 -> 655[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1169[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];529 -> 1169[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1169 -> 656[label="",style="solid", color="blue", weight=3]; 17.15/6.65 530[label="xy4010 == xy3010",fontsize=16,color="blue",shape="box"];1170[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 1170[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1170 -> 657[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1171[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 1171[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1171 -> 658[label="",style="solid", color="blue", weight=3]; 17.15/6.65 531[label="xy4011 == xy3011",fontsize=16,color="blue",shape="box"];1172[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1172[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1172 -> 659[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1173[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1173[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1173 -> 660[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1174[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1174[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1174 -> 661[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1175[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1175[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1175 -> 662[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1176[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1176 -> 663[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1177[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1177[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1177 -> 664[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1178[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1178[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1178 -> 665[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1179[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1179[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1179 -> 666[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1180[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1180[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1180 -> 667[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1181[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1181[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1181 -> 668[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1182[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1182[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1182 -> 669[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1183[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1183[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1183 -> 670[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1184[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1184[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1184 -> 671[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1185[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];531 -> 1185[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1185 -> 672[label="",style="solid", color="blue", weight=3]; 17.15/6.65 532[label="xy4010 == xy3010",fontsize=16,color="blue",shape="box"];1186[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1186[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1186 -> 673[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1187[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1187[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1187 -> 674[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1188[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1188[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1188 -> 675[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1189[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1189[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1189 -> 676[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1190[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1190[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1190 -> 677[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1191[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1191[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1191 -> 678[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1192[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1192[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1192 -> 679[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1193[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1193[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1193 -> 680[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1194[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1194[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1194 -> 681[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1195[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1195[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1195 -> 682[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1196[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1196[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1196 -> 683[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1197[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1197[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1197 -> 684[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1198[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1198[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1198 -> 685[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1199[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 1199[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1199 -> 686[label="",style="solid", color="blue", weight=3]; 17.15/6.65 533 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 533[label="xy4010 * xy3011 == xy4011 * xy3010",fontsize=16,color="magenta"];533 -> 687[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 533 -> 688[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 534 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 534[label="xy4011 == xy3011",fontsize=16,color="magenta"];534 -> 689[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 534 -> 690[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 535[label="xy4010 == xy3010",fontsize=16,color="blue",shape="box"];1200[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1200[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1200 -> 691[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1201[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1201[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1201 -> 692[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1202[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1202[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1202 -> 693[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1203[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1203[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1203 -> 694[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1204[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1204[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1204 -> 695[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1205[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1205[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1205 -> 696[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1206[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1206[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1206 -> 697[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1207[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1207[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1207 -> 698[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1208[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1208[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1208 -> 699[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1209[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1209[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1209 -> 700[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1210[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1210[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1210 -> 701[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1211[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1211[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1211 -> 702[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1212[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1212[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1212 -> 703[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1213[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];535 -> 1213[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1213 -> 704[label="",style="solid", color="blue", weight=3]; 17.15/6.65 536 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 536[label="xy4010 * xy3011 == xy4011 * xy3010",fontsize=16,color="magenta"];536 -> 705[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 536 -> 706[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 537[label="xy4010",fontsize=16,color="green",shape="box"];538[label="xy3010",fontsize=16,color="green",shape="box"];539[label="primEqNat (Succ xy40100) xy3010",fontsize=16,color="burlywood",shape="box"];1214[label="xy3010/Succ xy30100",fontsize=10,color="white",style="solid",shape="box"];539 -> 1214[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1214 -> 707[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1215[label="xy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];539 -> 1215[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1215 -> 708[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 540[label="primEqNat Zero xy3010",fontsize=16,color="burlywood",shape="box"];1216[label="xy3010/Succ xy30100",fontsize=10,color="white",style="solid",shape="box"];540 -> 1216[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1216 -> 709[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1217[label="xy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];540 -> 1217[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1217 -> 710[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 541[label="xy4012 == xy3012",fontsize=16,color="blue",shape="box"];1218[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1218[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1218 -> 711[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1219[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1219[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1219 -> 712[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1220[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1220[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1220 -> 713[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1221[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1221[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1221 -> 714[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1222[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1222[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1222 -> 715[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1223[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1223[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1223 -> 716[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1224[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1224[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1224 -> 717[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1225[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1225[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1225 -> 718[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1226[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1226[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1226 -> 719[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1227[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1227[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1227 -> 720[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1228[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1228[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1228 -> 721[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1229[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1229[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1229 -> 722[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1230[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1230[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1230 -> 723[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1231[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];541 -> 1231[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1231 -> 724[label="",style="solid", color="blue", weight=3]; 17.15/6.65 542[label="xy4011 == xy3011",fontsize=16,color="blue",shape="box"];1232[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1232[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1232 -> 725[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1233[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1233[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1233 -> 726[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1234[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1234[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1234 -> 727[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1235[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1235[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1235 -> 728[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1236[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1236[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1236 -> 729[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1237[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1237[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1237 -> 730[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1238[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1238[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1238 -> 731[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1239[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1239[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1239 -> 732[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1240[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1240[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1240 -> 733[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1241[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1241[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1241 -> 734[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1242[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1242[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1242 -> 735[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1243[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1243[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1243 -> 736[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1244[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1244[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1244 -> 737[label="",style="solid", color="blue", weight=3]; 17.15/6.65 1245[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];542 -> 1245[label="",style="solid", color="blue", weight=9]; 17.15/6.65 1245 -> 738[label="",style="solid", color="blue", weight=3]; 17.15/6.65 543 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 543[label="xy4010 == xy3010",fontsize=16,color="magenta"];543 -> 739[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 543 -> 740[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 544 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 544[label="xy4010 == xy3010",fontsize=16,color="magenta"];544 -> 741[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 544 -> 742[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 545 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 545[label="xy4010 == xy3010",fontsize=16,color="magenta"];545 -> 743[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 545 -> 744[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 546 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 546[label="xy4010 == xy3010",fontsize=16,color="magenta"];546 -> 745[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 546 -> 746[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 547 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 547[label="xy4010 == xy3010",fontsize=16,color="magenta"];547 -> 747[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 547 -> 748[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 548 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 548[label="xy4010 == xy3010",fontsize=16,color="magenta"];548 -> 749[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 548 -> 750[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 549 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 549[label="xy4010 == xy3010",fontsize=16,color="magenta"];549 -> 751[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 549 -> 752[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 550 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 550[label="xy4010 == xy3010",fontsize=16,color="magenta"];550 -> 753[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 550 -> 754[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 551 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 551[label="xy4010 == xy3010",fontsize=16,color="magenta"];551 -> 755[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 551 -> 756[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 552 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 552[label="xy4010 == xy3010",fontsize=16,color="magenta"];552 -> 757[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 552 -> 758[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 553 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 553[label="xy4010 == xy3010",fontsize=16,color="magenta"];553 -> 759[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 553 -> 760[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 554 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 554[label="xy4010 == xy3010",fontsize=16,color="magenta"];554 -> 761[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 554 -> 762[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 555 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 555[label="xy4010 == xy3010",fontsize=16,color="magenta"];555 -> 763[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 555 -> 764[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 556 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 556[label="xy4010 == xy3010",fontsize=16,color="magenta"];556 -> 765[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 556 -> 766[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 557[label="xy4010",fontsize=16,color="green",shape="box"];558[label="xy3010",fontsize=16,color="green",shape="box"];559[label="xy4010",fontsize=16,color="green",shape="box"];560[label="xy3010",fontsize=16,color="green",shape="box"];561[label="xy4010",fontsize=16,color="green",shape="box"];562[label="xy3010",fontsize=16,color="green",shape="box"];563[label="xy4010",fontsize=16,color="green",shape="box"];564[label="xy3010",fontsize=16,color="green",shape="box"];565[label="xy4010",fontsize=16,color="green",shape="box"];566[label="xy3010",fontsize=16,color="green",shape="box"];567[label="xy4010",fontsize=16,color="green",shape="box"];568[label="xy3010",fontsize=16,color="green",shape="box"];569[label="xy4010",fontsize=16,color="green",shape="box"];570[label="xy3010",fontsize=16,color="green",shape="box"];571[label="xy4010",fontsize=16,color="green",shape="box"];572[label="xy3010",fontsize=16,color="green",shape="box"];573[label="xy4010",fontsize=16,color="green",shape="box"];574[label="xy3010",fontsize=16,color="green",shape="box"];575[label="xy4010",fontsize=16,color="green",shape="box"];576[label="xy3010",fontsize=16,color="green",shape="box"];577[label="xy4010",fontsize=16,color="green",shape="box"];578[label="xy3010",fontsize=16,color="green",shape="box"];579[label="xy4010",fontsize=16,color="green",shape="box"];580[label="xy3010",fontsize=16,color="green",shape="box"];581[label="xy4010",fontsize=16,color="green",shape="box"];582[label="xy3010",fontsize=16,color="green",shape="box"];583[label="xy4010",fontsize=16,color="green",shape="box"];584[label="xy3010",fontsize=16,color="green",shape="box"];585[label="xy4010",fontsize=16,color="green",shape="box"];586[label="xy3010",fontsize=16,color="green",shape="box"];587[label="xy4010",fontsize=16,color="green",shape="box"];588[label="xy3010",fontsize=16,color="green",shape="box"];589[label="xy4010",fontsize=16,color="green",shape="box"];590[label="xy3010",fontsize=16,color="green",shape="box"];591[label="xy4010",fontsize=16,color="green",shape="box"];592[label="xy3010",fontsize=16,color="green",shape="box"];593[label="xy4010",fontsize=16,color="green",shape="box"];594[label="xy3010",fontsize=16,color="green",shape="box"];595[label="xy4010",fontsize=16,color="green",shape="box"];596[label="xy3010",fontsize=16,color="green",shape="box"];597[label="xy4010",fontsize=16,color="green",shape="box"];598[label="xy3010",fontsize=16,color="green",shape="box"];599[label="xy4010",fontsize=16,color="green",shape="box"];600[label="xy3010",fontsize=16,color="green",shape="box"];601[label="xy4010",fontsize=16,color="green",shape="box"];602[label="xy3010",fontsize=16,color="green",shape="box"];603[label="xy4010",fontsize=16,color="green",shape="box"];604[label="xy3010",fontsize=16,color="green",shape="box"];605[label="xy4010",fontsize=16,color="green",shape="box"];606[label="xy3010",fontsize=16,color="green",shape="box"];607[label="xy4010",fontsize=16,color="green",shape="box"];608[label="xy3010",fontsize=16,color="green",shape="box"];609[label="xy4010",fontsize=16,color="green",shape="box"];610[label="xy3010",fontsize=16,color="green",shape="box"];611[label="xy4010",fontsize=16,color="green",shape="box"];612[label="xy3010",fontsize=16,color="green",shape="box"];613[label="primEqInt (Pos (Succ xy40100)) (Pos (Succ xy30100))",fontsize=16,color="black",shape="box"];613 -> 767[label="",style="solid", color="black", weight=3]; 17.15/6.65 614[label="primEqInt (Pos (Succ xy40100)) (Pos Zero)",fontsize=16,color="black",shape="box"];614 -> 768[label="",style="solid", color="black", weight=3]; 17.15/6.65 615[label="False",fontsize=16,color="green",shape="box"];616[label="primEqInt (Pos Zero) (Pos (Succ xy30100))",fontsize=16,color="black",shape="box"];616 -> 769[label="",style="solid", color="black", weight=3]; 17.15/6.65 617[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];617 -> 770[label="",style="solid", color="black", weight=3]; 17.15/6.65 618[label="primEqInt (Pos Zero) (Neg (Succ xy30100))",fontsize=16,color="black",shape="box"];618 -> 771[label="",style="solid", color="black", weight=3]; 17.15/6.65 619[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];619 -> 772[label="",style="solid", color="black", weight=3]; 17.15/6.65 620[label="False",fontsize=16,color="green",shape="box"];621[label="primEqInt (Neg (Succ xy40100)) (Neg (Succ xy30100))",fontsize=16,color="black",shape="box"];621 -> 773[label="",style="solid", color="black", weight=3]; 17.15/6.65 622[label="primEqInt (Neg (Succ xy40100)) (Neg Zero)",fontsize=16,color="black",shape="box"];622 -> 774[label="",style="solid", color="black", weight=3]; 17.15/6.65 623[label="primEqInt (Neg Zero) (Pos (Succ xy30100))",fontsize=16,color="black",shape="box"];623 -> 775[label="",style="solid", color="black", weight=3]; 17.15/6.65 624[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];624 -> 776[label="",style="solid", color="black", weight=3]; 17.15/6.65 625[label="primEqInt (Neg Zero) (Neg (Succ xy30100))",fontsize=16,color="black",shape="box"];625 -> 777[label="",style="solid", color="black", weight=3]; 17.15/6.65 626[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];626 -> 778[label="",style="solid", color="black", weight=3]; 17.15/6.65 627[label="xy4010",fontsize=16,color="green",shape="box"];628[label="xy3010",fontsize=16,color="green",shape="box"];629[label="xy4010",fontsize=16,color="green",shape="box"];630[label="xy3010",fontsize=16,color="green",shape="box"];631[label="xy4010",fontsize=16,color="green",shape="box"];632[label="xy3010",fontsize=16,color="green",shape="box"];633[label="xy4010",fontsize=16,color="green",shape="box"];634[label="xy3010",fontsize=16,color="green",shape="box"];635[label="xy4010",fontsize=16,color="green",shape="box"];636[label="xy3010",fontsize=16,color="green",shape="box"];637[label="xy4010",fontsize=16,color="green",shape="box"];638[label="xy3010",fontsize=16,color="green",shape="box"];639[label="xy4010",fontsize=16,color="green",shape="box"];640[label="xy3010",fontsize=16,color="green",shape="box"];641[label="xy4010",fontsize=16,color="green",shape="box"];642[label="xy3010",fontsize=16,color="green",shape="box"];643[label="xy4010",fontsize=16,color="green",shape="box"];644[label="xy3010",fontsize=16,color="green",shape="box"];645[label="xy4010",fontsize=16,color="green",shape="box"];646[label="xy3010",fontsize=16,color="green",shape="box"];647[label="xy4010",fontsize=16,color="green",shape="box"];648[label="xy3010",fontsize=16,color="green",shape="box"];649[label="xy4010",fontsize=16,color="green",shape="box"];650[label="xy3010",fontsize=16,color="green",shape="box"];651[label="xy4010",fontsize=16,color="green",shape="box"];652[label="xy3010",fontsize=16,color="green",shape="box"];653[label="xy4010",fontsize=16,color="green",shape="box"];654[label="xy3010",fontsize=16,color="green",shape="box"];655 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 655[label="xy4011 == xy3011",fontsize=16,color="magenta"];655 -> 779[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 655 -> 780[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 656 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 656[label="xy4011 == xy3011",fontsize=16,color="magenta"];656 -> 781[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 656 -> 782[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 657 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 657[label="xy4010 == xy3010",fontsize=16,color="magenta"];657 -> 783[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 657 -> 784[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 658 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 658[label="xy4010 == xy3010",fontsize=16,color="magenta"];658 -> 785[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 658 -> 786[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 659 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 659[label="xy4011 == xy3011",fontsize=16,color="magenta"];659 -> 787[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 659 -> 788[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 660 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 660[label="xy4011 == xy3011",fontsize=16,color="magenta"];660 -> 789[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 660 -> 790[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 661 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 661[label="xy4011 == xy3011",fontsize=16,color="magenta"];661 -> 791[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 661 -> 792[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 662 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 662[label="xy4011 == xy3011",fontsize=16,color="magenta"];662 -> 793[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 662 -> 794[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 663 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 663[label="xy4011 == xy3011",fontsize=16,color="magenta"];663 -> 795[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 663 -> 796[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 664 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 664[label="xy4011 == xy3011",fontsize=16,color="magenta"];664 -> 797[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 664 -> 798[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 665 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 665[label="xy4011 == xy3011",fontsize=16,color="magenta"];665 -> 799[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 665 -> 800[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 666 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 666[label="xy4011 == xy3011",fontsize=16,color="magenta"];666 -> 801[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 666 -> 802[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 667 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 667[label="xy4011 == xy3011",fontsize=16,color="magenta"];667 -> 803[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 667 -> 804[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 668 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 668[label="xy4011 == xy3011",fontsize=16,color="magenta"];668 -> 805[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 668 -> 806[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 669 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 669[label="xy4011 == xy3011",fontsize=16,color="magenta"];669 -> 807[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 669 -> 808[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 670 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 670[label="xy4011 == xy3011",fontsize=16,color="magenta"];670 -> 809[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 670 -> 810[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 671 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 671[label="xy4011 == xy3011",fontsize=16,color="magenta"];671 -> 811[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 671 -> 812[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 672 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 672[label="xy4011 == xy3011",fontsize=16,color="magenta"];672 -> 813[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 672 -> 814[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 673 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 673[label="xy4010 == xy3010",fontsize=16,color="magenta"];673 -> 815[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 673 -> 816[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 674 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 674[label="xy4010 == xy3010",fontsize=16,color="magenta"];674 -> 817[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 674 -> 818[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 675 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 675[label="xy4010 == xy3010",fontsize=16,color="magenta"];675 -> 819[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 675 -> 820[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 676 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 676[label="xy4010 == xy3010",fontsize=16,color="magenta"];676 -> 821[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 676 -> 822[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 677 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 677[label="xy4010 == xy3010",fontsize=16,color="magenta"];677 -> 823[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 677 -> 824[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 678 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 678[label="xy4010 == xy3010",fontsize=16,color="magenta"];678 -> 825[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 678 -> 826[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 679 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 679[label="xy4010 == xy3010",fontsize=16,color="magenta"];679 -> 827[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 679 -> 828[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 680 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 680[label="xy4010 == xy3010",fontsize=16,color="magenta"];680 -> 829[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 680 -> 830[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 681 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 681[label="xy4010 == xy3010",fontsize=16,color="magenta"];681 -> 831[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 681 -> 832[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 682 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 682[label="xy4010 == xy3010",fontsize=16,color="magenta"];682 -> 833[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 682 -> 834[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 683 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 683[label="xy4010 == xy3010",fontsize=16,color="magenta"];683 -> 835[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 683 -> 836[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 684 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 684[label="xy4010 == xy3010",fontsize=16,color="magenta"];684 -> 837[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 684 -> 838[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 685 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 685[label="xy4010 == xy3010",fontsize=16,color="magenta"];685 -> 839[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 685 -> 840[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 686 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 686[label="xy4010 == xy3010",fontsize=16,color="magenta"];686 -> 841[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 686 -> 842[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 687[label="xy4010 * xy3011",fontsize=16,color="black",shape="triangle"];687 -> 843[label="",style="solid", color="black", weight=3]; 17.15/6.65 688 -> 687[label="",style="dashed", color="red", weight=0]; 17.15/6.65 688[label="xy4011 * xy3010",fontsize=16,color="magenta"];688 -> 844[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 688 -> 845[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 689[label="xy4011",fontsize=16,color="green",shape="box"];690[label="xy3011",fontsize=16,color="green",shape="box"];691 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 691[label="xy4010 == xy3010",fontsize=16,color="magenta"];691 -> 846[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 691 -> 847[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 692 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 692[label="xy4010 == xy3010",fontsize=16,color="magenta"];692 -> 848[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 692 -> 849[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 693 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 693[label="xy4010 == xy3010",fontsize=16,color="magenta"];693 -> 850[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 693 -> 851[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 694 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 694[label="xy4010 == xy3010",fontsize=16,color="magenta"];694 -> 852[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 694 -> 853[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 695 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 695[label="xy4010 == xy3010",fontsize=16,color="magenta"];695 -> 854[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 695 -> 855[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 696 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 696[label="xy4010 == xy3010",fontsize=16,color="magenta"];696 -> 856[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 696 -> 857[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 697 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 697[label="xy4010 == xy3010",fontsize=16,color="magenta"];697 -> 858[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 697 -> 859[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 698 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 698[label="xy4010 == xy3010",fontsize=16,color="magenta"];698 -> 860[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 698 -> 861[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 699 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 699[label="xy4010 == xy3010",fontsize=16,color="magenta"];699 -> 862[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 699 -> 863[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 700 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 700[label="xy4010 == xy3010",fontsize=16,color="magenta"];700 -> 864[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 700 -> 865[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 701 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 701[label="xy4010 == xy3010",fontsize=16,color="magenta"];701 -> 866[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 701 -> 867[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 702 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 702[label="xy4010 == xy3010",fontsize=16,color="magenta"];702 -> 868[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 702 -> 869[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 703 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 703[label="xy4010 == xy3010",fontsize=16,color="magenta"];703 -> 870[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 703 -> 871[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 704 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 704[label="xy4010 == xy3010",fontsize=16,color="magenta"];704 -> 872[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 704 -> 873[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 705 -> 687[label="",style="dashed", color="red", weight=0]; 17.15/6.65 705[label="xy4010 * xy3011",fontsize=16,color="magenta"];705 -> 874[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 705 -> 875[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 706 -> 687[label="",style="dashed", color="red", weight=0]; 17.15/6.65 706[label="xy4011 * xy3010",fontsize=16,color="magenta"];706 -> 876[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 706 -> 877[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 707[label="primEqNat (Succ xy40100) (Succ xy30100)",fontsize=16,color="black",shape="box"];707 -> 878[label="",style="solid", color="black", weight=3]; 17.15/6.65 708[label="primEqNat (Succ xy40100) Zero",fontsize=16,color="black",shape="box"];708 -> 879[label="",style="solid", color="black", weight=3]; 17.15/6.65 709[label="primEqNat Zero (Succ xy30100)",fontsize=16,color="black",shape="box"];709 -> 880[label="",style="solid", color="black", weight=3]; 17.15/6.65 710[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];710 -> 881[label="",style="solid", color="black", weight=3]; 17.15/6.65 711 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 711[label="xy4012 == xy3012",fontsize=16,color="magenta"];711 -> 882[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 711 -> 883[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 712 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 712[label="xy4012 == xy3012",fontsize=16,color="magenta"];712 -> 884[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 712 -> 885[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 713 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 713[label="xy4012 == xy3012",fontsize=16,color="magenta"];713 -> 886[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 713 -> 887[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 714 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 714[label="xy4012 == xy3012",fontsize=16,color="magenta"];714 -> 888[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 714 -> 889[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 715 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 715[label="xy4012 == xy3012",fontsize=16,color="magenta"];715 -> 890[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 715 -> 891[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 716 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 716[label="xy4012 == xy3012",fontsize=16,color="magenta"];716 -> 892[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 716 -> 893[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 717 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 717[label="xy4012 == xy3012",fontsize=16,color="magenta"];717 -> 894[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 717 -> 895[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 718 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 718[label="xy4012 == xy3012",fontsize=16,color="magenta"];718 -> 896[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 718 -> 897[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 719 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 719[label="xy4012 == xy3012",fontsize=16,color="magenta"];719 -> 898[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 719 -> 899[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 720 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 720[label="xy4012 == xy3012",fontsize=16,color="magenta"];720 -> 900[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 720 -> 901[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 721 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 721[label="xy4012 == xy3012",fontsize=16,color="magenta"];721 -> 902[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 721 -> 903[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 722 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 722[label="xy4012 == xy3012",fontsize=16,color="magenta"];722 -> 904[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 722 -> 905[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 723 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 723[label="xy4012 == xy3012",fontsize=16,color="magenta"];723 -> 906[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 723 -> 907[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 724 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 724[label="xy4012 == xy3012",fontsize=16,color="magenta"];724 -> 908[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 724 -> 909[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 725 -> 324[label="",style="dashed", color="red", weight=0]; 17.15/6.65 725[label="xy4011 == xy3011",fontsize=16,color="magenta"];725 -> 910[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 725 -> 911[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 726 -> 325[label="",style="dashed", color="red", weight=0]; 17.15/6.65 726[label="xy4011 == xy3011",fontsize=16,color="magenta"];726 -> 912[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 726 -> 913[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 727 -> 326[label="",style="dashed", color="red", weight=0]; 17.15/6.65 727[label="xy4011 == xy3011",fontsize=16,color="magenta"];727 -> 914[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 727 -> 915[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 728 -> 327[label="",style="dashed", color="red", weight=0]; 17.15/6.65 728[label="xy4011 == xy3011",fontsize=16,color="magenta"];728 -> 916[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 728 -> 917[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 729 -> 328[label="",style="dashed", color="red", weight=0]; 17.15/6.65 729[label="xy4011 == xy3011",fontsize=16,color="magenta"];729 -> 918[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 729 -> 919[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 730 -> 329[label="",style="dashed", color="red", weight=0]; 17.15/6.65 730[label="xy4011 == xy3011",fontsize=16,color="magenta"];730 -> 920[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 730 -> 921[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 731 -> 330[label="",style="dashed", color="red", weight=0]; 17.15/6.65 731[label="xy4011 == xy3011",fontsize=16,color="magenta"];731 -> 922[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 731 -> 923[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 732 -> 331[label="",style="dashed", color="red", weight=0]; 17.15/6.65 732[label="xy4011 == xy3011",fontsize=16,color="magenta"];732 -> 924[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 732 -> 925[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 733 -> 332[label="",style="dashed", color="red", weight=0]; 17.15/6.65 733[label="xy4011 == xy3011",fontsize=16,color="magenta"];733 -> 926[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 733 -> 927[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 734 -> 333[label="",style="dashed", color="red", weight=0]; 17.15/6.65 734[label="xy4011 == xy3011",fontsize=16,color="magenta"];734 -> 928[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 734 -> 929[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 735 -> 334[label="",style="dashed", color="red", weight=0]; 17.15/6.65 735[label="xy4011 == xy3011",fontsize=16,color="magenta"];735 -> 930[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 735 -> 931[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 736 -> 335[label="",style="dashed", color="red", weight=0]; 17.15/6.65 736[label="xy4011 == xy3011",fontsize=16,color="magenta"];736 -> 932[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 736 -> 933[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 737 -> 336[label="",style="dashed", color="red", weight=0]; 17.15/6.65 737[label="xy4011 == xy3011",fontsize=16,color="magenta"];737 -> 934[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 737 -> 935[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 738 -> 337[label="",style="dashed", color="red", weight=0]; 17.15/6.65 738[label="xy4011 == xy3011",fontsize=16,color="magenta"];738 -> 936[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 738 -> 937[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 739[label="xy4010",fontsize=16,color="green",shape="box"];740[label="xy3010",fontsize=16,color="green",shape="box"];741[label="xy4010",fontsize=16,color="green",shape="box"];742[label="xy3010",fontsize=16,color="green",shape="box"];743[label="xy4010",fontsize=16,color="green",shape="box"];744[label="xy3010",fontsize=16,color="green",shape="box"];745[label="xy4010",fontsize=16,color="green",shape="box"];746[label="xy3010",fontsize=16,color="green",shape="box"];747[label="xy4010",fontsize=16,color="green",shape="box"];748[label="xy3010",fontsize=16,color="green",shape="box"];749[label="xy4010",fontsize=16,color="green",shape="box"];750[label="xy3010",fontsize=16,color="green",shape="box"];751[label="xy4010",fontsize=16,color="green",shape="box"];752[label="xy3010",fontsize=16,color="green",shape="box"];753[label="xy4010",fontsize=16,color="green",shape="box"];754[label="xy3010",fontsize=16,color="green",shape="box"];755[label="xy4010",fontsize=16,color="green",shape="box"];756[label="xy3010",fontsize=16,color="green",shape="box"];757[label="xy4010",fontsize=16,color="green",shape="box"];758[label="xy3010",fontsize=16,color="green",shape="box"];759[label="xy4010",fontsize=16,color="green",shape="box"];760[label="xy3010",fontsize=16,color="green",shape="box"];761[label="xy4010",fontsize=16,color="green",shape="box"];762[label="xy3010",fontsize=16,color="green",shape="box"];763[label="xy4010",fontsize=16,color="green",shape="box"];764[label="xy3010",fontsize=16,color="green",shape="box"];765[label="xy4010",fontsize=16,color="green",shape="box"];766[label="xy3010",fontsize=16,color="green",shape="box"];767 -> 476[label="",style="dashed", color="red", weight=0]; 17.15/6.65 767[label="primEqNat xy40100 xy30100",fontsize=16,color="magenta"];767 -> 938[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 767 -> 939[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 768[label="False",fontsize=16,color="green",shape="box"];769[label="False",fontsize=16,color="green",shape="box"];770[label="True",fontsize=16,color="green",shape="box"];771[label="False",fontsize=16,color="green",shape="box"];772[label="True",fontsize=16,color="green",shape="box"];773 -> 476[label="",style="dashed", color="red", weight=0]; 17.15/6.65 773[label="primEqNat xy40100 xy30100",fontsize=16,color="magenta"];773 -> 940[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 773 -> 941[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 774[label="False",fontsize=16,color="green",shape="box"];775[label="False",fontsize=16,color="green",shape="box"];776[label="True",fontsize=16,color="green",shape="box"];777[label="False",fontsize=16,color="green",shape="box"];778[label="True",fontsize=16,color="green",shape="box"];779[label="xy4011",fontsize=16,color="green",shape="box"];780[label="xy3011",fontsize=16,color="green",shape="box"];781[label="xy4011",fontsize=16,color="green",shape="box"];782[label="xy3011",fontsize=16,color="green",shape="box"];783[label="xy4010",fontsize=16,color="green",shape="box"];784[label="xy3010",fontsize=16,color="green",shape="box"];785[label="xy4010",fontsize=16,color="green",shape="box"];786[label="xy3010",fontsize=16,color="green",shape="box"];787[label="xy4011",fontsize=16,color="green",shape="box"];788[label="xy3011",fontsize=16,color="green",shape="box"];789[label="xy4011",fontsize=16,color="green",shape="box"];790[label="xy3011",fontsize=16,color="green",shape="box"];791[label="xy4011",fontsize=16,color="green",shape="box"];792[label="xy3011",fontsize=16,color="green",shape="box"];793[label="xy4011",fontsize=16,color="green",shape="box"];794[label="xy3011",fontsize=16,color="green",shape="box"];795[label="xy4011",fontsize=16,color="green",shape="box"];796[label="xy3011",fontsize=16,color="green",shape="box"];797[label="xy4011",fontsize=16,color="green",shape="box"];798[label="xy3011",fontsize=16,color="green",shape="box"];799[label="xy4011",fontsize=16,color="green",shape="box"];800[label="xy3011",fontsize=16,color="green",shape="box"];801[label="xy4011",fontsize=16,color="green",shape="box"];802[label="xy3011",fontsize=16,color="green",shape="box"];803[label="xy4011",fontsize=16,color="green",shape="box"];804[label="xy3011",fontsize=16,color="green",shape="box"];805[label="xy4011",fontsize=16,color="green",shape="box"];806[label="xy3011",fontsize=16,color="green",shape="box"];807[label="xy4011",fontsize=16,color="green",shape="box"];808[label="xy3011",fontsize=16,color="green",shape="box"];809[label="xy4011",fontsize=16,color="green",shape="box"];810[label="xy3011",fontsize=16,color="green",shape="box"];811[label="xy4011",fontsize=16,color="green",shape="box"];812[label="xy3011",fontsize=16,color="green",shape="box"];813[label="xy4011",fontsize=16,color="green",shape="box"];814[label="xy3011",fontsize=16,color="green",shape="box"];815[label="xy4010",fontsize=16,color="green",shape="box"];816[label="xy3010",fontsize=16,color="green",shape="box"];817[label="xy4010",fontsize=16,color="green",shape="box"];818[label="xy3010",fontsize=16,color="green",shape="box"];819[label="xy4010",fontsize=16,color="green",shape="box"];820[label="xy3010",fontsize=16,color="green",shape="box"];821[label="xy4010",fontsize=16,color="green",shape="box"];822[label="xy3010",fontsize=16,color="green",shape="box"];823[label="xy4010",fontsize=16,color="green",shape="box"];824[label="xy3010",fontsize=16,color="green",shape="box"];825[label="xy4010",fontsize=16,color="green",shape="box"];826[label="xy3010",fontsize=16,color="green",shape="box"];827[label="xy4010",fontsize=16,color="green",shape="box"];828[label="xy3010",fontsize=16,color="green",shape="box"];829[label="xy4010",fontsize=16,color="green",shape="box"];830[label="xy3010",fontsize=16,color="green",shape="box"];831[label="xy4010",fontsize=16,color="green",shape="box"];832[label="xy3010",fontsize=16,color="green",shape="box"];833[label="xy4010",fontsize=16,color="green",shape="box"];834[label="xy3010",fontsize=16,color="green",shape="box"];835[label="xy4010",fontsize=16,color="green",shape="box"];836[label="xy3010",fontsize=16,color="green",shape="box"];837[label="xy4010",fontsize=16,color="green",shape="box"];838[label="xy3010",fontsize=16,color="green",shape="box"];839[label="xy4010",fontsize=16,color="green",shape="box"];840[label="xy3010",fontsize=16,color="green",shape="box"];841[label="xy4010",fontsize=16,color="green",shape="box"];842[label="xy3010",fontsize=16,color="green",shape="box"];843[label="primMulInt xy4010 xy3011",fontsize=16,color="burlywood",shape="box"];1246[label="xy4010/Pos xy40100",fontsize=10,color="white",style="solid",shape="box"];843 -> 1246[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1246 -> 942[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1247[label="xy4010/Neg xy40100",fontsize=10,color="white",style="solid",shape="box"];843 -> 1247[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1247 -> 943[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 844[label="xy3010",fontsize=16,color="green",shape="box"];845[label="xy4011",fontsize=16,color="green",shape="box"];846[label="xy4010",fontsize=16,color="green",shape="box"];847[label="xy3010",fontsize=16,color="green",shape="box"];848[label="xy4010",fontsize=16,color="green",shape="box"];849[label="xy3010",fontsize=16,color="green",shape="box"];850[label="xy4010",fontsize=16,color="green",shape="box"];851[label="xy3010",fontsize=16,color="green",shape="box"];852[label="xy4010",fontsize=16,color="green",shape="box"];853[label="xy3010",fontsize=16,color="green",shape="box"];854[label="xy4010",fontsize=16,color="green",shape="box"];855[label="xy3010",fontsize=16,color="green",shape="box"];856[label="xy4010",fontsize=16,color="green",shape="box"];857[label="xy3010",fontsize=16,color="green",shape="box"];858[label="xy4010",fontsize=16,color="green",shape="box"];859[label="xy3010",fontsize=16,color="green",shape="box"];860[label="xy4010",fontsize=16,color="green",shape="box"];861[label="xy3010",fontsize=16,color="green",shape="box"];862[label="xy4010",fontsize=16,color="green",shape="box"];863[label="xy3010",fontsize=16,color="green",shape="box"];864[label="xy4010",fontsize=16,color="green",shape="box"];865[label="xy3010",fontsize=16,color="green",shape="box"];866[label="xy4010",fontsize=16,color="green",shape="box"];867[label="xy3010",fontsize=16,color="green",shape="box"];868[label="xy4010",fontsize=16,color="green",shape="box"];869[label="xy3010",fontsize=16,color="green",shape="box"];870[label="xy4010",fontsize=16,color="green",shape="box"];871[label="xy3010",fontsize=16,color="green",shape="box"];872[label="xy4010",fontsize=16,color="green",shape="box"];873[label="xy3010",fontsize=16,color="green",shape="box"];874[label="xy3011",fontsize=16,color="green",shape="box"];875[label="xy4010",fontsize=16,color="green",shape="box"];876[label="xy3010",fontsize=16,color="green",shape="box"];877[label="xy4011",fontsize=16,color="green",shape="box"];878 -> 476[label="",style="dashed", color="red", weight=0]; 17.15/6.65 878[label="primEqNat xy40100 xy30100",fontsize=16,color="magenta"];878 -> 944[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 878 -> 945[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 879[label="False",fontsize=16,color="green",shape="box"];880[label="False",fontsize=16,color="green",shape="box"];881[label="True",fontsize=16,color="green",shape="box"];882[label="xy4012",fontsize=16,color="green",shape="box"];883[label="xy3012",fontsize=16,color="green",shape="box"];884[label="xy4012",fontsize=16,color="green",shape="box"];885[label="xy3012",fontsize=16,color="green",shape="box"];886[label="xy4012",fontsize=16,color="green",shape="box"];887[label="xy3012",fontsize=16,color="green",shape="box"];888[label="xy4012",fontsize=16,color="green",shape="box"];889[label="xy3012",fontsize=16,color="green",shape="box"];890[label="xy4012",fontsize=16,color="green",shape="box"];891[label="xy3012",fontsize=16,color="green",shape="box"];892[label="xy4012",fontsize=16,color="green",shape="box"];893[label="xy3012",fontsize=16,color="green",shape="box"];894[label="xy4012",fontsize=16,color="green",shape="box"];895[label="xy3012",fontsize=16,color="green",shape="box"];896[label="xy4012",fontsize=16,color="green",shape="box"];897[label="xy3012",fontsize=16,color="green",shape="box"];898[label="xy4012",fontsize=16,color="green",shape="box"];899[label="xy3012",fontsize=16,color="green",shape="box"];900[label="xy4012",fontsize=16,color="green",shape="box"];901[label="xy3012",fontsize=16,color="green",shape="box"];902[label="xy4012",fontsize=16,color="green",shape="box"];903[label="xy3012",fontsize=16,color="green",shape="box"];904[label="xy4012",fontsize=16,color="green",shape="box"];905[label="xy3012",fontsize=16,color="green",shape="box"];906[label="xy4012",fontsize=16,color="green",shape="box"];907[label="xy3012",fontsize=16,color="green",shape="box"];908[label="xy4012",fontsize=16,color="green",shape="box"];909[label="xy3012",fontsize=16,color="green",shape="box"];910[label="xy4011",fontsize=16,color="green",shape="box"];911[label="xy3011",fontsize=16,color="green",shape="box"];912[label="xy4011",fontsize=16,color="green",shape="box"];913[label="xy3011",fontsize=16,color="green",shape="box"];914[label="xy4011",fontsize=16,color="green",shape="box"];915[label="xy3011",fontsize=16,color="green",shape="box"];916[label="xy4011",fontsize=16,color="green",shape="box"];917[label="xy3011",fontsize=16,color="green",shape="box"];918[label="xy4011",fontsize=16,color="green",shape="box"];919[label="xy3011",fontsize=16,color="green",shape="box"];920[label="xy4011",fontsize=16,color="green",shape="box"];921[label="xy3011",fontsize=16,color="green",shape="box"];922[label="xy4011",fontsize=16,color="green",shape="box"];923[label="xy3011",fontsize=16,color="green",shape="box"];924[label="xy4011",fontsize=16,color="green",shape="box"];925[label="xy3011",fontsize=16,color="green",shape="box"];926[label="xy4011",fontsize=16,color="green",shape="box"];927[label="xy3011",fontsize=16,color="green",shape="box"];928[label="xy4011",fontsize=16,color="green",shape="box"];929[label="xy3011",fontsize=16,color="green",shape="box"];930[label="xy4011",fontsize=16,color="green",shape="box"];931[label="xy3011",fontsize=16,color="green",shape="box"];932[label="xy4011",fontsize=16,color="green",shape="box"];933[label="xy3011",fontsize=16,color="green",shape="box"];934[label="xy4011",fontsize=16,color="green",shape="box"];935[label="xy3011",fontsize=16,color="green",shape="box"];936[label="xy4011",fontsize=16,color="green",shape="box"];937[label="xy3011",fontsize=16,color="green",shape="box"];938[label="xy40100",fontsize=16,color="green",shape="box"];939[label="xy30100",fontsize=16,color="green",shape="box"];940[label="xy40100",fontsize=16,color="green",shape="box"];941[label="xy30100",fontsize=16,color="green",shape="box"];942[label="primMulInt (Pos xy40100) xy3011",fontsize=16,color="burlywood",shape="box"];1248[label="xy3011/Pos xy30110",fontsize=10,color="white",style="solid",shape="box"];942 -> 1248[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1248 -> 946[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1249[label="xy3011/Neg xy30110",fontsize=10,color="white",style="solid",shape="box"];942 -> 1249[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1249 -> 947[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 943[label="primMulInt (Neg xy40100) xy3011",fontsize=16,color="burlywood",shape="box"];1250[label="xy3011/Pos xy30110",fontsize=10,color="white",style="solid",shape="box"];943 -> 1250[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1250 -> 948[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1251[label="xy3011/Neg xy30110",fontsize=10,color="white",style="solid",shape="box"];943 -> 1251[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1251 -> 949[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 944[label="xy40100",fontsize=16,color="green",shape="box"];945[label="xy30100",fontsize=16,color="green",shape="box"];946[label="primMulInt (Pos xy40100) (Pos xy30110)",fontsize=16,color="black",shape="box"];946 -> 950[label="",style="solid", color="black", weight=3]; 17.15/6.65 947[label="primMulInt (Pos xy40100) (Neg xy30110)",fontsize=16,color="black",shape="box"];947 -> 951[label="",style="solid", color="black", weight=3]; 17.15/6.65 948[label="primMulInt (Neg xy40100) (Pos xy30110)",fontsize=16,color="black",shape="box"];948 -> 952[label="",style="solid", color="black", weight=3]; 17.15/6.65 949[label="primMulInt (Neg xy40100) (Neg xy30110)",fontsize=16,color="black",shape="box"];949 -> 953[label="",style="solid", color="black", weight=3]; 17.15/6.65 950[label="Pos (primMulNat xy40100 xy30110)",fontsize=16,color="green",shape="box"];950 -> 954[label="",style="dashed", color="green", weight=3]; 17.15/6.65 951[label="Neg (primMulNat xy40100 xy30110)",fontsize=16,color="green",shape="box"];951 -> 955[label="",style="dashed", color="green", weight=3]; 17.15/6.65 952[label="Neg (primMulNat xy40100 xy30110)",fontsize=16,color="green",shape="box"];952 -> 956[label="",style="dashed", color="green", weight=3]; 17.15/6.65 953[label="Pos (primMulNat xy40100 xy30110)",fontsize=16,color="green",shape="box"];953 -> 957[label="",style="dashed", color="green", weight=3]; 17.15/6.65 954[label="primMulNat xy40100 xy30110",fontsize=16,color="burlywood",shape="triangle"];1252[label="xy40100/Succ xy401000",fontsize=10,color="white",style="solid",shape="box"];954 -> 1252[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1252 -> 958[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1253[label="xy40100/Zero",fontsize=10,color="white",style="solid",shape="box"];954 -> 1253[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1253 -> 959[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 955 -> 954[label="",style="dashed", color="red", weight=0]; 17.15/6.65 955[label="primMulNat xy40100 xy30110",fontsize=16,color="magenta"];955 -> 960[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 956 -> 954[label="",style="dashed", color="red", weight=0]; 17.15/6.65 956[label="primMulNat xy40100 xy30110",fontsize=16,color="magenta"];956 -> 961[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 957 -> 954[label="",style="dashed", color="red", weight=0]; 17.15/6.65 957[label="primMulNat xy40100 xy30110",fontsize=16,color="magenta"];957 -> 962[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 957 -> 963[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 958[label="primMulNat (Succ xy401000) xy30110",fontsize=16,color="burlywood",shape="box"];1254[label="xy30110/Succ xy301100",fontsize=10,color="white",style="solid",shape="box"];958 -> 1254[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1254 -> 964[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1255[label="xy30110/Zero",fontsize=10,color="white",style="solid",shape="box"];958 -> 1255[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1255 -> 965[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 959[label="primMulNat Zero xy30110",fontsize=16,color="burlywood",shape="box"];1256[label="xy30110/Succ xy301100",fontsize=10,color="white",style="solid",shape="box"];959 -> 1256[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1256 -> 966[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1257[label="xy30110/Zero",fontsize=10,color="white",style="solid",shape="box"];959 -> 1257[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1257 -> 967[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 960[label="xy30110",fontsize=16,color="green",shape="box"];961[label="xy40100",fontsize=16,color="green",shape="box"];962[label="xy30110",fontsize=16,color="green",shape="box"];963[label="xy40100",fontsize=16,color="green",shape="box"];964[label="primMulNat (Succ xy401000) (Succ xy301100)",fontsize=16,color="black",shape="box"];964 -> 968[label="",style="solid", color="black", weight=3]; 17.15/6.65 965[label="primMulNat (Succ xy401000) Zero",fontsize=16,color="black",shape="box"];965 -> 969[label="",style="solid", color="black", weight=3]; 17.15/6.65 966[label="primMulNat Zero (Succ xy301100)",fontsize=16,color="black",shape="box"];966 -> 970[label="",style="solid", color="black", weight=3]; 17.15/6.65 967[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];967 -> 971[label="",style="solid", color="black", weight=3]; 17.15/6.65 968 -> 972[label="",style="dashed", color="red", weight=0]; 17.15/6.65 968[label="primPlusNat (primMulNat xy401000 (Succ xy301100)) (Succ xy301100)",fontsize=16,color="magenta"];968 -> 973[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 969[label="Zero",fontsize=16,color="green",shape="box"];970[label="Zero",fontsize=16,color="green",shape="box"];971[label="Zero",fontsize=16,color="green",shape="box"];973 -> 954[label="",style="dashed", color="red", weight=0]; 17.15/6.65 973[label="primMulNat xy401000 (Succ xy301100)",fontsize=16,color="magenta"];973 -> 974[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 973 -> 975[label="",style="dashed", color="magenta", weight=3]; 17.15/6.65 972[label="primPlusNat xy44 (Succ xy301100)",fontsize=16,color="burlywood",shape="triangle"];1258[label="xy44/Succ xy440",fontsize=10,color="white",style="solid",shape="box"];972 -> 1258[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1258 -> 976[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1259[label="xy44/Zero",fontsize=10,color="white",style="solid",shape="box"];972 -> 1259[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1259 -> 977[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 974[label="Succ xy301100",fontsize=16,color="green",shape="box"];975[label="xy401000",fontsize=16,color="green",shape="box"];976[label="primPlusNat (Succ xy440) (Succ xy301100)",fontsize=16,color="black",shape="box"];976 -> 978[label="",style="solid", color="black", weight=3]; 17.15/6.65 977[label="primPlusNat Zero (Succ xy301100)",fontsize=16,color="black",shape="box"];977 -> 979[label="",style="solid", color="black", weight=3]; 17.15/6.65 978[label="Succ (Succ (primPlusNat xy440 xy301100))",fontsize=16,color="green",shape="box"];978 -> 980[label="",style="dashed", color="green", weight=3]; 17.15/6.65 979[label="Succ xy301100",fontsize=16,color="green",shape="box"];980[label="primPlusNat xy440 xy301100",fontsize=16,color="burlywood",shape="triangle"];1260[label="xy440/Succ xy4400",fontsize=10,color="white",style="solid",shape="box"];980 -> 1260[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1260 -> 981[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1261[label="xy440/Zero",fontsize=10,color="white",style="solid",shape="box"];980 -> 1261[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1261 -> 982[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 981[label="primPlusNat (Succ xy4400) xy301100",fontsize=16,color="burlywood",shape="box"];1262[label="xy301100/Succ xy3011000",fontsize=10,color="white",style="solid",shape="box"];981 -> 1262[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1262 -> 983[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1263[label="xy301100/Zero",fontsize=10,color="white",style="solid",shape="box"];981 -> 1263[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1263 -> 984[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 982[label="primPlusNat Zero xy301100",fontsize=16,color="burlywood",shape="box"];1264[label="xy301100/Succ xy3011000",fontsize=10,color="white",style="solid",shape="box"];982 -> 1264[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1264 -> 985[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 1265[label="xy301100/Zero",fontsize=10,color="white",style="solid",shape="box"];982 -> 1265[label="",style="solid", color="burlywood", weight=9]; 17.15/6.65 1265 -> 986[label="",style="solid", color="burlywood", weight=3]; 17.15/6.65 983[label="primPlusNat (Succ xy4400) (Succ xy3011000)",fontsize=16,color="black",shape="box"];983 -> 987[label="",style="solid", color="black", weight=3]; 17.15/6.65 984[label="primPlusNat (Succ xy4400) Zero",fontsize=16,color="black",shape="box"];984 -> 988[label="",style="solid", color="black", weight=3]; 17.15/6.65 985[label="primPlusNat Zero (Succ xy3011000)",fontsize=16,color="black",shape="box"];985 -> 989[label="",style="solid", color="black", weight=3]; 17.15/6.65 986[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];986 -> 990[label="",style="solid", color="black", weight=3]; 17.15/6.66 987[label="Succ (Succ (primPlusNat xy4400 xy3011000))",fontsize=16,color="green",shape="box"];987 -> 991[label="",style="dashed", color="green", weight=3]; 17.15/6.66 988[label="Succ xy4400",fontsize=16,color="green",shape="box"];989[label="Succ xy3011000",fontsize=16,color="green",shape="box"];990[label="Zero",fontsize=16,color="green",shape="box"];991 -> 980[label="",style="dashed", color="red", weight=0]; 17.15/6.66 991[label="primPlusNat xy4400 xy3011000",fontsize=16,color="magenta"];991 -> 992[label="",style="dashed", color="magenta", weight=3]; 17.15/6.66 991 -> 993[label="",style="dashed", color="magenta", weight=3]; 17.15/6.66 992[label="xy3011000",fontsize=16,color="green",shape="box"];993[label="xy4400",fontsize=16,color="green",shape="box"];} 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (8) 17.15/6.66 Complex Obligation (AND) 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (9) 17.15/6.66 Obligation: 17.15/6.66 Q DP problem: 17.15/6.66 The TRS P consists of the following rules: 17.15/6.66 17.15/6.66 new_foldl(xy3, :(xy40, xy41), ba, bb) -> new_foldl(new_deleteBy1(xy40, xy3, ba, bb), xy41, ba, bb) 17.15/6.66 17.15/6.66 The TRS R consists of the following rules: 17.15/6.66 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs27(xy4010, xy3010, app(ty_Ratio, bha)) -> new_esEs13(xy4010, xy3010, bha) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Integer) -> new_esEs19(xy4011, xy3011) 17.15/6.66 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 17.15/6.66 new_esEs25(xy4012, xy3012, app(app(ty_Either, beb), bec)) -> new_esEs9(xy4012, xy3012, beb, bec) 17.15/6.66 new_esEs5(xy400, xy300, ty_Int) -> new_esEs11(xy400, xy300) 17.15/6.66 new_esEs4(xy401, xy301, app(ty_[], hh)) -> new_esEs17(xy401, xy301, hh) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Char) -> new_esEs7(xy4011, xy3011) 17.15/6.66 new_deleteBy1(xy40, [], ba, bb) -> [] 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(ty_Maybe, eh), eb) -> new_esEs12(xy4010, xy3010, eh) 17.15/6.66 new_esEs26(xy4011, xy3011, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs8(xy4011, xy3011, bfa, bfb, bfc) 17.15/6.66 new_esEs24(xy4010, xy3010, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, ty_Ordering) -> new_esEs6(xy401, xy301) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Float, eb) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs22(xy4010, xy3010, app(ty_Maybe, bbh)) -> new_esEs12(xy4010, xy3010, bbh) 17.15/6.66 new_esEs16(Float(xy4010, xy4011), Float(xy3010, xy3011)) -> new_esEs11(new_sr(xy4010, xy3011), new_sr(xy4011, xy3010)) 17.15/6.66 new_esEs5(xy400, xy300, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs8(xy400, xy300, baa, bab, bac) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(ty_Maybe, bdb)) -> new_esEs12(xy4010, xy3010, bdb) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Int, eb) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Char, eb) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs10(False, True) -> False 17.15/6.66 new_esEs10(True, False) -> False 17.15/6.66 new_esEs20(xy4011, xy3011, app(ty_Ratio, cc)) -> new_esEs13(xy4011, xy3011, cc) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(app(ty_Either, ef), eg), eb) -> new_esEs9(xy4010, xy3010, ef, eg) 17.15/6.66 new_esEs25(xy4012, xy3012, app(ty_Ratio, bee)) -> new_esEs13(xy4012, xy3012, bee) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Ordering) -> new_esEs6(xy4012, xy3012) 17.15/6.66 new_asAs(True, xy43) -> xy43 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Bool) -> new_esEs10(xy4012, xy3012) 17.15/6.66 new_esEs27(xy4010, xy3010, app(ty_Maybe, bgh)) -> new_esEs12(xy4010, xy3010, bgh) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, app(ty_Maybe, gd)) -> new_esEs12(xy4010, xy3010, gd) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_@0) -> new_esEs15(xy4011, xy3011) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, app(ty_[], beh)) -> new_esEs17(xy4012, xy3012, beh) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Double) -> new_esEs18(xy4011, xy3011) 17.15/6.66 new_esEs27(xy4010, xy3010, app(app(ty_Either, bgf), bgg)) -> new_esEs9(xy4010, xy3010, bgf, bgg) 17.15/6.66 new_primEqInt(Pos(Succ(xy40100)), Pos(Zero)) -> False 17.15/6.66 new_primEqInt(Pos(Zero), Pos(Succ(xy30100))) -> False 17.15/6.66 new_esEs12(Nothing, Just(xy3010), hf) -> False 17.15/6.66 new_esEs12(Just(xy4010), Nothing, hf) -> False 17.15/6.66 new_esEs4(xy401, xy301, app(ty_Ratio, hg)) -> new_esEs13(xy401, xy301, hg) 17.15/6.66 new_esEs12(Nothing, Nothing, hf) -> True 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(ty_Ratio, fa), eb) -> new_esEs13(xy4010, xy3010, fa) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs27(xy4010, xy3010, app(ty_[], bhd)) -> new_esEs17(xy4010, xy3010, bhd) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_primEqNat0(Succ(xy40100), Succ(xy30100)) -> new_primEqNat0(xy40100, xy30100) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, ty_Float) -> new_esEs16(xy400, xy300) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(ty_Ratio, bdc)) -> new_esEs13(xy4010, xy3010, bdc) 17.15/6.66 new_esEs22(xy4010, xy3010, app(ty_Ratio, bca)) -> new_esEs13(xy4010, xy3010, bca) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Float) -> new_esEs16(xy4011, xy3011) 17.15/6.66 new_esEs13(:%(xy4010, xy4011), :%(xy3010, xy3011), hg) -> new_asAs(new_esEs24(xy4010, xy3010, hg), new_esEs23(xy4011, xy3011, hg)) 17.15/6.66 new_esEs4(xy401, xy301, app(app(ty_@2, bc), bd)) -> new_esEs14(xy401, xy301, bc, bd) 17.15/6.66 new_primMulNat0(Zero, Zero) -> Zero 17.15/6.66 new_esEs5(xy400, xy300, app(ty_Maybe, baf)) -> new_esEs12(xy400, xy300, baf) 17.15/6.66 new_esEs5(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 17.15/6.66 new_esEs21(xy4010, xy3010, app(app(app(ty_@3, cg), da), db)) -> new_esEs8(xy4010, xy3010, cg, da, db) 17.15/6.66 new_esEs6(EQ, GT) -> False 17.15/6.66 new_esEs6(GT, EQ) -> False 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(app(app(ty_@3, ec), ed), ee), eb) -> new_esEs8(xy4010, xy3010, ec, ed, ee) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs17(:(xy4010, xy4011), :(xy3010, xy3011), hh) -> new_asAs(new_esEs22(xy4010, xy3010, hh), new_esEs17(xy4011, xy3011, hh)) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, app(ty_Maybe, hf)) -> new_esEs12(xy401, xy301, hf) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Char) -> new_esEs7(xy4011, xy3011) 17.15/6.66 new_primEqNat0(Succ(xy40100), Zero) -> False 17.15/6.66 new_primEqNat0(Zero, Succ(xy30100)) -> False 17.15/6.66 new_esEs23(xy4011, xy3011, ty_Integer) -> new_esEs19(xy4011, xy3011) 17.15/6.66 new_esEs20(xy4011, xy3011, app(ty_[], cf)) -> new_esEs17(xy4011, xy3011, cf) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_@0) -> new_esEs15(xy4011, xy3011) 17.15/6.66 new_esEs24(xy4010, xy3010, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs9(Left(xy4010), Right(xy3010), ff, eb) -> False 17.15/6.66 new_esEs9(Right(xy4010), Left(xy3010), ff, eb) -> False 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs8(xy4010, xy3010, bce, bcf, bcg) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(app(ty_Either, bch), bda)) -> new_esEs9(xy4010, xy3010, bch, bda) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs8(xy4010, xy3010, fg, fh, ga) 17.15/6.66 new_esEs22(xy4010, xy3010, app(app(ty_Either, bbf), bbg)) -> new_esEs9(xy4010, xy3010, bbf, bbg) 17.15/6.66 new_esEs22(xy4010, xy3010, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs8(xy4010, xy3010, bbc, bbd, bbe) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, app(ty_Ratio, bag)) -> new_esEs13(xy400, xy300, bag) 17.15/6.66 new_esEs26(xy4011, xy3011, app(app(ty_@2, bfh), bga)) -> new_esEs14(xy4011, xy3011, bfh, bga) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Float) -> new_esEs16(xy4012, xy3012) 17.15/6.66 new_esEs23(xy4011, xy3011, ty_Int) -> new_esEs11(xy4011, xy3011) 17.15/6.66 new_esEs15(@0, @0) -> True 17.15/6.66 new_deleteBy1(@2(xy400, xy401), :(@2(xy300, xy301), xy31), ba, bb) -> new_deleteBy00(xy31, xy300, xy301, xy400, xy401, new_asAs(new_esEs5(xy400, xy300, ba), new_esEs4(xy401, xy301, bb)), ba, bb) 17.15/6.66 new_esEs21(xy4010, xy3010, app(ty_[], ea)) -> new_esEs17(xy4010, xy3010, ea) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Bool) -> new_esEs10(xy4011, xy3011) 17.15/6.66 new_primEqInt(Neg(Succ(xy40100)), Neg(Zero)) -> False 17.15/6.66 new_primEqInt(Neg(Zero), Neg(Succ(xy30100))) -> False 17.15/6.66 new_esEs5(xy400, xy300, ty_Double) -> new_esEs18(xy400, xy300) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Bool) -> new_esEs10(xy4011, xy3011) 17.15/6.66 new_esEs27(xy4010, xy3010, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs8(xy4010, xy3010, bgc, bgd, bge) 17.15/6.66 new_primEqInt(Pos(Succ(xy40100)), Pos(Succ(xy30100))) -> new_primEqNat0(xy40100, xy30100) 17.15/6.66 new_esEs4(xy401, xy301, app(app(ty_Either, ff), eb)) -> new_esEs9(xy401, xy301, ff, eb) 17.15/6.66 new_esEs6(LT, LT) -> True 17.15/6.66 new_esEs6(LT, GT) -> False 17.15/6.66 new_esEs6(GT, LT) -> False 17.15/6.66 new_sr(Pos(xy40100), Neg(xy30110)) -> Neg(new_primMulNat0(xy40100, xy30110)) 17.15/6.66 new_sr(Neg(xy40100), Pos(xy30110)) -> Neg(new_primMulNat0(xy40100, xy30110)) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_primPlusNat1(Succ(xy4400), Succ(xy3011000)) -> Succ(Succ(new_primPlusNat1(xy4400, xy3011000))) 17.15/6.66 new_primEqInt(Pos(Succ(xy40100)), Neg(xy3010)) -> False 17.15/6.66 new_primEqInt(Neg(Succ(xy40100)), Pos(xy3010)) -> False 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, app(app(ty_Either, gb), gc)) -> new_esEs9(xy4010, xy3010, gb, gc) 17.15/6.66 new_esEs21(xy4010, xy3010, app(app(ty_@2, dg), dh)) -> new_esEs14(xy4010, xy3010, dg, dh) 17.15/6.66 new_esEs26(xy4011, xy3011, app(ty_[], bgb)) -> new_esEs17(xy4011, xy3011, bgb) 17.15/6.66 new_esEs8(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), hc, hd, he) -> new_asAs(new_esEs27(xy4010, xy3010, hc), new_asAs(new_esEs26(xy4011, xy3011, hd), new_esEs25(xy4012, xy3012, he))) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Int) -> new_esEs11(xy4012, xy3012) 17.15/6.66 new_esEs25(xy4012, xy3012, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs8(xy4012, xy3012, bdg, bdh, bea) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs21(xy4010, xy3010, app(ty_Maybe, de)) -> new_esEs12(xy4010, xy3010, de) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(app(ty_@2, bdd), bde)) -> new_esEs14(xy4010, xy3010, bdd, bde) 17.15/6.66 new_esEs20(xy4011, xy3011, app(app(ty_@2, cd), ce)) -> new_esEs14(xy4011, xy3011, cd, ce) 17.15/6.66 new_sr(Neg(xy40100), Neg(xy30110)) -> Pos(new_primMulNat0(xy40100, xy30110)) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs14(@2(xy4010, xy4011), @2(xy3010, xy3011), bc, bd) -> new_asAs(new_esEs21(xy4010, xy3010, bc), new_esEs20(xy4011, xy3011, bd)) 17.15/6.66 new_esEs4(xy401, xy301, ty_Int) -> new_esEs11(xy401, xy301) 17.15/6.66 new_esEs4(xy401, xy301, app(app(app(ty_@3, hc), hd), he)) -> new_esEs8(xy401, xy301, hc, hd, he) 17.15/6.66 new_esEs17([], [], hh) -> True 17.15/6.66 new_esEs26(xy4011, xy3011, app(app(ty_Either, bfd), bfe)) -> new_esEs9(xy4011, xy3011, bfd, bfe) 17.15/6.66 new_esEs27(xy4010, xy3010, app(app(ty_@2, bhb), bhc)) -> new_esEs14(xy4010, xy3010, bhb, bhc) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Char) -> new_esEs7(xy4012, xy3012) 17.15/6.66 new_primEqInt(Pos(Zero), Neg(Succ(xy30100))) -> False 17.15/6.66 new_primEqInt(Neg(Zero), Pos(Succ(xy30100))) -> False 17.15/6.66 new_esEs5(xy400, xy300, app(app(ty_Either, bad), bae)) -> new_esEs9(xy400, xy300, bad, bae) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Bool, eb) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs7(Char(xy4010), Char(xy3010)) -> new_primEqNat0(xy4010, xy3010) 17.15/6.66 new_esEs10(False, False) -> True 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Integer, eb) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_primEqInt(Neg(Succ(xy40100)), Neg(Succ(xy30100))) -> new_primEqNat0(xy40100, xy30100) 17.15/6.66 new_esEs4(xy401, xy301, ty_Char) -> new_esEs7(xy401, xy301) 17.15/6.66 new_esEs10(True, True) -> True 17.15/6.66 new_esEs5(xy400, xy300, ty_Ordering) -> new_esEs6(xy400, xy300) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(ty_[], fd), eb) -> new_esEs17(xy4010, xy3010, fd) 17.15/6.66 new_esEs22(xy4010, xy3010, app(app(ty_@2, bcb), bcc)) -> new_esEs14(xy4010, xy3010, bcb, bcc) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Float) -> new_esEs16(xy4011, xy3011) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Ordering) -> new_esEs6(xy4011, xy3011) 17.15/6.66 new_primPlusNat0(Succ(xy440), xy301100) -> Succ(Succ(new_primPlusNat1(xy440, xy301100))) 17.15/6.66 new_esEs4(xy401, xy301, ty_@0) -> new_esEs15(xy401, xy301) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_@0) -> new_esEs15(xy4012, xy3012) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(app(ty_@2, fb), fc), eb) -> new_esEs14(xy4010, xy3010, fb, fc) 17.15/6.66 new_esEs25(xy4012, xy3012, app(app(ty_@2, bef), beg)) -> new_esEs14(xy4012, xy3012, bef, beg) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Double) -> new_esEs18(xy4012, xy3012) 17.15/6.66 new_esEs4(xy401, xy301, ty_Integer) -> new_esEs19(xy401, xy301) 17.15/6.66 new_primPlusNat1(Zero, Zero) -> Zero 17.15/6.66 new_primMulNat0(Succ(xy401000), Zero) -> Zero 17.15/6.66 new_primMulNat0(Zero, Succ(xy301100)) -> Zero 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_sr(Pos(xy40100), Pos(xy30110)) -> Pos(new_primMulNat0(xy40100, xy30110)) 17.15/6.66 new_deleteBy00(xy25, xy26, xy27, xy28, xy29, False, ha, hb) -> :(@2(xy26, xy27), new_deleteBy1(@2(xy28, xy29), xy25, ha, hb)) 17.15/6.66 new_esEs22(xy4010, xy3010, app(ty_[], bcd)) -> new_esEs17(xy4010, xy3010, bcd) 17.15/6.66 new_primPlusNat0(Zero, xy301100) -> Succ(xy301100) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Double, eb) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Ordering) -> new_esEs6(xy4011, xy3011) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, ty_Double) -> new_esEs18(xy401, xy301) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_@0, eb) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, app(ty_[], gh)) -> new_esEs17(xy4010, xy3010, gh) 17.15/6.66 new_esEs20(xy4011, xy3011, app(app(app(ty_@3, be), bf), bg)) -> new_esEs8(xy4011, xy3011, be, bf, bg) 17.15/6.66 new_esEs25(xy4012, xy3012, app(ty_Maybe, bed)) -> new_esEs12(xy4012, xy3012, bed) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, app(app(ty_@2, gf), gg)) -> new_esEs14(xy4010, xy3010, gf, gg) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Int) -> new_esEs11(xy4011, xy3011) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, app(ty_Ratio, ge)) -> new_esEs13(xy4010, xy3010, ge) 17.15/6.66 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(ty_[], bdf)) -> new_esEs17(xy4010, xy3010, bdf) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Double) -> new_esEs18(xy4011, xy3011) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs6(EQ, EQ) -> True 17.15/6.66 new_primMulNat0(Succ(xy401000), Succ(xy301100)) -> new_primPlusNat0(new_primMulNat0(xy401000, Succ(xy301100)), xy301100) 17.15/6.66 new_esEs18(Double(xy4010, xy4011), Double(xy3010, xy3011)) -> new_esEs11(new_sr(xy4010, xy3011), new_sr(xy4011, xy3010)) 17.15/6.66 new_esEs21(xy4010, xy3010, app(app(ty_Either, dc), dd)) -> new_esEs9(xy4010, xy3010, dc, dd) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Ordering, eb) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Integer) -> new_esEs19(xy4012, xy3012) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs6(GT, GT) -> True 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs26(xy4011, xy3011, app(ty_Maybe, bff)) -> new_esEs12(xy4011, xy3011, bff) 17.15/6.66 new_primPlusNat1(Succ(xy4400), Zero) -> Succ(xy4400) 17.15/6.66 new_primPlusNat1(Zero, Succ(xy3011000)) -> Succ(xy3011000) 17.15/6.66 new_esEs5(xy400, xy300, app(app(ty_@2, bah), bba)) -> new_esEs14(xy400, xy300, bah, bba) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, ty_Float) -> new_esEs16(xy401, xy301) 17.15/6.66 new_esEs4(xy401, xy301, ty_Bool) -> new_esEs10(xy401, xy301) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, ty_@0) -> new_esEs15(xy400, xy300) 17.15/6.66 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 17.15/6.66 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 17.15/6.66 new_primEqNat0(Zero, Zero) -> True 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, ty_Bool) -> new_esEs10(xy400, xy300) 17.15/6.66 new_esEs21(xy4010, xy3010, app(ty_Ratio, df)) -> new_esEs13(xy4010, xy3010, df) 17.15/6.66 new_esEs19(Integer(xy4010), Integer(xy3010)) -> new_primEqInt(xy4010, xy3010) 17.15/6.66 new_esEs17(:(xy4010, xy4011), [], hh) -> False 17.15/6.66 new_esEs17([], :(xy3010, xy3011), hh) -> False 17.15/6.66 new_asAs(False, xy43) -> False 17.15/6.66 new_esEs26(xy4011, xy3011, app(ty_Ratio, bfg)) -> new_esEs13(xy4011, xy3011, bfg) 17.15/6.66 new_deleteBy00(xy25, xy26, xy27, xy28, xy29, True, ha, hb) -> xy25 17.15/6.66 new_esEs6(LT, EQ) -> False 17.15/6.66 new_esEs6(EQ, LT) -> False 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Int) -> new_esEs11(xy4011, xy3011) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 17.15/6.66 new_esEs5(xy400, xy300, app(ty_[], bbb)) -> new_esEs17(xy400, xy300, bbb) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Integer) -> new_esEs19(xy4011, xy3011) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs20(xy4011, xy3011, app(ty_Maybe, cb)) -> new_esEs12(xy4011, xy3011, cb) 17.15/6.66 new_esEs11(xy401, xy301) -> new_primEqInt(xy401, xy301) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs20(xy4011, xy3011, app(app(ty_Either, bh), ca)) -> new_esEs9(xy4011, xy3011, bh, ca) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), ff, ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 17.15/6.66 The set Q consists of the following terms: 17.15/6.66 17.15/6.66 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 17.15/6.66 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_primEqNat0(Zero, Succ(x0)) 17.15/6.66 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Char) 17.15/6.66 new_esEs22(x0, x1, ty_Bool) 17.15/6.66 new_esEs4(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs27(x0, x1, ty_@0) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Int, x2) 17.15/6.66 new_asAs(True, x0) 17.15/6.66 new_deleteBy1(@2(x0, x1), :(@2(x2, x3), x4), x5, x6) 17.15/6.66 new_esEs17(:(x0, x1), :(x2, x3), x4) 17.15/6.66 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs26(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Char, x2) 17.15/6.66 new_primMulNat0(Zero, Zero) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Int) 17.15/6.66 new_primPlusNat1(Zero, Zero) 17.15/6.66 new_esEs26(x0, x1, ty_Integer) 17.15/6.66 new_esEs20(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs23(x0, x1, ty_Integer) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Double) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 17.15/6.66 new_esEs26(x0, x1, ty_Bool) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Ordering, x2) 17.15/6.66 new_esEs21(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Ordering) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 17.15/6.66 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_primEqInt(Pos(Zero), Pos(Zero)) 17.15/6.66 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs5(x0, x1, ty_@0) 17.15/6.66 new_esEs27(x0, x1, ty_Bool) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Float) 17.15/6.66 new_esEs16(Float(x0, x1), Float(x2, x3)) 17.15/6.66 new_esEs26(x0, x1, ty_@0) 17.15/6.66 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 17.15/6.66 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 17.15/6.66 new_esEs22(x0, x1, ty_@0) 17.15/6.66 new_esEs20(x0, x1, ty_Integer) 17.15/6.66 new_esEs25(x0, x1, ty_Integer) 17.15/6.66 new_esEs21(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs6(EQ, EQ) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Float) 17.15/6.66 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Float, x2) 17.15/6.66 new_primEqInt(Neg(Zero), Neg(Zero)) 17.15/6.66 new_esEs27(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs11(x0, x1) 17.15/6.66 new_esEs5(x0, x1, ty_Integer) 17.15/6.66 new_esEs17([], [], x0) 17.15/6.66 new_esEs21(x0, x1, ty_Bool) 17.15/6.66 new_esEs4(x0, x1, ty_Bool) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(ty_[], x2), x3) 17.15/6.66 new_esEs18(Double(x0, x1), Double(x2, x3)) 17.15/6.66 new_esEs6(EQ, GT) 17.15/6.66 new_esEs6(GT, EQ) 17.15/6.66 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs4(x0, x1, ty_Float) 17.15/6.66 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs22(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_@0) 17.15/6.66 new_esEs9(Left(x0), Right(x1), x2, x3) 17.15/6.66 new_esEs9(Right(x0), Left(x1), x2, x3) 17.15/6.66 new_esEs4(x0, x1, ty_Double) 17.15/6.66 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs27(x0, x1, ty_Char) 17.15/6.66 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Integer) 17.15/6.66 new_esEs4(x0, x1, ty_@0) 17.15/6.66 new_primPlusNat1(Succ(x0), Succ(x1)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Int) 17.15/6.66 new_esEs20(x0, x1, ty_Float) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Char) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 17.15/6.66 new_esEs10(True, True) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Double, x2) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 17.15/6.66 new_esEs21(x0, x1, ty_Char) 17.15/6.66 new_esEs25(x0, x1, ty_Ordering) 17.15/6.66 new_esEs6(LT, LT) 17.15/6.66 new_primMulNat0(Succ(x0), Zero) 17.15/6.66 new_esEs22(x0, x1, ty_Integer) 17.15/6.66 new_primEqInt(Pos(Zero), Neg(Zero)) 17.15/6.66 new_primEqInt(Neg(Zero), Pos(Zero)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Bool) 17.15/6.66 new_esEs24(x0, x1, ty_Int) 17.15/6.66 new_sr(Neg(x0), Neg(x1)) 17.15/6.66 new_deleteBy1(x0, [], x1, x2) 17.15/6.66 new_esEs26(x0, x1, ty_Float) 17.15/6.66 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_deleteBy00(x0, x1, x2, x3, x4, True, x5, x6) 17.15/6.66 new_esEs4(x0, x1, ty_Int) 17.15/6.66 new_esEs25(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs5(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs5(x0, x1, ty_Char) 17.15/6.66 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs21(x0, x1, ty_@0) 17.15/6.66 new_esEs7(Char(x0), Char(x1)) 17.15/6.66 new_esEs6(LT, GT) 17.15/6.66 new_esEs6(GT, LT) 17.15/6.66 new_esEs17(:(x0, x1), [], x2) 17.15/6.66 new_esEs25(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Bool) 17.15/6.66 new_esEs21(x0, x1, ty_Float) 17.15/6.66 new_esEs20(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs6(LT, EQ) 17.15/6.66 new_esEs6(EQ, LT) 17.15/6.66 new_esEs5(x0, x1, ty_Bool) 17.15/6.66 new_esEs5(x0, x1, ty_Double) 17.15/6.66 new_esEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 17.15/6.66 new_esEs6(GT, GT) 17.15/6.66 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Double) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Bool, x2) 17.15/6.66 new_esEs27(x0, x1, ty_Int) 17.15/6.66 new_esEs14(@2(x0, x1), @2(x2, x3), x4, x5) 17.15/6.66 new_esEs22(x0, x1, ty_Ordering) 17.15/6.66 new_esEs21(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_primPlusNat1(Zero, Succ(x0)) 17.15/6.66 new_esEs26(x0, x1, ty_Int) 17.15/6.66 new_esEs5(x0, x1, ty_Ordering) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Integer, x2) 17.15/6.66 new_esEs4(x0, x1, ty_Char) 17.15/6.66 new_esEs21(x0, x1, ty_Ordering) 17.15/6.66 new_esEs12(Nothing, Just(x0), x1) 17.15/6.66 new_esEs15(@0, @0) 17.15/6.66 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs22(x0, x1, ty_Double) 17.15/6.66 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 17.15/6.66 new_sr(Pos(x0), Pos(x1)) 17.15/6.66 new_esEs27(x0, x1, ty_Double) 17.15/6.66 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 17.15/6.66 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs21(x0, x1, ty_Int) 17.15/6.66 new_esEs21(x0, x1, ty_Double) 17.15/6.66 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs20(x0, x1, ty_Char) 17.15/6.66 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 17.15/6.66 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 17.15/6.66 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs5(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs27(x0, x1, ty_Float) 17.15/6.66 new_esEs5(x0, x1, ty_Int) 17.15/6.66 new_esEs22(x0, x1, ty_Float) 17.15/6.66 new_esEs26(x0, x1, ty_Double) 17.15/6.66 new_esEs20(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs20(x0, x1, ty_Int) 17.15/6.66 new_deleteBy00(x0, x1, x2, x3, x4, False, x5, x6) 17.15/6.66 new_esEs26(x0, x1, ty_Char) 17.15/6.66 new_esEs27(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs5(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 17.15/6.66 new_sr(Pos(x0), Neg(x1)) 17.15/6.66 new_sr(Neg(x0), Pos(x1)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 17.15/6.66 new_esEs26(x0, x1, ty_Ordering) 17.15/6.66 new_primMulNat0(Zero, Succ(x0)) 17.15/6.66 new_esEs5(x0, x1, ty_Float) 17.15/6.66 new_esEs26(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs22(x0, x1, ty_Char) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_@0) 17.15/6.66 new_esEs4(x0, x1, app(ty_[], x2)) 17.15/6.66 new_primEqNat0(Succ(x0), Succ(x1)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_@0, x2) 17.15/6.66 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Integer) 17.15/6.66 new_esEs20(x0, x1, ty_Ordering) 17.15/6.66 new_esEs22(x0, x1, ty_Int) 17.15/6.66 new_esEs20(x0, x1, ty_@0) 17.15/6.66 new_esEs23(x0, x1, ty_Int) 17.15/6.66 new_esEs4(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs10(False, False) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 17.15/6.66 new_esEs26(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs27(x0, x1, ty_Integer) 17.15/6.66 new_primEqNat0(Zero, Zero) 17.15/6.66 new_esEs12(Nothing, Nothing, x0) 17.15/6.66 new_esEs20(x0, x1, ty_Bool) 17.15/6.66 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs22(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs4(x0, x1, ty_Ordering) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 17.15/6.66 new_esEs19(Integer(x0), Integer(x1)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 17.15/6.66 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 17.15/6.66 new_esEs25(x0, x1, ty_Float) 17.15/6.66 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs25(x0, x1, ty_Bool) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(ty_[], x3)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Ordering) 17.15/6.66 new_esEs25(x0, x1, ty_@0) 17.15/6.66 new_primPlusNat1(Succ(x0), Zero) 17.15/6.66 new_esEs12(Just(x0), Nothing, x1) 17.15/6.66 new_esEs20(x0, x1, ty_Double) 17.15/6.66 new_esEs27(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs27(x0, x1, ty_Ordering) 17.15/6.66 new_esEs21(x0, x1, ty_Integer) 17.15/6.66 new_primPlusNat0(Zero, x0) 17.15/6.66 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs24(x0, x1, ty_Integer) 17.15/6.66 new_esEs25(x0, x1, ty_Int) 17.15/6.66 new_esEs10(False, True) 17.15/6.66 new_esEs10(True, False) 17.15/6.66 new_esEs22(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 17.15/6.66 new_primEqNat0(Succ(x0), Zero) 17.15/6.66 new_esEs25(x0, x1, ty_Char) 17.15/6.66 new_esEs25(x0, x1, app(ty_[], x2)) 17.15/6.66 new_primPlusNat0(Succ(x0), x1) 17.15/6.66 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 17.15/6.66 new_asAs(False, x0) 17.15/6.66 new_esEs4(x0, x1, ty_Integer) 17.15/6.66 new_primMulNat0(Succ(x0), Succ(x1)) 17.15/6.66 new_esEs17([], :(x0, x1), x2) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs25(x0, x1, ty_Double) 17.15/6.66 17.15/6.66 We have to consider all minimal (P,Q,R)-chains. 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (10) QDPSizeChangeProof (EQUIVALENT) 17.15/6.66 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.15/6.66 17.15/6.66 From the DPs we obtained the following set of size-change graphs: 17.15/6.66 *new_foldl(xy3, :(xy40, xy41), ba, bb) -> new_foldl(new_deleteBy1(xy40, xy3, ba, bb), xy41, ba, bb) 17.15/6.66 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 17.15/6.66 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (11) 17.15/6.66 YES 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (12) 17.15/6.66 Obligation: 17.15/6.66 Q DP problem: 17.15/6.66 The TRS P consists of the following rules: 17.15/6.66 17.15/6.66 new_deleteBy0(xy25, xy26, xy27, xy28, xy29, False, ba, bb) -> new_deleteBy(@2(xy28, xy29), xy25, ba, bb) 17.15/6.66 new_deleteBy(@2(xy400, xy401), :(@2(xy300, xy301), xy31), bc, bd) -> new_deleteBy0(xy31, xy300, xy301, xy400, xy401, new_asAs(new_esEs5(xy400, xy300, bc), new_esEs4(xy401, xy301, bd)), bc, bd) 17.15/6.66 17.15/6.66 The TRS R consists of the following rules: 17.15/6.66 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs27(xy4010, xy3010, app(ty_Ratio, bha)) -> new_esEs13(xy4010, xy3010, bha) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Integer) -> new_esEs19(xy4011, xy3011) 17.15/6.66 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 17.15/6.66 new_esEs25(xy4012, xy3012, app(app(ty_Either, beb), bec)) -> new_esEs9(xy4012, xy3012, beb, bec) 17.15/6.66 new_esEs5(xy400, xy300, ty_Int) -> new_esEs11(xy400, xy300) 17.15/6.66 new_esEs4(xy401, xy301, app(ty_[], cf)) -> new_esEs17(xy401, xy301, cf) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Char) -> new_esEs7(xy4011, xy3011) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(ty_Maybe, gb), ca) -> new_esEs12(xy4010, xy3010, gb) 17.15/6.66 new_esEs26(xy4011, xy3011, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs8(xy4011, xy3011, bfa, bfb, bfc) 17.15/6.66 new_esEs24(xy4010, xy3010, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, ty_Ordering) -> new_esEs6(xy401, xy301) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Float, ca) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs22(xy4010, xy3010, app(ty_Maybe, baf)) -> new_esEs12(xy4010, xy3010, baf) 17.15/6.66 new_esEs16(Float(xy4010, xy4011), Float(xy3010, xy3011)) -> new_esEs11(new_sr(xy4010, xy3011), new_sr(xy4011, xy3010)) 17.15/6.66 new_esEs5(xy400, xy300, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs8(xy400, xy300, bce, bcf, bcg) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(ty_Maybe, bbh)) -> new_esEs12(xy4010, xy3010, bbh) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Int, ca) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Char, ca) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs10(False, True) -> False 17.15/6.66 new_esEs10(True, False) -> False 17.15/6.66 new_esEs20(xy4011, xy3011, app(ty_Ratio, df)) -> new_esEs13(xy4011, xy3011, df) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(app(ty_Either, fh), ga), ca) -> new_esEs9(xy4010, xy3010, fh, ga) 17.15/6.66 new_esEs25(xy4012, xy3012, app(ty_Ratio, bee)) -> new_esEs13(xy4012, xy3012, bee) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Ordering) -> new_esEs6(xy4012, xy3012) 17.15/6.66 new_asAs(True, xy43) -> xy43 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Bool) -> new_esEs10(xy4012, xy3012) 17.15/6.66 new_esEs27(xy4010, xy3010, app(ty_Maybe, bgh)) -> new_esEs12(xy4010, xy3010, bgh) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, app(ty_Maybe, hd)) -> new_esEs12(xy4010, xy3010, hd) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_@0) -> new_esEs15(xy4011, xy3011) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, app(ty_[], beh)) -> new_esEs17(xy4012, xy3012, beh) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Double) -> new_esEs18(xy4011, xy3011) 17.15/6.66 new_esEs27(xy4010, xy3010, app(app(ty_Either, bgf), bgg)) -> new_esEs9(xy4010, xy3010, bgf, bgg) 17.15/6.66 new_primEqInt(Pos(Succ(xy40100)), Pos(Zero)) -> False 17.15/6.66 new_primEqInt(Pos(Zero), Pos(Succ(xy30100))) -> False 17.15/6.66 new_esEs12(Nothing, Just(xy3010), cb) -> False 17.15/6.66 new_esEs12(Just(xy4010), Nothing, cb) -> False 17.15/6.66 new_esEs4(xy401, xy301, app(ty_Ratio, cc)) -> new_esEs13(xy401, xy301, cc) 17.15/6.66 new_esEs12(Nothing, Nothing, cb) -> True 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(ty_Ratio, gc), ca) -> new_esEs13(xy4010, xy3010, gc) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs27(xy4010, xy3010, app(ty_[], bhd)) -> new_esEs17(xy4010, xy3010, bhd) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_primEqNat0(Succ(xy40100), Succ(xy30100)) -> new_primEqNat0(xy40100, xy30100) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, ty_Float) -> new_esEs16(xy400, xy300) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(ty_Ratio, bca)) -> new_esEs13(xy4010, xy3010, bca) 17.15/6.66 new_esEs22(xy4010, xy3010, app(ty_Ratio, bag)) -> new_esEs13(xy4010, xy3010, bag) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Float) -> new_esEs16(xy4011, xy3011) 17.15/6.66 new_esEs13(:%(xy4010, xy4011), :%(xy3010, xy3011), cc) -> new_asAs(new_esEs24(xy4010, xy3010, cc), new_esEs23(xy4011, xy3011, cc)) 17.15/6.66 new_esEs4(xy401, xy301, app(app(ty_@2, cd), ce)) -> new_esEs14(xy401, xy301, cd, ce) 17.15/6.66 new_primMulNat0(Zero, Zero) -> Zero 17.15/6.66 new_esEs5(xy400, xy300, app(ty_Maybe, bdb)) -> new_esEs12(xy400, xy300, bdb) 17.15/6.66 new_esEs5(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 17.15/6.66 new_esEs21(xy4010, xy3010, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs8(xy4010, xy3010, eb, ec, ed) 17.15/6.66 new_esEs6(EQ, GT) -> False 17.15/6.66 new_esEs6(GT, EQ) -> False 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(app(app(ty_@3, fd), ff), fg), ca) -> new_esEs8(xy4010, xy3010, fd, ff, fg) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs17(:(xy4010, xy4011), :(xy3010, xy3011), cf) -> new_asAs(new_esEs22(xy4010, xy3010, cf), new_esEs17(xy4011, xy3011, cf)) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, app(ty_Maybe, cb)) -> new_esEs12(xy401, xy301, cb) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Char) -> new_esEs7(xy4011, xy3011) 17.15/6.66 new_primEqNat0(Succ(xy40100), Zero) -> False 17.15/6.66 new_primEqNat0(Zero, Succ(xy30100)) -> False 17.15/6.66 new_esEs23(xy4011, xy3011, ty_Integer) -> new_esEs19(xy4011, xy3011) 17.15/6.66 new_esEs20(xy4011, xy3011, app(ty_[], ea)) -> new_esEs17(xy4011, xy3011, ea) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_@0) -> new_esEs15(xy4011, xy3011) 17.15/6.66 new_esEs24(xy4010, xy3010, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs9(Left(xy4010), Right(xy3010), bh, ca) -> False 17.15/6.66 new_esEs9(Right(xy4010), Left(xy3010), bh, ca) -> False 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs8(xy4010, xy3010, bbc, bbd, bbe) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(app(ty_Either, bbf), bbg)) -> new_esEs9(xy4010, xy3010, bbf, bbg) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs8(xy4010, xy3010, gg, gh, ha) 17.15/6.66 new_esEs22(xy4010, xy3010, app(app(ty_Either, bad), bae)) -> new_esEs9(xy4010, xy3010, bad, bae) 17.15/6.66 new_esEs22(xy4010, xy3010, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs8(xy4010, xy3010, baa, bab, bac) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, app(ty_Ratio, bdc)) -> new_esEs13(xy400, xy300, bdc) 17.15/6.66 new_esEs26(xy4011, xy3011, app(app(ty_@2, bfh), bga)) -> new_esEs14(xy4011, xy3011, bfh, bga) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Float) -> new_esEs16(xy4012, xy3012) 17.15/6.66 new_esEs23(xy4011, xy3011, ty_Int) -> new_esEs11(xy4011, xy3011) 17.15/6.66 new_esEs15(@0, @0) -> True 17.15/6.66 new_esEs21(xy4010, xy3010, app(ty_[], fc)) -> new_esEs17(xy4010, xy3010, fc) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Bool) -> new_esEs10(xy4011, xy3011) 17.15/6.66 new_primEqInt(Neg(Succ(xy40100)), Neg(Zero)) -> False 17.15/6.66 new_primEqInt(Neg(Zero), Neg(Succ(xy30100))) -> False 17.15/6.66 new_esEs5(xy400, xy300, ty_Double) -> new_esEs18(xy400, xy300) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Bool) -> new_esEs10(xy4011, xy3011) 17.15/6.66 new_esEs27(xy4010, xy3010, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs8(xy4010, xy3010, bgc, bgd, bge) 17.15/6.66 new_primEqInt(Pos(Succ(xy40100)), Pos(Succ(xy30100))) -> new_primEqNat0(xy40100, xy30100) 17.15/6.66 new_esEs4(xy401, xy301, app(app(ty_Either, bh), ca)) -> new_esEs9(xy401, xy301, bh, ca) 17.15/6.66 new_esEs6(LT, LT) -> True 17.15/6.66 new_esEs6(LT, GT) -> False 17.15/6.66 new_esEs6(GT, LT) -> False 17.15/6.66 new_sr(Pos(xy40100), Neg(xy30110)) -> Neg(new_primMulNat0(xy40100, xy30110)) 17.15/6.66 new_sr(Neg(xy40100), Pos(xy30110)) -> Neg(new_primMulNat0(xy40100, xy30110)) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_primPlusNat1(Succ(xy4400), Succ(xy3011000)) -> Succ(Succ(new_primPlusNat1(xy4400, xy3011000))) 17.15/6.66 new_primEqInt(Pos(Succ(xy40100)), Neg(xy3010)) -> False 17.15/6.66 new_primEqInt(Neg(Succ(xy40100)), Pos(xy3010)) -> False 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, app(app(ty_Either, hb), hc)) -> new_esEs9(xy4010, xy3010, hb, hc) 17.15/6.66 new_esEs21(xy4010, xy3010, app(app(ty_@2, fa), fb)) -> new_esEs14(xy4010, xy3010, fa, fb) 17.15/6.66 new_esEs26(xy4011, xy3011, app(ty_[], bgb)) -> new_esEs17(xy4011, xy3011, bgb) 17.15/6.66 new_esEs8(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), be, bf, bg) -> new_asAs(new_esEs27(xy4010, xy3010, be), new_asAs(new_esEs26(xy4011, xy3011, bf), new_esEs25(xy4012, xy3012, bg))) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Int) -> new_esEs11(xy4012, xy3012) 17.15/6.66 new_esEs25(xy4012, xy3012, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs8(xy4012, xy3012, bdg, bdh, bea) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs21(xy4010, xy3010, app(ty_Maybe, eg)) -> new_esEs12(xy4010, xy3010, eg) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(app(ty_@2, bcb), bcc)) -> new_esEs14(xy4010, xy3010, bcb, bcc) 17.15/6.66 new_esEs20(xy4011, xy3011, app(app(ty_@2, dg), dh)) -> new_esEs14(xy4011, xy3011, dg, dh) 17.15/6.66 new_sr(Neg(xy40100), Neg(xy30110)) -> Pos(new_primMulNat0(xy40100, xy30110)) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs14(@2(xy4010, xy4011), @2(xy3010, xy3011), cd, ce) -> new_asAs(new_esEs21(xy4010, xy3010, cd), new_esEs20(xy4011, xy3011, ce)) 17.15/6.66 new_esEs4(xy401, xy301, ty_Int) -> new_esEs11(xy401, xy301) 17.15/6.66 new_esEs4(xy401, xy301, app(app(app(ty_@3, be), bf), bg)) -> new_esEs8(xy401, xy301, be, bf, bg) 17.15/6.66 new_esEs17([], [], cf) -> True 17.15/6.66 new_esEs26(xy4011, xy3011, app(app(ty_Either, bfd), bfe)) -> new_esEs9(xy4011, xy3011, bfd, bfe) 17.15/6.66 new_esEs27(xy4010, xy3010, app(app(ty_@2, bhb), bhc)) -> new_esEs14(xy4010, xy3010, bhb, bhc) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Char) -> new_esEs7(xy4012, xy3012) 17.15/6.66 new_primEqInt(Pos(Zero), Neg(Succ(xy30100))) -> False 17.15/6.66 new_primEqInt(Neg(Zero), Pos(Succ(xy30100))) -> False 17.15/6.66 new_esEs5(xy400, xy300, app(app(ty_Either, bch), bda)) -> new_esEs9(xy400, xy300, bch, bda) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Bool, ca) -> new_esEs10(xy4010, xy3010) 17.15/6.66 new_esEs7(Char(xy4010), Char(xy3010)) -> new_primEqNat0(xy4010, xy3010) 17.15/6.66 new_esEs10(False, False) -> True 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Integer, ca) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, ty_@0) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, ty_Char) -> new_esEs7(xy401, xy301) 17.15/6.66 new_primEqInt(Neg(Succ(xy40100)), Neg(Succ(xy30100))) -> new_primEqNat0(xy40100, xy30100) 17.15/6.66 new_esEs10(True, True) -> True 17.15/6.66 new_esEs5(xy400, xy300, ty_Ordering) -> new_esEs6(xy400, xy300) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(ty_[], gf), ca) -> new_esEs17(xy4010, xy3010, gf) 17.15/6.66 new_esEs22(xy4010, xy3010, app(app(ty_@2, bah), bba)) -> new_esEs14(xy4010, xy3010, bah, bba) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Float) -> new_esEs16(xy4011, xy3011) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Ordering) -> new_esEs6(xy4011, xy3011) 17.15/6.66 new_primPlusNat0(Succ(xy440), xy301100) -> Succ(Succ(new_primPlusNat1(xy440, xy301100))) 17.15/6.66 new_esEs4(xy401, xy301, ty_@0) -> new_esEs15(xy401, xy301) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_@0) -> new_esEs15(xy4012, xy3012) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), app(app(ty_@2, gd), ge), ca) -> new_esEs14(xy4010, xy3010, gd, ge) 17.15/6.66 new_esEs25(xy4012, xy3012, app(app(ty_@2, bef), beg)) -> new_esEs14(xy4012, xy3012, bef, beg) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Double) -> new_esEs18(xy4012, xy3012) 17.15/6.66 new_esEs4(xy401, xy301, ty_Integer) -> new_esEs19(xy401, xy301) 17.15/6.66 new_primPlusNat1(Zero, Zero) -> Zero 17.15/6.66 new_primMulNat0(Succ(xy401000), Zero) -> Zero 17.15/6.66 new_primMulNat0(Zero, Succ(xy301100)) -> Zero 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_sr(Pos(xy40100), Pos(xy30110)) -> Pos(new_primMulNat0(xy40100, xy30110)) 17.15/6.66 new_esEs22(xy4010, xy3010, app(ty_[], bbb)) -> new_esEs17(xy4010, xy3010, bbb) 17.15/6.66 new_primPlusNat0(Zero, xy301100) -> Succ(xy301100) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Double, ca) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Ordering) -> new_esEs6(xy4011, xy3011) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, ty_Double) -> new_esEs18(xy401, xy301) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_@0, ca) -> new_esEs15(xy4010, xy3010) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, app(ty_[], hh)) -> new_esEs17(xy4010, xy3010, hh) 17.15/6.66 new_esEs20(xy4011, xy3011, app(app(app(ty_@3, cg), da), db)) -> new_esEs8(xy4011, xy3011, cg, da, db) 17.15/6.66 new_esEs25(xy4012, xy3012, app(ty_Maybe, bed)) -> new_esEs12(xy4012, xy3012, bed) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, app(app(ty_@2, hf), hg)) -> new_esEs14(xy4010, xy3010, hf, hg) 17.15/6.66 new_esEs20(xy4011, xy3011, ty_Int) -> new_esEs11(xy4011, xy3011) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, app(ty_Ratio, he)) -> new_esEs13(xy4010, xy3010, he) 17.15/6.66 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), app(ty_[], bcd)) -> new_esEs17(xy4010, xy3010, bcd) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Double) -> new_esEs18(xy4011, xy3011) 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs6(EQ, EQ) -> True 17.15/6.66 new_primMulNat0(Succ(xy401000), Succ(xy301100)) -> new_primPlusNat0(new_primMulNat0(xy401000, Succ(xy301100)), xy301100) 17.15/6.66 new_esEs18(Double(xy4010, xy4011), Double(xy3010, xy3011)) -> new_esEs11(new_sr(xy4010, xy3011), new_sr(xy4011, xy3010)) 17.15/6.66 new_esEs21(xy4010, xy3010, app(app(ty_Either, ee), ef)) -> new_esEs9(xy4010, xy3010, ee, ef) 17.15/6.66 new_esEs9(Left(xy4010), Left(xy3010), ty_Ordering, ca) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs25(xy4012, xy3012, ty_Integer) -> new_esEs19(xy4012, xy3012) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs6(GT, GT) -> True 17.15/6.66 new_esEs12(Just(xy4010), Just(xy3010), ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs26(xy4011, xy3011, app(ty_Maybe, bff)) -> new_esEs12(xy4011, xy3011, bff) 17.15/6.66 new_primPlusNat1(Succ(xy4400), Zero) -> Succ(xy4400) 17.15/6.66 new_primPlusNat1(Zero, Succ(xy3011000)) -> Succ(xy3011000) 17.15/6.66 new_esEs5(xy400, xy300, app(app(ty_@2, bdd), bde)) -> new_esEs14(xy400, xy300, bdd, bde) 17.15/6.66 new_esEs4(xy401, xy301, ty_Float) -> new_esEs16(xy401, xy301) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Int) -> new_esEs11(xy4010, xy3010) 17.15/6.66 new_esEs4(xy401, xy301, ty_Bool) -> new_esEs10(xy401, xy301) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, ty_@0) -> new_esEs15(xy400, xy300) 17.15/6.66 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 17.15/6.66 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 17.15/6.66 new_primEqNat0(Zero, Zero) -> True 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, ty_Bool) -> new_esEs10(xy400, xy300) 17.15/6.66 new_esEs21(xy4010, xy3010, app(ty_Ratio, eh)) -> new_esEs13(xy4010, xy3010, eh) 17.15/6.66 new_esEs19(Integer(xy4010), Integer(xy3010)) -> new_primEqInt(xy4010, xy3010) 17.15/6.66 new_esEs17(:(xy4010, xy4011), [], cf) -> False 17.15/6.66 new_esEs17([], :(xy3010, xy3011), cf) -> False 17.15/6.66 new_asAs(False, xy43) -> False 17.15/6.66 new_esEs26(xy4011, xy3011, app(ty_Ratio, bfg)) -> new_esEs13(xy4011, xy3011, bfg) 17.15/6.66 new_esEs6(LT, EQ) -> False 17.15/6.66 new_esEs6(EQ, LT) -> False 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Int) -> new_esEs11(xy4011, xy3011) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Integer) -> new_esEs19(xy4010, xy3010) 17.15/6.66 new_esEs5(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 17.15/6.66 new_esEs5(xy400, xy300, app(ty_[], bdf)) -> new_esEs17(xy400, xy300, bdf) 17.15/6.66 new_esEs22(xy4010, xy3010, ty_Float) -> new_esEs16(xy4010, xy3010) 17.15/6.66 new_esEs26(xy4011, xy3011, ty_Integer) -> new_esEs19(xy4011, xy3011) 17.15/6.66 new_esEs27(xy4010, xy3010, ty_Ordering) -> new_esEs6(xy4010, xy3010) 17.15/6.66 new_esEs21(xy4010, xy3010, ty_Double) -> new_esEs18(xy4010, xy3010) 17.15/6.66 new_esEs20(xy4011, xy3011, app(ty_Maybe, de)) -> new_esEs12(xy4011, xy3011, de) 17.15/6.66 new_esEs11(xy401, xy301) -> new_primEqInt(xy401, xy301) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, ty_Char) -> new_esEs7(xy4010, xy3010) 17.15/6.66 new_esEs20(xy4011, xy3011, app(app(ty_Either, dc), dd)) -> new_esEs9(xy4011, xy3011, dc, dd) 17.15/6.66 new_esEs9(Right(xy4010), Right(xy3010), bh, ty_Bool) -> new_esEs10(xy4010, xy3010) 17.15/6.66 17.15/6.66 The set Q consists of the following terms: 17.15/6.66 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 17.15/6.66 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 17.15/6.66 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs14(@2(x0, x1), @2(x2, x3), x4, x5) 17.15/6.66 new_primEqNat0(Zero, Succ(x0)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(ty_[], x2), x3) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Char) 17.15/6.66 new_esEs22(x0, x1, ty_Bool) 17.15/6.66 new_esEs27(x0, x1, ty_@0) 17.15/6.66 new_asAs(True, x0) 17.15/6.66 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(ty_[], x3)) 17.15/6.66 new_esEs26(x0, x1, app(ty_[], x2)) 17.15/6.66 new_primMulNat0(Zero, Zero) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Int) 17.15/6.66 new_esEs5(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_primPlusNat1(Zero, Zero) 17.15/6.66 new_esEs5(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Bool) 17.15/6.66 new_esEs26(x0, x1, ty_Integer) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Char, x2) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_@0) 17.15/6.66 new_esEs23(x0, x1, ty_Integer) 17.15/6.66 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs17(:(x0, x1), :(x2, x3), x4) 17.15/6.66 new_esEs26(x0, x1, ty_Bool) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 17.15/6.66 new_esEs21(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_primEqInt(Pos(Zero), Pos(Zero)) 17.15/6.66 new_esEs5(x0, x1, ty_@0) 17.15/6.66 new_esEs27(x0, x1, ty_Bool) 17.15/6.66 new_esEs16(Float(x0, x1), Float(x2, x3)) 17.15/6.66 new_esEs26(x0, x1, ty_@0) 17.15/6.66 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 17.15/6.66 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 17.15/6.66 new_esEs22(x0, x1, ty_@0) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 17.15/6.66 new_esEs20(x0, x1, ty_Integer) 17.15/6.66 new_esEs25(x0, x1, ty_Integer) 17.15/6.66 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs4(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs22(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs4(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs6(EQ, EQ) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Float) 17.15/6.66 new_esEs17([], [], x0) 17.15/6.66 new_primEqInt(Neg(Zero), Neg(Zero)) 17.15/6.66 new_esEs27(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs11(x0, x1) 17.15/6.66 new_esEs5(x0, x1, ty_Integer) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 17.15/6.66 new_esEs21(x0, x1, ty_Bool) 17.15/6.66 new_esEs4(x0, x1, ty_Bool) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 17.15/6.66 new_esEs18(Double(x0, x1), Double(x2, x3)) 17.15/6.66 new_esEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 17.15/6.66 new_esEs6(EQ, GT) 17.15/6.66 new_esEs6(GT, EQ) 17.15/6.66 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs4(x0, x1, ty_Float) 17.15/6.66 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_@0) 17.15/6.66 new_esEs4(x0, x1, ty_Double) 17.15/6.66 new_esEs27(x0, x1, ty_Char) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 17.15/6.66 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Int) 17.15/6.66 new_esEs4(x0, x1, ty_@0) 17.15/6.66 new_primPlusNat1(Succ(x0), Succ(x1)) 17.15/6.66 new_esEs20(x0, x1, ty_Float) 17.15/6.66 new_esEs10(True, True) 17.15/6.66 new_esEs21(x0, x1, ty_Char) 17.15/6.66 new_esEs25(x0, x1, ty_Ordering) 17.15/6.66 new_esEs6(LT, LT) 17.15/6.66 new_primMulNat0(Succ(x0), Zero) 17.15/6.66 new_esEs17(:(x0, x1), [], x2) 17.15/6.66 new_esEs22(x0, x1, ty_Integer) 17.15/6.66 new_primEqInt(Pos(Zero), Neg(Zero)) 17.15/6.66 new_primEqInt(Neg(Zero), Pos(Zero)) 17.15/6.66 new_esEs24(x0, x1, ty_Int) 17.15/6.66 new_sr(Neg(x0), Neg(x1)) 17.15/6.66 new_esEs26(x0, x1, ty_Float) 17.15/6.66 new_esEs4(x0, x1, ty_Int) 17.15/6.66 new_esEs25(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs5(x0, x1, ty_Char) 17.15/6.66 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs21(x0, x1, ty_@0) 17.15/6.66 new_esEs7(Char(x0), Char(x1)) 17.15/6.66 new_esEs6(LT, GT) 17.15/6.66 new_esEs6(GT, LT) 17.15/6.66 new_esEs20(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs25(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Bool) 17.15/6.66 new_esEs21(x0, x1, ty_Float) 17.15/6.66 new_esEs6(LT, EQ) 17.15/6.66 new_esEs6(EQ, LT) 17.15/6.66 new_esEs5(x0, x1, ty_Bool) 17.15/6.66 new_esEs5(x0, x1, ty_Double) 17.15/6.66 new_esEs6(GT, GT) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Double) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Ordering, x2) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Char) 17.15/6.66 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Double) 17.15/6.66 new_esEs27(x0, x1, ty_Int) 17.15/6.66 new_esEs22(x0, x1, ty_Ordering) 17.15/6.66 new_primPlusNat1(Zero, Succ(x0)) 17.15/6.66 new_esEs26(x0, x1, ty_Int) 17.15/6.66 new_esEs5(x0, x1, ty_Ordering) 17.15/6.66 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 17.15/6.66 new_esEs4(x0, x1, ty_Char) 17.15/6.66 new_esEs21(x0, x1, ty_Ordering) 17.15/6.66 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs15(@0, @0) 17.15/6.66 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs22(x0, x1, ty_Double) 17.15/6.66 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 17.15/6.66 new_sr(Pos(x0), Pos(x1)) 17.15/6.66 new_esEs27(x0, x1, ty_Double) 17.15/6.66 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 17.15/6.66 new_esEs21(x0, x1, ty_Int) 17.15/6.66 new_esEs21(x0, x1, ty_Double) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 17.15/6.66 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Integer, x2) 17.15/6.66 new_esEs20(x0, x1, ty_Char) 17.15/6.66 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 17.15/6.66 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Ordering) 17.15/6.66 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs27(x0, x1, ty_Float) 17.15/6.66 new_esEs5(x0, x1, ty_Int) 17.15/6.66 new_esEs22(x0, x1, ty_Float) 17.15/6.66 new_esEs4(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs26(x0, x1, ty_Double) 17.15/6.66 new_esEs22(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs20(x0, x1, ty_Int) 17.15/6.66 new_esEs26(x0, x1, ty_Char) 17.15/6.66 new_esEs9(Left(x0), Right(x1), x2, x3) 17.15/6.66 new_esEs9(Right(x0), Left(x1), x2, x3) 17.15/6.66 new_esEs27(x0, x1, app(ty_[], x2)) 17.15/6.66 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 17.15/6.66 new_sr(Pos(x0), Neg(x1)) 17.15/6.66 new_sr(Neg(x0), Pos(x1)) 17.15/6.66 new_esEs26(x0, x1, ty_Ordering) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Float) 17.15/6.66 new_primMulNat0(Zero, Succ(x0)) 17.15/6.66 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 17.15/6.66 new_esEs5(x0, x1, ty_Float) 17.15/6.66 new_esEs26(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs22(x0, x1, app(ty_[], x2)) 17.15/6.66 new_esEs22(x0, x1, ty_Char) 17.15/6.66 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.15/6.66 new_esEs21(x0, x1, app(ty_[], x2)) 17.15/6.66 new_primEqNat0(Succ(x0), Succ(x1)) 17.15/6.66 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Integer) 17.15/6.66 new_esEs20(x0, x1, ty_Ordering) 17.15/6.66 new_esEs22(x0, x1, ty_Int) 17.15/6.66 new_esEs21(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs20(x0, x1, ty_@0) 17.15/6.66 new_esEs23(x0, x1, ty_Int) 17.15/6.66 new_esEs12(Nothing, Just(x0), x1) 17.15/6.66 new_esEs10(False, False) 17.15/6.66 new_esEs26(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs27(x0, x1, ty_Integer) 17.15/6.66 new_primEqNat0(Zero, Zero) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Double, x2) 17.15/6.66 new_esEs20(x0, x1, ty_Bool) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Float, x2) 17.15/6.66 new_esEs4(x0, x1, ty_Ordering) 17.15/6.66 new_esEs19(Integer(x0), Integer(x1)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Bool, x2) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, ty_Integer) 17.15/6.66 new_esEs25(x0, x1, ty_Float) 17.15/6.66 new_esEs25(x0, x1, ty_Bool) 17.15/6.66 new_esEs20(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs12(Just(x0), Just(x1), ty_Ordering) 17.15/6.66 new_esEs25(x0, x1, ty_@0) 17.15/6.66 new_primPlusNat1(Succ(x0), Zero) 17.15/6.66 new_esEs20(x0, x1, ty_Double) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 17.15/6.66 new_esEs27(x0, x1, app(ty_Ratio, x2)) 17.15/6.66 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_Int, x2) 17.15/6.66 new_esEs27(x0, x1, ty_Ordering) 17.15/6.66 new_esEs9(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 17.15/6.66 new_esEs12(Just(x0), Nothing, x1) 17.15/6.66 new_esEs21(x0, x1, ty_Integer) 17.15/6.66 new_primPlusNat0(Zero, x0) 17.15/6.66 new_esEs5(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 new_esEs24(x0, x1, ty_Integer) 17.15/6.66 new_esEs25(x0, x1, ty_Int) 17.15/6.66 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 17.15/6.66 new_esEs12(Nothing, Nothing, x0) 17.15/6.66 new_esEs10(False, True) 17.15/6.66 new_esEs10(True, False) 17.15/6.66 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 17.15/6.66 new_esEs17([], :(x0, x1), x2) 17.15/6.66 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 17.15/6.66 new_esEs9(Left(x0), Left(x1), ty_@0, x2) 17.15/6.66 new_primEqNat0(Succ(x0), Zero) 17.15/6.66 new_esEs9(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 17.15/6.66 new_esEs25(x0, x1, ty_Char) 17.15/6.66 new_esEs25(x0, x1, app(ty_[], x2)) 17.15/6.66 new_primPlusNat0(Succ(x0), x1) 17.15/6.66 new_asAs(False, x0) 17.15/6.66 new_esEs4(x0, x1, ty_Integer) 17.15/6.66 new_primMulNat0(Succ(x0), Succ(x1)) 17.15/6.66 new_esEs25(x0, x1, ty_Double) 17.15/6.66 new_esEs20(x0, x1, app(ty_Maybe, x2)) 17.15/6.66 17.15/6.66 We have to consider all minimal (P,Q,R)-chains. 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (13) QDPSizeChangeProof (EQUIVALENT) 17.15/6.66 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.15/6.66 17.15/6.66 From the DPs we obtained the following set of size-change graphs: 17.15/6.66 *new_deleteBy(@2(xy400, xy401), :(@2(xy300, xy301), xy31), bc, bd) -> new_deleteBy0(xy31, xy300, xy301, xy400, xy401, new_asAs(new_esEs5(xy400, xy300, bc), new_esEs4(xy401, xy301, bd)), bc, bd) 17.15/6.66 The graph contains the following edges 2 > 1, 2 > 2, 2 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 17.15/6.66 17.15/6.66 17.15/6.66 *new_deleteBy0(xy25, xy26, xy27, xy28, xy29, False, ba, bb) -> new_deleteBy(@2(xy28, xy29), xy25, ba, bb) 17.15/6.66 The graph contains the following edges 1 >= 2, 7 >= 3, 8 >= 4 17.15/6.66 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (14) 17.15/6.66 YES 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (15) 17.15/6.66 Obligation: 17.15/6.66 Q DP problem: 17.15/6.66 The TRS P consists of the following rules: 17.15/6.66 17.15/6.66 new_primMulNat(Succ(xy401000), Succ(xy301100)) -> new_primMulNat(xy401000, Succ(xy301100)) 17.15/6.66 17.15/6.66 R is empty. 17.15/6.66 Q is empty. 17.15/6.66 We have to consider all minimal (P,Q,R)-chains. 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (16) QDPSizeChangeProof (EQUIVALENT) 17.15/6.66 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.15/6.66 17.15/6.66 From the DPs we obtained the following set of size-change graphs: 17.15/6.66 *new_primMulNat(Succ(xy401000), Succ(xy301100)) -> new_primMulNat(xy401000, Succ(xy301100)) 17.15/6.66 The graph contains the following edges 1 > 1, 2 >= 2 17.15/6.66 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (17) 17.15/6.66 YES 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (18) 17.15/6.66 Obligation: 17.15/6.66 Q DP problem: 17.15/6.66 The TRS P consists of the following rules: 17.15/6.66 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(app(ty_@2, dd), de), cg) -> new_esEs2(xy4011, xy3011, dd, de) 17.15/6.66 new_esEs0(Left(xy4010), Left(xy3010), app(ty_Maybe, fg), fc) -> new_esEs1(xy4010, xy3010, fg) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(app(ty_@2, ca), cb)) -> new_esEs2(xy4012, xy3012, ca, cb) 17.15/6.66 new_esEs1(Just(xy4010), Just(xy3010), app(app(ty_Either, hh), baa)) -> new_esEs0(xy4010, xy3010, hh, baa) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(app(app(ty_@3, bc), bd), be)) -> new_esEs(xy4012, xy3012, bc, bd, be) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(ty_[], cc)) -> new_esEs3(xy4012, xy3012, cc) 17.15/6.66 new_esEs0(Right(xy4010), Right(xy3010), gc, app(ty_[], hd)) -> new_esEs3(xy4010, xy3010, hd) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(xy4011, xy3011, bbe, bbf) 17.15/6.66 new_esEs0(Left(xy4010), Left(xy3010), app(app(ty_@2, fh), ga), fc) -> new_esEs2(xy4010, xy3010, fh, ga) 17.15/6.66 new_esEs0(Right(xy4010), Right(xy3010), gc, app(app(ty_Either, gg), gh)) -> new_esEs0(xy4010, xy3010, gg, gh) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(app(app(ty_@3, bbh), bca), bcb), bcc) -> new_esEs(xy4010, xy3010, bbh, bca, bcb) 17.15/6.66 new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(ty_Maybe, bdh)) -> new_esEs1(xy4010, xy3010, bdh) 17.15/6.66 new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(ty_[], bec)) -> new_esEs3(xy4010, xy3010, bec) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(ty_[], df), cg) -> new_esEs3(xy4011, xy3011, df) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(ty_Maybe, ed), bb, cg) -> new_esEs1(xy4010, xy3010, ed) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(ty_Maybe, dc), cg) -> new_esEs1(xy4011, xy3011, dc) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(ty_[], eg), bb, cg) -> new_esEs3(xy4010, xy3010, eg) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(app(ty_@2, bcg), bch), bcc) -> new_esEs2(xy4010, xy3010, bcg, bch) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(app(app(ty_@3, cd), ce), cf), cg) -> new_esEs(xy4011, xy3011, cd, ce, cf) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(app(ty_@2, ee), ef), bb, cg) -> new_esEs2(xy4010, xy3010, ee, ef) 17.15/6.66 new_esEs1(Just(xy4010), Just(xy3010), app(app(app(ty_@3, he), hf), hg)) -> new_esEs(xy4010, xy3010, he, hf, hg) 17.15/6.66 new_esEs0(Left(xy4010), Left(xy3010), app(ty_[], gb), fc) -> new_esEs3(xy4010, xy3010, gb) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(app(ty_Either, eb), ec), bb, cg) -> new_esEs0(xy4010, xy3010, eb, ec) 17.15/6.66 new_esEs0(Left(xy4010), Left(xy3010), app(app(ty_Either, fd), ff), fc) -> new_esEs0(xy4010, xy3010, fd, ff) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs(xy4011, xy3011, bag, bah, bba) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(app(ty_Either, bcd), bce), bcc) -> new_esEs0(xy4010, xy3010, bcd, bce) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(app(ty_Either, da), db), cg) -> new_esEs0(xy4011, xy3011, da, db) 17.15/6.66 new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), bdb) -> new_esEs3(xy4011, xy3011, bdb) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(app(ty_Either, bbb), bbc)) -> new_esEs0(xy4011, xy3011, bbb, bbc) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(ty_Maybe, bh)) -> new_esEs1(xy4012, xy3012, bh) 17.15/6.66 new_esEs1(Just(xy4010), Just(xy3010), app(app(ty_@2, bac), bad)) -> new_esEs2(xy4010, xy3010, bac, bad) 17.15/6.66 new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(xy4010, xy3010, bdc, bdd, bde) 17.15/6.66 new_esEs0(Right(xy4010), Right(xy3010), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs(xy4010, xy3010, gd, ge, gf) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(app(app(ty_@3, dg), dh), ea), bb, cg) -> new_esEs(xy4010, xy3010, dg, dh, ea) 17.15/6.66 new_esEs0(Right(xy4010), Right(xy3010), gc, app(ty_Maybe, ha)) -> new_esEs1(xy4010, xy3010, ha) 17.15/6.66 new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(app(ty_@2, bea), beb)) -> new_esEs2(xy4010, xy3010, bea, beb) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(ty_Maybe, bbd)) -> new_esEs1(xy4011, xy3011, bbd) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(ty_[], bbg)) -> new_esEs3(xy4011, xy3011, bbg) 17.15/6.66 new_esEs1(Just(xy4010), Just(xy3010), app(ty_[], bae)) -> new_esEs3(xy4010, xy3010, bae) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(ty_Maybe, bcf), bcc) -> new_esEs1(xy4010, xy3010, bcf) 17.15/6.66 new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(ty_[], bda), bcc) -> new_esEs3(xy4010, xy3010, bda) 17.15/6.66 new_esEs1(Just(xy4010), Just(xy3010), app(ty_Maybe, bab)) -> new_esEs1(xy4010, xy3010, bab) 17.15/6.66 new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(app(ty_Either, bf), bg)) -> new_esEs0(xy4012, xy3012, bf, bg) 17.15/6.66 new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(app(ty_Either, bdf), bdg)) -> new_esEs0(xy4010, xy3010, bdf, bdg) 17.15/6.66 new_esEs0(Left(xy4010), Left(xy3010), app(app(app(ty_@3, eh), fa), fb), fc) -> new_esEs(xy4010, xy3010, eh, fa, fb) 17.15/6.66 new_esEs0(Right(xy4010), Right(xy3010), gc, app(app(ty_@2, hb), hc)) -> new_esEs2(xy4010, xy3010, hb, hc) 17.15/6.66 17.15/6.66 R is empty. 17.15/6.66 Q is empty. 17.15/6.66 We have to consider all minimal (P,Q,R)-chains. 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (19) QDPSizeChangeProof (EQUIVALENT) 17.15/6.66 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.15/6.66 17.15/6.66 From the DPs we obtained the following set of size-change graphs: 17.15/6.66 *new_esEs1(Just(xy4010), Just(xy3010), app(app(app(ty_@3, he), hf), hg)) -> new_esEs(xy4010, xy3010, he, hf, hg) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs1(Just(xy4010), Just(xy3010), app(app(ty_Either, hh), baa)) -> new_esEs0(xy4010, xy3010, hh, baa) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs1(Just(xy4010), Just(xy3010), app(ty_Maybe, bab)) -> new_esEs1(xy4010, xy3010, bab) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(xy4010, xy3010, bdc, bdd, bde) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(app(ty_Either, bdf), bdg)) -> new_esEs0(xy4010, xy3010, bdf, bdg) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(ty_Maybe, bdh)) -> new_esEs1(xy4010, xy3010, bdh) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs1(Just(xy4010), Just(xy3010), app(app(ty_@2, bac), bad)) -> new_esEs2(xy4010, xy3010, bac, bad) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs1(Just(xy4010), Just(xy3010), app(ty_[], bae)) -> new_esEs3(xy4010, xy3010, bae) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(app(ty_@2, bea), beb)) -> new_esEs2(xy4010, xy3010, bea, beb) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(app(app(ty_@3, bbh), bca), bcb), bcc) -> new_esEs(xy4010, xy3010, bbh, bca, bcb) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs(xy4011, xy3011, bag, bah, bba) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(app(ty_Either, bcd), bce), bcc) -> new_esEs0(xy4010, xy3010, bcd, bce) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(app(ty_Either, bbb), bbc)) -> new_esEs0(xy4011, xy3011, bbb, bbc) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(ty_Maybe, bbd)) -> new_esEs1(xy4011, xy3011, bbd) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(ty_Maybe, bcf), bcc) -> new_esEs1(xy4010, xy3010, bcf) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(xy4011, xy3011, bbe, bbf) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(app(ty_@2, bcg), bch), bcc) -> new_esEs2(xy4010, xy3010, bcg, bch) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), baf, app(ty_[], bbg)) -> new_esEs3(xy4011, xy3011, bbg) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs2(@2(xy4010, xy4011), @2(xy3010, xy3011), app(ty_[], bda), bcc) -> new_esEs3(xy4010, xy3010, bda) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Right(xy4010), Right(xy3010), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs(xy4010, xy3010, gd, ge, gf) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Left(xy4010), Left(xy3010), app(app(app(ty_@3, eh), fa), fb), fc) -> new_esEs(xy4010, xy3010, eh, fa, fb) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(app(app(ty_@3, bc), bd), be)) -> new_esEs(xy4012, xy3012, bc, bd, be) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(app(app(ty_@3, cd), ce), cf), cg) -> new_esEs(xy4011, xy3011, cd, ce, cf) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(app(app(ty_@3, dg), dh), ea), bb, cg) -> new_esEs(xy4010, xy3010, dg, dh, ea) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Right(xy4010), Right(xy3010), gc, app(app(ty_Either, gg), gh)) -> new_esEs0(xy4010, xy3010, gg, gh) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Left(xy4010), Left(xy3010), app(app(ty_Either, fd), ff), fc) -> new_esEs0(xy4010, xy3010, fd, ff) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(app(ty_Either, eb), ec), bb, cg) -> new_esEs0(xy4010, xy3010, eb, ec) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(app(ty_Either, da), db), cg) -> new_esEs0(xy4011, xy3011, da, db) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(app(ty_Either, bf), bg)) -> new_esEs0(xy4012, xy3012, bf, bg) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Left(xy4010), Left(xy3010), app(ty_Maybe, fg), fc) -> new_esEs1(xy4010, xy3010, fg) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Right(xy4010), Right(xy3010), gc, app(ty_Maybe, ha)) -> new_esEs1(xy4010, xy3010, ha) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Left(xy4010), Left(xy3010), app(app(ty_@2, fh), ga), fc) -> new_esEs2(xy4010, xy3010, fh, ga) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Right(xy4010), Right(xy3010), gc, app(app(ty_@2, hb), hc)) -> new_esEs2(xy4010, xy3010, hb, hc) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Right(xy4010), Right(xy3010), gc, app(ty_[], hd)) -> new_esEs3(xy4010, xy3010, hd) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs0(Left(xy4010), Left(xy3010), app(ty_[], gb), fc) -> new_esEs3(xy4010, xy3010, gb) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(ty_Maybe, ed), bb, cg) -> new_esEs1(xy4010, xy3010, ed) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(ty_Maybe, dc), cg) -> new_esEs1(xy4011, xy3011, dc) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(ty_Maybe, bh)) -> new_esEs1(xy4012, xy3012, bh) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(app(ty_@2, dd), de), cg) -> new_esEs2(xy4011, xy3011, dd, de) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(app(ty_@2, ca), cb)) -> new_esEs2(xy4012, xy3012, ca, cb) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(app(ty_@2, ee), ef), bb, cg) -> new_esEs2(xy4010, xy3010, ee, ef) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, bb, app(ty_[], cc)) -> new_esEs3(xy4012, xy3012, cc) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), ba, app(ty_[], df), cg) -> new_esEs3(xy4011, xy3011, df) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs(@3(xy4010, xy4011, xy4012), @3(xy3010, xy3011, xy3012), app(ty_[], eg), bb, cg) -> new_esEs3(xy4010, xy3010, eg) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), app(ty_[], bec)) -> new_esEs3(xy4010, xy3010, bec) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.15/6.66 17.15/6.66 17.15/6.66 *new_esEs3(:(xy4010, xy4011), :(xy3010, xy3011), bdb) -> new_esEs3(xy4011, xy3011, bdb) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 17.15/6.66 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (20) 17.15/6.66 YES 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (21) 17.15/6.66 Obligation: 17.15/6.66 Q DP problem: 17.15/6.66 The TRS P consists of the following rules: 17.15/6.66 17.15/6.66 new_primPlusNat(Succ(xy4400), Succ(xy3011000)) -> new_primPlusNat(xy4400, xy3011000) 17.15/6.66 17.15/6.66 R is empty. 17.15/6.66 Q is empty. 17.15/6.66 We have to consider all minimal (P,Q,R)-chains. 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (22) QDPSizeChangeProof (EQUIVALENT) 17.15/6.66 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.15/6.66 17.15/6.66 From the DPs we obtained the following set of size-change graphs: 17.15/6.66 *new_primPlusNat(Succ(xy4400), Succ(xy3011000)) -> new_primPlusNat(xy4400, xy3011000) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2 17.15/6.66 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (23) 17.15/6.66 YES 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (24) 17.15/6.66 Obligation: 17.15/6.66 Q DP problem: 17.15/6.66 The TRS P consists of the following rules: 17.15/6.66 17.15/6.66 new_primEqNat(Succ(xy40100), Succ(xy30100)) -> new_primEqNat(xy40100, xy30100) 17.15/6.66 17.15/6.66 R is empty. 17.15/6.66 Q is empty. 17.15/6.66 We have to consider all minimal (P,Q,R)-chains. 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (25) QDPSizeChangeProof (EQUIVALENT) 17.15/6.66 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.15/6.66 17.15/6.66 From the DPs we obtained the following set of size-change graphs: 17.15/6.66 *new_primEqNat(Succ(xy40100), Succ(xy30100)) -> new_primEqNat(xy40100, xy30100) 17.15/6.66 The graph contains the following edges 1 > 1, 2 > 2 17.15/6.66 17.15/6.66 17.15/6.66 ---------------------------------------- 17.15/6.66 17.15/6.66 (26) 17.15/6.66 YES 17.27/8.09 EOF