14.37/5.89 YES 16.31/6.46 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 16.31/6.46 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 16.31/6.46 16.31/6.46 16.31/6.46 H-Termination with start terms of the given HASKELL could be proven: 16.31/6.46 16.31/6.46 (0) HASKELL 16.31/6.46 (1) IFR [EQUIVALENT, 0 ms] 16.31/6.46 (2) HASKELL 16.31/6.46 (3) BR [EQUIVALENT, 13 ms] 16.31/6.46 (4) HASKELL 16.31/6.46 (5) COR [EQUIVALENT, 0 ms] 16.31/6.46 (6) HASKELL 16.31/6.46 (7) Narrow [SOUND, 0 ms] 16.31/6.46 (8) AND 16.31/6.46 (9) QDP 16.31/6.46 (10) DependencyGraphProof [EQUIVALENT, 0 ms] 16.31/6.46 (11) AND 16.31/6.46 (12) QDP 16.31/6.46 (13) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.31/6.46 (14) YES 16.31/6.46 (15) QDP 16.31/6.46 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.31/6.46 (17) YES 16.31/6.46 (18) QDP 16.31/6.46 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.31/6.46 (20) YES 16.31/6.46 (21) QDP 16.31/6.46 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.31/6.46 (23) YES 16.31/6.46 (24) QDP 16.31/6.46 (25) QDPSizeChangeProof [EQUIVALENT, 3 ms] 16.31/6.46 (26) YES 16.31/6.46 (27) QDP 16.31/6.46 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.31/6.46 (29) YES 16.31/6.46 (30) QDP 16.31/6.46 (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.31/6.46 (32) YES 16.31/6.46 16.31/6.46 16.31/6.46 ---------------------------------------- 16.31/6.46 16.31/6.46 (0) 16.31/6.46 Obligation: 16.31/6.46 mainModule Main 16.31/6.46 module Maybe where { 16.31/6.46 import qualified List; 16.31/6.46 import qualified Main; 16.31/6.46 import qualified Prelude; 16.31/6.46 } 16.31/6.46 module List where { 16.31/6.46 import qualified Main; 16.31/6.46 import qualified Maybe; 16.31/6.46 import qualified Prelude; 16.31/6.46 infix 5 \\; 16.31/6.46 (\\) :: Eq a => [a] -> [a] -> [a]; 16.31/6.46 (\\) = foldl (flip delete); 16.31/6.46 16.31/6.46 delete :: Eq a => a -> [a] -> [a]; 16.31/6.46 delete = deleteBy (==); 16.31/6.46 16.31/6.46 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 16.31/6.46 deleteBy _ _ [] = []; 16.31/6.46 deleteBy eq x (y : ys) = if x `eq` y then ys else y : deleteBy eq x ys; 16.31/6.46 16.31/6.46 } 16.31/6.46 module Main where { 16.31/6.46 import qualified List; 16.31/6.46 import qualified Maybe; 16.31/6.46 import qualified Prelude; 16.31/6.46 } 16.31/6.46 16.31/6.46 ---------------------------------------- 16.31/6.46 16.31/6.46 (1) IFR (EQUIVALENT) 16.31/6.46 If Reductions: 16.31/6.46 The following If expression 16.31/6.46 "if eq x y then ys else y : deleteBy eq x ys" 16.31/6.46 is transformed to 16.31/6.46 "deleteBy0 ys y eq x True = ys; 16.31/6.46 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 16.31/6.46 " 16.31/6.46 16.31/6.46 ---------------------------------------- 16.31/6.46 16.31/6.46 (2) 16.31/6.46 Obligation: 16.31/6.46 mainModule Main 16.31/6.46 module Maybe where { 16.31/6.46 import qualified List; 16.31/6.46 import qualified Main; 16.31/6.46 import qualified Prelude; 16.31/6.46 } 16.31/6.46 module List where { 16.31/6.46 import qualified Main; 16.31/6.46 import qualified Maybe; 16.31/6.46 import qualified Prelude; 16.31/6.46 infix 5 \\; 16.31/6.46 (\\) :: Eq a => [a] -> [a] -> [a]; 16.31/6.46 (\\) = foldl (flip delete); 16.31/6.46 16.31/6.46 delete :: Eq a => a -> [a] -> [a]; 16.31/6.46 delete = deleteBy (==); 16.31/6.46 16.31/6.46 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 16.31/6.46 deleteBy _ _ [] = []; 16.31/6.46 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 16.31/6.46 16.31/6.46 deleteBy0 ys y eq x True = ys; 16.31/6.46 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 16.31/6.46 16.31/6.46 } 16.31/6.46 module Main where { 16.31/6.46 import qualified List; 16.31/6.46 import qualified Maybe; 16.31/6.46 import qualified Prelude; 16.31/6.46 } 16.31/6.46 16.31/6.46 ---------------------------------------- 16.31/6.46 16.31/6.46 (3) BR (EQUIVALENT) 16.31/6.46 Replaced joker patterns by fresh variables and removed binding patterns. 16.31/6.46 ---------------------------------------- 16.31/6.46 16.31/6.46 (4) 16.31/6.46 Obligation: 16.31/6.46 mainModule Main 16.31/6.46 module Maybe where { 16.31/6.46 import qualified List; 16.31/6.46 import qualified Main; 16.31/6.46 import qualified Prelude; 16.31/6.46 } 16.31/6.46 module List where { 16.31/6.46 import qualified Main; 16.31/6.46 import qualified Maybe; 16.31/6.46 import qualified Prelude; 16.31/6.46 infix 5 \\; 16.31/6.46 (\\) :: Eq a => [a] -> [a] -> [a]; 16.31/6.46 (\\) = foldl (flip delete); 16.31/6.46 16.31/6.46 delete :: Eq a => a -> [a] -> [a]; 16.31/6.46 delete = deleteBy (==); 16.31/6.46 16.31/6.46 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 16.31/6.46 deleteBy xw xx [] = []; 16.31/6.46 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 16.31/6.46 16.31/6.46 deleteBy0 ys y eq x True = ys; 16.31/6.46 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 16.31/6.46 16.31/6.46 } 16.31/6.46 module Main where { 16.31/6.46 import qualified List; 16.31/6.46 import qualified Maybe; 16.31/6.46 import qualified Prelude; 16.31/6.46 } 16.31/6.46 16.31/6.46 ---------------------------------------- 16.31/6.46 16.31/6.46 (5) COR (EQUIVALENT) 16.31/6.46 Cond Reductions: 16.31/6.46 The following Function with conditions 16.31/6.46 "undefined |Falseundefined; 16.31/6.46 " 16.31/6.46 is transformed to 16.31/6.46 "undefined = undefined1; 16.31/6.46 " 16.31/6.46 "undefined0 True = undefined; 16.31/6.46 " 16.31/6.46 "undefined1 = undefined0 False; 16.31/6.46 " 16.31/6.46 16.31/6.46 ---------------------------------------- 16.31/6.46 16.31/6.46 (6) 16.31/6.46 Obligation: 16.31/6.46 mainModule Main 16.31/6.46 module Maybe where { 16.31/6.46 import qualified List; 16.31/6.46 import qualified Main; 16.31/6.46 import qualified Prelude; 16.31/6.46 } 16.31/6.46 module List where { 16.31/6.46 import qualified Main; 16.31/6.46 import qualified Maybe; 16.31/6.46 import qualified Prelude; 16.31/6.46 infix 5 \\; 16.31/6.46 (\\) :: Eq a => [a] -> [a] -> [a]; 16.31/6.46 (\\) = foldl (flip delete); 16.31/6.46 16.31/6.46 delete :: Eq a => a -> [a] -> [a]; 16.31/6.46 delete = deleteBy (==); 16.31/6.46 16.31/6.46 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 16.31/6.46 deleteBy xw xx [] = []; 16.31/6.46 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 16.31/6.46 16.31/6.46 deleteBy0 ys y eq x True = ys; 16.31/6.46 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 16.31/6.46 16.31/6.46 } 16.31/6.46 module Main where { 16.31/6.46 import qualified List; 16.31/6.46 import qualified Maybe; 16.31/6.46 import qualified Prelude; 16.31/6.46 } 16.31/6.46 16.31/6.46 ---------------------------------------- 16.31/6.46 16.31/6.46 (7) Narrow (SOUND) 16.31/6.46 Haskell To QDPs 16.31/6.46 16.31/6.46 digraph dp_graph { 16.31/6.46 node [outthreshold=100, inthreshold=100];1[label="(List.\\)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 16.31/6.46 3[label="xy3 (List.\\)",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 16.31/6.46 4[label="xy3 (List.\\) xy4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 16.31/6.46 5[label="foldl (flip List.delete) xy3 xy4",fontsize=16,color="burlywood",shape="triangle"];764[label="xy4/xy40 : xy41",fontsize=10,color="white",style="solid",shape="box"];5 -> 764[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 764 -> 6[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 765[label="xy4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 765[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 765 -> 7[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 6[label="foldl (flip List.delete) xy3 (xy40 : xy41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 16.31/6.47 7[label="foldl (flip List.delete) xy3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 16.31/6.47 8 -> 5[label="",style="dashed", color="red", weight=0]; 16.31/6.47 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]; 16.31/6.47 8 -> 11[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 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]; 16.31/6.47 12[label="List.delete xy40 xy3",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 16.31/6.47 13[label="List.deleteBy (==) xy40 xy3",fontsize=16,color="burlywood",shape="triangle"];766[label="xy3/xy30 : xy31",fontsize=10,color="white",style="solid",shape="box"];13 -> 766[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 766 -> 14[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 767[label="xy3/[]",fontsize=10,color="white",style="solid",shape="box"];13 -> 767[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 767 -> 15[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 14[label="List.deleteBy (==) xy40 (xy30 : xy31)",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 16.31/6.47 15[label="List.deleteBy (==) xy40 []",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16.31/6.47 16[label="List.deleteBy0 xy31 xy30 (==) xy40 ((==) xy40 xy30)",fontsize=16,color="burlywood",shape="box"];768[label="xy40/Left xy400",fontsize=10,color="white",style="solid",shape="box"];16 -> 768[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 768 -> 18[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 769[label="xy40/Right xy400",fontsize=10,color="white",style="solid",shape="box"];16 -> 769[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 769 -> 19[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 17[label="[]",fontsize=16,color="green",shape="box"];18[label="List.deleteBy0 xy31 xy30 (==) (Left xy400) ((==) Left xy400 xy30)",fontsize=16,color="burlywood",shape="box"];770[label="xy30/Left xy300",fontsize=10,color="white",style="solid",shape="box"];18 -> 770[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 770 -> 20[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 771[label="xy30/Right xy300",fontsize=10,color="white",style="solid",shape="box"];18 -> 771[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 771 -> 21[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 19[label="List.deleteBy0 xy31 xy30 (==) (Right xy400) ((==) Right xy400 xy30)",fontsize=16,color="burlywood",shape="box"];772[label="xy30/Left xy300",fontsize=10,color="white",style="solid",shape="box"];19 -> 772[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 772 -> 22[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 773[label="xy30/Right xy300",fontsize=10,color="white",style="solid",shape="box"];19 -> 773[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 773 -> 23[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 20[label="List.deleteBy0 xy31 (Left xy300) (==) (Left xy400) ((==) Left xy400 Left xy300)",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 16.31/6.47 21[label="List.deleteBy0 xy31 (Right xy300) (==) (Left xy400) ((==) Left xy400 Right xy300)",fontsize=16,color="black",shape="box"];21 -> 25[label="",style="solid", color="black", weight=3]; 16.31/6.47 22[label="List.deleteBy0 xy31 (Left xy300) (==) (Right xy400) ((==) Right xy400 Left xy300)",fontsize=16,color="black",shape="box"];22 -> 26[label="",style="solid", color="black", weight=3]; 16.31/6.47 23[label="List.deleteBy0 xy31 (Right xy300) (==) (Right xy400) ((==) Right xy400 Right xy300)",fontsize=16,color="black",shape="box"];23 -> 27[label="",style="solid", color="black", weight=3]; 16.31/6.47 24 -> 28[label="",style="dashed", color="red", weight=0]; 16.31/6.47 24[label="List.deleteBy0 xy31 (Left xy300) (==) (Left xy400) (xy400 == xy300)",fontsize=16,color="magenta"];24 -> 29[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 24 -> 30[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 24 -> 31[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 24 -> 32[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 25[label="List.deleteBy0 xy31 (Right xy300) (==) (Left xy400) False",fontsize=16,color="black",shape="box"];25 -> 33[label="",style="solid", color="black", weight=3]; 16.31/6.47 26[label="List.deleteBy0 xy31 (Left xy300) (==) (Right xy400) False",fontsize=16,color="black",shape="box"];26 -> 34[label="",style="solid", color="black", weight=3]; 16.31/6.47 27 -> 35[label="",style="dashed", color="red", weight=0]; 16.31/6.47 27[label="List.deleteBy0 xy31 (Right xy300) (==) (Right xy400) (xy400 == xy300)",fontsize=16,color="magenta"];27 -> 36[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 27 -> 37[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 27 -> 38[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 27 -> 39[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 29[label="xy31",fontsize=16,color="green",shape="box"];30[label="xy400 == xy300",fontsize=16,color="blue",shape="box"];774[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 774[label="",style="solid", color="blue", weight=9]; 16.31/6.47 774 -> 40[label="",style="solid", color="blue", weight=3]; 16.31/6.47 775[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 775[label="",style="solid", color="blue", weight=9]; 16.31/6.47 775 -> 41[label="",style="solid", color="blue", weight=3]; 16.31/6.47 776[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 776[label="",style="solid", color="blue", weight=9]; 16.31/6.47 776 -> 42[label="",style="solid", color="blue", weight=3]; 16.31/6.47 777[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 777[label="",style="solid", color="blue", weight=9]; 16.31/6.47 777 -> 43[label="",style="solid", color="blue", weight=3]; 16.31/6.47 778[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 778[label="",style="solid", color="blue", weight=9]; 16.31/6.47 778 -> 44[label="",style="solid", color="blue", weight=3]; 16.31/6.47 779[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 779[label="",style="solid", color="blue", weight=9]; 16.31/6.47 779 -> 45[label="",style="solid", color="blue", weight=3]; 16.31/6.47 780[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 780[label="",style="solid", color="blue", weight=9]; 16.31/6.47 780 -> 46[label="",style="solid", color="blue", weight=3]; 16.31/6.47 781[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 781[label="",style="solid", color="blue", weight=9]; 16.31/6.47 781 -> 47[label="",style="solid", color="blue", weight=3]; 16.31/6.47 782[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 782[label="",style="solid", color="blue", weight=9]; 16.31/6.47 782 -> 48[label="",style="solid", color="blue", weight=3]; 16.31/6.47 783[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 783[label="",style="solid", color="blue", weight=9]; 16.31/6.47 783 -> 49[label="",style="solid", color="blue", weight=3]; 16.31/6.47 784[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 784[label="",style="solid", color="blue", weight=9]; 16.31/6.47 784 -> 50[label="",style="solid", color="blue", weight=3]; 16.31/6.47 785[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 785[label="",style="solid", color="blue", weight=9]; 16.31/6.47 785 -> 51[label="",style="solid", color="blue", weight=3]; 16.31/6.47 786[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 786[label="",style="solid", color="blue", weight=9]; 16.31/6.47 786 -> 52[label="",style="solid", color="blue", weight=3]; 16.31/6.47 787[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 787[label="",style="solid", color="blue", weight=9]; 16.31/6.47 787 -> 53[label="",style="solid", color="blue", weight=3]; 16.31/6.47 31[label="xy300",fontsize=16,color="green",shape="box"];32[label="xy400",fontsize=16,color="green",shape="box"];28[label="List.deleteBy0 xy10 (Left xy11) (==) (Left xy12) xy13",fontsize=16,color="burlywood",shape="triangle"];788[label="xy13/False",fontsize=10,color="white",style="solid",shape="box"];28 -> 788[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 788 -> 54[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 789[label="xy13/True",fontsize=10,color="white",style="solid",shape="box"];28 -> 789[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 789 -> 55[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 33[label="Right xy300 : List.deleteBy (==) (Left xy400) xy31",fontsize=16,color="green",shape="box"];33 -> 56[label="",style="dashed", color="green", weight=3]; 16.31/6.47 34[label="Left xy300 : List.deleteBy (==) (Right xy400) xy31",fontsize=16,color="green",shape="box"];34 -> 57[label="",style="dashed", color="green", weight=3]; 16.31/6.47 36[label="xy31",fontsize=16,color="green",shape="box"];37[label="xy400",fontsize=16,color="green",shape="box"];38[label="xy400 == xy300",fontsize=16,color="blue",shape="box"];790[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 790[label="",style="solid", color="blue", weight=9]; 16.31/6.47 790 -> 58[label="",style="solid", color="blue", weight=3]; 16.31/6.47 791[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 791[label="",style="solid", color="blue", weight=9]; 16.31/6.47 791 -> 59[label="",style="solid", color="blue", weight=3]; 16.31/6.47 792[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 792[label="",style="solid", color="blue", weight=9]; 16.31/6.47 792 -> 60[label="",style="solid", color="blue", weight=3]; 16.31/6.47 793[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 793[label="",style="solid", color="blue", weight=9]; 16.31/6.47 793 -> 61[label="",style="solid", color="blue", weight=3]; 16.31/6.47 794[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 794[label="",style="solid", color="blue", weight=9]; 16.31/6.47 794 -> 62[label="",style="solid", color="blue", weight=3]; 16.31/6.47 795[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 795[label="",style="solid", color="blue", weight=9]; 16.31/6.47 795 -> 63[label="",style="solid", color="blue", weight=3]; 16.31/6.47 796[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 796[label="",style="solid", color="blue", weight=9]; 16.31/6.47 796 -> 64[label="",style="solid", color="blue", weight=3]; 16.31/6.47 797[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 797[label="",style="solid", color="blue", weight=9]; 16.31/6.47 797 -> 65[label="",style="solid", color="blue", weight=3]; 16.31/6.47 798[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 798[label="",style="solid", color="blue", weight=9]; 16.31/6.47 798 -> 66[label="",style="solid", color="blue", weight=3]; 16.31/6.47 799[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 799[label="",style="solid", color="blue", weight=9]; 16.31/6.47 799 -> 67[label="",style="solid", color="blue", weight=3]; 16.31/6.47 800[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 800[label="",style="solid", color="blue", weight=9]; 16.31/6.47 800 -> 68[label="",style="solid", color="blue", weight=3]; 16.31/6.47 801[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 801[label="",style="solid", color="blue", weight=9]; 16.31/6.47 801 -> 69[label="",style="solid", color="blue", weight=3]; 16.31/6.47 802[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 802[label="",style="solid", color="blue", weight=9]; 16.31/6.47 802 -> 70[label="",style="solid", color="blue", weight=3]; 16.31/6.47 803[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];38 -> 803[label="",style="solid", color="blue", weight=9]; 16.31/6.47 803 -> 71[label="",style="solid", color="blue", weight=3]; 16.31/6.47 39[label="xy300",fontsize=16,color="green",shape="box"];35[label="List.deleteBy0 xy19 (Right xy20) (==) (Right xy21) xy22",fontsize=16,color="burlywood",shape="triangle"];804[label="xy22/False",fontsize=10,color="white",style="solid",shape="box"];35 -> 804[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 804 -> 72[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 805[label="xy22/True",fontsize=10,color="white",style="solid",shape="box"];35 -> 805[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 805 -> 73[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 40[label="xy400 == xy300",fontsize=16,color="black",shape="triangle"];40 -> 74[label="",style="solid", color="black", weight=3]; 16.31/6.47 41[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];806[label="xy400/(xy4000,xy4001,xy4002)",fontsize=10,color="white",style="solid",shape="box"];41 -> 806[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 806 -> 75[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 42[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];807[label="xy400/Left xy4000",fontsize=10,color="white",style="solid",shape="box"];42 -> 807[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 807 -> 76[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 808[label="xy400/Right xy4000",fontsize=10,color="white",style="solid",shape="box"];42 -> 808[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 808 -> 77[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 43[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];809[label="xy400/False",fontsize=10,color="white",style="solid",shape="box"];43 -> 809[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 809 -> 78[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 810[label="xy400/True",fontsize=10,color="white",style="solid",shape="box"];43 -> 810[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 810 -> 79[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 44[label="xy400 == xy300",fontsize=16,color="black",shape="triangle"];44 -> 80[label="",style="solid", color="black", weight=3]; 16.31/6.47 45[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];811[label="xy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];45 -> 811[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 811 -> 81[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 812[label="xy400/Just xy4000",fontsize=10,color="white",style="solid",shape="box"];45 -> 812[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 812 -> 82[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 46[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];813[label="xy400/xy4000 :% xy4001",fontsize=10,color="white",style="solid",shape="box"];46 -> 813[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 813 -> 83[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 47[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];814[label="xy400/(xy4000,xy4001)",fontsize=10,color="white",style="solid",shape="box"];47 -> 814[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 814 -> 84[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 48[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];815[label="xy400/()",fontsize=10,color="white",style="solid",shape="box"];48 -> 815[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 815 -> 85[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 49[label="xy400 == xy300",fontsize=16,color="black",shape="triangle"];49 -> 86[label="",style="solid", color="black", weight=3]; 16.31/6.47 50[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];816[label="xy400/xy4000 : xy4001",fontsize=10,color="white",style="solid",shape="box"];50 -> 816[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 816 -> 87[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 817[label="xy400/[]",fontsize=10,color="white",style="solid",shape="box"];50 -> 817[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 817 -> 88[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 51[label="xy400 == xy300",fontsize=16,color="black",shape="triangle"];51 -> 89[label="",style="solid", color="black", weight=3]; 16.31/6.47 52[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];818[label="xy400/LT",fontsize=10,color="white",style="solid",shape="box"];52 -> 818[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 818 -> 90[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 819[label="xy400/EQ",fontsize=10,color="white",style="solid",shape="box"];52 -> 819[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 819 -> 91[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 820[label="xy400/GT",fontsize=10,color="white",style="solid",shape="box"];52 -> 820[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 820 -> 92[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 53[label="xy400 == xy300",fontsize=16,color="burlywood",shape="triangle"];821[label="xy400/Integer xy4000",fontsize=10,color="white",style="solid",shape="box"];53 -> 821[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 821 -> 93[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 54[label="List.deleteBy0 xy10 (Left xy11) (==) (Left xy12) False",fontsize=16,color="black",shape="box"];54 -> 94[label="",style="solid", color="black", weight=3]; 16.31/6.47 55[label="List.deleteBy0 xy10 (Left xy11) (==) (Left xy12) True",fontsize=16,color="black",shape="box"];55 -> 95[label="",style="solid", color="black", weight=3]; 16.31/6.47 56 -> 13[label="",style="dashed", color="red", weight=0]; 16.31/6.47 56[label="List.deleteBy (==) (Left xy400) xy31",fontsize=16,color="magenta"];56 -> 96[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 56 -> 97[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 57 -> 13[label="",style="dashed", color="red", weight=0]; 16.31/6.47 57[label="List.deleteBy (==) (Right xy400) xy31",fontsize=16,color="magenta"];57 -> 98[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 57 -> 99[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 58 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 58[label="xy400 == xy300",fontsize=16,color="magenta"];58 -> 100[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 58 -> 101[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 59 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 59[label="xy400 == xy300",fontsize=16,color="magenta"];59 -> 102[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 59 -> 103[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 60 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 60[label="xy400 == xy300",fontsize=16,color="magenta"];60 -> 104[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 60 -> 105[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 61 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 61[label="xy400 == xy300",fontsize=16,color="magenta"];61 -> 106[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 61 -> 107[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 62 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 62[label="xy400 == xy300",fontsize=16,color="magenta"];62 -> 108[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 62 -> 109[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 63 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 63[label="xy400 == xy300",fontsize=16,color="magenta"];63 -> 110[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 63 -> 111[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 64 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 64[label="xy400 == xy300",fontsize=16,color="magenta"];64 -> 112[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 64 -> 113[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 65 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 65[label="xy400 == xy300",fontsize=16,color="magenta"];65 -> 114[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 65 -> 115[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 66 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 66[label="xy400 == xy300",fontsize=16,color="magenta"];66 -> 116[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 66 -> 117[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 67 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 67[label="xy400 == xy300",fontsize=16,color="magenta"];67 -> 118[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 67 -> 119[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 68 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 68[label="xy400 == xy300",fontsize=16,color="magenta"];68 -> 120[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 68 -> 121[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 69 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 69[label="xy400 == xy300",fontsize=16,color="magenta"];69 -> 122[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 69 -> 123[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 70 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 70[label="xy400 == xy300",fontsize=16,color="magenta"];70 -> 124[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 70 -> 125[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 71 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 71[label="xy400 == xy300",fontsize=16,color="magenta"];71 -> 126[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 71 -> 127[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 72[label="List.deleteBy0 xy19 (Right xy20) (==) (Right xy21) False",fontsize=16,color="black",shape="box"];72 -> 128[label="",style="solid", color="black", weight=3]; 16.31/6.47 73[label="List.deleteBy0 xy19 (Right xy20) (==) (Right xy21) True",fontsize=16,color="black",shape="box"];73 -> 129[label="",style="solid", color="black", weight=3]; 16.31/6.47 74[label="primEqChar xy400 xy300",fontsize=16,color="burlywood",shape="box"];822[label="xy400/Char xy4000",fontsize=10,color="white",style="solid",shape="box"];74 -> 822[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 822 -> 130[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 75[label="(xy4000,xy4001,xy4002) == xy300",fontsize=16,color="burlywood",shape="box"];823[label="xy300/(xy3000,xy3001,xy3002)",fontsize=10,color="white",style="solid",shape="box"];75 -> 823[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 823 -> 131[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 76[label="Left xy4000 == xy300",fontsize=16,color="burlywood",shape="box"];824[label="xy300/Left xy3000",fontsize=10,color="white",style="solid",shape="box"];76 -> 824[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 824 -> 132[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 825[label="xy300/Right xy3000",fontsize=10,color="white",style="solid",shape="box"];76 -> 825[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 825 -> 133[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 77[label="Right xy4000 == xy300",fontsize=16,color="burlywood",shape="box"];826[label="xy300/Left xy3000",fontsize=10,color="white",style="solid",shape="box"];77 -> 826[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 826 -> 134[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 827[label="xy300/Right xy3000",fontsize=10,color="white",style="solid",shape="box"];77 -> 827[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 827 -> 135[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 78[label="False == xy300",fontsize=16,color="burlywood",shape="box"];828[label="xy300/False",fontsize=10,color="white",style="solid",shape="box"];78 -> 828[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 828 -> 136[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 829[label="xy300/True",fontsize=10,color="white",style="solid",shape="box"];78 -> 829[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 829 -> 137[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 79[label="True == xy300",fontsize=16,color="burlywood",shape="box"];830[label="xy300/False",fontsize=10,color="white",style="solid",shape="box"];79 -> 830[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 830 -> 138[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 831[label="xy300/True",fontsize=10,color="white",style="solid",shape="box"];79 -> 831[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 831 -> 139[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 80[label="primEqInt xy400 xy300",fontsize=16,color="burlywood",shape="triangle"];832[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];80 -> 832[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 832 -> 140[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 833[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];80 -> 833[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 833 -> 141[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 81[label="Nothing == xy300",fontsize=16,color="burlywood",shape="box"];834[label="xy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];81 -> 834[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 834 -> 142[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 835[label="xy300/Just xy3000",fontsize=10,color="white",style="solid",shape="box"];81 -> 835[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 835 -> 143[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 82[label="Just xy4000 == xy300",fontsize=16,color="burlywood",shape="box"];836[label="xy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];82 -> 836[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 836 -> 144[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 837[label="xy300/Just xy3000",fontsize=10,color="white",style="solid",shape="box"];82 -> 837[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 837 -> 145[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 83[label="xy4000 :% xy4001 == xy300",fontsize=16,color="burlywood",shape="box"];838[label="xy300/xy3000 :% xy3001",fontsize=10,color="white",style="solid",shape="box"];83 -> 838[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 838 -> 146[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 84[label="(xy4000,xy4001) == xy300",fontsize=16,color="burlywood",shape="box"];839[label="xy300/(xy3000,xy3001)",fontsize=10,color="white",style="solid",shape="box"];84 -> 839[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 839 -> 147[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 85[label="() == xy300",fontsize=16,color="burlywood",shape="box"];840[label="xy300/()",fontsize=10,color="white",style="solid",shape="box"];85 -> 840[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 840 -> 148[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 86[label="primEqFloat xy400 xy300",fontsize=16,color="burlywood",shape="box"];841[label="xy400/Float xy4000 xy4001",fontsize=10,color="white",style="solid",shape="box"];86 -> 841[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 841 -> 149[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 87[label="xy4000 : xy4001 == xy300",fontsize=16,color="burlywood",shape="box"];842[label="xy300/xy3000 : xy3001",fontsize=10,color="white",style="solid",shape="box"];87 -> 842[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 842 -> 150[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 843[label="xy300/[]",fontsize=10,color="white",style="solid",shape="box"];87 -> 843[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 843 -> 151[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 88[label="[] == xy300",fontsize=16,color="burlywood",shape="box"];844[label="xy300/xy3000 : xy3001",fontsize=10,color="white",style="solid",shape="box"];88 -> 844[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 844 -> 152[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 845[label="xy300/[]",fontsize=10,color="white",style="solid",shape="box"];88 -> 845[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 845 -> 153[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 89[label="primEqDouble xy400 xy300",fontsize=16,color="burlywood",shape="box"];846[label="xy400/Double xy4000 xy4001",fontsize=10,color="white",style="solid",shape="box"];89 -> 846[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 846 -> 154[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 90[label="LT == xy300",fontsize=16,color="burlywood",shape="box"];847[label="xy300/LT",fontsize=10,color="white",style="solid",shape="box"];90 -> 847[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 847 -> 155[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 848[label="xy300/EQ",fontsize=10,color="white",style="solid",shape="box"];90 -> 848[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 848 -> 156[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 849[label="xy300/GT",fontsize=10,color="white",style="solid",shape="box"];90 -> 849[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 849 -> 157[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 91[label="EQ == xy300",fontsize=16,color="burlywood",shape="box"];850[label="xy300/LT",fontsize=10,color="white",style="solid",shape="box"];91 -> 850[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 850 -> 158[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 851[label="xy300/EQ",fontsize=10,color="white",style="solid",shape="box"];91 -> 851[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 851 -> 159[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 852[label="xy300/GT",fontsize=10,color="white",style="solid",shape="box"];91 -> 852[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 852 -> 160[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 92[label="GT == xy300",fontsize=16,color="burlywood",shape="box"];853[label="xy300/LT",fontsize=10,color="white",style="solid",shape="box"];92 -> 853[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 853 -> 161[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 854[label="xy300/EQ",fontsize=10,color="white",style="solid",shape="box"];92 -> 854[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 854 -> 162[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 855[label="xy300/GT",fontsize=10,color="white",style="solid",shape="box"];92 -> 855[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 855 -> 163[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 93[label="Integer xy4000 == xy300",fontsize=16,color="burlywood",shape="box"];856[label="xy300/Integer xy3000",fontsize=10,color="white",style="solid",shape="box"];93 -> 856[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 856 -> 164[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 94[label="Left xy11 : List.deleteBy (==) (Left xy12) xy10",fontsize=16,color="green",shape="box"];94 -> 165[label="",style="dashed", color="green", weight=3]; 16.31/6.47 95[label="xy10",fontsize=16,color="green",shape="box"];96[label="Left xy400",fontsize=16,color="green",shape="box"];97[label="xy31",fontsize=16,color="green",shape="box"];98[label="Right xy400",fontsize=16,color="green",shape="box"];99[label="xy31",fontsize=16,color="green",shape="box"];100[label="xy300",fontsize=16,color="green",shape="box"];101[label="xy400",fontsize=16,color="green",shape="box"];102[label="xy300",fontsize=16,color="green",shape="box"];103[label="xy400",fontsize=16,color="green",shape="box"];104[label="xy300",fontsize=16,color="green",shape="box"];105[label="xy400",fontsize=16,color="green",shape="box"];106[label="xy300",fontsize=16,color="green",shape="box"];107[label="xy400",fontsize=16,color="green",shape="box"];108[label="xy300",fontsize=16,color="green",shape="box"];109[label="xy400",fontsize=16,color="green",shape="box"];110[label="xy300",fontsize=16,color="green",shape="box"];111[label="xy400",fontsize=16,color="green",shape="box"];112[label="xy300",fontsize=16,color="green",shape="box"];113[label="xy400",fontsize=16,color="green",shape="box"];114[label="xy300",fontsize=16,color="green",shape="box"];115[label="xy400",fontsize=16,color="green",shape="box"];116[label="xy300",fontsize=16,color="green",shape="box"];117[label="xy400",fontsize=16,color="green",shape="box"];118[label="xy300",fontsize=16,color="green",shape="box"];119[label="xy400",fontsize=16,color="green",shape="box"];120[label="xy300",fontsize=16,color="green",shape="box"];121[label="xy400",fontsize=16,color="green",shape="box"];122[label="xy300",fontsize=16,color="green",shape="box"];123[label="xy400",fontsize=16,color="green",shape="box"];124[label="xy300",fontsize=16,color="green",shape="box"];125[label="xy400",fontsize=16,color="green",shape="box"];126[label="xy300",fontsize=16,color="green",shape="box"];127[label="xy400",fontsize=16,color="green",shape="box"];128[label="Right xy20 : List.deleteBy (==) (Right xy21) xy19",fontsize=16,color="green",shape="box"];128 -> 166[label="",style="dashed", color="green", weight=3]; 16.31/6.47 129[label="xy19",fontsize=16,color="green",shape="box"];130[label="primEqChar (Char xy4000) xy300",fontsize=16,color="burlywood",shape="box"];857[label="xy300/Char xy3000",fontsize=10,color="white",style="solid",shape="box"];130 -> 857[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 857 -> 167[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 131[label="(xy4000,xy4001,xy4002) == (xy3000,xy3001,xy3002)",fontsize=16,color="black",shape="box"];131 -> 168[label="",style="solid", color="black", weight=3]; 16.31/6.47 132[label="Left xy4000 == Left xy3000",fontsize=16,color="black",shape="box"];132 -> 169[label="",style="solid", color="black", weight=3]; 16.31/6.47 133[label="Left xy4000 == Right xy3000",fontsize=16,color="black",shape="box"];133 -> 170[label="",style="solid", color="black", weight=3]; 16.31/6.47 134[label="Right xy4000 == Left xy3000",fontsize=16,color="black",shape="box"];134 -> 171[label="",style="solid", color="black", weight=3]; 16.31/6.47 135[label="Right xy4000 == Right xy3000",fontsize=16,color="black",shape="box"];135 -> 172[label="",style="solid", color="black", weight=3]; 16.31/6.47 136[label="False == False",fontsize=16,color="black",shape="box"];136 -> 173[label="",style="solid", color="black", weight=3]; 16.31/6.47 137[label="False == True",fontsize=16,color="black",shape="box"];137 -> 174[label="",style="solid", color="black", weight=3]; 16.31/6.47 138[label="True == False",fontsize=16,color="black",shape="box"];138 -> 175[label="",style="solid", color="black", weight=3]; 16.31/6.47 139[label="True == True",fontsize=16,color="black",shape="box"];139 -> 176[label="",style="solid", color="black", weight=3]; 16.31/6.47 140[label="primEqInt (Pos xy4000) xy300",fontsize=16,color="burlywood",shape="box"];858[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];140 -> 858[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 858 -> 177[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 859[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];140 -> 859[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 859 -> 178[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 141[label="primEqInt (Neg xy4000) xy300",fontsize=16,color="burlywood",shape="box"];860[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];141 -> 860[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 860 -> 179[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 861[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];141 -> 861[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 861 -> 180[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 142[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];142 -> 181[label="",style="solid", color="black", weight=3]; 16.31/6.47 143[label="Nothing == Just xy3000",fontsize=16,color="black",shape="box"];143 -> 182[label="",style="solid", color="black", weight=3]; 16.31/6.47 144[label="Just xy4000 == Nothing",fontsize=16,color="black",shape="box"];144 -> 183[label="",style="solid", color="black", weight=3]; 16.31/6.47 145[label="Just xy4000 == Just xy3000",fontsize=16,color="black",shape="box"];145 -> 184[label="",style="solid", color="black", weight=3]; 16.31/6.47 146[label="xy4000 :% xy4001 == xy3000 :% xy3001",fontsize=16,color="black",shape="box"];146 -> 185[label="",style="solid", color="black", weight=3]; 16.31/6.47 147[label="(xy4000,xy4001) == (xy3000,xy3001)",fontsize=16,color="black",shape="box"];147 -> 186[label="",style="solid", color="black", weight=3]; 16.31/6.47 148[label="() == ()",fontsize=16,color="black",shape="box"];148 -> 187[label="",style="solid", color="black", weight=3]; 16.31/6.47 149[label="primEqFloat (Float xy4000 xy4001) xy300",fontsize=16,color="burlywood",shape="box"];862[label="xy300/Float xy3000 xy3001",fontsize=10,color="white",style="solid",shape="box"];149 -> 862[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 862 -> 188[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 150[label="xy4000 : xy4001 == xy3000 : xy3001",fontsize=16,color="black",shape="box"];150 -> 189[label="",style="solid", color="black", weight=3]; 16.31/6.47 151[label="xy4000 : xy4001 == []",fontsize=16,color="black",shape="box"];151 -> 190[label="",style="solid", color="black", weight=3]; 16.31/6.47 152[label="[] == xy3000 : xy3001",fontsize=16,color="black",shape="box"];152 -> 191[label="",style="solid", color="black", weight=3]; 16.31/6.47 153[label="[] == []",fontsize=16,color="black",shape="box"];153 -> 192[label="",style="solid", color="black", weight=3]; 16.31/6.47 154[label="primEqDouble (Double xy4000 xy4001) xy300",fontsize=16,color="burlywood",shape="box"];863[label="xy300/Double xy3000 xy3001",fontsize=10,color="white",style="solid",shape="box"];154 -> 863[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 863 -> 193[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 155[label="LT == LT",fontsize=16,color="black",shape="box"];155 -> 194[label="",style="solid", color="black", weight=3]; 16.31/6.47 156[label="LT == EQ",fontsize=16,color="black",shape="box"];156 -> 195[label="",style="solid", color="black", weight=3]; 16.31/6.47 157[label="LT == GT",fontsize=16,color="black",shape="box"];157 -> 196[label="",style="solid", color="black", weight=3]; 16.31/6.47 158[label="EQ == LT",fontsize=16,color="black",shape="box"];158 -> 197[label="",style="solid", color="black", weight=3]; 16.31/6.47 159[label="EQ == EQ",fontsize=16,color="black",shape="box"];159 -> 198[label="",style="solid", color="black", weight=3]; 16.31/6.47 160[label="EQ == GT",fontsize=16,color="black",shape="box"];160 -> 199[label="",style="solid", color="black", weight=3]; 16.31/6.47 161[label="GT == LT",fontsize=16,color="black",shape="box"];161 -> 200[label="",style="solid", color="black", weight=3]; 16.31/6.47 162[label="GT == EQ",fontsize=16,color="black",shape="box"];162 -> 201[label="",style="solid", color="black", weight=3]; 16.31/6.47 163[label="GT == GT",fontsize=16,color="black",shape="box"];163 -> 202[label="",style="solid", color="black", weight=3]; 16.31/6.47 164[label="Integer xy4000 == Integer xy3000",fontsize=16,color="black",shape="box"];164 -> 203[label="",style="solid", color="black", weight=3]; 16.31/6.47 165 -> 13[label="",style="dashed", color="red", weight=0]; 16.31/6.47 165[label="List.deleteBy (==) (Left xy12) xy10",fontsize=16,color="magenta"];165 -> 204[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 165 -> 205[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 166 -> 13[label="",style="dashed", color="red", weight=0]; 16.31/6.47 166[label="List.deleteBy (==) (Right xy21) xy19",fontsize=16,color="magenta"];166 -> 206[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 166 -> 207[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 167[label="primEqChar (Char xy4000) (Char xy3000)",fontsize=16,color="black",shape="box"];167 -> 208[label="",style="solid", color="black", weight=3]; 16.31/6.47 168 -> 295[label="",style="dashed", color="red", weight=0]; 16.31/6.47 168[label="xy4000 == xy3000 && xy4001 == xy3001 && xy4002 == xy3002",fontsize=16,color="magenta"];168 -> 296[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 168 -> 297[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 169[label="xy4000 == xy3000",fontsize=16,color="blue",shape="box"];864[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 864[label="",style="solid", color="blue", weight=9]; 16.31/6.47 864 -> 215[label="",style="solid", color="blue", weight=3]; 16.31/6.47 865[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 865[label="",style="solid", color="blue", weight=9]; 16.31/6.47 865 -> 216[label="",style="solid", color="blue", weight=3]; 16.31/6.47 866[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 866[label="",style="solid", color="blue", weight=9]; 16.31/6.47 866 -> 217[label="",style="solid", color="blue", weight=3]; 16.31/6.47 867[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 867[label="",style="solid", color="blue", weight=9]; 16.31/6.47 867 -> 218[label="",style="solid", color="blue", weight=3]; 16.31/6.47 868[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 868[label="",style="solid", color="blue", weight=9]; 16.31/6.47 868 -> 219[label="",style="solid", color="blue", weight=3]; 16.31/6.47 869[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 869[label="",style="solid", color="blue", weight=9]; 16.31/6.47 869 -> 220[label="",style="solid", color="blue", weight=3]; 16.31/6.47 870[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 870[label="",style="solid", color="blue", weight=9]; 16.31/6.47 870 -> 221[label="",style="solid", color="blue", weight=3]; 16.31/6.47 871[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 871[label="",style="solid", color="blue", weight=9]; 16.31/6.47 871 -> 222[label="",style="solid", color="blue", weight=3]; 16.31/6.47 872[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 872[label="",style="solid", color="blue", weight=9]; 16.31/6.47 872 -> 223[label="",style="solid", color="blue", weight=3]; 16.31/6.47 873[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 873[label="",style="solid", color="blue", weight=9]; 16.31/6.47 873 -> 224[label="",style="solid", color="blue", weight=3]; 16.31/6.47 874[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 874[label="",style="solid", color="blue", weight=9]; 16.31/6.47 874 -> 225[label="",style="solid", color="blue", weight=3]; 16.31/6.47 875[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 875[label="",style="solid", color="blue", weight=9]; 16.31/6.47 875 -> 226[label="",style="solid", color="blue", weight=3]; 16.31/6.47 876[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 876[label="",style="solid", color="blue", weight=9]; 16.31/6.47 876 -> 227[label="",style="solid", color="blue", weight=3]; 16.31/6.47 877[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 877[label="",style="solid", color="blue", weight=9]; 16.31/6.47 877 -> 228[label="",style="solid", color="blue", weight=3]; 16.31/6.47 170[label="False",fontsize=16,color="green",shape="box"];171[label="False",fontsize=16,color="green",shape="box"];172[label="xy4000 == xy3000",fontsize=16,color="blue",shape="box"];878[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 878[label="",style="solid", color="blue", weight=9]; 16.31/6.47 878 -> 229[label="",style="solid", color="blue", weight=3]; 16.31/6.47 879[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 879[label="",style="solid", color="blue", weight=9]; 16.31/6.47 879 -> 230[label="",style="solid", color="blue", weight=3]; 16.31/6.47 880[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 880[label="",style="solid", color="blue", weight=9]; 16.31/6.47 880 -> 231[label="",style="solid", color="blue", weight=3]; 16.31/6.47 881[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 881[label="",style="solid", color="blue", weight=9]; 16.31/6.47 881 -> 232[label="",style="solid", color="blue", weight=3]; 16.31/6.47 882[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 882[label="",style="solid", color="blue", weight=9]; 16.31/6.47 882 -> 233[label="",style="solid", color="blue", weight=3]; 16.31/6.47 883[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 883[label="",style="solid", color="blue", weight=9]; 16.31/6.47 883 -> 234[label="",style="solid", color="blue", weight=3]; 16.31/6.47 884[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 884[label="",style="solid", color="blue", weight=9]; 16.31/6.47 884 -> 235[label="",style="solid", color="blue", weight=3]; 16.31/6.47 885[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 885[label="",style="solid", color="blue", weight=9]; 16.31/6.47 885 -> 236[label="",style="solid", color="blue", weight=3]; 16.31/6.47 886[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 886[label="",style="solid", color="blue", weight=9]; 16.31/6.47 886 -> 237[label="",style="solid", color="blue", weight=3]; 16.31/6.47 887[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 887[label="",style="solid", color="blue", weight=9]; 16.31/6.47 887 -> 238[label="",style="solid", color="blue", weight=3]; 16.31/6.47 888[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 888[label="",style="solid", color="blue", weight=9]; 16.31/6.47 888 -> 239[label="",style="solid", color="blue", weight=3]; 16.31/6.47 889[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 889[label="",style="solid", color="blue", weight=9]; 16.31/6.47 889 -> 240[label="",style="solid", color="blue", weight=3]; 16.31/6.47 890[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 890[label="",style="solid", color="blue", weight=9]; 16.31/6.47 890 -> 241[label="",style="solid", color="blue", weight=3]; 16.31/6.47 891[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 891[label="",style="solid", color="blue", weight=9]; 16.31/6.47 891 -> 242[label="",style="solid", color="blue", weight=3]; 16.31/6.47 173[label="True",fontsize=16,color="green",shape="box"];174[label="False",fontsize=16,color="green",shape="box"];175[label="False",fontsize=16,color="green",shape="box"];176[label="True",fontsize=16,color="green",shape="box"];177[label="primEqInt (Pos (Succ xy40000)) xy300",fontsize=16,color="burlywood",shape="box"];892[label="xy300/Pos xy3000",fontsize=10,color="white",style="solid",shape="box"];177 -> 892[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 892 -> 243[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 893[label="xy300/Neg xy3000",fontsize=10,color="white",style="solid",shape="box"];177 -> 893[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 893 -> 244[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 178[label="primEqInt (Pos Zero) xy300",fontsize=16,color="burlywood",shape="box"];894[label="xy300/Pos xy3000",fontsize=10,color="white",style="solid",shape="box"];178 -> 894[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 894 -> 245[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 895[label="xy300/Neg xy3000",fontsize=10,color="white",style="solid",shape="box"];178 -> 895[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 895 -> 246[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 179[label="primEqInt (Neg (Succ xy40000)) xy300",fontsize=16,color="burlywood",shape="box"];896[label="xy300/Pos xy3000",fontsize=10,color="white",style="solid",shape="box"];179 -> 896[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 896 -> 247[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 897[label="xy300/Neg xy3000",fontsize=10,color="white",style="solid",shape="box"];179 -> 897[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 897 -> 248[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 180[label="primEqInt (Neg Zero) xy300",fontsize=16,color="burlywood",shape="box"];898[label="xy300/Pos xy3000",fontsize=10,color="white",style="solid",shape="box"];180 -> 898[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 898 -> 249[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 899[label="xy300/Neg xy3000",fontsize=10,color="white",style="solid",shape="box"];180 -> 899[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 899 -> 250[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 181[label="True",fontsize=16,color="green",shape="box"];182[label="False",fontsize=16,color="green",shape="box"];183[label="False",fontsize=16,color="green",shape="box"];184[label="xy4000 == xy3000",fontsize=16,color="blue",shape="box"];900[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 900[label="",style="solid", color="blue", weight=9]; 16.31/6.47 900 -> 251[label="",style="solid", color="blue", weight=3]; 16.31/6.47 901[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 901[label="",style="solid", color="blue", weight=9]; 16.31/6.47 901 -> 252[label="",style="solid", color="blue", weight=3]; 16.31/6.47 902[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 902[label="",style="solid", color="blue", weight=9]; 16.31/6.47 902 -> 253[label="",style="solid", color="blue", weight=3]; 16.31/6.47 903[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 903[label="",style="solid", color="blue", weight=9]; 16.31/6.47 903 -> 254[label="",style="solid", color="blue", weight=3]; 16.31/6.47 904[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 904[label="",style="solid", color="blue", weight=9]; 16.31/6.47 904 -> 255[label="",style="solid", color="blue", weight=3]; 16.31/6.47 905[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 905[label="",style="solid", color="blue", weight=9]; 16.31/6.47 905 -> 256[label="",style="solid", color="blue", weight=3]; 16.31/6.47 906[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 906[label="",style="solid", color="blue", weight=9]; 16.31/6.47 906 -> 257[label="",style="solid", color="blue", weight=3]; 16.31/6.47 907[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 907[label="",style="solid", color="blue", weight=9]; 16.31/6.47 907 -> 258[label="",style="solid", color="blue", weight=3]; 16.31/6.47 908[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 908[label="",style="solid", color="blue", weight=9]; 16.31/6.47 908 -> 259[label="",style="solid", color="blue", weight=3]; 16.31/6.47 909[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 909[label="",style="solid", color="blue", weight=9]; 16.31/6.47 909 -> 260[label="",style="solid", color="blue", weight=3]; 16.31/6.47 910[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 910[label="",style="solid", color="blue", weight=9]; 16.31/6.47 910 -> 261[label="",style="solid", color="blue", weight=3]; 16.31/6.47 911[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 911[label="",style="solid", color="blue", weight=9]; 16.31/6.47 911 -> 262[label="",style="solid", color="blue", weight=3]; 16.31/6.47 912[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 912[label="",style="solid", color="blue", weight=9]; 16.31/6.47 912 -> 263[label="",style="solid", color="blue", weight=3]; 16.31/6.47 913[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];184 -> 913[label="",style="solid", color="blue", weight=9]; 16.31/6.47 913 -> 264[label="",style="solid", color="blue", weight=3]; 16.31/6.47 185 -> 295[label="",style="dashed", color="red", weight=0]; 16.31/6.47 185[label="xy4000 == xy3000 && xy4001 == xy3001",fontsize=16,color="magenta"];185 -> 298[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 185 -> 299[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 186 -> 295[label="",style="dashed", color="red", weight=0]; 16.31/6.47 186[label="xy4000 == xy3000 && xy4001 == xy3001",fontsize=16,color="magenta"];186 -> 300[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 186 -> 301[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 187[label="True",fontsize=16,color="green",shape="box"];188[label="primEqFloat (Float xy4000 xy4001) (Float xy3000 xy3001)",fontsize=16,color="black",shape="box"];188 -> 275[label="",style="solid", color="black", weight=3]; 16.31/6.47 189 -> 295[label="",style="dashed", color="red", weight=0]; 16.31/6.47 189[label="xy4000 == xy3000 && xy4001 == xy3001",fontsize=16,color="magenta"];189 -> 302[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 189 -> 303[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 190[label="False",fontsize=16,color="green",shape="box"];191[label="False",fontsize=16,color="green",shape="box"];192[label="True",fontsize=16,color="green",shape="box"];193[label="primEqDouble (Double xy4000 xy4001) (Double xy3000 xy3001)",fontsize=16,color="black",shape="box"];193 -> 276[label="",style="solid", color="black", weight=3]; 16.31/6.47 194[label="True",fontsize=16,color="green",shape="box"];195[label="False",fontsize=16,color="green",shape="box"];196[label="False",fontsize=16,color="green",shape="box"];197[label="False",fontsize=16,color="green",shape="box"];198[label="True",fontsize=16,color="green",shape="box"];199[label="False",fontsize=16,color="green",shape="box"];200[label="False",fontsize=16,color="green",shape="box"];201[label="False",fontsize=16,color="green",shape="box"];202[label="True",fontsize=16,color="green",shape="box"];203 -> 80[label="",style="dashed", color="red", weight=0]; 16.31/6.47 203[label="primEqInt xy4000 xy3000",fontsize=16,color="magenta"];203 -> 277[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 203 -> 278[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 204[label="Left xy12",fontsize=16,color="green",shape="box"];205[label="xy10",fontsize=16,color="green",shape="box"];206[label="Right xy21",fontsize=16,color="green",shape="box"];207[label="xy19",fontsize=16,color="green",shape="box"];208[label="primEqNat xy4000 xy3000",fontsize=16,color="burlywood",shape="triangle"];914[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];208 -> 914[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 914 -> 279[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 915[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];208 -> 915[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 915 -> 280[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 296[label="xy4000 == xy3000",fontsize=16,color="blue",shape="box"];916[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 916[label="",style="solid", color="blue", weight=9]; 16.31/6.47 916 -> 307[label="",style="solid", color="blue", weight=3]; 16.31/6.47 917[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 917[label="",style="solid", color="blue", weight=9]; 16.31/6.47 917 -> 308[label="",style="solid", color="blue", weight=3]; 16.31/6.47 918[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 918[label="",style="solid", color="blue", weight=9]; 16.31/6.47 918 -> 309[label="",style="solid", color="blue", weight=3]; 16.31/6.47 919[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 919[label="",style="solid", color="blue", weight=9]; 16.31/6.47 919 -> 310[label="",style="solid", color="blue", weight=3]; 16.31/6.47 920[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 920[label="",style="solid", color="blue", weight=9]; 16.31/6.47 920 -> 311[label="",style="solid", color="blue", weight=3]; 16.31/6.47 921[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 921[label="",style="solid", color="blue", weight=9]; 16.31/6.47 921 -> 312[label="",style="solid", color="blue", weight=3]; 16.31/6.47 922[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 922[label="",style="solid", color="blue", weight=9]; 16.31/6.47 922 -> 313[label="",style="solid", color="blue", weight=3]; 16.31/6.47 923[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 923[label="",style="solid", color="blue", weight=9]; 16.31/6.47 923 -> 314[label="",style="solid", color="blue", weight=3]; 16.31/6.47 924[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 924[label="",style="solid", color="blue", weight=9]; 16.31/6.47 924 -> 315[label="",style="solid", color="blue", weight=3]; 16.31/6.47 925[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 925[label="",style="solid", color="blue", weight=9]; 16.31/6.47 925 -> 316[label="",style="solid", color="blue", weight=3]; 16.31/6.47 926[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 926[label="",style="solid", color="blue", weight=9]; 16.31/6.47 926 -> 317[label="",style="solid", color="blue", weight=3]; 16.31/6.47 927[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 927[label="",style="solid", color="blue", weight=9]; 16.31/6.47 927 -> 318[label="",style="solid", color="blue", weight=3]; 16.31/6.47 928[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 928[label="",style="solid", color="blue", weight=9]; 16.31/6.47 928 -> 319[label="",style="solid", color="blue", weight=3]; 16.31/6.47 929[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];296 -> 929[label="",style="solid", color="blue", weight=9]; 16.31/6.47 929 -> 320[label="",style="solid", color="blue", weight=3]; 16.31/6.47 297 -> 295[label="",style="dashed", color="red", weight=0]; 16.31/6.47 297[label="xy4001 == xy3001 && xy4002 == xy3002",fontsize=16,color="magenta"];297 -> 321[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 297 -> 322[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 295[label="xy29 && xy41",fontsize=16,color="burlywood",shape="triangle"];930[label="xy29/False",fontsize=10,color="white",style="solid",shape="box"];295 -> 930[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 930 -> 323[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 931[label="xy29/True",fontsize=10,color="white",style="solid",shape="box"];295 -> 931[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 931 -> 324[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 215 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 215[label="xy4000 == xy3000",fontsize=16,color="magenta"];215 -> 325[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 215 -> 326[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 216 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 216[label="xy4000 == xy3000",fontsize=16,color="magenta"];216 -> 327[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 216 -> 328[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 217 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 217[label="xy4000 == xy3000",fontsize=16,color="magenta"];217 -> 329[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 217 -> 330[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 218 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 218[label="xy4000 == xy3000",fontsize=16,color="magenta"];218 -> 331[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 218 -> 332[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 219 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 219[label="xy4000 == xy3000",fontsize=16,color="magenta"];219 -> 333[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 219 -> 334[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 220 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 220[label="xy4000 == xy3000",fontsize=16,color="magenta"];220 -> 335[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 220 -> 336[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 221 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 221[label="xy4000 == xy3000",fontsize=16,color="magenta"];221 -> 337[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 221 -> 338[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 222 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 222[label="xy4000 == xy3000",fontsize=16,color="magenta"];222 -> 339[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 222 -> 340[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 223 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 223[label="xy4000 == xy3000",fontsize=16,color="magenta"];223 -> 341[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 223 -> 342[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 224 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 224[label="xy4000 == xy3000",fontsize=16,color="magenta"];224 -> 343[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 224 -> 344[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 225 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 225[label="xy4000 == xy3000",fontsize=16,color="magenta"];225 -> 345[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 225 -> 346[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 226 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 226[label="xy4000 == xy3000",fontsize=16,color="magenta"];226 -> 347[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 226 -> 348[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 227 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 227[label="xy4000 == xy3000",fontsize=16,color="magenta"];227 -> 349[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 227 -> 350[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 228 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 228[label="xy4000 == xy3000",fontsize=16,color="magenta"];228 -> 351[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 228 -> 352[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 229 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 229[label="xy4000 == xy3000",fontsize=16,color="magenta"];229 -> 353[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 229 -> 354[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 230 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 230[label="xy4000 == xy3000",fontsize=16,color="magenta"];230 -> 355[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 230 -> 356[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 231 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 231[label="xy4000 == xy3000",fontsize=16,color="magenta"];231 -> 357[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 231 -> 358[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 232 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 232[label="xy4000 == xy3000",fontsize=16,color="magenta"];232 -> 359[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 232 -> 360[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 233 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 233[label="xy4000 == xy3000",fontsize=16,color="magenta"];233 -> 361[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 233 -> 362[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 234 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 234[label="xy4000 == xy3000",fontsize=16,color="magenta"];234 -> 363[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 234 -> 364[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 235 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 235[label="xy4000 == xy3000",fontsize=16,color="magenta"];235 -> 365[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 235 -> 366[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 236 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 236[label="xy4000 == xy3000",fontsize=16,color="magenta"];236 -> 367[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 236 -> 368[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 237 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 237[label="xy4000 == xy3000",fontsize=16,color="magenta"];237 -> 369[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 237 -> 370[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 238 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 238[label="xy4000 == xy3000",fontsize=16,color="magenta"];238 -> 371[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 238 -> 372[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 239 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 239[label="xy4000 == xy3000",fontsize=16,color="magenta"];239 -> 373[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 239 -> 374[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 240 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 240[label="xy4000 == xy3000",fontsize=16,color="magenta"];240 -> 375[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 240 -> 376[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 241 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 241[label="xy4000 == xy3000",fontsize=16,color="magenta"];241 -> 377[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 241 -> 378[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 242 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 242[label="xy4000 == xy3000",fontsize=16,color="magenta"];242 -> 379[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 242 -> 380[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 243[label="primEqInt (Pos (Succ xy40000)) (Pos xy3000)",fontsize=16,color="burlywood",shape="box"];932[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];243 -> 932[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 932 -> 381[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 933[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];243 -> 933[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 933 -> 382[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 244[label="primEqInt (Pos (Succ xy40000)) (Neg xy3000)",fontsize=16,color="black",shape="box"];244 -> 383[label="",style="solid", color="black", weight=3]; 16.31/6.47 245[label="primEqInt (Pos Zero) (Pos xy3000)",fontsize=16,color="burlywood",shape="box"];934[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];245 -> 934[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 934 -> 384[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 935[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];245 -> 935[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 935 -> 385[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 246[label="primEqInt (Pos Zero) (Neg xy3000)",fontsize=16,color="burlywood",shape="box"];936[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];246 -> 936[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 936 -> 386[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 937[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];246 -> 937[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 937 -> 387[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 247[label="primEqInt (Neg (Succ xy40000)) (Pos xy3000)",fontsize=16,color="black",shape="box"];247 -> 388[label="",style="solid", color="black", weight=3]; 16.31/6.47 248[label="primEqInt (Neg (Succ xy40000)) (Neg xy3000)",fontsize=16,color="burlywood",shape="box"];938[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];248 -> 938[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 938 -> 389[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 939[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];248 -> 939[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 939 -> 390[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 249[label="primEqInt (Neg Zero) (Pos xy3000)",fontsize=16,color="burlywood",shape="box"];940[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];249 -> 940[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 940 -> 391[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 941[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];249 -> 941[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 941 -> 392[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 250[label="primEqInt (Neg Zero) (Neg xy3000)",fontsize=16,color="burlywood",shape="box"];942[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];250 -> 942[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 942 -> 393[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 943[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];250 -> 943[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 943 -> 394[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 251 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 251[label="xy4000 == xy3000",fontsize=16,color="magenta"];251 -> 395[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 251 -> 396[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 252 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 252[label="xy4000 == xy3000",fontsize=16,color="magenta"];252 -> 397[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 252 -> 398[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 253 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 253[label="xy4000 == xy3000",fontsize=16,color="magenta"];253 -> 399[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 253 -> 400[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 254 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 254[label="xy4000 == xy3000",fontsize=16,color="magenta"];254 -> 401[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 254 -> 402[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 255 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 255[label="xy4000 == xy3000",fontsize=16,color="magenta"];255 -> 403[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 255 -> 404[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 256 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 256[label="xy4000 == xy3000",fontsize=16,color="magenta"];256 -> 405[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 256 -> 406[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 257 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 257[label="xy4000 == xy3000",fontsize=16,color="magenta"];257 -> 407[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 257 -> 408[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 258 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 258[label="xy4000 == xy3000",fontsize=16,color="magenta"];258 -> 409[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 258 -> 410[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 259 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 259[label="xy4000 == xy3000",fontsize=16,color="magenta"];259 -> 411[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 259 -> 412[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 260 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 260[label="xy4000 == xy3000",fontsize=16,color="magenta"];260 -> 413[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 260 -> 414[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 261 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 261[label="xy4000 == xy3000",fontsize=16,color="magenta"];261 -> 415[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 261 -> 416[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 262 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 262[label="xy4000 == xy3000",fontsize=16,color="magenta"];262 -> 417[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 262 -> 418[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 263 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 263[label="xy4000 == xy3000",fontsize=16,color="magenta"];263 -> 419[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 263 -> 420[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 264 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 264[label="xy4000 == xy3000",fontsize=16,color="magenta"];264 -> 421[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 264 -> 422[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 298[label="xy4000 == xy3000",fontsize=16,color="blue",shape="box"];944[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 944[label="",style="solid", color="blue", weight=9]; 16.31/6.47 944 -> 423[label="",style="solid", color="blue", weight=3]; 16.31/6.47 945[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];298 -> 945[label="",style="solid", color="blue", weight=9]; 16.31/6.47 945 -> 424[label="",style="solid", color="blue", weight=3]; 16.31/6.47 299[label="xy4001 == xy3001",fontsize=16,color="blue",shape="box"];946[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 946[label="",style="solid", color="blue", weight=9]; 16.31/6.47 946 -> 425[label="",style="solid", color="blue", weight=3]; 16.31/6.47 947[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];299 -> 947[label="",style="solid", color="blue", weight=9]; 16.31/6.47 947 -> 426[label="",style="solid", color="blue", weight=3]; 16.31/6.47 300[label="xy4000 == xy3000",fontsize=16,color="blue",shape="box"];948[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 948[label="",style="solid", color="blue", weight=9]; 16.31/6.47 948 -> 427[label="",style="solid", color="blue", weight=3]; 16.31/6.47 949[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 949[label="",style="solid", color="blue", weight=9]; 16.31/6.47 949 -> 428[label="",style="solid", color="blue", weight=3]; 16.31/6.47 950[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 950[label="",style="solid", color="blue", weight=9]; 16.31/6.47 950 -> 429[label="",style="solid", color="blue", weight=3]; 16.31/6.47 951[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 951[label="",style="solid", color="blue", weight=9]; 16.31/6.47 951 -> 430[label="",style="solid", color="blue", weight=3]; 16.31/6.47 952[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 952[label="",style="solid", color="blue", weight=9]; 16.31/6.47 952 -> 431[label="",style="solid", color="blue", weight=3]; 16.31/6.47 953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 953[label="",style="solid", color="blue", weight=9]; 16.31/6.47 953 -> 432[label="",style="solid", color="blue", weight=3]; 16.31/6.47 954[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 954[label="",style="solid", color="blue", weight=9]; 16.31/6.47 954 -> 433[label="",style="solid", color="blue", weight=3]; 16.31/6.47 955[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 955[label="",style="solid", color="blue", weight=9]; 16.31/6.47 955 -> 434[label="",style="solid", color="blue", weight=3]; 16.31/6.47 956[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 956[label="",style="solid", color="blue", weight=9]; 16.31/6.47 956 -> 435[label="",style="solid", color="blue", weight=3]; 16.31/6.47 957[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 957[label="",style="solid", color="blue", weight=9]; 16.31/6.47 957 -> 436[label="",style="solid", color="blue", weight=3]; 16.31/6.47 958[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 958[label="",style="solid", color="blue", weight=9]; 16.31/6.47 958 -> 437[label="",style="solid", color="blue", weight=3]; 16.31/6.47 959[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 959[label="",style="solid", color="blue", weight=9]; 16.31/6.47 959 -> 438[label="",style="solid", color="blue", weight=3]; 16.31/6.47 960[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 960[label="",style="solid", color="blue", weight=9]; 16.31/6.47 960 -> 439[label="",style="solid", color="blue", weight=3]; 16.31/6.47 961[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 961[label="",style="solid", color="blue", weight=9]; 16.31/6.47 961 -> 440[label="",style="solid", color="blue", weight=3]; 16.31/6.47 301[label="xy4001 == xy3001",fontsize=16,color="blue",shape="box"];962[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 962[label="",style="solid", color="blue", weight=9]; 16.31/6.47 962 -> 441[label="",style="solid", color="blue", weight=3]; 16.31/6.47 963[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 963[label="",style="solid", color="blue", weight=9]; 16.31/6.47 963 -> 442[label="",style="solid", color="blue", weight=3]; 16.31/6.47 964[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 964[label="",style="solid", color="blue", weight=9]; 16.31/6.47 964 -> 443[label="",style="solid", color="blue", weight=3]; 16.31/6.47 965[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 965[label="",style="solid", color="blue", weight=9]; 16.31/6.47 965 -> 444[label="",style="solid", color="blue", weight=3]; 16.31/6.47 966[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 966[label="",style="solid", color="blue", weight=9]; 16.31/6.47 966 -> 445[label="",style="solid", color="blue", weight=3]; 16.31/6.47 967[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 967[label="",style="solid", color="blue", weight=9]; 16.31/6.47 967 -> 446[label="",style="solid", color="blue", weight=3]; 16.31/6.47 968[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 968[label="",style="solid", color="blue", weight=9]; 16.31/6.47 968 -> 447[label="",style="solid", color="blue", weight=3]; 16.31/6.47 969[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 969[label="",style="solid", color="blue", weight=9]; 16.31/6.47 969 -> 448[label="",style="solid", color="blue", weight=3]; 16.31/6.47 970[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 970[label="",style="solid", color="blue", weight=9]; 16.31/6.47 970 -> 449[label="",style="solid", color="blue", weight=3]; 16.31/6.47 971[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 971[label="",style="solid", color="blue", weight=9]; 16.31/6.47 971 -> 450[label="",style="solid", color="blue", weight=3]; 16.31/6.47 972[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 972[label="",style="solid", color="blue", weight=9]; 16.31/6.47 972 -> 451[label="",style="solid", color="blue", weight=3]; 16.31/6.47 973[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 973[label="",style="solid", color="blue", weight=9]; 16.31/6.47 973 -> 452[label="",style="solid", color="blue", weight=3]; 16.31/6.47 974[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 974[label="",style="solid", color="blue", weight=9]; 16.31/6.47 974 -> 453[label="",style="solid", color="blue", weight=3]; 16.31/6.47 975[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];301 -> 975[label="",style="solid", color="blue", weight=9]; 16.31/6.47 975 -> 454[label="",style="solid", color="blue", weight=3]; 16.31/6.47 275 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 275[label="xy4000 * xy3001 == xy4001 * xy3000",fontsize=16,color="magenta"];275 -> 455[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 275 -> 456[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 302[label="xy4000 == xy3000",fontsize=16,color="blue",shape="box"];976[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 976[label="",style="solid", color="blue", weight=9]; 16.31/6.47 976 -> 457[label="",style="solid", color="blue", weight=3]; 16.31/6.47 977[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 977[label="",style="solid", color="blue", weight=9]; 16.31/6.47 977 -> 458[label="",style="solid", color="blue", weight=3]; 16.31/6.47 978[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 978[label="",style="solid", color="blue", weight=9]; 16.31/6.47 978 -> 459[label="",style="solid", color="blue", weight=3]; 16.31/6.47 979[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 979[label="",style="solid", color="blue", weight=9]; 16.31/6.47 979 -> 460[label="",style="solid", color="blue", weight=3]; 16.31/6.47 980[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 980[label="",style="solid", color="blue", weight=9]; 16.31/6.47 980 -> 461[label="",style="solid", color="blue", weight=3]; 16.31/6.47 981[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 981[label="",style="solid", color="blue", weight=9]; 16.31/6.47 981 -> 462[label="",style="solid", color="blue", weight=3]; 16.31/6.47 982[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 982[label="",style="solid", color="blue", weight=9]; 16.31/6.47 982 -> 463[label="",style="solid", color="blue", weight=3]; 16.31/6.47 983[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 983[label="",style="solid", color="blue", weight=9]; 16.31/6.47 983 -> 464[label="",style="solid", color="blue", weight=3]; 16.31/6.47 984[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 984[label="",style="solid", color="blue", weight=9]; 16.31/6.47 984 -> 465[label="",style="solid", color="blue", weight=3]; 16.31/6.47 985[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 985[label="",style="solid", color="blue", weight=9]; 16.31/6.47 985 -> 466[label="",style="solid", color="blue", weight=3]; 16.31/6.47 986[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 986[label="",style="solid", color="blue", weight=9]; 16.31/6.47 986 -> 467[label="",style="solid", color="blue", weight=3]; 16.31/6.47 987[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 987[label="",style="solid", color="blue", weight=9]; 16.31/6.47 987 -> 468[label="",style="solid", color="blue", weight=3]; 16.31/6.47 988[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 988[label="",style="solid", color="blue", weight=9]; 16.31/6.47 988 -> 469[label="",style="solid", color="blue", weight=3]; 16.31/6.47 989[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 989[label="",style="solid", color="blue", weight=9]; 16.31/6.47 989 -> 470[label="",style="solid", color="blue", weight=3]; 16.31/6.47 303 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 303[label="xy4001 == xy3001",fontsize=16,color="magenta"];303 -> 471[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 303 -> 472[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 276 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 276[label="xy4000 * xy3001 == xy4001 * xy3000",fontsize=16,color="magenta"];276 -> 473[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 276 -> 474[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 277[label="xy3000",fontsize=16,color="green",shape="box"];278[label="xy4000",fontsize=16,color="green",shape="box"];279[label="primEqNat (Succ xy40000) xy3000",fontsize=16,color="burlywood",shape="box"];990[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];279 -> 990[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 990 -> 475[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 991[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];279 -> 991[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 991 -> 476[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 280[label="primEqNat Zero xy3000",fontsize=16,color="burlywood",shape="box"];992[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];280 -> 992[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 992 -> 477[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 993[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];280 -> 993[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 993 -> 478[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 307 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 307[label="xy4000 == xy3000",fontsize=16,color="magenta"];307 -> 479[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 307 -> 480[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 308 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 308[label="xy4000 == xy3000",fontsize=16,color="magenta"];308 -> 481[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 308 -> 482[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 309 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 309[label="xy4000 == xy3000",fontsize=16,color="magenta"];309 -> 483[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 309 -> 484[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 310 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 310[label="xy4000 == xy3000",fontsize=16,color="magenta"];310 -> 485[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 310 -> 486[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 311 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 311[label="xy4000 == xy3000",fontsize=16,color="magenta"];311 -> 487[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 311 -> 488[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 312 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 312[label="xy4000 == xy3000",fontsize=16,color="magenta"];312 -> 489[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 312 -> 490[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 313 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 313[label="xy4000 == xy3000",fontsize=16,color="magenta"];313 -> 491[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 313 -> 492[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 314 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 314[label="xy4000 == xy3000",fontsize=16,color="magenta"];314 -> 493[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 314 -> 494[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 315 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 315[label="xy4000 == xy3000",fontsize=16,color="magenta"];315 -> 495[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 315 -> 496[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 316 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 316[label="xy4000 == xy3000",fontsize=16,color="magenta"];316 -> 497[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 316 -> 498[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 317 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 317[label="xy4000 == xy3000",fontsize=16,color="magenta"];317 -> 499[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 317 -> 500[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 318 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 318[label="xy4000 == xy3000",fontsize=16,color="magenta"];318 -> 501[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 318 -> 502[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 319 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 319[label="xy4000 == xy3000",fontsize=16,color="magenta"];319 -> 503[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 319 -> 504[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 320 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 320[label="xy4000 == xy3000",fontsize=16,color="magenta"];320 -> 505[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 320 -> 506[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 321[label="xy4001 == xy3001",fontsize=16,color="blue",shape="box"];994[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 994[label="",style="solid", color="blue", weight=9]; 16.31/6.47 994 -> 507[label="",style="solid", color="blue", weight=3]; 16.31/6.47 995[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 995[label="",style="solid", color="blue", weight=9]; 16.31/6.47 995 -> 508[label="",style="solid", color="blue", weight=3]; 16.31/6.47 996[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 996[label="",style="solid", color="blue", weight=9]; 16.31/6.47 996 -> 509[label="",style="solid", color="blue", weight=3]; 16.31/6.47 997[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 997[label="",style="solid", color="blue", weight=9]; 16.31/6.47 997 -> 510[label="",style="solid", color="blue", weight=3]; 16.31/6.47 998[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 998[label="",style="solid", color="blue", weight=9]; 16.31/6.47 998 -> 511[label="",style="solid", color="blue", weight=3]; 16.31/6.47 999[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 999[label="",style="solid", color="blue", weight=9]; 16.31/6.47 999 -> 512[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1000[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1000[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1000 -> 513[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1001[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1001[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1001 -> 514[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1002[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1002[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1002 -> 515[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1003[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1003[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1003 -> 516[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1004[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1004[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1004 -> 517[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1005[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1005[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1005 -> 518[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1006[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1006[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1006 -> 519[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1007[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 1007[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1007 -> 520[label="",style="solid", color="blue", weight=3]; 16.31/6.47 322[label="xy4002 == xy3002",fontsize=16,color="blue",shape="box"];1008[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1008[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1008 -> 521[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1009[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1009[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1009 -> 522[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1010[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1010[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1010 -> 523[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1011[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1011[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1011 -> 524[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1012[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1012[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1012 -> 525[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1013[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1013[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1013 -> 526[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1014[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1014[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1014 -> 527[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1015[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1015[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1015 -> 528[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1016[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1016[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1016 -> 529[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1017[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1017[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1017 -> 530[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1018[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1018[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1018 -> 531[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1019[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1019[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1019 -> 532[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1020[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1020[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1020 -> 533[label="",style="solid", color="blue", weight=3]; 16.31/6.47 1021[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 1021[label="",style="solid", color="blue", weight=9]; 16.31/6.47 1021 -> 534[label="",style="solid", color="blue", weight=3]; 16.31/6.47 323[label="False && xy41",fontsize=16,color="black",shape="box"];323 -> 535[label="",style="solid", color="black", weight=3]; 16.31/6.47 324[label="True && xy41",fontsize=16,color="black",shape="box"];324 -> 536[label="",style="solid", color="black", weight=3]; 16.31/6.47 325[label="xy3000",fontsize=16,color="green",shape="box"];326[label="xy4000",fontsize=16,color="green",shape="box"];327[label="xy3000",fontsize=16,color="green",shape="box"];328[label="xy4000",fontsize=16,color="green",shape="box"];329[label="xy3000",fontsize=16,color="green",shape="box"];330[label="xy4000",fontsize=16,color="green",shape="box"];331[label="xy3000",fontsize=16,color="green",shape="box"];332[label="xy4000",fontsize=16,color="green",shape="box"];333[label="xy3000",fontsize=16,color="green",shape="box"];334[label="xy4000",fontsize=16,color="green",shape="box"];335[label="xy3000",fontsize=16,color="green",shape="box"];336[label="xy4000",fontsize=16,color="green",shape="box"];337[label="xy3000",fontsize=16,color="green",shape="box"];338[label="xy4000",fontsize=16,color="green",shape="box"];339[label="xy3000",fontsize=16,color="green",shape="box"];340[label="xy4000",fontsize=16,color="green",shape="box"];341[label="xy3000",fontsize=16,color="green",shape="box"];342[label="xy4000",fontsize=16,color="green",shape="box"];343[label="xy3000",fontsize=16,color="green",shape="box"];344[label="xy4000",fontsize=16,color="green",shape="box"];345[label="xy3000",fontsize=16,color="green",shape="box"];346[label="xy4000",fontsize=16,color="green",shape="box"];347[label="xy3000",fontsize=16,color="green",shape="box"];348[label="xy4000",fontsize=16,color="green",shape="box"];349[label="xy3000",fontsize=16,color="green",shape="box"];350[label="xy4000",fontsize=16,color="green",shape="box"];351[label="xy3000",fontsize=16,color="green",shape="box"];352[label="xy4000",fontsize=16,color="green",shape="box"];353[label="xy3000",fontsize=16,color="green",shape="box"];354[label="xy4000",fontsize=16,color="green",shape="box"];355[label="xy3000",fontsize=16,color="green",shape="box"];356[label="xy4000",fontsize=16,color="green",shape="box"];357[label="xy3000",fontsize=16,color="green",shape="box"];358[label="xy4000",fontsize=16,color="green",shape="box"];359[label="xy3000",fontsize=16,color="green",shape="box"];360[label="xy4000",fontsize=16,color="green",shape="box"];361[label="xy3000",fontsize=16,color="green",shape="box"];362[label="xy4000",fontsize=16,color="green",shape="box"];363[label="xy3000",fontsize=16,color="green",shape="box"];364[label="xy4000",fontsize=16,color="green",shape="box"];365[label="xy3000",fontsize=16,color="green",shape="box"];366[label="xy4000",fontsize=16,color="green",shape="box"];367[label="xy3000",fontsize=16,color="green",shape="box"];368[label="xy4000",fontsize=16,color="green",shape="box"];369[label="xy3000",fontsize=16,color="green",shape="box"];370[label="xy4000",fontsize=16,color="green",shape="box"];371[label="xy3000",fontsize=16,color="green",shape="box"];372[label="xy4000",fontsize=16,color="green",shape="box"];373[label="xy3000",fontsize=16,color="green",shape="box"];374[label="xy4000",fontsize=16,color="green",shape="box"];375[label="xy3000",fontsize=16,color="green",shape="box"];376[label="xy4000",fontsize=16,color="green",shape="box"];377[label="xy3000",fontsize=16,color="green",shape="box"];378[label="xy4000",fontsize=16,color="green",shape="box"];379[label="xy3000",fontsize=16,color="green",shape="box"];380[label="xy4000",fontsize=16,color="green",shape="box"];381[label="primEqInt (Pos (Succ xy40000)) (Pos (Succ xy30000))",fontsize=16,color="black",shape="box"];381 -> 537[label="",style="solid", color="black", weight=3]; 16.31/6.47 382[label="primEqInt (Pos (Succ xy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];382 -> 538[label="",style="solid", color="black", weight=3]; 16.31/6.47 383[label="False",fontsize=16,color="green",shape="box"];384[label="primEqInt (Pos Zero) (Pos (Succ xy30000))",fontsize=16,color="black",shape="box"];384 -> 539[label="",style="solid", color="black", weight=3]; 16.31/6.47 385[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];385 -> 540[label="",style="solid", color="black", weight=3]; 16.31/6.47 386[label="primEqInt (Pos Zero) (Neg (Succ xy30000))",fontsize=16,color="black",shape="box"];386 -> 541[label="",style="solid", color="black", weight=3]; 16.31/6.47 387[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];387 -> 542[label="",style="solid", color="black", weight=3]; 16.31/6.47 388[label="False",fontsize=16,color="green",shape="box"];389[label="primEqInt (Neg (Succ xy40000)) (Neg (Succ xy30000))",fontsize=16,color="black",shape="box"];389 -> 543[label="",style="solid", color="black", weight=3]; 16.31/6.47 390[label="primEqInt (Neg (Succ xy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];390 -> 544[label="",style="solid", color="black", weight=3]; 16.31/6.47 391[label="primEqInt (Neg Zero) (Pos (Succ xy30000))",fontsize=16,color="black",shape="box"];391 -> 545[label="",style="solid", color="black", weight=3]; 16.31/6.47 392[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];392 -> 546[label="",style="solid", color="black", weight=3]; 16.31/6.47 393[label="primEqInt (Neg Zero) (Neg (Succ xy30000))",fontsize=16,color="black",shape="box"];393 -> 547[label="",style="solid", color="black", weight=3]; 16.31/6.47 394[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];394 -> 548[label="",style="solid", color="black", weight=3]; 16.31/6.47 395[label="xy3000",fontsize=16,color="green",shape="box"];396[label="xy4000",fontsize=16,color="green",shape="box"];397[label="xy3000",fontsize=16,color="green",shape="box"];398[label="xy4000",fontsize=16,color="green",shape="box"];399[label="xy3000",fontsize=16,color="green",shape="box"];400[label="xy4000",fontsize=16,color="green",shape="box"];401[label="xy3000",fontsize=16,color="green",shape="box"];402[label="xy4000",fontsize=16,color="green",shape="box"];403[label="xy3000",fontsize=16,color="green",shape="box"];404[label="xy4000",fontsize=16,color="green",shape="box"];405[label="xy3000",fontsize=16,color="green",shape="box"];406[label="xy4000",fontsize=16,color="green",shape="box"];407[label="xy3000",fontsize=16,color="green",shape="box"];408[label="xy4000",fontsize=16,color="green",shape="box"];409[label="xy3000",fontsize=16,color="green",shape="box"];410[label="xy4000",fontsize=16,color="green",shape="box"];411[label="xy3000",fontsize=16,color="green",shape="box"];412[label="xy4000",fontsize=16,color="green",shape="box"];413[label="xy3000",fontsize=16,color="green",shape="box"];414[label="xy4000",fontsize=16,color="green",shape="box"];415[label="xy3000",fontsize=16,color="green",shape="box"];416[label="xy4000",fontsize=16,color="green",shape="box"];417[label="xy3000",fontsize=16,color="green",shape="box"];418[label="xy4000",fontsize=16,color="green",shape="box"];419[label="xy3000",fontsize=16,color="green",shape="box"];420[label="xy4000",fontsize=16,color="green",shape="box"];421[label="xy3000",fontsize=16,color="green",shape="box"];422[label="xy4000",fontsize=16,color="green",shape="box"];423 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 423[label="xy4000 == xy3000",fontsize=16,color="magenta"];423 -> 549[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 423 -> 550[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 424 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 424[label="xy4000 == xy3000",fontsize=16,color="magenta"];424 -> 551[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 424 -> 552[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 425 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 425[label="xy4001 == xy3001",fontsize=16,color="magenta"];425 -> 553[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 425 -> 554[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 426 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 426[label="xy4001 == xy3001",fontsize=16,color="magenta"];426 -> 555[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 426 -> 556[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 427 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 427[label="xy4000 == xy3000",fontsize=16,color="magenta"];427 -> 557[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 427 -> 558[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 428 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 428[label="xy4000 == xy3000",fontsize=16,color="magenta"];428 -> 559[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 428 -> 560[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 429 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 429[label="xy4000 == xy3000",fontsize=16,color="magenta"];429 -> 561[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 429 -> 562[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 430 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 430[label="xy4000 == xy3000",fontsize=16,color="magenta"];430 -> 563[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 430 -> 564[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 431 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 431[label="xy4000 == xy3000",fontsize=16,color="magenta"];431 -> 565[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 431 -> 566[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 432 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 432[label="xy4000 == xy3000",fontsize=16,color="magenta"];432 -> 567[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 432 -> 568[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 433 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 433[label="xy4000 == xy3000",fontsize=16,color="magenta"];433 -> 569[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 433 -> 570[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 434 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 434[label="xy4000 == xy3000",fontsize=16,color="magenta"];434 -> 571[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 434 -> 572[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 435 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 435[label="xy4000 == xy3000",fontsize=16,color="magenta"];435 -> 573[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 435 -> 574[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 436 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 436[label="xy4000 == xy3000",fontsize=16,color="magenta"];436 -> 575[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 436 -> 576[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 437 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 437[label="xy4000 == xy3000",fontsize=16,color="magenta"];437 -> 577[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 437 -> 578[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 438 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 438[label="xy4000 == xy3000",fontsize=16,color="magenta"];438 -> 579[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 438 -> 580[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 439 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 439[label="xy4000 == xy3000",fontsize=16,color="magenta"];439 -> 581[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 439 -> 582[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 440 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 440[label="xy4000 == xy3000",fontsize=16,color="magenta"];440 -> 583[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 440 -> 584[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 441 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 441[label="xy4001 == xy3001",fontsize=16,color="magenta"];441 -> 585[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 441 -> 586[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 442 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 442[label="xy4001 == xy3001",fontsize=16,color="magenta"];442 -> 587[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 442 -> 588[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 443 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 443[label="xy4001 == xy3001",fontsize=16,color="magenta"];443 -> 589[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 443 -> 590[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 444 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 444[label="xy4001 == xy3001",fontsize=16,color="magenta"];444 -> 591[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 444 -> 592[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 445 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 445[label="xy4001 == xy3001",fontsize=16,color="magenta"];445 -> 593[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 445 -> 594[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 446 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 446[label="xy4001 == xy3001",fontsize=16,color="magenta"];446 -> 595[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 446 -> 596[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 447 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 447[label="xy4001 == xy3001",fontsize=16,color="magenta"];447 -> 597[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 447 -> 598[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 448 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 448[label="xy4001 == xy3001",fontsize=16,color="magenta"];448 -> 599[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 448 -> 600[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 449 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 449[label="xy4001 == xy3001",fontsize=16,color="magenta"];449 -> 601[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 449 -> 602[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 450 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 450[label="xy4001 == xy3001",fontsize=16,color="magenta"];450 -> 603[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 450 -> 604[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 451 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 451[label="xy4001 == xy3001",fontsize=16,color="magenta"];451 -> 605[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 451 -> 606[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 452 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 452[label="xy4001 == xy3001",fontsize=16,color="magenta"];452 -> 607[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 452 -> 608[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 453 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 453[label="xy4001 == xy3001",fontsize=16,color="magenta"];453 -> 609[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 453 -> 610[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 454 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 454[label="xy4001 == xy3001",fontsize=16,color="magenta"];454 -> 611[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 454 -> 612[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 455[label="xy4001 * xy3000",fontsize=16,color="black",shape="triangle"];455 -> 613[label="",style="solid", color="black", weight=3]; 16.31/6.47 456 -> 455[label="",style="dashed", color="red", weight=0]; 16.31/6.47 456[label="xy4000 * xy3001",fontsize=16,color="magenta"];456 -> 614[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 456 -> 615[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 457 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 457[label="xy4000 == xy3000",fontsize=16,color="magenta"];457 -> 616[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 457 -> 617[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 458 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 458[label="xy4000 == xy3000",fontsize=16,color="magenta"];458 -> 618[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 458 -> 619[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 459 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 459[label="xy4000 == xy3000",fontsize=16,color="magenta"];459 -> 620[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 459 -> 621[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 460 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 460[label="xy4000 == xy3000",fontsize=16,color="magenta"];460 -> 622[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 460 -> 623[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 461 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 461[label="xy4000 == xy3000",fontsize=16,color="magenta"];461 -> 624[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 461 -> 625[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 462 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 462[label="xy4000 == xy3000",fontsize=16,color="magenta"];462 -> 626[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 462 -> 627[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 463 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 463[label="xy4000 == xy3000",fontsize=16,color="magenta"];463 -> 628[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 463 -> 629[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 464 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 464[label="xy4000 == xy3000",fontsize=16,color="magenta"];464 -> 630[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 464 -> 631[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 465 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 465[label="xy4000 == xy3000",fontsize=16,color="magenta"];465 -> 632[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 465 -> 633[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 466 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 466[label="xy4000 == xy3000",fontsize=16,color="magenta"];466 -> 634[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 466 -> 635[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 467 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 467[label="xy4000 == xy3000",fontsize=16,color="magenta"];467 -> 636[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 467 -> 637[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 468 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 468[label="xy4000 == xy3000",fontsize=16,color="magenta"];468 -> 638[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 468 -> 639[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 469 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 469[label="xy4000 == xy3000",fontsize=16,color="magenta"];469 -> 640[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 469 -> 641[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 470 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 470[label="xy4000 == xy3000",fontsize=16,color="magenta"];470 -> 642[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 470 -> 643[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 471[label="xy3001",fontsize=16,color="green",shape="box"];472[label="xy4001",fontsize=16,color="green",shape="box"];473 -> 455[label="",style="dashed", color="red", weight=0]; 16.31/6.47 473[label="xy4001 * xy3000",fontsize=16,color="magenta"];473 -> 644[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 473 -> 645[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 474 -> 455[label="",style="dashed", color="red", weight=0]; 16.31/6.47 474[label="xy4000 * xy3001",fontsize=16,color="magenta"];474 -> 646[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 474 -> 647[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 475[label="primEqNat (Succ xy40000) (Succ xy30000)",fontsize=16,color="black",shape="box"];475 -> 648[label="",style="solid", color="black", weight=3]; 16.31/6.47 476[label="primEqNat (Succ xy40000) Zero",fontsize=16,color="black",shape="box"];476 -> 649[label="",style="solid", color="black", weight=3]; 16.31/6.47 477[label="primEqNat Zero (Succ xy30000)",fontsize=16,color="black",shape="box"];477 -> 650[label="",style="solid", color="black", weight=3]; 16.31/6.47 478[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];478 -> 651[label="",style="solid", color="black", weight=3]; 16.31/6.47 479[label="xy3000",fontsize=16,color="green",shape="box"];480[label="xy4000",fontsize=16,color="green",shape="box"];481[label="xy3000",fontsize=16,color="green",shape="box"];482[label="xy4000",fontsize=16,color="green",shape="box"];483[label="xy3000",fontsize=16,color="green",shape="box"];484[label="xy4000",fontsize=16,color="green",shape="box"];485[label="xy3000",fontsize=16,color="green",shape="box"];486[label="xy4000",fontsize=16,color="green",shape="box"];487[label="xy3000",fontsize=16,color="green",shape="box"];488[label="xy4000",fontsize=16,color="green",shape="box"];489[label="xy3000",fontsize=16,color="green",shape="box"];490[label="xy4000",fontsize=16,color="green",shape="box"];491[label="xy3000",fontsize=16,color="green",shape="box"];492[label="xy4000",fontsize=16,color="green",shape="box"];493[label="xy3000",fontsize=16,color="green",shape="box"];494[label="xy4000",fontsize=16,color="green",shape="box"];495[label="xy3000",fontsize=16,color="green",shape="box"];496[label="xy4000",fontsize=16,color="green",shape="box"];497[label="xy3000",fontsize=16,color="green",shape="box"];498[label="xy4000",fontsize=16,color="green",shape="box"];499[label="xy3000",fontsize=16,color="green",shape="box"];500[label="xy4000",fontsize=16,color="green",shape="box"];501[label="xy3000",fontsize=16,color="green",shape="box"];502[label="xy4000",fontsize=16,color="green",shape="box"];503[label="xy3000",fontsize=16,color="green",shape="box"];504[label="xy4000",fontsize=16,color="green",shape="box"];505[label="xy3000",fontsize=16,color="green",shape="box"];506[label="xy4000",fontsize=16,color="green",shape="box"];507 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 507[label="xy4001 == xy3001",fontsize=16,color="magenta"];507 -> 652[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 507 -> 653[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 508 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 508[label="xy4001 == xy3001",fontsize=16,color="magenta"];508 -> 654[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 508 -> 655[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 509 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 509[label="xy4001 == xy3001",fontsize=16,color="magenta"];509 -> 656[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 509 -> 657[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 510 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 510[label="xy4001 == xy3001",fontsize=16,color="magenta"];510 -> 658[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 510 -> 659[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 511 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 511[label="xy4001 == xy3001",fontsize=16,color="magenta"];511 -> 660[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 511 -> 661[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 512 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 512[label="xy4001 == xy3001",fontsize=16,color="magenta"];512 -> 662[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 512 -> 663[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 513 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 513[label="xy4001 == xy3001",fontsize=16,color="magenta"];513 -> 664[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 513 -> 665[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 514 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 514[label="xy4001 == xy3001",fontsize=16,color="magenta"];514 -> 666[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 514 -> 667[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 515 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 515[label="xy4001 == xy3001",fontsize=16,color="magenta"];515 -> 668[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 515 -> 669[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 516 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 516[label="xy4001 == xy3001",fontsize=16,color="magenta"];516 -> 670[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 516 -> 671[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 517 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 517[label="xy4001 == xy3001",fontsize=16,color="magenta"];517 -> 672[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 517 -> 673[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 518 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 518[label="xy4001 == xy3001",fontsize=16,color="magenta"];518 -> 674[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 518 -> 675[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 519 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 519[label="xy4001 == xy3001",fontsize=16,color="magenta"];519 -> 676[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 519 -> 677[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 520 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 520[label="xy4001 == xy3001",fontsize=16,color="magenta"];520 -> 678[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 520 -> 679[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 521 -> 40[label="",style="dashed", color="red", weight=0]; 16.31/6.47 521[label="xy4002 == xy3002",fontsize=16,color="magenta"];521 -> 680[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 521 -> 681[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 522 -> 41[label="",style="dashed", color="red", weight=0]; 16.31/6.47 522[label="xy4002 == xy3002",fontsize=16,color="magenta"];522 -> 682[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 522 -> 683[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 523 -> 42[label="",style="dashed", color="red", weight=0]; 16.31/6.47 523[label="xy4002 == xy3002",fontsize=16,color="magenta"];523 -> 684[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 523 -> 685[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 524 -> 43[label="",style="dashed", color="red", weight=0]; 16.31/6.47 524[label="xy4002 == xy3002",fontsize=16,color="magenta"];524 -> 686[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 524 -> 687[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 525 -> 44[label="",style="dashed", color="red", weight=0]; 16.31/6.47 525[label="xy4002 == xy3002",fontsize=16,color="magenta"];525 -> 688[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 525 -> 689[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 526 -> 45[label="",style="dashed", color="red", weight=0]; 16.31/6.47 526[label="xy4002 == xy3002",fontsize=16,color="magenta"];526 -> 690[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 526 -> 691[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 527 -> 46[label="",style="dashed", color="red", weight=0]; 16.31/6.47 527[label="xy4002 == xy3002",fontsize=16,color="magenta"];527 -> 692[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 527 -> 693[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 528 -> 47[label="",style="dashed", color="red", weight=0]; 16.31/6.47 528[label="xy4002 == xy3002",fontsize=16,color="magenta"];528 -> 694[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 528 -> 695[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 529 -> 48[label="",style="dashed", color="red", weight=0]; 16.31/6.47 529[label="xy4002 == xy3002",fontsize=16,color="magenta"];529 -> 696[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 529 -> 697[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 530 -> 49[label="",style="dashed", color="red", weight=0]; 16.31/6.47 530[label="xy4002 == xy3002",fontsize=16,color="magenta"];530 -> 698[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 530 -> 699[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 531 -> 50[label="",style="dashed", color="red", weight=0]; 16.31/6.47 531[label="xy4002 == xy3002",fontsize=16,color="magenta"];531 -> 700[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 531 -> 701[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 532 -> 51[label="",style="dashed", color="red", weight=0]; 16.31/6.47 532[label="xy4002 == xy3002",fontsize=16,color="magenta"];532 -> 702[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 532 -> 703[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 533 -> 52[label="",style="dashed", color="red", weight=0]; 16.31/6.47 533[label="xy4002 == xy3002",fontsize=16,color="magenta"];533 -> 704[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 533 -> 705[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 534 -> 53[label="",style="dashed", color="red", weight=0]; 16.31/6.47 534[label="xy4002 == xy3002",fontsize=16,color="magenta"];534 -> 706[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 534 -> 707[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 535[label="False",fontsize=16,color="green",shape="box"];536[label="xy41",fontsize=16,color="green",shape="box"];537 -> 208[label="",style="dashed", color="red", weight=0]; 16.31/6.47 537[label="primEqNat xy40000 xy30000",fontsize=16,color="magenta"];537 -> 708[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 537 -> 709[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 538[label="False",fontsize=16,color="green",shape="box"];539[label="False",fontsize=16,color="green",shape="box"];540[label="True",fontsize=16,color="green",shape="box"];541[label="False",fontsize=16,color="green",shape="box"];542[label="True",fontsize=16,color="green",shape="box"];543 -> 208[label="",style="dashed", color="red", weight=0]; 16.31/6.47 543[label="primEqNat xy40000 xy30000",fontsize=16,color="magenta"];543 -> 710[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 543 -> 711[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 544[label="False",fontsize=16,color="green",shape="box"];545[label="False",fontsize=16,color="green",shape="box"];546[label="True",fontsize=16,color="green",shape="box"];547[label="False",fontsize=16,color="green",shape="box"];548[label="True",fontsize=16,color="green",shape="box"];549[label="xy3000",fontsize=16,color="green",shape="box"];550[label="xy4000",fontsize=16,color="green",shape="box"];551[label="xy3000",fontsize=16,color="green",shape="box"];552[label="xy4000",fontsize=16,color="green",shape="box"];553[label="xy3001",fontsize=16,color="green",shape="box"];554[label="xy4001",fontsize=16,color="green",shape="box"];555[label="xy3001",fontsize=16,color="green",shape="box"];556[label="xy4001",fontsize=16,color="green",shape="box"];557[label="xy3000",fontsize=16,color="green",shape="box"];558[label="xy4000",fontsize=16,color="green",shape="box"];559[label="xy3000",fontsize=16,color="green",shape="box"];560[label="xy4000",fontsize=16,color="green",shape="box"];561[label="xy3000",fontsize=16,color="green",shape="box"];562[label="xy4000",fontsize=16,color="green",shape="box"];563[label="xy3000",fontsize=16,color="green",shape="box"];564[label="xy4000",fontsize=16,color="green",shape="box"];565[label="xy3000",fontsize=16,color="green",shape="box"];566[label="xy4000",fontsize=16,color="green",shape="box"];567[label="xy3000",fontsize=16,color="green",shape="box"];568[label="xy4000",fontsize=16,color="green",shape="box"];569[label="xy3000",fontsize=16,color="green",shape="box"];570[label="xy4000",fontsize=16,color="green",shape="box"];571[label="xy3000",fontsize=16,color="green",shape="box"];572[label="xy4000",fontsize=16,color="green",shape="box"];573[label="xy3000",fontsize=16,color="green",shape="box"];574[label="xy4000",fontsize=16,color="green",shape="box"];575[label="xy3000",fontsize=16,color="green",shape="box"];576[label="xy4000",fontsize=16,color="green",shape="box"];577[label="xy3000",fontsize=16,color="green",shape="box"];578[label="xy4000",fontsize=16,color="green",shape="box"];579[label="xy3000",fontsize=16,color="green",shape="box"];580[label="xy4000",fontsize=16,color="green",shape="box"];581[label="xy3000",fontsize=16,color="green",shape="box"];582[label="xy4000",fontsize=16,color="green",shape="box"];583[label="xy3000",fontsize=16,color="green",shape="box"];584[label="xy4000",fontsize=16,color="green",shape="box"];585[label="xy3001",fontsize=16,color="green",shape="box"];586[label="xy4001",fontsize=16,color="green",shape="box"];587[label="xy3001",fontsize=16,color="green",shape="box"];588[label="xy4001",fontsize=16,color="green",shape="box"];589[label="xy3001",fontsize=16,color="green",shape="box"];590[label="xy4001",fontsize=16,color="green",shape="box"];591[label="xy3001",fontsize=16,color="green",shape="box"];592[label="xy4001",fontsize=16,color="green",shape="box"];593[label="xy3001",fontsize=16,color="green",shape="box"];594[label="xy4001",fontsize=16,color="green",shape="box"];595[label="xy3001",fontsize=16,color="green",shape="box"];596[label="xy4001",fontsize=16,color="green",shape="box"];597[label="xy3001",fontsize=16,color="green",shape="box"];598[label="xy4001",fontsize=16,color="green",shape="box"];599[label="xy3001",fontsize=16,color="green",shape="box"];600[label="xy4001",fontsize=16,color="green",shape="box"];601[label="xy3001",fontsize=16,color="green",shape="box"];602[label="xy4001",fontsize=16,color="green",shape="box"];603[label="xy3001",fontsize=16,color="green",shape="box"];604[label="xy4001",fontsize=16,color="green",shape="box"];605[label="xy3001",fontsize=16,color="green",shape="box"];606[label="xy4001",fontsize=16,color="green",shape="box"];607[label="xy3001",fontsize=16,color="green",shape="box"];608[label="xy4001",fontsize=16,color="green",shape="box"];609[label="xy3001",fontsize=16,color="green",shape="box"];610[label="xy4001",fontsize=16,color="green",shape="box"];611[label="xy3001",fontsize=16,color="green",shape="box"];612[label="xy4001",fontsize=16,color="green",shape="box"];613[label="primMulInt xy4001 xy3000",fontsize=16,color="burlywood",shape="box"];1022[label="xy4001/Pos xy40010",fontsize=10,color="white",style="solid",shape="box"];613 -> 1022[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1022 -> 712[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1023[label="xy4001/Neg xy40010",fontsize=10,color="white",style="solid",shape="box"];613 -> 1023[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1023 -> 713[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 614[label="xy3001",fontsize=16,color="green",shape="box"];615[label="xy4000",fontsize=16,color="green",shape="box"];616[label="xy3000",fontsize=16,color="green",shape="box"];617[label="xy4000",fontsize=16,color="green",shape="box"];618[label="xy3000",fontsize=16,color="green",shape="box"];619[label="xy4000",fontsize=16,color="green",shape="box"];620[label="xy3000",fontsize=16,color="green",shape="box"];621[label="xy4000",fontsize=16,color="green",shape="box"];622[label="xy3000",fontsize=16,color="green",shape="box"];623[label="xy4000",fontsize=16,color="green",shape="box"];624[label="xy3000",fontsize=16,color="green",shape="box"];625[label="xy4000",fontsize=16,color="green",shape="box"];626[label="xy3000",fontsize=16,color="green",shape="box"];627[label="xy4000",fontsize=16,color="green",shape="box"];628[label="xy3000",fontsize=16,color="green",shape="box"];629[label="xy4000",fontsize=16,color="green",shape="box"];630[label="xy3000",fontsize=16,color="green",shape="box"];631[label="xy4000",fontsize=16,color="green",shape="box"];632[label="xy3000",fontsize=16,color="green",shape="box"];633[label="xy4000",fontsize=16,color="green",shape="box"];634[label="xy3000",fontsize=16,color="green",shape="box"];635[label="xy4000",fontsize=16,color="green",shape="box"];636[label="xy3000",fontsize=16,color="green",shape="box"];637[label="xy4000",fontsize=16,color="green",shape="box"];638[label="xy3000",fontsize=16,color="green",shape="box"];639[label="xy4000",fontsize=16,color="green",shape="box"];640[label="xy3000",fontsize=16,color="green",shape="box"];641[label="xy4000",fontsize=16,color="green",shape="box"];642[label="xy3000",fontsize=16,color="green",shape="box"];643[label="xy4000",fontsize=16,color="green",shape="box"];644[label="xy3000",fontsize=16,color="green",shape="box"];645[label="xy4001",fontsize=16,color="green",shape="box"];646[label="xy3001",fontsize=16,color="green",shape="box"];647[label="xy4000",fontsize=16,color="green",shape="box"];648 -> 208[label="",style="dashed", color="red", weight=0]; 16.31/6.47 648[label="primEqNat xy40000 xy30000",fontsize=16,color="magenta"];648 -> 714[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 648 -> 715[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 649[label="False",fontsize=16,color="green",shape="box"];650[label="False",fontsize=16,color="green",shape="box"];651[label="True",fontsize=16,color="green",shape="box"];652[label="xy3001",fontsize=16,color="green",shape="box"];653[label="xy4001",fontsize=16,color="green",shape="box"];654[label="xy3001",fontsize=16,color="green",shape="box"];655[label="xy4001",fontsize=16,color="green",shape="box"];656[label="xy3001",fontsize=16,color="green",shape="box"];657[label="xy4001",fontsize=16,color="green",shape="box"];658[label="xy3001",fontsize=16,color="green",shape="box"];659[label="xy4001",fontsize=16,color="green",shape="box"];660[label="xy3001",fontsize=16,color="green",shape="box"];661[label="xy4001",fontsize=16,color="green",shape="box"];662[label="xy3001",fontsize=16,color="green",shape="box"];663[label="xy4001",fontsize=16,color="green",shape="box"];664[label="xy3001",fontsize=16,color="green",shape="box"];665[label="xy4001",fontsize=16,color="green",shape="box"];666[label="xy3001",fontsize=16,color="green",shape="box"];667[label="xy4001",fontsize=16,color="green",shape="box"];668[label="xy3001",fontsize=16,color="green",shape="box"];669[label="xy4001",fontsize=16,color="green",shape="box"];670[label="xy3001",fontsize=16,color="green",shape="box"];671[label="xy4001",fontsize=16,color="green",shape="box"];672[label="xy3001",fontsize=16,color="green",shape="box"];673[label="xy4001",fontsize=16,color="green",shape="box"];674[label="xy3001",fontsize=16,color="green",shape="box"];675[label="xy4001",fontsize=16,color="green",shape="box"];676[label="xy3001",fontsize=16,color="green",shape="box"];677[label="xy4001",fontsize=16,color="green",shape="box"];678[label="xy3001",fontsize=16,color="green",shape="box"];679[label="xy4001",fontsize=16,color="green",shape="box"];680[label="xy3002",fontsize=16,color="green",shape="box"];681[label="xy4002",fontsize=16,color="green",shape="box"];682[label="xy3002",fontsize=16,color="green",shape="box"];683[label="xy4002",fontsize=16,color="green",shape="box"];684[label="xy3002",fontsize=16,color="green",shape="box"];685[label="xy4002",fontsize=16,color="green",shape="box"];686[label="xy3002",fontsize=16,color="green",shape="box"];687[label="xy4002",fontsize=16,color="green",shape="box"];688[label="xy3002",fontsize=16,color="green",shape="box"];689[label="xy4002",fontsize=16,color="green",shape="box"];690[label="xy3002",fontsize=16,color="green",shape="box"];691[label="xy4002",fontsize=16,color="green",shape="box"];692[label="xy3002",fontsize=16,color="green",shape="box"];693[label="xy4002",fontsize=16,color="green",shape="box"];694[label="xy3002",fontsize=16,color="green",shape="box"];695[label="xy4002",fontsize=16,color="green",shape="box"];696[label="xy3002",fontsize=16,color="green",shape="box"];697[label="xy4002",fontsize=16,color="green",shape="box"];698[label="xy3002",fontsize=16,color="green",shape="box"];699[label="xy4002",fontsize=16,color="green",shape="box"];700[label="xy3002",fontsize=16,color="green",shape="box"];701[label="xy4002",fontsize=16,color="green",shape="box"];702[label="xy3002",fontsize=16,color="green",shape="box"];703[label="xy4002",fontsize=16,color="green",shape="box"];704[label="xy3002",fontsize=16,color="green",shape="box"];705[label="xy4002",fontsize=16,color="green",shape="box"];706[label="xy3002",fontsize=16,color="green",shape="box"];707[label="xy4002",fontsize=16,color="green",shape="box"];708[label="xy30000",fontsize=16,color="green",shape="box"];709[label="xy40000",fontsize=16,color="green",shape="box"];710[label="xy30000",fontsize=16,color="green",shape="box"];711[label="xy40000",fontsize=16,color="green",shape="box"];712[label="primMulInt (Pos xy40010) xy3000",fontsize=16,color="burlywood",shape="box"];1024[label="xy3000/Pos xy30000",fontsize=10,color="white",style="solid",shape="box"];712 -> 1024[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1024 -> 716[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1025[label="xy3000/Neg xy30000",fontsize=10,color="white",style="solid",shape="box"];712 -> 1025[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1025 -> 717[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 713[label="primMulInt (Neg xy40010) xy3000",fontsize=16,color="burlywood",shape="box"];1026[label="xy3000/Pos xy30000",fontsize=10,color="white",style="solid",shape="box"];713 -> 1026[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1026 -> 718[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1027[label="xy3000/Neg xy30000",fontsize=10,color="white",style="solid",shape="box"];713 -> 1027[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1027 -> 719[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 714[label="xy30000",fontsize=16,color="green",shape="box"];715[label="xy40000",fontsize=16,color="green",shape="box"];716[label="primMulInt (Pos xy40010) (Pos xy30000)",fontsize=16,color="black",shape="box"];716 -> 720[label="",style="solid", color="black", weight=3]; 16.31/6.47 717[label="primMulInt (Pos xy40010) (Neg xy30000)",fontsize=16,color="black",shape="box"];717 -> 721[label="",style="solid", color="black", weight=3]; 16.31/6.47 718[label="primMulInt (Neg xy40010) (Pos xy30000)",fontsize=16,color="black",shape="box"];718 -> 722[label="",style="solid", color="black", weight=3]; 16.31/6.47 719[label="primMulInt (Neg xy40010) (Neg xy30000)",fontsize=16,color="black",shape="box"];719 -> 723[label="",style="solid", color="black", weight=3]; 16.31/6.47 720[label="Pos (primMulNat xy40010 xy30000)",fontsize=16,color="green",shape="box"];720 -> 724[label="",style="dashed", color="green", weight=3]; 16.31/6.47 721[label="Neg (primMulNat xy40010 xy30000)",fontsize=16,color="green",shape="box"];721 -> 725[label="",style="dashed", color="green", weight=3]; 16.31/6.47 722[label="Neg (primMulNat xy40010 xy30000)",fontsize=16,color="green",shape="box"];722 -> 726[label="",style="dashed", color="green", weight=3]; 16.31/6.47 723[label="Pos (primMulNat xy40010 xy30000)",fontsize=16,color="green",shape="box"];723 -> 727[label="",style="dashed", color="green", weight=3]; 16.31/6.47 724[label="primMulNat xy40010 xy30000",fontsize=16,color="burlywood",shape="triangle"];1028[label="xy40010/Succ xy400100",fontsize=10,color="white",style="solid",shape="box"];724 -> 1028[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1028 -> 728[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1029[label="xy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];724 -> 1029[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1029 -> 729[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 725 -> 724[label="",style="dashed", color="red", weight=0]; 16.31/6.47 725[label="primMulNat xy40010 xy30000",fontsize=16,color="magenta"];725 -> 730[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 726 -> 724[label="",style="dashed", color="red", weight=0]; 16.31/6.47 726[label="primMulNat xy40010 xy30000",fontsize=16,color="magenta"];726 -> 731[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 727 -> 724[label="",style="dashed", color="red", weight=0]; 16.31/6.47 727[label="primMulNat xy40010 xy30000",fontsize=16,color="magenta"];727 -> 732[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 727 -> 733[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 728[label="primMulNat (Succ xy400100) xy30000",fontsize=16,color="burlywood",shape="box"];1030[label="xy30000/Succ xy300000",fontsize=10,color="white",style="solid",shape="box"];728 -> 1030[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1030 -> 734[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1031[label="xy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];728 -> 1031[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1031 -> 735[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 729[label="primMulNat Zero xy30000",fontsize=16,color="burlywood",shape="box"];1032[label="xy30000/Succ xy300000",fontsize=10,color="white",style="solid",shape="box"];729 -> 1032[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1032 -> 736[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1033[label="xy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];729 -> 1033[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1033 -> 737[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 730[label="xy30000",fontsize=16,color="green",shape="box"];731[label="xy40010",fontsize=16,color="green",shape="box"];732[label="xy40010",fontsize=16,color="green",shape="box"];733[label="xy30000",fontsize=16,color="green",shape="box"];734[label="primMulNat (Succ xy400100) (Succ xy300000)",fontsize=16,color="black",shape="box"];734 -> 738[label="",style="solid", color="black", weight=3]; 16.31/6.47 735[label="primMulNat (Succ xy400100) Zero",fontsize=16,color="black",shape="box"];735 -> 739[label="",style="solid", color="black", weight=3]; 16.31/6.47 736[label="primMulNat Zero (Succ xy300000)",fontsize=16,color="black",shape="box"];736 -> 740[label="",style="solid", color="black", weight=3]; 16.31/6.47 737[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];737 -> 741[label="",style="solid", color="black", weight=3]; 16.31/6.47 738 -> 742[label="",style="dashed", color="red", weight=0]; 16.31/6.47 738[label="primPlusNat (primMulNat xy400100 (Succ xy300000)) (Succ xy300000)",fontsize=16,color="magenta"];738 -> 743[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 739[label="Zero",fontsize=16,color="green",shape="box"];740[label="Zero",fontsize=16,color="green",shape="box"];741[label="Zero",fontsize=16,color="green",shape="box"];743 -> 724[label="",style="dashed", color="red", weight=0]; 16.31/6.47 743[label="primMulNat xy400100 (Succ xy300000)",fontsize=16,color="magenta"];743 -> 744[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 743 -> 745[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 742[label="primPlusNat xy42 (Succ xy300000)",fontsize=16,color="burlywood",shape="triangle"];1034[label="xy42/Succ xy420",fontsize=10,color="white",style="solid",shape="box"];742 -> 1034[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1034 -> 746[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1035[label="xy42/Zero",fontsize=10,color="white",style="solid",shape="box"];742 -> 1035[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1035 -> 747[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 744[label="xy400100",fontsize=16,color="green",shape="box"];745[label="Succ xy300000",fontsize=16,color="green",shape="box"];746[label="primPlusNat (Succ xy420) (Succ xy300000)",fontsize=16,color="black",shape="box"];746 -> 748[label="",style="solid", color="black", weight=3]; 16.31/6.47 747[label="primPlusNat Zero (Succ xy300000)",fontsize=16,color="black",shape="box"];747 -> 749[label="",style="solid", color="black", weight=3]; 16.31/6.47 748[label="Succ (Succ (primPlusNat xy420 xy300000))",fontsize=16,color="green",shape="box"];748 -> 750[label="",style="dashed", color="green", weight=3]; 16.31/6.47 749[label="Succ xy300000",fontsize=16,color="green",shape="box"];750[label="primPlusNat xy420 xy300000",fontsize=16,color="burlywood",shape="triangle"];1036[label="xy420/Succ xy4200",fontsize=10,color="white",style="solid",shape="box"];750 -> 1036[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1036 -> 751[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1037[label="xy420/Zero",fontsize=10,color="white",style="solid",shape="box"];750 -> 1037[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1037 -> 752[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 751[label="primPlusNat (Succ xy4200) xy300000",fontsize=16,color="burlywood",shape="box"];1038[label="xy300000/Succ xy3000000",fontsize=10,color="white",style="solid",shape="box"];751 -> 1038[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1038 -> 753[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1039[label="xy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];751 -> 1039[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1039 -> 754[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 752[label="primPlusNat Zero xy300000",fontsize=16,color="burlywood",shape="box"];1040[label="xy300000/Succ xy3000000",fontsize=10,color="white",style="solid",shape="box"];752 -> 1040[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1040 -> 755[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 1041[label="xy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];752 -> 1041[label="",style="solid", color="burlywood", weight=9]; 16.31/6.47 1041 -> 756[label="",style="solid", color="burlywood", weight=3]; 16.31/6.47 753[label="primPlusNat (Succ xy4200) (Succ xy3000000)",fontsize=16,color="black",shape="box"];753 -> 757[label="",style="solid", color="black", weight=3]; 16.31/6.47 754[label="primPlusNat (Succ xy4200) Zero",fontsize=16,color="black",shape="box"];754 -> 758[label="",style="solid", color="black", weight=3]; 16.31/6.47 755[label="primPlusNat Zero (Succ xy3000000)",fontsize=16,color="black",shape="box"];755 -> 759[label="",style="solid", color="black", weight=3]; 16.31/6.47 756[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];756 -> 760[label="",style="solid", color="black", weight=3]; 16.31/6.47 757[label="Succ (Succ (primPlusNat xy4200 xy3000000))",fontsize=16,color="green",shape="box"];757 -> 761[label="",style="dashed", color="green", weight=3]; 16.31/6.47 758[label="Succ xy4200",fontsize=16,color="green",shape="box"];759[label="Succ xy3000000",fontsize=16,color="green",shape="box"];760[label="Zero",fontsize=16,color="green",shape="box"];761 -> 750[label="",style="dashed", color="red", weight=0]; 16.31/6.47 761[label="primPlusNat xy4200 xy3000000",fontsize=16,color="magenta"];761 -> 762[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 761 -> 763[label="",style="dashed", color="magenta", weight=3]; 16.31/6.47 762[label="xy3000000",fontsize=16,color="green",shape="box"];763[label="xy4200",fontsize=16,color="green",shape="box"];} 16.31/6.47 16.31/6.47 ---------------------------------------- 16.31/6.47 16.31/6.47 (8) 16.31/6.47 Complex Obligation (AND) 16.31/6.47 16.31/6.47 ---------------------------------------- 16.31/6.47 16.31/6.47 (9) 16.31/6.47 Obligation: 16.31/6.47 Q DP problem: 16.31/6.47 The TRS P consists of the following rules: 16.31/6.47 16.31/6.47 new_deleteBy00(xy19, xy20, xy21, False, be, bf) -> new_deleteBy(Right(xy21), xy19, be, bf) 16.31/6.47 new_deleteBy(Left(xy400), :(Right(xy300), xy31), bc, bd) -> new_deleteBy(Left(xy400), xy31, bc, bd) 16.31/6.47 new_deleteBy(Right(xy400), :(Left(xy300), xy31), bc, bd) -> new_deleteBy(Right(xy400), xy31, bc, bd) 16.31/6.47 new_deleteBy(Left(xy400), :(Left(xy300), xy31), bc, bd) -> new_deleteBy0(xy31, xy300, xy400, new_esEs4(xy400, xy300, bc), bc, bd) 16.31/6.47 new_deleteBy0(xy10, xy11, xy12, False, ba, bb) -> new_deleteBy(Left(xy12), xy10, ba, bb) 16.31/6.47 new_deleteBy(Right(xy400), :(Right(xy300), xy31), bc, bd) -> new_deleteBy00(xy31, xy300, xy400, new_esEs5(xy400, xy300, bd), bc, bd) 16.31/6.47 16.31/6.47 The TRS R consists of the following rules: 16.31/6.47 16.31/6.47 new_esEs21(xy4001, xy3001, app(app(ty_Either, gg), gh)) -> new_esEs6(xy4001, xy3001, gg, gh) 16.31/6.47 new_esEs11(Just(xy4000), Just(xy3000), ty_@0) -> new_esEs14(xy4000, xy3000) 16.31/6.47 new_esEs11(Just(xy4000), Just(xy3000), ty_Double) -> new_esEs17(xy4000, xy3000) 16.31/6.47 new_esEs20(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.31/6.47 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 16.31/6.47 new_esEs5(xy400, xy300, ty_Bool) -> new_esEs9(xy400, xy300) 16.31/6.47 new_esEs17(Double(xy4000, xy4001), Double(xy3000, xy3001)) -> new_esEs10(new_sr(xy4000, xy3001), new_sr(xy4001, xy3000)) 16.31/6.47 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(app(ty_@3, dd), de), df)) -> new_esEs8(xy4000, xy3000, dd, de, df) 16.31/6.47 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(ty_Either, dg), dh)) -> new_esEs6(xy4000, xy3000, dg, dh) 16.31/6.47 new_esEs24(xy4000, xy3000, app(ty_Maybe, bfg)) -> new_esEs11(xy4000, xy3000, bfg) 16.31/6.47 new_esEs11(Just(xy4000), Just(xy3000), ty_Char) -> new_esEs7(xy4000, xy3000) 16.31/6.47 new_esEs11(Just(xy4000), Just(xy3000), ty_Bool) -> new_esEs9(xy4000, xy3000) 16.31/6.47 new_esEs22(xy4002, xy3002, app(ty_Ratio, bad)) -> new_esEs12(xy4002, xy3002, bad) 16.31/6.47 new_esEs5(xy400, xy300, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs8(xy400, xy300, bdf, bdg, bdh) 16.31/6.47 new_esEs5(xy400, xy300, app(ty_Ratio, bed)) -> new_esEs12(xy400, xy300, bed) 16.31/6.47 new_esEs9(False, False) -> True 16.31/6.47 new_esEs4(xy400, xy300, app(app(ty_@2, beh), bfa)) -> new_esEs13(xy400, xy300, beh, bfa) 16.31/6.47 new_esEs25(xy4001, xy3001, app(app(ty_@2, bhc), bhd)) -> new_esEs13(xy4001, xy3001, bhc, bhd) 16.31/6.47 new_esEs23(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.31/6.47 new_esEs8(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), ef, eg, eh) -> new_asAs(new_esEs20(xy4000, xy3000, ef), new_asAs(new_esEs21(xy4001, xy3001, eg), new_esEs22(xy4002, xy3002, eh))) 16.31/6.47 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Float) -> new_esEs15(xy4000, xy3000) 16.31/6.47 new_esEs22(xy4002, xy3002, ty_Integer) -> new_esEs19(xy4002, xy3002) 16.31/6.47 new_asAs(True, xy41) -> xy41 16.31/6.47 new_esEs24(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.31/6.47 new_esEs27(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.31/6.47 new_esEs24(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.31/6.47 new_esEs11(Just(xy4000), Just(xy3000), app(ty_Maybe, bda)) -> new_esEs11(xy4000, xy3000, bda) 16.31/6.47 new_primEqInt(Pos(Succ(xy40000)), Pos(Zero)) -> False 16.31/6.47 new_primEqInt(Pos(Zero), Pos(Succ(xy30000))) -> False 16.31/6.47 new_esEs24(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.31/6.47 new_esEs6(Left(xy4000), Right(xy3000), dc, bg) -> False 16.31/6.47 new_esEs6(Right(xy4000), Left(xy3000), dc, bg) -> False 16.31/6.47 new_esEs24(xy4000, xy3000, app(ty_Ratio, bfh)) -> new_esEs12(xy4000, xy3000, bfh) 16.31/6.47 new_esEs6(Left(xy4000), Left(xy3000), ty_Float, bg) -> new_esEs15(xy4000, xy3000) 16.31/6.47 new_primEqNat0(Succ(xy40000), Succ(xy30000)) -> new_primEqNat0(xy40000, xy30000) 16.31/6.47 new_esEs21(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.31/6.48 new_esEs5(xy400, xy300, app(ty_Maybe, bec)) -> new_esEs11(xy400, xy300, bec) 16.31/6.48 new_esEs4(xy400, xy300, ty_Float) -> new_esEs15(xy400, xy300) 16.31/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Int) -> new_esEs10(xy4000, xy3000) 16.31/6.48 new_esEs25(xy4001, xy3001, ty_Float) -> new_esEs15(xy4001, xy3001) 16.31/6.48 new_esEs18(GT, GT) -> True 16.31/6.48 new_esEs4(xy400, xy300, ty_Ordering) -> new_esEs18(xy400, xy300) 16.31/6.48 new_esEs9(True, True) -> True 16.31/6.48 new_esEs22(xy4002, xy3002, ty_Double) -> new_esEs17(xy4002, xy3002) 16.31/6.48 new_primMulNat0(Zero, Zero) -> Zero 16.31/6.48 new_esEs5(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 16.31/6.48 new_esEs21(xy4001, xy3001, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs8(xy4001, xy3001, gd, ge, gf) 16.31/6.48 new_esEs24(xy4000, xy3000, app(ty_[], bgc)) -> new_esEs16(xy4000, xy3000, bgc) 16.31/6.48 new_esEs20(xy4000, xy3000, app(app(ty_@2, ga), gb)) -> new_esEs13(xy4000, xy3000, ga, gb) 16.31/6.48 new_esEs21(xy4001, xy3001, app(ty_Maybe, ha)) -> new_esEs11(xy4001, xy3001, ha) 16.31/6.48 new_esEs5(xy400, xy300, ty_Int) -> new_esEs10(xy400, xy300) 16.31/6.48 new_esEs13(@2(xy4000, xy4001), @2(xy3000, xy3001), beh, bfa) -> new_asAs(new_esEs24(xy4000, xy3000, beh), new_esEs25(xy4001, xy3001, bfa)) 16.31/6.48 new_esEs18(EQ, GT) -> False 16.31/6.48 new_esEs18(GT, EQ) -> False 16.31/6.48 new_esEs21(xy4001, xy3001, ty_@0) -> new_esEs14(xy4001, xy3001) 16.31/6.48 new_esEs20(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.31/6.48 new_esEs23(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.31/6.48 new_primEqNat0(Succ(xy40000), Zero) -> False 16.31/6.48 new_primEqNat0(Zero, Succ(xy30000)) -> False 16.31/6.48 new_esEs14(@0, @0) -> True 16.31/6.48 new_esEs21(xy4001, xy3001, ty_Bool) -> new_esEs9(xy4001, xy3001) 16.31/6.48 new_esEs27(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.31/6.48 new_esEs22(xy4002, xy3002, ty_Ordering) -> new_esEs18(xy4002, xy3002) 16.31/6.48 new_esEs24(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.31/6.48 new_esEs4(xy400, xy300, ty_Double) -> new_esEs17(xy400, xy300) 16.31/6.48 new_esEs21(xy4001, xy3001, ty_Char) -> new_esEs7(xy4001, xy3001) 16.31/6.48 new_esEs21(xy4001, xy3001, app(app(ty_@2, hc), hd)) -> new_esEs13(xy4001, xy3001, hc, hd) 16.31/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(ty_@2, bdc), bdd)) -> new_esEs13(xy4000, xy3000, bdc, bdd) 16.31/6.48 new_esEs22(xy4002, xy3002, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs8(xy4002, xy3002, hf, hg, hh) 16.31/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(ty_Either, bcg), bch)) -> new_esEs6(xy4000, xy3000, bcg, bch) 16.31/6.48 new_esEs25(xy4001, xy3001, app(app(ty_Either, bgg), bgh)) -> new_esEs6(xy4001, xy3001, bgg, bgh) 16.31/6.48 new_esEs23(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.31/6.48 new_esEs21(xy4001, xy3001, ty_Ordering) -> new_esEs18(xy4001, xy3001) 16.31/6.48 new_esEs18(LT, GT) -> False 16.31/6.48 new_esEs18(GT, LT) -> False 16.31/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs8(xy4000, xy3000, bcd, bce, bcf) 16.31/6.48 new_primEqInt(Neg(Succ(xy40000)), Neg(Zero)) -> False 16.31/6.48 new_primEqInt(Neg(Zero), Neg(Succ(xy30000))) -> False 16.31/6.48 new_esEs22(xy4002, xy3002, ty_Bool) -> new_esEs9(xy4002, xy3002) 16.31/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.31/6.48 new_esEs20(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.31/6.48 new_primEqInt(Pos(Succ(xy40000)), Pos(Succ(xy30000))) -> new_primEqNat0(xy40000, xy30000) 16.31/6.48 new_esEs4(xy400, xy300, app(ty_Maybe, bcc)) -> new_esEs11(xy400, xy300, bcc) 16.31/6.48 new_esEs22(xy4002, xy3002, ty_Int) -> new_esEs10(xy4002, xy3002) 16.31/6.48 new_esEs5(xy400, xy300, ty_Float) -> new_esEs15(xy400, xy300) 16.31/6.48 new_esEs5(xy400, xy300, ty_Double) -> new_esEs17(xy400, xy300) 16.31/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(ty_@2, ec), ed)) -> new_esEs13(xy4000, xy3000, ec, ed) 16.31/6.48 new_esEs20(xy4000, xy3000, app(ty_[], gc)) -> new_esEs16(xy4000, xy3000, gc) 16.31/6.48 new_esEs23(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.31/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_@0) -> new_esEs14(xy4000, xy3000) 16.31/6.48 new_esEs20(xy4000, xy3000, app(app(ty_Either, fd), ff)) -> new_esEs6(xy4000, xy3000, fd, ff) 16.31/6.48 new_esEs4(xy400, xy300, app(ty_Ratio, bhf)) -> new_esEs12(xy400, xy300, bhf) 16.31/6.48 new_sr(Pos(xy40010), Neg(xy30000)) -> Neg(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_sr(Neg(xy40010), Pos(xy30000)) -> Neg(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_primPlusNat1(Succ(xy4200), Succ(xy3000000)) -> Succ(Succ(new_primPlusNat1(xy4200, xy3000000))) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Neg(xy3000)) -> False 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Pos(xy3000)) -> False 16.46/6.48 new_esEs16(:(xy4000, xy4001), :(xy3000, xy3001), bah) -> new_asAs(new_esEs23(xy4000, xy3000, bah), new_esEs16(xy4001, xy3001, bah)) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_Maybe, bac)) -> new_esEs11(xy4002, xy3002, bac) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_[], bhe)) -> new_esEs16(xy4001, xy3001, bhe) 16.46/6.48 new_esEs4(xy400, xy300, ty_Int) -> new_esEs10(xy400, xy300) 16.46/6.48 new_esEs18(LT, LT) -> True 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(ty_@2, bga), bgb)) -> new_esEs13(xy4000, xy3000, bga, bgb) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs8(xy4001, xy3001, bgd, bge, bgf) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Bool) -> new_esEs9(xy4001, xy3001) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_Ratio, bbg)) -> new_esEs12(xy4000, xy3000, bbg) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_[], ee)) -> new_esEs16(xy4000, xy3000, ee) 16.46/6.48 new_esEs5(xy400, xy300, app(app(ty_@2, bee), bef)) -> new_esEs13(xy400, xy300, bee, bef) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_[], db), bg) -> new_esEs16(xy4000, xy3000, db) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(ty_Either, baa), bab)) -> new_esEs6(xy4002, xy3002, baa, bab) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_Maybe, bha)) -> new_esEs11(xy4001, xy3001, bha) 16.46/6.48 new_sr(Neg(xy40010), Neg(xy30000)) -> Pos(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Float) -> new_esEs15(xy4002, xy3002) 16.46/6.48 new_esEs4(xy400, xy300, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs8(xy400, xy300, ef, eg, eh) 16.46/6.48 new_esEs4(xy400, xy300, ty_Bool) -> new_esEs9(xy400, xy300) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Char) -> new_esEs7(xy4001, xy3001) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_@0) -> new_esEs14(xy4001, xy3001) 16.46/6.48 new_esEs11(Nothing, Just(xy3000), bcc) -> False 16.46/6.48 new_esEs11(Just(xy4000), Nothing, bcc) -> False 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Succ(xy30000))) -> False 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Succ(xy30000))) -> False 16.46/6.48 new_esEs11(Nothing, Nothing, bcc) -> True 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Double) -> new_esEs17(xy4001, xy3001) 16.46/6.48 new_esEs7(Char(xy4000), Char(xy3000)) -> new_primEqNat0(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Bool, bg) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_Maybe, bbf)) -> new_esEs11(xy4000, xy3000, bbf) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Char, bg) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_@0, bg) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Neg(Succ(xy30000))) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs4(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(ty_@2, cg), da), bg) -> new_esEs13(xy4000, xy3000, cg, da) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_Ratio, hb)) -> new_esEs12(xy4001, xy3001, hb) 16.46/6.48 new_primPlusNat0(Succ(xy420), xy300000) -> Succ(Succ(new_primPlusNat1(xy420, xy300000))) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(ty_@2, bae), baf)) -> new_esEs13(xy4002, xy3002, bae, baf) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs8(xy4000, xy3000, bba, bbb, bbc) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(ty_Either, bfe), bff)) -> new_esEs6(xy4000, xy3000, bfe, bff) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_Ratio, eb)) -> new_esEs12(xy4000, xy3000, eb) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(ty_Either, cc), cd), bg) -> new_esEs6(xy4000, xy3000, cc, cd) 16.46/6.48 new_esEs10(xy400, xy300) -> new_primEqInt(xy400, xy300) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Ordering) -> new_esEs18(xy4001, xy3001) 16.46/6.48 new_esEs4(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 16.46/6.48 new_primPlusNat1(Zero, Zero) -> Zero 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_primMulNat0(Succ(xy400100), Zero) -> Zero 16.46/6.48 new_primMulNat0(Zero, Succ(xy300000)) -> Zero 16.46/6.48 new_sr(Pos(xy40010), Pos(xy30000)) -> Pos(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_primPlusNat0(Zero, xy300000) -> Succ(xy300000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Integer, bg) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_[], bde)) -> new_esEs16(xy4000, xy3000, bde) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_[], he)) -> new_esEs16(xy4001, xy3001, he) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs8(xy4000, xy3000, fa, fb, fc) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_@0) -> new_esEs14(xy4002, xy3002) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 16.46/6.48 new_primMulNat0(Succ(xy400100), Succ(xy300000)) -> new_primPlusNat0(new_primMulNat0(xy400100, Succ(xy300000)), xy300000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs15(Float(xy4000, xy4001), Float(xy3000, xy3001)) -> new_esEs10(new_sr(xy4000, xy3001), new_sr(xy4001, xy3000)) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Char) -> new_esEs7(xy4002, xy3002) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_Ratio, bdb)) -> new_esEs12(xy4000, xy3000, bdb) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Ordering, bg) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs5(xy400, xy300, app(app(ty_Either, bea), beb)) -> new_esEs6(xy400, xy300, bea, beb) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs18(EQ, EQ) -> True 16.46/6.48 new_esEs5(xy400, xy300, app(ty_[], beg)) -> new_esEs16(xy400, xy300, beg) 16.46/6.48 new_primPlusNat1(Succ(xy4200), Zero) -> Succ(xy4200) 16.46/6.48 new_primPlusNat1(Zero, Succ(xy3000000)) -> Succ(xy3000000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Double) -> new_esEs17(xy4001, xy3001) 16.46/6.48 new_esEs5(xy400, xy300, ty_Ordering) -> new_esEs18(xy400, xy300) 16.46/6.48 new_esEs26(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs16(:(xy4000, xy4001), [], bah) -> False 16.46/6.48 new_esEs16([], :(xy3000, xy3001), bah) -> False 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_Maybe, fg)) -> new_esEs11(xy4000, xy3000, fg) 16.46/6.48 new_esEs12(:%(xy4000, xy4001), :%(xy3000, xy3001), bhf) -> new_asAs(new_esEs26(xy4000, xy3000, bhf), new_esEs27(xy4001, xy3001, bhf)) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_Ratio, cf), bg) -> new_esEs12(xy4000, xy3000, cf) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_[], bcb)) -> new_esEs16(xy4000, xy3000, bcb) 16.46/6.48 new_esEs4(xy400, xy300, ty_@0) -> new_esEs14(xy400, xy300) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 16.46/6.48 new_esEs4(xy400, xy300, app(app(ty_Either, dc), bg)) -> new_esEs6(xy400, xy300, dc, bg) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Double, bg) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_Ratio, bhb)) -> new_esEs12(xy4001, xy3001, bhb) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs16([], [], bah) -> True 16.46/6.48 new_primEqNat0(Zero, Zero) -> True 16.46/6.48 new_esEs5(xy400, xy300, ty_@0) -> new_esEs14(xy400, xy300) 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_Ratio, fh)) -> new_esEs12(xy4000, xy3000, fh) 16.46/6.48 new_esEs9(False, True) -> False 16.46/6.48 new_esEs9(True, False) -> False 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs19(Integer(xy4000), Integer(xy3000)) -> new_primEqInt(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_[], bag)) -> new_esEs16(xy4002, xy3002, bag) 16.46/6.48 new_asAs(False, xy41) -> False 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_Maybe, ea)) -> new_esEs11(xy4000, xy3000, ea) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Int, bg) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(ty_@2, bbh), bca)) -> new_esEs13(xy4000, xy3000, bbh, bca) 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs8(xy4000, xy3000, bfb, bfc, bfd) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs5(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs26(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(app(ty_@3, bh), ca), cb), bg) -> new_esEs8(xy4000, xy3000, bh, ca, cb) 16.46/6.48 new_esEs18(LT, EQ) -> False 16.46/6.48 new_esEs18(EQ, LT) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_Maybe, ce), bg) -> new_esEs11(xy4000, xy3000, ce) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_[], bah)) -> new_esEs16(xy400, xy300, bah) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(ty_Either, bbd), bbe)) -> new_esEs6(xy4000, xy3000, bbd, bbe) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Float) -> new_esEs15(xy4001, xy3001) 16.46/6.48 16.46/6.48 The set Q consists of the following terms: 16.46/6.48 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 16.46/6.48 new_esEs5(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Float) 16.46/6.48 new_esEs5(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 16.46/6.48 new_esEs26(x0, x1, ty_Int) 16.46/6.48 new_esEs24(x0, x1, ty_Int) 16.46/6.48 new_esEs23(x0, x1, ty_Char) 16.46/6.48 new_esEs6(Left(x0), Right(x1), x2, x3) 16.46/6.48 new_esEs6(Right(x0), Left(x1), x2, x3) 16.46/6.48 new_esEs21(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 16.46/6.48 new_esEs16([], :(x0, x1), x2) 16.46/6.48 new_primMulNat0(Zero, Zero) 16.46/6.48 new_esEs4(x0, x1, ty_Bool) 16.46/6.48 new_primPlusNat1(Zero, Zero) 16.46/6.48 new_primPlusNat0(Zero, x0) 16.46/6.48 new_esEs11(Nothing, Just(x0), x1) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Ordering) 16.46/6.48 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs4(x0, x1, ty_Integer) 16.46/6.48 new_esEs19(Integer(x0), Integer(x1)) 16.46/6.48 new_esEs20(x0, x1, ty_Char) 16.46/6.48 new_primMulNat0(Succ(x0), Zero) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Zero)) 16.46/6.48 new_esEs25(x0, x1, ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_@0) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Int) 16.46/6.48 new_esEs16([], [], x0) 16.46/6.48 new_asAs(True, x0) 16.46/6.48 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs18(EQ, GT) 16.46/6.48 new_esEs18(GT, EQ) 16.46/6.48 new_esEs25(x0, x1, ty_Int) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 16.46/6.48 new_esEs22(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs4(x0, x1, ty_@0) 16.46/6.48 new_esEs24(x0, x1, ty_Double) 16.46/6.48 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs24(x0, x1, ty_Char) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Char) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Zero)) 16.46/6.48 new_esEs21(x0, x1, ty_Bool) 16.46/6.48 new_esEs5(x0, x1, ty_Integer) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Double) 16.46/6.48 new_esEs22(x0, x1, ty_Bool) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 16.46/6.48 new_esEs25(x0, x1, ty_Char) 16.46/6.48 new_sr(Pos(x0), Neg(x1)) 16.46/6.48 new_sr(Neg(x0), Pos(x1)) 16.46/6.48 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs25(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs10(x0, x1) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 16.46/6.48 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs15(Float(x0, x1), Float(x2, x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 16.46/6.48 new_esEs21(x0, x1, ty_Int) 16.46/6.48 new_esEs12(:%(x0, x1), :%(x2, x3), x4) 16.46/6.48 new_esEs21(x0, x1, ty_Char) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 16.46/6.48 new_esEs20(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 16.46/6.48 new_esEs9(False, False) 16.46/6.48 new_esEs25(x0, x1, ty_Bool) 16.46/6.48 new_esEs23(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 16.46/6.48 new_esEs25(x0, x1, ty_Ordering) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_[], x2)) 16.46/6.48 new_esEs24(x0, x1, ty_@0) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Zero)) 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Zero)) 16.46/6.48 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Integer) 16.46/6.48 new_esEs5(x0, x1, ty_Char) 16.46/6.48 new_esEs20(x0, x1, ty_Integer) 16.46/6.48 new_primPlusNat0(Succ(x0), x1) 16.46/6.48 new_esEs25(x0, x1, ty_Integer) 16.46/6.48 new_sr(Neg(x0), Neg(x1)) 16.46/6.48 new_esEs24(x0, x1, ty_Float) 16.46/6.48 new_primMulNat0(Succ(x0), Succ(x1)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 16.46/6.48 new_esEs11(Nothing, Nothing, x0) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 16.46/6.48 new_esEs5(x0, x1, ty_Bool) 16.46/6.48 new_esEs21(x0, x1, ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_Double) 16.46/6.48 new_esEs21(x0, x1, ty_Float) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 16.46/6.48 new_esEs18(LT, LT) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 16.46/6.48 new_esEs23(x0, x1, ty_Ordering) 16.46/6.48 new_primEqNat0(Zero, Succ(x0)) 16.46/6.48 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs20(x0, x1, ty_Ordering) 16.46/6.48 new_esEs22(x0, x1, ty_Integer) 16.46/6.48 new_esEs20(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs27(x0, x1, ty_Int) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Bool) 16.46/6.48 new_esEs24(x0, x1, ty_Integer) 16.46/6.48 new_esEs18(LT, GT) 16.46/6.48 new_esEs18(GT, LT) 16.46/6.48 new_esEs20(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 16.46/6.48 new_esEs5(x0, x1, ty_Ordering) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 16.46/6.48 new_esEs16(:(x0, x1), :(x2, x3), x4) 16.46/6.48 new_esEs14(@0, @0) 16.46/6.48 new_esEs17(Double(x0, x1), Double(x2, x3)) 16.46/6.48 new_esEs4(x0, x1, ty_Ordering) 16.46/6.48 new_esEs22(x0, x1, ty_Ordering) 16.46/6.48 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_primMulNat0(Zero, Succ(x0)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 16.46/6.48 new_esEs4(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs5(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs22(x0, x1, ty_Double) 16.46/6.48 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs21(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs21(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs24(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 16.46/6.48 new_esEs22(x0, x1, ty_Int) 16.46/6.48 new_esEs21(x0, x1, ty_Double) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 16.46/6.48 new_esEs23(x0, x1, ty_Integer) 16.46/6.48 new_esEs26(x0, x1, ty_Integer) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 16.46/6.48 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_Int) 16.46/6.48 new_esEs4(x0, x1, ty_Float) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 16.46/6.48 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs27(x0, x1, ty_Integer) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 16.46/6.48 new_primEqNat0(Succ(x0), Succ(x1)) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 16.46/6.48 new_esEs4(x0, x1, ty_Char) 16.46/6.48 new_esEs24(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs25(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs24(x0, x1, ty_Bool) 16.46/6.48 new_esEs4(x0, x1, ty_Double) 16.46/6.48 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs22(x0, x1, ty_Char) 16.46/6.48 new_esEs25(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs16(:(x0, x1), [], x2) 16.46/6.48 new_esEs5(x0, x1, ty_Float) 16.46/6.48 new_esEs22(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs9(False, True) 16.46/6.48 new_esEs9(True, False) 16.46/6.48 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs18(GT, GT) 16.46/6.48 new_esEs4(x0, x1, ty_Int) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 16.46/6.48 new_esEs22(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs18(LT, EQ) 16.46/6.48 new_esEs18(EQ, LT) 16.46/6.48 new_esEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 16.46/6.48 new_esEs25(x0, x1, ty_Double) 16.46/6.48 new_primPlusNat1(Zero, Succ(x0)) 16.46/6.48 new_esEs23(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs21(x0, x1, ty_Integer) 16.46/6.48 new_primEqNat0(Zero, Zero) 16.46/6.48 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 16.46/6.48 new_esEs23(x0, x1, ty_@0) 16.46/6.48 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs20(x0, x1, ty_Bool) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 16.46/6.48 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs20(x0, x1, ty_Float) 16.46/6.48 new_esEs23(x0, x1, app(ty_[], x2)) 16.46/6.48 new_primPlusNat1(Succ(x0), Succ(x1)) 16.46/6.48 new_esEs25(x0, x1, ty_Float) 16.46/6.48 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs23(x0, x1, ty_Bool) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs23(x0, x1, ty_Float) 16.46/6.48 new_esEs23(x0, x1, ty_Double) 16.46/6.48 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs20(x0, x1, ty_Double) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs11(Just(x0), Nothing, x1) 16.46/6.48 new_asAs(False, x0) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 16.46/6.48 new_esEs24(x0, x1, ty_Ordering) 16.46/6.48 new_esEs21(x0, x1, ty_Ordering) 16.46/6.48 new_esEs20(x0, x1, ty_Int) 16.46/6.48 new_sr(Pos(x0), Pos(x1)) 16.46/6.48 new_esEs4(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs18(EQ, EQ) 16.46/6.48 new_primPlusNat1(Succ(x0), Zero) 16.46/6.48 new_esEs22(x0, x1, ty_@0) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 16.46/6.48 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 16.46/6.48 new_esEs7(Char(x0), Char(x1)) 16.46/6.48 new_esEs9(True, True) 16.46/6.48 new_esEs23(x0, x1, ty_Int) 16.46/6.48 new_esEs22(x0, x1, ty_Float) 16.46/6.48 new_esEs20(x0, x1, ty_@0) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 16.46/6.48 new_esEs4(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_primEqNat0(Succ(x0), Zero) 16.46/6.48 16.46/6.48 We have to consider all minimal (P,Q,R)-chains. 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (10) DependencyGraphProof (EQUIVALENT) 16.46/6.48 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (11) 16.46/6.48 Complex Obligation (AND) 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (12) 16.46/6.48 Obligation: 16.46/6.48 Q DP problem: 16.46/6.48 The TRS P consists of the following rules: 16.46/6.48 16.46/6.48 new_deleteBy(Left(xy400), :(Left(xy300), xy31), bc, bd) -> new_deleteBy0(xy31, xy300, xy400, new_esEs4(xy400, xy300, bc), bc, bd) 16.46/6.48 new_deleteBy0(xy10, xy11, xy12, False, ba, bb) -> new_deleteBy(Left(xy12), xy10, ba, bb) 16.46/6.48 new_deleteBy(Left(xy400), :(Right(xy300), xy31), bc, bd) -> new_deleteBy(Left(xy400), xy31, bc, bd) 16.46/6.48 16.46/6.48 The TRS R consists of the following rules: 16.46/6.48 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(ty_Either, gg), gh)) -> new_esEs6(xy4001, xy3001, gg, gh) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 16.46/6.48 new_esEs5(xy400, xy300, ty_Bool) -> new_esEs9(xy400, xy300) 16.46/6.48 new_esEs17(Double(xy4000, xy4001), Double(xy3000, xy3001)) -> new_esEs10(new_sr(xy4000, xy3001), new_sr(xy4001, xy3000)) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(app(ty_@3, dd), de), df)) -> new_esEs8(xy4000, xy3000, dd, de, df) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(ty_Either, dg), dh)) -> new_esEs6(xy4000, xy3000, dg, dh) 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_Maybe, bfg)) -> new_esEs11(xy4000, xy3000, bfg) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_Ratio, bad)) -> new_esEs12(xy4002, xy3002, bad) 16.46/6.48 new_esEs5(xy400, xy300, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs8(xy400, xy300, bdf, bdg, bdh) 16.46/6.48 new_esEs5(xy400, xy300, app(ty_Ratio, bed)) -> new_esEs12(xy400, xy300, bed) 16.46/6.48 new_esEs9(False, False) -> True 16.46/6.48 new_esEs4(xy400, xy300, app(app(ty_@2, beh), bfa)) -> new_esEs13(xy400, xy300, beh, bfa) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(ty_@2, bhc), bhd)) -> new_esEs13(xy4001, xy3001, bhc, bhd) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs8(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), ef, eg, eh) -> new_asAs(new_esEs20(xy4000, xy3000, ef), new_asAs(new_esEs21(xy4001, xy3001, eg), new_esEs22(xy4002, xy3002, eh))) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Integer) -> new_esEs19(xy4002, xy3002) 16.46/6.48 new_asAs(True, xy41) -> xy41 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs27(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_Maybe, bda)) -> new_esEs11(xy4000, xy3000, bda) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Pos(Zero)) -> False 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Succ(xy30000))) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Right(xy3000), dc, bg) -> False 16.46/6.48 new_esEs6(Right(xy4000), Left(xy3000), dc, bg) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_Ratio, bfh)) -> new_esEs12(xy4000, xy3000, bfh) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Float, bg) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_primEqNat0(Succ(xy40000), Succ(xy30000)) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs5(xy400, xy300, app(ty_Maybe, bec)) -> new_esEs11(xy400, xy300, bec) 16.46/6.48 new_esEs4(xy400, xy300, ty_Float) -> new_esEs15(xy400, xy300) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Float) -> new_esEs15(xy4001, xy3001) 16.46/6.48 new_esEs18(GT, GT) -> True 16.46/6.48 new_esEs4(xy400, xy300, ty_Ordering) -> new_esEs18(xy400, xy300) 16.46/6.48 new_esEs9(True, True) -> True 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Double) -> new_esEs17(xy4002, xy3002) 16.46/6.48 new_primMulNat0(Zero, Zero) -> Zero 16.46/6.48 new_esEs5(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs8(xy4001, xy3001, gd, ge, gf) 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_[], bgc)) -> new_esEs16(xy4000, xy3000, bgc) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(ty_@2, ga), gb)) -> new_esEs13(xy4000, xy3000, ga, gb) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_Maybe, ha)) -> new_esEs11(xy4001, xy3001, ha) 16.46/6.48 new_esEs5(xy400, xy300, ty_Int) -> new_esEs10(xy400, xy300) 16.46/6.48 new_esEs13(@2(xy4000, xy4001), @2(xy3000, xy3001), beh, bfa) -> new_asAs(new_esEs24(xy4000, xy3000, beh), new_esEs25(xy4001, xy3001, bfa)) 16.46/6.48 new_esEs18(EQ, GT) -> False 16.46/6.48 new_esEs18(GT, EQ) -> False 16.46/6.48 new_esEs21(xy4001, xy3001, ty_@0) -> new_esEs14(xy4001, xy3001) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_primEqNat0(Succ(xy40000), Zero) -> False 16.46/6.48 new_primEqNat0(Zero, Succ(xy30000)) -> False 16.46/6.48 new_esEs14(@0, @0) -> True 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Bool) -> new_esEs9(xy4001, xy3001) 16.46/6.48 new_esEs27(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Ordering) -> new_esEs18(xy4002, xy3002) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs4(xy400, xy300, ty_Double) -> new_esEs17(xy400, xy300) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Char) -> new_esEs7(xy4001, xy3001) 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(ty_@2, hc), hd)) -> new_esEs13(xy4001, xy3001, hc, hd) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(ty_@2, bdc), bdd)) -> new_esEs13(xy4000, xy3000, bdc, bdd) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs8(xy4002, xy3002, hf, hg, hh) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(ty_Either, bcg), bch)) -> new_esEs6(xy4000, xy3000, bcg, bch) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(ty_Either, bgg), bgh)) -> new_esEs6(xy4001, xy3001, bgg, bgh) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Ordering) -> new_esEs18(xy4001, xy3001) 16.46/6.48 new_esEs18(LT, GT) -> False 16.46/6.48 new_esEs18(GT, LT) -> False 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs8(xy4000, xy3000, bcd, bce, bcf) 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Neg(Zero)) -> False 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Succ(xy30000))) -> False 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Bool) -> new_esEs9(xy4002, xy3002) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Pos(Succ(xy30000))) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_Maybe, bcc)) -> new_esEs11(xy400, xy300, bcc) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Int) -> new_esEs10(xy4002, xy3002) 16.46/6.48 new_esEs5(xy400, xy300, ty_Float) -> new_esEs15(xy400, xy300) 16.46/6.48 new_esEs5(xy400, xy300, ty_Double) -> new_esEs17(xy400, xy300) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(ty_@2, ec), ed)) -> new_esEs13(xy4000, xy3000, ec, ed) 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_[], gc)) -> new_esEs16(xy4000, xy3000, gc) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(ty_Either, fd), ff)) -> new_esEs6(xy4000, xy3000, fd, ff) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_Ratio, bhf)) -> new_esEs12(xy400, xy300, bhf) 16.46/6.48 new_sr(Pos(xy40010), Neg(xy30000)) -> Neg(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_sr(Neg(xy40010), Pos(xy30000)) -> Neg(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_primPlusNat1(Succ(xy4200), Succ(xy3000000)) -> Succ(Succ(new_primPlusNat1(xy4200, xy3000000))) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Neg(xy3000)) -> False 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Pos(xy3000)) -> False 16.46/6.48 new_esEs16(:(xy4000, xy4001), :(xy3000, xy3001), bah) -> new_asAs(new_esEs23(xy4000, xy3000, bah), new_esEs16(xy4001, xy3001, bah)) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_Maybe, bac)) -> new_esEs11(xy4002, xy3002, bac) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_[], bhe)) -> new_esEs16(xy4001, xy3001, bhe) 16.46/6.48 new_esEs4(xy400, xy300, ty_Int) -> new_esEs10(xy400, xy300) 16.46/6.48 new_esEs18(LT, LT) -> True 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(ty_@2, bga), bgb)) -> new_esEs13(xy4000, xy3000, bga, bgb) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs8(xy4001, xy3001, bgd, bge, bgf) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Bool) -> new_esEs9(xy4001, xy3001) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_Ratio, bbg)) -> new_esEs12(xy4000, xy3000, bbg) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_[], ee)) -> new_esEs16(xy4000, xy3000, ee) 16.46/6.48 new_esEs5(xy400, xy300, app(app(ty_@2, bee), bef)) -> new_esEs13(xy400, xy300, bee, bef) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_[], db), bg) -> new_esEs16(xy4000, xy3000, db) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(ty_Either, baa), bab)) -> new_esEs6(xy4002, xy3002, baa, bab) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_Maybe, bha)) -> new_esEs11(xy4001, xy3001, bha) 16.46/6.48 new_sr(Neg(xy40010), Neg(xy30000)) -> Pos(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Float) -> new_esEs15(xy4002, xy3002) 16.46/6.48 new_esEs4(xy400, xy300, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs8(xy400, xy300, ef, eg, eh) 16.46/6.48 new_esEs4(xy400, xy300, ty_Bool) -> new_esEs9(xy400, xy300) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Char) -> new_esEs7(xy4001, xy3001) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_@0) -> new_esEs14(xy4001, xy3001) 16.46/6.48 new_esEs11(Nothing, Just(xy3000), bcc) -> False 16.46/6.48 new_esEs11(Just(xy4000), Nothing, bcc) -> False 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Succ(xy30000))) -> False 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Succ(xy30000))) -> False 16.46/6.48 new_esEs11(Nothing, Nothing, bcc) -> True 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Double) -> new_esEs17(xy4001, xy3001) 16.46/6.48 new_esEs7(Char(xy4000), Char(xy3000)) -> new_primEqNat0(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Bool, bg) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_Maybe, bbf)) -> new_esEs11(xy4000, xy3000, bbf) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Char, bg) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_@0, bg) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Neg(Succ(xy30000))) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs4(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(ty_@2, cg), da), bg) -> new_esEs13(xy4000, xy3000, cg, da) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_Ratio, hb)) -> new_esEs12(xy4001, xy3001, hb) 16.46/6.48 new_primPlusNat0(Succ(xy420), xy300000) -> Succ(Succ(new_primPlusNat1(xy420, xy300000))) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(ty_@2, bae), baf)) -> new_esEs13(xy4002, xy3002, bae, baf) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs8(xy4000, xy3000, bba, bbb, bbc) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(ty_Either, bfe), bff)) -> new_esEs6(xy4000, xy3000, bfe, bff) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_Ratio, eb)) -> new_esEs12(xy4000, xy3000, eb) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(ty_Either, cc), cd), bg) -> new_esEs6(xy4000, xy3000, cc, cd) 16.46/6.48 new_esEs10(xy400, xy300) -> new_primEqInt(xy400, xy300) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Ordering) -> new_esEs18(xy4001, xy3001) 16.46/6.48 new_esEs4(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 16.46/6.48 new_primPlusNat1(Zero, Zero) -> Zero 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_primMulNat0(Succ(xy400100), Zero) -> Zero 16.46/6.48 new_primMulNat0(Zero, Succ(xy300000)) -> Zero 16.46/6.48 new_sr(Pos(xy40010), Pos(xy30000)) -> Pos(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_primPlusNat0(Zero, xy300000) -> Succ(xy300000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Integer, bg) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_[], bde)) -> new_esEs16(xy4000, xy3000, bde) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_[], he)) -> new_esEs16(xy4001, xy3001, he) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs8(xy4000, xy3000, fa, fb, fc) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_@0) -> new_esEs14(xy4002, xy3002) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 16.46/6.48 new_primMulNat0(Succ(xy400100), Succ(xy300000)) -> new_primPlusNat0(new_primMulNat0(xy400100, Succ(xy300000)), xy300000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs15(Float(xy4000, xy4001), Float(xy3000, xy3001)) -> new_esEs10(new_sr(xy4000, xy3001), new_sr(xy4001, xy3000)) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Char) -> new_esEs7(xy4002, xy3002) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_Ratio, bdb)) -> new_esEs12(xy4000, xy3000, bdb) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Ordering, bg) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs5(xy400, xy300, app(app(ty_Either, bea), beb)) -> new_esEs6(xy400, xy300, bea, beb) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs18(EQ, EQ) -> True 16.46/6.48 new_esEs5(xy400, xy300, app(ty_[], beg)) -> new_esEs16(xy400, xy300, beg) 16.46/6.48 new_primPlusNat1(Succ(xy4200), Zero) -> Succ(xy4200) 16.46/6.48 new_primPlusNat1(Zero, Succ(xy3000000)) -> Succ(xy3000000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Double) -> new_esEs17(xy4001, xy3001) 16.46/6.48 new_esEs5(xy400, xy300, ty_Ordering) -> new_esEs18(xy400, xy300) 16.46/6.48 new_esEs26(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs16(:(xy4000, xy4001), [], bah) -> False 16.46/6.48 new_esEs16([], :(xy3000, xy3001), bah) -> False 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_Maybe, fg)) -> new_esEs11(xy4000, xy3000, fg) 16.46/6.48 new_esEs12(:%(xy4000, xy4001), :%(xy3000, xy3001), bhf) -> new_asAs(new_esEs26(xy4000, xy3000, bhf), new_esEs27(xy4001, xy3001, bhf)) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_Ratio, cf), bg) -> new_esEs12(xy4000, xy3000, cf) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_[], bcb)) -> new_esEs16(xy4000, xy3000, bcb) 16.46/6.48 new_esEs4(xy400, xy300, ty_@0) -> new_esEs14(xy400, xy300) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 16.46/6.48 new_esEs4(xy400, xy300, app(app(ty_Either, dc), bg)) -> new_esEs6(xy400, xy300, dc, bg) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Double, bg) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_Ratio, bhb)) -> new_esEs12(xy4001, xy3001, bhb) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs16([], [], bah) -> True 16.46/6.48 new_primEqNat0(Zero, Zero) -> True 16.46/6.48 new_esEs5(xy400, xy300, ty_@0) -> new_esEs14(xy400, xy300) 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_Ratio, fh)) -> new_esEs12(xy4000, xy3000, fh) 16.46/6.48 new_esEs9(False, True) -> False 16.46/6.48 new_esEs9(True, False) -> False 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs19(Integer(xy4000), Integer(xy3000)) -> new_primEqInt(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_[], bag)) -> new_esEs16(xy4002, xy3002, bag) 16.46/6.48 new_asAs(False, xy41) -> False 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_Maybe, ea)) -> new_esEs11(xy4000, xy3000, ea) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Int, bg) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(ty_@2, bbh), bca)) -> new_esEs13(xy4000, xy3000, bbh, bca) 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs8(xy4000, xy3000, bfb, bfc, bfd) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs5(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs26(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(app(ty_@3, bh), ca), cb), bg) -> new_esEs8(xy4000, xy3000, bh, ca, cb) 16.46/6.48 new_esEs18(LT, EQ) -> False 16.46/6.48 new_esEs18(EQ, LT) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_Maybe, ce), bg) -> new_esEs11(xy4000, xy3000, ce) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_[], bah)) -> new_esEs16(xy400, xy300, bah) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(ty_Either, bbd), bbe)) -> new_esEs6(xy4000, xy3000, bbd, bbe) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Float) -> new_esEs15(xy4001, xy3001) 16.46/6.48 16.46/6.48 The set Q consists of the following terms: 16.46/6.48 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 16.46/6.48 new_esEs5(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Float) 16.46/6.48 new_esEs5(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 16.46/6.48 new_esEs26(x0, x1, ty_Int) 16.46/6.48 new_esEs24(x0, x1, ty_Int) 16.46/6.48 new_esEs23(x0, x1, ty_Char) 16.46/6.48 new_esEs6(Left(x0), Right(x1), x2, x3) 16.46/6.48 new_esEs6(Right(x0), Left(x1), x2, x3) 16.46/6.48 new_esEs21(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 16.46/6.48 new_esEs16([], :(x0, x1), x2) 16.46/6.48 new_primMulNat0(Zero, Zero) 16.46/6.48 new_esEs4(x0, x1, ty_Bool) 16.46/6.48 new_primPlusNat1(Zero, Zero) 16.46/6.48 new_primPlusNat0(Zero, x0) 16.46/6.48 new_esEs11(Nothing, Just(x0), x1) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Ordering) 16.46/6.48 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs4(x0, x1, ty_Integer) 16.46/6.48 new_esEs19(Integer(x0), Integer(x1)) 16.46/6.48 new_esEs20(x0, x1, ty_Char) 16.46/6.48 new_primMulNat0(Succ(x0), Zero) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Zero)) 16.46/6.48 new_esEs25(x0, x1, ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_@0) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Int) 16.46/6.48 new_esEs16([], [], x0) 16.46/6.48 new_asAs(True, x0) 16.46/6.48 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs18(EQ, GT) 16.46/6.48 new_esEs18(GT, EQ) 16.46/6.48 new_esEs25(x0, x1, ty_Int) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 16.46/6.48 new_esEs22(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs4(x0, x1, ty_@0) 16.46/6.48 new_esEs24(x0, x1, ty_Double) 16.46/6.48 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs24(x0, x1, ty_Char) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Char) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Zero)) 16.46/6.48 new_esEs21(x0, x1, ty_Bool) 16.46/6.48 new_esEs5(x0, x1, ty_Integer) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Double) 16.46/6.48 new_esEs22(x0, x1, ty_Bool) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 16.46/6.48 new_esEs25(x0, x1, ty_Char) 16.46/6.48 new_sr(Pos(x0), Neg(x1)) 16.46/6.48 new_sr(Neg(x0), Pos(x1)) 16.46/6.48 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs25(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs10(x0, x1) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 16.46/6.48 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs15(Float(x0, x1), Float(x2, x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 16.46/6.48 new_esEs21(x0, x1, ty_Int) 16.46/6.48 new_esEs12(:%(x0, x1), :%(x2, x3), x4) 16.46/6.48 new_esEs21(x0, x1, ty_Char) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 16.46/6.48 new_esEs20(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 16.46/6.48 new_esEs9(False, False) 16.46/6.48 new_esEs25(x0, x1, ty_Bool) 16.46/6.48 new_esEs23(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 16.46/6.48 new_esEs25(x0, x1, ty_Ordering) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_[], x2)) 16.46/6.48 new_esEs24(x0, x1, ty_@0) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Zero)) 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Zero)) 16.46/6.48 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Integer) 16.46/6.48 new_esEs5(x0, x1, ty_Char) 16.46/6.48 new_esEs20(x0, x1, ty_Integer) 16.46/6.48 new_primPlusNat0(Succ(x0), x1) 16.46/6.48 new_esEs25(x0, x1, ty_Integer) 16.46/6.48 new_sr(Neg(x0), Neg(x1)) 16.46/6.48 new_esEs24(x0, x1, ty_Float) 16.46/6.48 new_primMulNat0(Succ(x0), Succ(x1)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 16.46/6.48 new_esEs11(Nothing, Nothing, x0) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 16.46/6.48 new_esEs5(x0, x1, ty_Bool) 16.46/6.48 new_esEs21(x0, x1, ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_Double) 16.46/6.48 new_esEs21(x0, x1, ty_Float) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 16.46/6.48 new_esEs18(LT, LT) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 16.46/6.48 new_esEs23(x0, x1, ty_Ordering) 16.46/6.48 new_primEqNat0(Zero, Succ(x0)) 16.46/6.48 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs20(x0, x1, ty_Ordering) 16.46/6.48 new_esEs22(x0, x1, ty_Integer) 16.46/6.48 new_esEs20(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs27(x0, x1, ty_Int) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Bool) 16.46/6.48 new_esEs24(x0, x1, ty_Integer) 16.46/6.48 new_esEs18(LT, GT) 16.46/6.48 new_esEs18(GT, LT) 16.46/6.48 new_esEs20(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 16.46/6.48 new_esEs5(x0, x1, ty_Ordering) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 16.46/6.48 new_esEs16(:(x0, x1), :(x2, x3), x4) 16.46/6.48 new_esEs14(@0, @0) 16.46/6.48 new_esEs17(Double(x0, x1), Double(x2, x3)) 16.46/6.48 new_esEs4(x0, x1, ty_Ordering) 16.46/6.48 new_esEs22(x0, x1, ty_Ordering) 16.46/6.48 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_primMulNat0(Zero, Succ(x0)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 16.46/6.48 new_esEs4(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs5(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs22(x0, x1, ty_Double) 16.46/6.48 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs21(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs21(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs24(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 16.46/6.48 new_esEs22(x0, x1, ty_Int) 16.46/6.48 new_esEs21(x0, x1, ty_Double) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 16.46/6.48 new_esEs23(x0, x1, ty_Integer) 16.46/6.48 new_esEs26(x0, x1, ty_Integer) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 16.46/6.48 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_Int) 16.46/6.48 new_esEs4(x0, x1, ty_Float) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 16.46/6.48 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs27(x0, x1, ty_Integer) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 16.46/6.48 new_primEqNat0(Succ(x0), Succ(x1)) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 16.46/6.48 new_esEs4(x0, x1, ty_Char) 16.46/6.48 new_esEs24(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs25(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs24(x0, x1, ty_Bool) 16.46/6.48 new_esEs4(x0, x1, ty_Double) 16.46/6.48 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs22(x0, x1, ty_Char) 16.46/6.48 new_esEs25(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs16(:(x0, x1), [], x2) 16.46/6.48 new_esEs5(x0, x1, ty_Float) 16.46/6.48 new_esEs22(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs9(False, True) 16.46/6.48 new_esEs9(True, False) 16.46/6.48 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs18(GT, GT) 16.46/6.48 new_esEs4(x0, x1, ty_Int) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 16.46/6.48 new_esEs22(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs18(LT, EQ) 16.46/6.48 new_esEs18(EQ, LT) 16.46/6.48 new_esEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 16.46/6.48 new_esEs25(x0, x1, ty_Double) 16.46/6.48 new_primPlusNat1(Zero, Succ(x0)) 16.46/6.48 new_esEs23(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs21(x0, x1, ty_Integer) 16.46/6.48 new_primEqNat0(Zero, Zero) 16.46/6.48 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 16.46/6.48 new_esEs23(x0, x1, ty_@0) 16.46/6.48 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs20(x0, x1, ty_Bool) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 16.46/6.48 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs20(x0, x1, ty_Float) 16.46/6.48 new_esEs23(x0, x1, app(ty_[], x2)) 16.46/6.48 new_primPlusNat1(Succ(x0), Succ(x1)) 16.46/6.48 new_esEs25(x0, x1, ty_Float) 16.46/6.48 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs23(x0, x1, ty_Bool) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs23(x0, x1, ty_Float) 16.46/6.48 new_esEs23(x0, x1, ty_Double) 16.46/6.48 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs20(x0, x1, ty_Double) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs11(Just(x0), Nothing, x1) 16.46/6.48 new_asAs(False, x0) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 16.46/6.48 new_esEs24(x0, x1, ty_Ordering) 16.46/6.48 new_esEs21(x0, x1, ty_Ordering) 16.46/6.48 new_esEs20(x0, x1, ty_Int) 16.46/6.48 new_sr(Pos(x0), Pos(x1)) 16.46/6.48 new_esEs4(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs18(EQ, EQ) 16.46/6.48 new_primPlusNat1(Succ(x0), Zero) 16.46/6.48 new_esEs22(x0, x1, ty_@0) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 16.46/6.48 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 16.46/6.48 new_esEs7(Char(x0), Char(x1)) 16.46/6.48 new_esEs9(True, True) 16.46/6.48 new_esEs23(x0, x1, ty_Int) 16.46/6.48 new_esEs22(x0, x1, ty_Float) 16.46/6.48 new_esEs20(x0, x1, ty_@0) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 16.46/6.48 new_esEs4(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_primEqNat0(Succ(x0), Zero) 16.46/6.48 16.46/6.48 We have to consider all minimal (P,Q,R)-chains. 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (13) QDPSizeChangeProof (EQUIVALENT) 16.46/6.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 16.46/6.48 16.46/6.48 From the DPs we obtained the following set of size-change graphs: 16.46/6.48 *new_deleteBy0(xy10, xy11, xy12, False, ba, bb) -> new_deleteBy(Left(xy12), xy10, ba, bb) 16.46/6.48 The graph contains the following edges 1 >= 2, 5 >= 3, 6 >= 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_deleteBy(Left(xy400), :(Right(xy300), xy31), bc, bd) -> new_deleteBy(Left(xy400), xy31, bc, bd) 16.46/6.48 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_deleteBy(Left(xy400), :(Left(xy300), xy31), bc, bd) -> new_deleteBy0(xy31, xy300, xy400, new_esEs4(xy400, xy300, bc), bc, bd) 16.46/6.48 The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 3 >= 5, 4 >= 6 16.46/6.48 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (14) 16.46/6.48 YES 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (15) 16.46/6.48 Obligation: 16.46/6.48 Q DP problem: 16.46/6.48 The TRS P consists of the following rules: 16.46/6.48 16.46/6.48 new_deleteBy(Right(xy400), :(Left(xy300), xy31), bc, bd) -> new_deleteBy(Right(xy400), xy31, bc, bd) 16.46/6.48 new_deleteBy(Right(xy400), :(Right(xy300), xy31), bc, bd) -> new_deleteBy00(xy31, xy300, xy400, new_esEs5(xy400, xy300, bd), bc, bd) 16.46/6.48 new_deleteBy00(xy19, xy20, xy21, False, be, bf) -> new_deleteBy(Right(xy21), xy19, be, bf) 16.46/6.48 16.46/6.48 The TRS R consists of the following rules: 16.46/6.48 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(ty_Either, gg), gh)) -> new_esEs6(xy4001, xy3001, gg, gh) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 16.46/6.48 new_esEs5(xy400, xy300, ty_Bool) -> new_esEs9(xy400, xy300) 16.46/6.48 new_esEs17(Double(xy4000, xy4001), Double(xy3000, xy3001)) -> new_esEs10(new_sr(xy4000, xy3001), new_sr(xy4001, xy3000)) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(app(ty_@3, dd), de), df)) -> new_esEs8(xy4000, xy3000, dd, de, df) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(ty_Either, dg), dh)) -> new_esEs6(xy4000, xy3000, dg, dh) 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_Maybe, bfg)) -> new_esEs11(xy4000, xy3000, bfg) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_Ratio, bad)) -> new_esEs12(xy4002, xy3002, bad) 16.46/6.48 new_esEs5(xy400, xy300, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs8(xy400, xy300, bdf, bdg, bdh) 16.46/6.48 new_esEs5(xy400, xy300, app(ty_Ratio, bed)) -> new_esEs12(xy400, xy300, bed) 16.46/6.48 new_esEs9(False, False) -> True 16.46/6.48 new_esEs4(xy400, xy300, app(app(ty_@2, beh), bfa)) -> new_esEs13(xy400, xy300, beh, bfa) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(ty_@2, bhc), bhd)) -> new_esEs13(xy4001, xy3001, bhc, bhd) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs8(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), ef, eg, eh) -> new_asAs(new_esEs20(xy4000, xy3000, ef), new_asAs(new_esEs21(xy4001, xy3001, eg), new_esEs22(xy4002, xy3002, eh))) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Integer) -> new_esEs19(xy4002, xy3002) 16.46/6.48 new_asAs(True, xy41) -> xy41 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs27(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_Maybe, bda)) -> new_esEs11(xy4000, xy3000, bda) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Pos(Zero)) -> False 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Succ(xy30000))) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Right(xy3000), dc, bg) -> False 16.46/6.48 new_esEs6(Right(xy4000), Left(xy3000), dc, bg) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_Ratio, bfh)) -> new_esEs12(xy4000, xy3000, bfh) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Float, bg) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_primEqNat0(Succ(xy40000), Succ(xy30000)) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs5(xy400, xy300, app(ty_Maybe, bec)) -> new_esEs11(xy400, xy300, bec) 16.46/6.48 new_esEs4(xy400, xy300, ty_Float) -> new_esEs15(xy400, xy300) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Float) -> new_esEs15(xy4001, xy3001) 16.46/6.48 new_esEs18(GT, GT) -> True 16.46/6.48 new_esEs4(xy400, xy300, ty_Ordering) -> new_esEs18(xy400, xy300) 16.46/6.48 new_esEs9(True, True) -> True 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Double) -> new_esEs17(xy4002, xy3002) 16.46/6.48 new_primMulNat0(Zero, Zero) -> Zero 16.46/6.48 new_esEs5(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs8(xy4001, xy3001, gd, ge, gf) 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_[], bgc)) -> new_esEs16(xy4000, xy3000, bgc) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(ty_@2, ga), gb)) -> new_esEs13(xy4000, xy3000, ga, gb) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_Maybe, ha)) -> new_esEs11(xy4001, xy3001, ha) 16.46/6.48 new_esEs5(xy400, xy300, ty_Int) -> new_esEs10(xy400, xy300) 16.46/6.48 new_esEs13(@2(xy4000, xy4001), @2(xy3000, xy3001), beh, bfa) -> new_asAs(new_esEs24(xy4000, xy3000, beh), new_esEs25(xy4001, xy3001, bfa)) 16.46/6.48 new_esEs18(EQ, GT) -> False 16.46/6.48 new_esEs18(GT, EQ) -> False 16.46/6.48 new_esEs21(xy4001, xy3001, ty_@0) -> new_esEs14(xy4001, xy3001) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_primEqNat0(Succ(xy40000), Zero) -> False 16.46/6.48 new_primEqNat0(Zero, Succ(xy30000)) -> False 16.46/6.48 new_esEs14(@0, @0) -> True 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Bool) -> new_esEs9(xy4001, xy3001) 16.46/6.48 new_esEs27(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Ordering) -> new_esEs18(xy4002, xy3002) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs4(xy400, xy300, ty_Double) -> new_esEs17(xy400, xy300) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Char) -> new_esEs7(xy4001, xy3001) 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(ty_@2, hc), hd)) -> new_esEs13(xy4001, xy3001, hc, hd) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(ty_@2, bdc), bdd)) -> new_esEs13(xy4000, xy3000, bdc, bdd) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs8(xy4002, xy3002, hf, hg, hh) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(ty_Either, bcg), bch)) -> new_esEs6(xy4000, xy3000, bcg, bch) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(ty_Either, bgg), bgh)) -> new_esEs6(xy4001, xy3001, bgg, bgh) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Ordering) -> new_esEs18(xy4001, xy3001) 16.46/6.48 new_esEs18(LT, GT) -> False 16.46/6.48 new_esEs18(GT, LT) -> False 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs8(xy4000, xy3000, bcd, bce, bcf) 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Neg(Zero)) -> False 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Succ(xy30000))) -> False 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Bool) -> new_esEs9(xy4002, xy3002) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Pos(Succ(xy30000))) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_Maybe, bcc)) -> new_esEs11(xy400, xy300, bcc) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Int) -> new_esEs10(xy4002, xy3002) 16.46/6.48 new_esEs5(xy400, xy300, ty_Float) -> new_esEs15(xy400, xy300) 16.46/6.48 new_esEs5(xy400, xy300, ty_Double) -> new_esEs17(xy400, xy300) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(app(ty_@2, ec), ed)) -> new_esEs13(xy4000, xy3000, ec, ed) 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_[], gc)) -> new_esEs16(xy4000, xy3000, gc) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(ty_Either, fd), ff)) -> new_esEs6(xy4000, xy3000, fd, ff) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_Ratio, bhf)) -> new_esEs12(xy400, xy300, bhf) 16.46/6.48 new_sr(Pos(xy40010), Neg(xy30000)) -> Neg(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_sr(Neg(xy40010), Pos(xy30000)) -> Neg(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_primPlusNat1(Succ(xy4200), Succ(xy3000000)) -> Succ(Succ(new_primPlusNat1(xy4200, xy3000000))) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Neg(xy3000)) -> False 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Pos(xy3000)) -> False 16.46/6.48 new_esEs16(:(xy4000, xy4001), :(xy3000, xy3001), bah) -> new_asAs(new_esEs23(xy4000, xy3000, bah), new_esEs16(xy4001, xy3001, bah)) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_Maybe, bac)) -> new_esEs11(xy4002, xy3002, bac) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_[], bhe)) -> new_esEs16(xy4001, xy3001, bhe) 16.46/6.48 new_esEs4(xy400, xy300, ty_Int) -> new_esEs10(xy400, xy300) 16.46/6.48 new_esEs18(LT, LT) -> True 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(ty_@2, bga), bgb)) -> new_esEs13(xy4000, xy3000, bga, bgb) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs8(xy4001, xy3001, bgd, bge, bgf) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Bool) -> new_esEs9(xy4001, xy3001) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_Ratio, bbg)) -> new_esEs12(xy4000, xy3000, bbg) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_[], ee)) -> new_esEs16(xy4000, xy3000, ee) 16.46/6.48 new_esEs5(xy400, xy300, app(app(ty_@2, bee), bef)) -> new_esEs13(xy400, xy300, bee, bef) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_[], db), bg) -> new_esEs16(xy4000, xy3000, db) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(ty_Either, baa), bab)) -> new_esEs6(xy4002, xy3002, baa, bab) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_Maybe, bha)) -> new_esEs11(xy4001, xy3001, bha) 16.46/6.48 new_sr(Neg(xy40010), Neg(xy30000)) -> Pos(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Float) -> new_esEs15(xy4002, xy3002) 16.46/6.48 new_esEs4(xy400, xy300, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs8(xy400, xy300, ef, eg, eh) 16.46/6.48 new_esEs4(xy400, xy300, ty_Bool) -> new_esEs9(xy400, xy300) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Char) -> new_esEs7(xy4001, xy3001) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_@0) -> new_esEs14(xy4001, xy3001) 16.46/6.48 new_esEs11(Nothing, Just(xy3000), bcc) -> False 16.46/6.48 new_esEs11(Just(xy4000), Nothing, bcc) -> False 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Succ(xy30000))) -> False 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Succ(xy30000))) -> False 16.46/6.48 new_esEs11(Nothing, Nothing, bcc) -> True 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Double) -> new_esEs17(xy4001, xy3001) 16.46/6.48 new_esEs7(Char(xy4000), Char(xy3000)) -> new_primEqNat0(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Bool, bg) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_Maybe, bbf)) -> new_esEs11(xy4000, xy3000, bbf) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Char, bg) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_@0, bg) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Neg(Succ(xy30000))) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs4(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(ty_@2, cg), da), bg) -> new_esEs13(xy4000, xy3000, cg, da) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_Ratio, hb)) -> new_esEs12(xy4001, xy3001, hb) 16.46/6.48 new_primPlusNat0(Succ(xy420), xy300000) -> Succ(Succ(new_primPlusNat1(xy420, xy300000))) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(ty_@2, bae), baf)) -> new_esEs13(xy4002, xy3002, bae, baf) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs8(xy4000, xy3000, bba, bbb, bbc) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(ty_Either, bfe), bff)) -> new_esEs6(xy4000, xy3000, bfe, bff) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_Ratio, eb)) -> new_esEs12(xy4000, xy3000, eb) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(ty_Either, cc), cd), bg) -> new_esEs6(xy4000, xy3000, cc, cd) 16.46/6.48 new_esEs10(xy400, xy300) -> new_primEqInt(xy400, xy300) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Ordering) -> new_esEs18(xy4001, xy3001) 16.46/6.48 new_esEs4(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 16.46/6.48 new_primPlusNat1(Zero, Zero) -> Zero 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_primMulNat0(Succ(xy400100), Zero) -> Zero 16.46/6.48 new_primMulNat0(Zero, Succ(xy300000)) -> Zero 16.46/6.48 new_sr(Pos(xy40010), Pos(xy30000)) -> Pos(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_primPlusNat0(Zero, xy300000) -> Succ(xy300000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Integer, bg) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_[], bde)) -> new_esEs16(xy4000, xy3000, bde) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_[], he)) -> new_esEs16(xy4001, xy3001, he) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs8(xy4000, xy3000, fa, fb, fc) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_@0) -> new_esEs14(xy4002, xy3002) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 16.46/6.48 new_primMulNat0(Succ(xy400100), Succ(xy300000)) -> new_primPlusNat0(new_primMulNat0(xy400100, Succ(xy300000)), xy300000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs15(Float(xy4000, xy4001), Float(xy3000, xy3001)) -> new_esEs10(new_sr(xy4000, xy3001), new_sr(xy4001, xy3000)) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Char) -> new_esEs7(xy4002, xy3002) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_Ratio, bdb)) -> new_esEs12(xy4000, xy3000, bdb) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Ordering, bg) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs5(xy400, xy300, app(app(ty_Either, bea), beb)) -> new_esEs6(xy400, xy300, bea, beb) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs18(EQ, EQ) -> True 16.46/6.48 new_esEs5(xy400, xy300, app(ty_[], beg)) -> new_esEs16(xy400, xy300, beg) 16.46/6.48 new_primPlusNat1(Succ(xy4200), Zero) -> Succ(xy4200) 16.46/6.48 new_primPlusNat1(Zero, Succ(xy3000000)) -> Succ(xy3000000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Double) -> new_esEs17(xy4001, xy3001) 16.46/6.48 new_esEs5(xy400, xy300, ty_Ordering) -> new_esEs18(xy400, xy300) 16.46/6.48 new_esEs26(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs16(:(xy4000, xy4001), [], bah) -> False 16.46/6.48 new_esEs16([], :(xy3000, xy3001), bah) -> False 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_Maybe, fg)) -> new_esEs11(xy4000, xy3000, fg) 16.46/6.48 new_esEs12(:%(xy4000, xy4001), :%(xy3000, xy3001), bhf) -> new_asAs(new_esEs26(xy4000, xy3000, bhf), new_esEs27(xy4001, xy3001, bhf)) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_Ratio, cf), bg) -> new_esEs12(xy4000, xy3000, cf) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_[], bcb)) -> new_esEs16(xy4000, xy3000, bcb) 16.46/6.48 new_esEs4(xy400, xy300, ty_@0) -> new_esEs14(xy400, xy300) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 16.46/6.48 new_esEs4(xy400, xy300, app(app(ty_Either, dc), bg)) -> new_esEs6(xy400, xy300, dc, bg) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Double, bg) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_Ratio, bhb)) -> new_esEs12(xy4001, xy3001, bhb) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs16([], [], bah) -> True 16.46/6.48 new_primEqNat0(Zero, Zero) -> True 16.46/6.48 new_esEs5(xy400, xy300, ty_@0) -> new_esEs14(xy400, xy300) 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_Ratio, fh)) -> new_esEs12(xy4000, xy3000, fh) 16.46/6.48 new_esEs9(False, True) -> False 16.46/6.48 new_esEs9(True, False) -> False 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs19(Integer(xy4000), Integer(xy3000)) -> new_primEqInt(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_[], bag)) -> new_esEs16(xy4002, xy3002, bag) 16.46/6.48 new_asAs(False, xy41) -> False 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, app(ty_Maybe, ea)) -> new_esEs11(xy4000, xy3000, ea) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Int, bg) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(ty_@2, bbh), bca)) -> new_esEs13(xy4000, xy3000, bbh, bca) 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs8(xy4000, xy3000, bfb, bfc, bfd) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), dc, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs5(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs26(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(app(ty_@3, bh), ca), cb), bg) -> new_esEs8(xy4000, xy3000, bh, ca, cb) 16.46/6.48 new_esEs18(LT, EQ) -> False 16.46/6.48 new_esEs18(EQ, LT) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_Maybe, ce), bg) -> new_esEs11(xy4000, xy3000, ce) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_[], bah)) -> new_esEs16(xy400, xy300, bah) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(ty_Either, bbd), bbe)) -> new_esEs6(xy4000, xy3000, bbd, bbe) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Float) -> new_esEs15(xy4001, xy3001) 16.46/6.48 16.46/6.48 The set Q consists of the following terms: 16.46/6.48 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 16.46/6.48 new_esEs5(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Float) 16.46/6.48 new_esEs5(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 16.46/6.48 new_esEs26(x0, x1, ty_Int) 16.46/6.48 new_esEs24(x0, x1, ty_Int) 16.46/6.48 new_esEs23(x0, x1, ty_Char) 16.46/6.48 new_esEs6(Left(x0), Right(x1), x2, x3) 16.46/6.48 new_esEs6(Right(x0), Left(x1), x2, x3) 16.46/6.48 new_esEs21(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 16.46/6.48 new_esEs16([], :(x0, x1), x2) 16.46/6.48 new_primMulNat0(Zero, Zero) 16.46/6.48 new_esEs4(x0, x1, ty_Bool) 16.46/6.48 new_primPlusNat1(Zero, Zero) 16.46/6.48 new_primPlusNat0(Zero, x0) 16.46/6.48 new_esEs11(Nothing, Just(x0), x1) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Ordering) 16.46/6.48 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs4(x0, x1, ty_Integer) 16.46/6.48 new_esEs19(Integer(x0), Integer(x1)) 16.46/6.48 new_esEs20(x0, x1, ty_Char) 16.46/6.48 new_primMulNat0(Succ(x0), Zero) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Zero)) 16.46/6.48 new_esEs25(x0, x1, ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_@0) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Int) 16.46/6.48 new_esEs16([], [], x0) 16.46/6.48 new_asAs(True, x0) 16.46/6.48 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs18(EQ, GT) 16.46/6.48 new_esEs18(GT, EQ) 16.46/6.48 new_esEs25(x0, x1, ty_Int) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 16.46/6.48 new_esEs22(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs4(x0, x1, ty_@0) 16.46/6.48 new_esEs24(x0, x1, ty_Double) 16.46/6.48 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs24(x0, x1, ty_Char) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Char) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Zero)) 16.46/6.48 new_esEs21(x0, x1, ty_Bool) 16.46/6.48 new_esEs5(x0, x1, ty_Integer) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Double) 16.46/6.48 new_esEs22(x0, x1, ty_Bool) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 16.46/6.48 new_esEs25(x0, x1, ty_Char) 16.46/6.48 new_sr(Pos(x0), Neg(x1)) 16.46/6.48 new_sr(Neg(x0), Pos(x1)) 16.46/6.48 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs25(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs10(x0, x1) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 16.46/6.48 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs15(Float(x0, x1), Float(x2, x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 16.46/6.48 new_esEs21(x0, x1, ty_Int) 16.46/6.48 new_esEs12(:%(x0, x1), :%(x2, x3), x4) 16.46/6.48 new_esEs21(x0, x1, ty_Char) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 16.46/6.48 new_esEs20(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 16.46/6.48 new_esEs9(False, False) 16.46/6.48 new_esEs25(x0, x1, ty_Bool) 16.46/6.48 new_esEs23(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 16.46/6.48 new_esEs25(x0, x1, ty_Ordering) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_[], x2)) 16.46/6.48 new_esEs24(x0, x1, ty_@0) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Zero)) 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Zero)) 16.46/6.48 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Integer) 16.46/6.48 new_esEs5(x0, x1, ty_Char) 16.46/6.48 new_esEs20(x0, x1, ty_Integer) 16.46/6.48 new_primPlusNat0(Succ(x0), x1) 16.46/6.48 new_esEs25(x0, x1, ty_Integer) 16.46/6.48 new_sr(Neg(x0), Neg(x1)) 16.46/6.48 new_esEs24(x0, x1, ty_Float) 16.46/6.48 new_primMulNat0(Succ(x0), Succ(x1)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 16.46/6.48 new_esEs11(Nothing, Nothing, x0) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 16.46/6.48 new_esEs5(x0, x1, ty_Bool) 16.46/6.48 new_esEs21(x0, x1, ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_Double) 16.46/6.48 new_esEs21(x0, x1, ty_Float) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 16.46/6.48 new_esEs18(LT, LT) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 16.46/6.48 new_esEs23(x0, x1, ty_Ordering) 16.46/6.48 new_primEqNat0(Zero, Succ(x0)) 16.46/6.48 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs20(x0, x1, ty_Ordering) 16.46/6.48 new_esEs22(x0, x1, ty_Integer) 16.46/6.48 new_esEs20(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs27(x0, x1, ty_Int) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Bool) 16.46/6.48 new_esEs24(x0, x1, ty_Integer) 16.46/6.48 new_esEs18(LT, GT) 16.46/6.48 new_esEs18(GT, LT) 16.46/6.48 new_esEs20(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 16.46/6.48 new_esEs5(x0, x1, ty_Ordering) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 16.46/6.48 new_esEs16(:(x0, x1), :(x2, x3), x4) 16.46/6.48 new_esEs14(@0, @0) 16.46/6.48 new_esEs17(Double(x0, x1), Double(x2, x3)) 16.46/6.48 new_esEs4(x0, x1, ty_Ordering) 16.46/6.48 new_esEs22(x0, x1, ty_Ordering) 16.46/6.48 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_primMulNat0(Zero, Succ(x0)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 16.46/6.48 new_esEs4(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs5(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs22(x0, x1, ty_Double) 16.46/6.48 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs21(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs21(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs24(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 16.46/6.48 new_esEs22(x0, x1, ty_Int) 16.46/6.48 new_esEs21(x0, x1, ty_Double) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 16.46/6.48 new_esEs23(x0, x1, ty_Integer) 16.46/6.48 new_esEs26(x0, x1, ty_Integer) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 16.46/6.48 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_Int) 16.46/6.48 new_esEs4(x0, x1, ty_Float) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 16.46/6.48 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs27(x0, x1, ty_Integer) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 16.46/6.48 new_primEqNat0(Succ(x0), Succ(x1)) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 16.46/6.48 new_esEs4(x0, x1, ty_Char) 16.46/6.48 new_esEs24(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs25(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs24(x0, x1, ty_Bool) 16.46/6.48 new_esEs4(x0, x1, ty_Double) 16.46/6.48 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs22(x0, x1, ty_Char) 16.46/6.48 new_esEs25(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs16(:(x0, x1), [], x2) 16.46/6.48 new_esEs5(x0, x1, ty_Float) 16.46/6.48 new_esEs22(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs9(False, True) 16.46/6.48 new_esEs9(True, False) 16.46/6.48 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs18(GT, GT) 16.46/6.48 new_esEs4(x0, x1, ty_Int) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 16.46/6.48 new_esEs22(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs18(LT, EQ) 16.46/6.48 new_esEs18(EQ, LT) 16.46/6.48 new_esEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 16.46/6.48 new_esEs25(x0, x1, ty_Double) 16.46/6.48 new_primPlusNat1(Zero, Succ(x0)) 16.46/6.48 new_esEs23(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs21(x0, x1, ty_Integer) 16.46/6.48 new_primEqNat0(Zero, Zero) 16.46/6.48 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 16.46/6.48 new_esEs23(x0, x1, ty_@0) 16.46/6.48 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs20(x0, x1, ty_Bool) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 16.46/6.48 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs20(x0, x1, ty_Float) 16.46/6.48 new_esEs23(x0, x1, app(ty_[], x2)) 16.46/6.48 new_primPlusNat1(Succ(x0), Succ(x1)) 16.46/6.48 new_esEs25(x0, x1, ty_Float) 16.46/6.48 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs23(x0, x1, ty_Bool) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs23(x0, x1, ty_Float) 16.46/6.48 new_esEs23(x0, x1, ty_Double) 16.46/6.48 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs20(x0, x1, ty_Double) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs11(Just(x0), Nothing, x1) 16.46/6.48 new_asAs(False, x0) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 16.46/6.48 new_esEs24(x0, x1, ty_Ordering) 16.46/6.48 new_esEs21(x0, x1, ty_Ordering) 16.46/6.48 new_esEs20(x0, x1, ty_Int) 16.46/6.48 new_sr(Pos(x0), Pos(x1)) 16.46/6.48 new_esEs4(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs18(EQ, EQ) 16.46/6.48 new_primPlusNat1(Succ(x0), Zero) 16.46/6.48 new_esEs22(x0, x1, ty_@0) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 16.46/6.48 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 16.46/6.48 new_esEs7(Char(x0), Char(x1)) 16.46/6.48 new_esEs9(True, True) 16.46/6.48 new_esEs23(x0, x1, ty_Int) 16.46/6.48 new_esEs22(x0, x1, ty_Float) 16.46/6.48 new_esEs20(x0, x1, ty_@0) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 16.46/6.48 new_esEs4(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_primEqNat0(Succ(x0), Zero) 16.46/6.48 16.46/6.48 We have to consider all minimal (P,Q,R)-chains. 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (16) QDPSizeChangeProof (EQUIVALENT) 16.46/6.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 16.46/6.48 16.46/6.48 From the DPs we obtained the following set of size-change graphs: 16.46/6.48 *new_deleteBy(Right(xy400), :(Left(xy300), xy31), bc, bd) -> new_deleteBy(Right(xy400), xy31, bc, bd) 16.46/6.48 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_deleteBy(Right(xy400), :(Right(xy300), xy31), bc, bd) -> new_deleteBy00(xy31, xy300, xy400, new_esEs5(xy400, xy300, bd), bc, bd) 16.46/6.48 The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 3 >= 5, 4 >= 6 16.46/6.48 16.46/6.48 16.46/6.48 *new_deleteBy00(xy19, xy20, xy21, False, be, bf) -> new_deleteBy(Right(xy21), xy19, be, bf) 16.46/6.48 The graph contains the following edges 1 >= 2, 5 >= 3, 6 >= 4 16.46/6.48 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (17) 16.46/6.48 YES 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (18) 16.46/6.48 Obligation: 16.46/6.48 Q DP problem: 16.46/6.48 The TRS P consists of the following rules: 16.46/6.48 16.46/6.48 new_foldl(xy3, :(xy40, xy41), ba, bb) -> new_foldl(new_deleteBy1(xy40, xy3, ba, bb), xy41, ba, bb) 16.46/6.48 16.46/6.48 The TRS R consists of the following rules: 16.46/6.48 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(ty_Either, gc), gd)) -> new_esEs6(xy4001, xy3001, gc, gd) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_deleteBy01(xy19, xy20, xy21, True, bdb, bdc) -> xy19 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 16.46/6.48 new_esEs5(xy400, xy300, ty_Bool) -> new_esEs9(xy400, xy300) 16.46/6.48 new_esEs17(Double(xy4000, xy4001), Double(xy3000, xy3001)) -> new_esEs10(new_sr(xy4000, xy3001), new_sr(xy4001, xy3000)) 16.46/6.48 new_deleteBy1(xy40, [], ba, bb) -> [] 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, app(app(app(ty_@3, cg), da), db)) -> new_esEs8(xy4000, xy3000, cg, da, db) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, app(app(ty_Either, dc), dd)) -> new_esEs6(xy4000, xy3000, dc, dd) 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_Maybe, bec)) -> new_esEs11(xy4000, xy3000, bec) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_Ratio, hh)) -> new_esEs12(xy4002, xy3002, hh) 16.46/6.48 new_esEs5(xy400, xy300, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs8(xy400, xy300, bgc, bgd, bge) 16.46/6.48 new_esEs9(False, False) -> True 16.46/6.48 new_esEs4(xy400, xy300, app(app(ty_@2, bdd), bde)) -> new_esEs13(xy400, xy300, bdd, bde) 16.46/6.48 new_esEs5(xy400, xy300, app(ty_Ratio, bha)) -> new_esEs12(xy400, xy300, bha) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(ty_@2, bfg), bfh)) -> new_esEs13(xy4001, xy3001, bfg, bfh) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs8(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), eb, ec, ed) -> new_asAs(new_esEs20(xy4000, xy3000, eb), new_asAs(new_esEs21(xy4001, xy3001, ec), new_esEs22(xy4002, xy3002, ed))) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Integer) -> new_esEs19(xy4002, xy3002) 16.46/6.48 new_asAs(True, xy41) -> xy41 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs27(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_Maybe, bce)) -> new_esEs11(xy4000, xy3000, bce) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Pos(Zero)) -> False 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Succ(xy30000))) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Right(xy3000), cf, bc) -> False 16.46/6.48 new_esEs6(Right(xy4000), Left(xy3000), cf, bc) -> False 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_Ratio, bed)) -> new_esEs12(xy4000, xy3000, bed) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Float, bc) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_deleteBy02(xy10, xy11, xy12, False, bhe, bhf) -> :(Left(xy11), new_deleteBy1(Left(xy12), xy10, bhe, bhf)) 16.46/6.48 new_primEqNat0(Succ(xy40000), Succ(xy30000)) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs4(xy400, xy300, ty_Float) -> new_esEs15(xy400, xy300) 16.46/6.48 new_esEs5(xy400, xy300, app(ty_Maybe, bgh)) -> new_esEs11(xy400, xy300, bgh) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Float) -> new_esEs15(xy4001, xy3001) 16.46/6.48 new_esEs18(GT, GT) -> True 16.46/6.48 new_esEs4(xy400, xy300, ty_Ordering) -> new_esEs18(xy400, xy300) 16.46/6.48 new_esEs9(True, True) -> True 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Double) -> new_esEs17(xy4002, xy3002) 16.46/6.48 new_primMulNat0(Zero, Zero) -> Zero 16.46/6.48 new_esEs5(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs8(xy4001, xy3001, fh, ga, gb) 16.46/6.48 new_esEs24(xy4000, xy3000, app(ty_[], beg)) -> new_esEs16(xy4000, xy3000, beg) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(ty_@2, fd), ff)) -> new_esEs13(xy4000, xy3000, fd, ff) 16.46/6.48 new_deleteBy1(Right(xy400), :(Right(xy300), xy31), ba, bb) -> new_deleteBy01(xy31, xy300, xy400, new_esEs5(xy400, xy300, bb), ba, bb) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_Maybe, ge)) -> new_esEs11(xy4001, xy3001, ge) 16.46/6.48 new_esEs5(xy400, xy300, ty_Int) -> new_esEs10(xy400, xy300) 16.46/6.48 new_deleteBy01(xy19, xy20, xy21, False, bdb, bdc) -> :(Right(xy20), new_deleteBy1(Right(xy21), xy19, bdb, bdc)) 16.46/6.48 new_esEs13(@2(xy4000, xy4001), @2(xy3000, xy3001), bdd, bde) -> new_asAs(new_esEs24(xy4000, xy3000, bdd), new_esEs25(xy4001, xy3001, bde)) 16.46/6.48 new_esEs18(EQ, GT) -> False 16.46/6.48 new_esEs18(GT, EQ) -> False 16.46/6.48 new_esEs21(xy4001, xy3001, ty_@0) -> new_esEs14(xy4001, xy3001) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_primEqNat0(Succ(xy40000), Zero) -> False 16.46/6.48 new_primEqNat0(Zero, Succ(xy30000)) -> False 16.46/6.48 new_esEs14(@0, @0) -> True 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Bool) -> new_esEs9(xy4001, xy3001) 16.46/6.48 new_esEs27(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Ordering) -> new_esEs18(xy4002, xy3002) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs4(xy400, xy300, ty_Double) -> new_esEs17(xy400, xy300) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Char) -> new_esEs7(xy4001, xy3001) 16.46/6.48 new_esEs21(xy4001, xy3001, app(app(ty_@2, gg), gh)) -> new_esEs13(xy4001, xy3001, gg, gh) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(ty_@2, bcg), bch)) -> new_esEs13(xy4000, xy3000, bcg, bch) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs8(xy4002, xy3002, hb, hc, hd) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(ty_Either, bcc), bcd)) -> new_esEs6(xy4000, xy3000, bcc, bcd) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(ty_Either, bfc), bfd)) -> new_esEs6(xy4001, xy3001, bfc, bfd) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Ordering) -> new_esEs18(xy4001, xy3001) 16.46/6.48 new_esEs18(LT, GT) -> False 16.46/6.48 new_esEs18(GT, LT) -> False 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs8(xy4000, xy3000, bbh, bca, bcb) 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Neg(Zero)) -> False 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Succ(xy30000))) -> False 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Bool) -> new_esEs9(xy4002, xy3002) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Pos(Succ(xy30000))) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_Maybe, bbg)) -> new_esEs11(xy400, xy300, bbg) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Int) -> new_esEs10(xy4002, xy3002) 16.46/6.48 new_esEs5(xy400, xy300, ty_Float) -> new_esEs15(xy400, xy300) 16.46/6.48 new_esEs5(xy400, xy300, ty_Double) -> new_esEs17(xy400, xy300) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, app(app(ty_@2, dg), dh)) -> new_esEs13(xy4000, xy3000, dg, dh) 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_[], fg)) -> new_esEs16(xy4000, xy3000, fg) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(ty_Either, eh), fa)) -> new_esEs6(xy4000, xy3000, eh, fa) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_Ratio, bgb)) -> new_esEs12(xy400, xy300, bgb) 16.46/6.48 new_sr(Pos(xy40010), Neg(xy30000)) -> Neg(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_sr(Neg(xy40010), Pos(xy30000)) -> Neg(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_primPlusNat1(Succ(xy4200), Succ(xy3000000)) -> Succ(Succ(new_primPlusNat1(xy4200, xy3000000))) 16.46/6.48 new_primEqInt(Pos(Succ(xy40000)), Neg(xy3000)) -> False 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Pos(xy3000)) -> False 16.46/6.48 new_esEs16(:(xy4000, xy4001), :(xy3000, xy3001), bad) -> new_asAs(new_esEs23(xy4000, xy3000, bad), new_esEs16(xy4001, xy3001, bad)) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_Maybe, hg)) -> new_esEs11(xy4002, xy3002, hg) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_[], bga)) -> new_esEs16(xy4001, xy3001, bga) 16.46/6.48 new_esEs4(xy400, xy300, ty_Int) -> new_esEs10(xy400, xy300) 16.46/6.48 new_esEs18(LT, LT) -> True 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(ty_@2, bee), bef)) -> new_esEs13(xy4000, xy3000, bee, bef) 16.46/6.48 new_esEs25(xy4001, xy3001, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs8(xy4001, xy3001, beh, bfa, bfb) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Bool) -> new_esEs9(xy4001, xy3001) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_Ratio, bbc)) -> new_esEs12(xy4000, xy3000, bbc) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, app(ty_[], ea)) -> new_esEs16(xy4000, xy3000, ea) 16.46/6.48 new_esEs5(xy400, xy300, app(app(ty_@2, bhb), bhc)) -> new_esEs13(xy400, xy300, bhb, bhc) 16.46/6.48 new_deleteBy02(xy10, xy11, xy12, True, bhe, bhf) -> xy10 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_[], ce), bc) -> new_esEs16(xy4000, xy3000, ce) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(ty_Either, he), hf)) -> new_esEs6(xy4002, xy3002, he, hf) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_Maybe, bfe)) -> new_esEs11(xy4001, xy3001, bfe) 16.46/6.48 new_sr(Neg(xy40010), Neg(xy30000)) -> Pos(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Float) -> new_esEs15(xy4002, xy3002) 16.46/6.48 new_esEs4(xy400, xy300, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs8(xy400, xy300, eb, ec, ed) 16.46/6.48 new_esEs4(xy400, xy300, ty_Bool) -> new_esEs9(xy400, xy300) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Char) -> new_esEs7(xy4001, xy3001) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_@0) -> new_esEs14(xy4001, xy3001) 16.46/6.48 new_esEs11(Nothing, Just(xy3000), bbg) -> False 16.46/6.48 new_esEs11(Just(xy4000), Nothing, bbg) -> False 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Succ(xy30000))) -> False 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Succ(xy30000))) -> False 16.46/6.48 new_esEs11(Nothing, Nothing, bbg) -> True 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Double) -> new_esEs17(xy4001, xy3001) 16.46/6.48 new_esEs7(Char(xy4000), Char(xy3000)) -> new_primEqNat0(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Bool, bc) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_Maybe, bbb)) -> new_esEs11(xy4000, xy3000, bbb) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Char, bc) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_@0, bc) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_primEqInt(Neg(Succ(xy40000)), Neg(Succ(xy30000))) -> new_primEqNat0(xy40000, xy30000) 16.46/6.48 new_esEs4(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(ty_@2, cc), cd), bc) -> new_esEs13(xy4000, xy3000, cc, cd) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_Ratio, gf)) -> new_esEs12(xy4001, xy3001, gf) 16.46/6.48 new_primPlusNat0(Succ(xy420), xy300000) -> Succ(Succ(new_primPlusNat1(xy420, xy300000))) 16.46/6.48 new_esEs22(xy4002, xy3002, app(app(ty_@2, baa), bab)) -> new_esEs13(xy4002, xy3002, baa, bab) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs8(xy4000, xy3000, bae, baf, bag) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(ty_Either, bea), beb)) -> new_esEs6(xy4000, xy3000, bea, beb) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, app(ty_Ratio, df)) -> new_esEs12(xy4000, xy3000, df) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(ty_Either, bg), bh), bc) -> new_esEs6(xy4000, xy3000, bg, bh) 16.46/6.48 new_esEs10(xy400, xy300) -> new_primEqInt(xy400, xy300) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Ordering) -> new_esEs18(xy4001, xy3001) 16.46/6.48 new_esEs4(xy400, xy300, ty_Integer) -> new_esEs19(xy400, xy300) 16.46/6.48 new_primPlusNat1(Zero, Zero) -> Zero 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_primMulNat0(Succ(xy400100), Zero) -> Zero 16.46/6.48 new_primMulNat0(Zero, Succ(xy300000)) -> Zero 16.46/6.48 new_sr(Pos(xy40010), Pos(xy30000)) -> Pos(new_primMulNat0(xy40010, xy30000)) 16.46/6.48 new_primPlusNat0(Zero, xy300000) -> Succ(xy300000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Integer, bc) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_[], bda)) -> new_esEs16(xy4000, xy3000, bda) 16.46/6.48 new_esEs21(xy4001, xy3001, app(ty_[], ha)) -> new_esEs16(xy4001, xy3001, ha) 16.46/6.48 new_esEs20(xy4000, xy3000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs8(xy4000, xy3000, ee, ef, eg) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Int) -> new_esEs10(xy4001, xy3001) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_@0) -> new_esEs14(xy4002, xy3002) 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 16.46/6.48 new_primMulNat0(Succ(xy400100), Succ(xy300000)) -> new_primPlusNat0(new_primMulNat0(xy400100, Succ(xy300000)), xy300000) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs15(Float(xy4000, xy4001), Float(xy3000, xy3001)) -> new_esEs10(new_sr(xy4000, xy3001), new_sr(xy4001, xy3000)) 16.46/6.48 new_esEs22(xy4002, xy3002, ty_Char) -> new_esEs7(xy4002, xy3002) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), app(ty_Ratio, bcf)) -> new_esEs12(xy4000, xy3000, bcf) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Ordering, bc) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs5(xy400, xy300, app(app(ty_Either, bgf), bgg)) -> new_esEs6(xy400, xy300, bgf, bgg) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs18(EQ, EQ) -> True 16.46/6.48 new_esEs5(xy400, xy300, app(ty_[], bhd)) -> new_esEs16(xy400, xy300, bhd) 16.46/6.48 new_primPlusNat1(Succ(xy4200), Zero) -> Succ(xy4200) 16.46/6.48 new_primPlusNat1(Zero, Succ(xy3000000)) -> Succ(xy3000000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Double) -> new_esEs17(xy4001, xy3001) 16.46/6.48 new_esEs5(xy400, xy300, ty_Ordering) -> new_esEs18(xy400, xy300) 16.46/6.48 new_esEs26(xy4000, xy3000, ty_Int) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs16(:(xy4000, xy4001), [], bad) -> False 16.46/6.48 new_esEs16([], :(xy3000, xy3001), bad) -> False 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_Maybe, fb)) -> new_esEs11(xy4000, xy3000, fb) 16.46/6.48 new_esEs12(:%(xy4000, xy4001), :%(xy3000, xy3001), bgb) -> new_asAs(new_esEs26(xy4000, xy3000, bgb), new_esEs27(xy4001, xy3001, bgb)) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_Ratio, cb), bc) -> new_esEs12(xy4000, xy3000, cb) 16.46/6.48 new_esEs23(xy4000, xy3000, app(ty_[], bbf)) -> new_esEs16(xy4000, xy3000, bbf) 16.46/6.48 new_esEs4(xy400, xy300, ty_@0) -> new_esEs14(xy400, xy300) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 16.46/6.48 new_esEs4(xy400, xy300, app(app(ty_Either, cf), bc)) -> new_esEs6(xy400, xy300, cf, bc) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Double, bc) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs25(xy4001, xy3001, app(ty_Ratio, bff)) -> new_esEs12(xy4001, xy3001, bff) 16.46/6.48 new_deleteBy1(Left(xy400), :(Left(xy300), xy31), ba, bb) -> new_deleteBy02(xy31, xy300, xy400, new_esEs4(xy400, xy300, ba), ba, bb) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs16([], [], bad) -> True 16.46/6.48 new_primEqNat0(Zero, Zero) -> True 16.46/6.48 new_esEs5(xy400, xy300, ty_@0) -> new_esEs14(xy400, xy300) 16.46/6.48 new_esEs20(xy4000, xy3000, app(ty_Ratio, fc)) -> new_esEs12(xy4000, xy3000, fc) 16.46/6.48 new_deleteBy1(Left(xy400), :(Right(xy300), xy31), ba, bb) -> :(Right(xy300), new_deleteBy1(Left(xy400), xy31, ba, bb)) 16.46/6.48 new_esEs9(False, True) -> False 16.46/6.48 new_esEs9(True, False) -> False 16.46/6.48 new_esEs20(xy4000, xy3000, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs19(Integer(xy4000), Integer(xy3000)) -> new_primEqInt(xy4000, xy3000) 16.46/6.48 new_esEs22(xy4002, xy3002, app(ty_[], bac)) -> new_esEs16(xy4002, xy3002, bac) 16.46/6.48 new_asAs(False, xy41) -> False 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, app(ty_Maybe, de)) -> new_esEs11(xy4000, xy3000, de) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), ty_Int, bc) -> new_esEs10(xy4000, xy3000) 16.46/6.48 new_esEs11(Just(xy4000), Just(xy3000), ty_Float) -> new_esEs15(xy4000, xy3000) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(ty_@2, bbd), bbe)) -> new_esEs13(xy4000, xy3000, bbd, bbe) 16.46/6.48 new_esEs24(xy4000, xy3000, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs8(xy4000, xy3000, bdf, bdg, bdh) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_@0) -> new_esEs14(xy4000, xy3000) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Bool) -> new_esEs9(xy4000, xy3000) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Integer) -> new_esEs19(xy4001, xy3001) 16.46/6.48 new_esEs6(Right(xy4000), Right(xy3000), cf, ty_Double) -> new_esEs17(xy4000, xy3000) 16.46/6.48 new_esEs5(xy400, xy300, ty_Char) -> new_esEs7(xy400, xy300) 16.46/6.48 new_esEs23(xy4000, xy3000, ty_Char) -> new_esEs7(xy4000, xy3000) 16.46/6.48 new_esEs26(xy4000, xy3000, ty_Integer) -> new_esEs19(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(app(app(ty_@3, bd), be), bf), bc) -> new_esEs8(xy4000, xy3000, bd, be, bf) 16.46/6.48 new_esEs18(LT, EQ) -> False 16.46/6.48 new_esEs18(EQ, LT) -> False 16.46/6.48 new_deleteBy1(Right(xy400), :(Left(xy300), xy31), ba, bb) -> :(Left(xy300), new_deleteBy1(Right(xy400), xy31, ba, bb)) 16.46/6.48 new_esEs24(xy4000, xy3000, ty_Ordering) -> new_esEs18(xy4000, xy3000) 16.46/6.48 new_esEs6(Left(xy4000), Left(xy3000), app(ty_Maybe, ca), bc) -> new_esEs11(xy4000, xy3000, ca) 16.46/6.48 new_esEs4(xy400, xy300, app(ty_[], bad)) -> new_esEs16(xy400, xy300, bad) 16.46/6.48 new_esEs23(xy4000, xy3000, app(app(ty_Either, bah), bba)) -> new_esEs6(xy4000, xy3000, bah, bba) 16.46/6.48 new_esEs21(xy4001, xy3001, ty_Float) -> new_esEs15(xy4001, xy3001) 16.46/6.48 16.46/6.48 The set Q consists of the following terms: 16.46/6.48 16.46/6.48 new_esEs11(Nothing, Nothing, x0) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Float) 16.46/6.48 new_esEs5(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 16.46/6.48 new_esEs26(x0, x1, ty_Int) 16.46/6.48 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs24(x0, x1, ty_Int) 16.46/6.48 new_esEs23(x0, x1, ty_Char) 16.46/6.48 new_primMulNat0(Zero, Zero) 16.46/6.48 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs4(x0, x1, ty_Bool) 16.46/6.48 new_primPlusNat1(Zero, Zero) 16.46/6.48 new_primPlusNat0(Zero, x0) 16.46/6.48 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Ordering) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs23(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_deleteBy01(x0, x1, x2, True, x3, x4) 16.46/6.48 new_esEs4(x0, x1, ty_Integer) 16.46/6.48 new_esEs19(Integer(x0), Integer(x1)) 16.46/6.48 new_esEs25(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 16.46/6.48 new_esEs20(x0, x1, ty_Char) 16.46/6.48 new_primMulNat0(Succ(x0), Zero) 16.46/6.48 new_esEs11(Nothing, Just(x0), x1) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Zero)) 16.46/6.48 new_esEs25(x0, x1, ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_@0) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Int) 16.46/6.48 new_asAs(True, x0) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 16.46/6.48 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs25(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs18(EQ, GT) 16.46/6.48 new_esEs18(GT, EQ) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs25(x0, x1, ty_Int) 16.46/6.48 new_esEs4(x0, x1, ty_@0) 16.46/6.48 new_esEs24(x0, x1, ty_Double) 16.46/6.48 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs16(:(x0, x1), :(x2, x3), x4) 16.46/6.48 new_esEs24(x0, x1, ty_Char) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Char) 16.46/6.48 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs21(x0, x1, app(ty_[], x2)) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Zero)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 16.46/6.48 new_esEs21(x0, x1, ty_Bool) 16.46/6.48 new_esEs5(x0, x1, ty_Integer) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Double) 16.46/6.48 new_esEs5(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs22(x0, x1, ty_Bool) 16.46/6.48 new_esEs25(x0, x1, ty_Char) 16.46/6.48 new_sr(Pos(x0), Neg(x1)) 16.46/6.48 new_sr(Neg(x0), Pos(x1)) 16.46/6.48 new_deleteBy1(Left(x0), :(Left(x1), x2), x3, x4) 16.46/6.48 new_deleteBy02(x0, x1, x2, False, x3, x4) 16.46/6.48 new_esEs10(x0, x1) 16.46/6.48 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs21(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs15(Float(x0, x1), Float(x2, x3)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_[], x2)) 16.46/6.48 new_esEs21(x0, x1, ty_Int) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 16.46/6.48 new_esEs21(x0, x1, ty_Char) 16.46/6.48 new_esEs9(False, False) 16.46/6.48 new_esEs16([], :(x0, x1), x2) 16.46/6.48 new_esEs25(x0, x1, ty_Bool) 16.46/6.48 new_esEs25(x0, x1, ty_Ordering) 16.46/6.48 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 16.46/6.48 new_esEs24(x0, x1, ty_@0) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Zero)) 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Zero)) 16.46/6.48 new_esEs24(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 16.46/6.48 new_esEs11(Just(x0), Nothing, x1) 16.46/6.48 new_deleteBy1(x0, [], x1, x2) 16.46/6.48 new_esEs20(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Integer) 16.46/6.48 new_esEs5(x0, x1, ty_Char) 16.46/6.48 new_esEs20(x0, x1, ty_Integer) 16.46/6.48 new_primPlusNat0(Succ(x0), x1) 16.46/6.48 new_esEs25(x0, x1, ty_Integer) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 16.46/6.48 new_esEs24(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_sr(Neg(x0), Neg(x1)) 16.46/6.48 new_esEs24(x0, x1, ty_Float) 16.46/6.48 new_primMulNat0(Succ(x0), Succ(x1)) 16.46/6.48 new_esEs4(x0, x1, app(ty_[], x2)) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 16.46/6.48 new_esEs16([], [], x0) 16.46/6.48 new_esEs5(x0, x1, ty_Bool) 16.46/6.48 new_esEs21(x0, x1, ty_@0) 16.46/6.48 new_esEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 16.46/6.48 new_esEs5(x0, x1, ty_Double) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 16.46/6.48 new_esEs21(x0, x1, ty_Float) 16.46/6.48 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 16.46/6.48 new_esEs18(LT, LT) 16.46/6.48 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 16.46/6.48 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 16.46/6.48 new_esEs23(x0, x1, ty_Ordering) 16.46/6.48 new_primEqNat0(Zero, Succ(x0)) 16.46/6.48 new_esEs20(x0, x1, ty_Ordering) 16.46/6.48 new_esEs22(x0, x1, ty_Integer) 16.46/6.48 new_esEs27(x0, x1, ty_Int) 16.46/6.48 new_esEs20(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_Bool) 16.46/6.48 new_esEs24(x0, x1, ty_Integer) 16.46/6.48 new_esEs18(LT, GT) 16.46/6.48 new_esEs18(GT, LT) 16.46/6.48 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs5(x0, x1, ty_Ordering) 16.46/6.48 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs14(@0, @0) 16.46/6.48 new_deleteBy01(x0, x1, x2, False, x3, x4) 16.46/6.48 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs17(Double(x0, x1), Double(x2, x3)) 16.46/6.48 new_esEs23(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 16.46/6.48 new_esEs4(x0, x1, ty_Ordering) 16.46/6.48 new_esEs22(x0, x1, ty_Ordering) 16.46/6.48 new_primMulNat0(Zero, Succ(x0)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 16.46/6.48 new_esEs22(x0, x1, ty_Double) 16.46/6.48 new_esEs25(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs22(x0, x1, ty_Int) 16.46/6.48 new_esEs4(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs21(x0, x1, ty_Double) 16.46/6.48 new_esEs23(x0, x1, app(ty_[], x2)) 16.46/6.48 new_deleteBy1(Right(x0), :(Left(x1), x2), x3, x4) 16.46/6.48 new_esEs23(x0, x1, ty_Integer) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) 16.46/6.48 new_esEs26(x0, x1, ty_Integer) 16.46/6.48 new_esEs11(Just(x0), Just(x1), ty_@0) 16.46/6.48 new_esEs5(x0, x1, ty_Int) 16.46/6.48 new_esEs4(x0, x1, ty_Float) 16.46/6.48 new_esEs27(x0, x1, ty_Integer) 16.46/6.48 new_esEs4(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs22(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_primEqNat0(Succ(x0), Succ(x1)) 16.46/6.48 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 16.46/6.48 new_esEs4(x0, x1, ty_Char) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 16.46/6.48 new_esEs24(x0, x1, ty_Bool) 16.46/6.48 new_esEs4(x0, x1, ty_Double) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 16.46/6.48 new_esEs22(x0, x1, ty_Char) 16.46/6.48 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs5(x0, x1, ty_Float) 16.46/6.48 new_esEs9(False, True) 16.46/6.48 new_esEs9(True, False) 16.46/6.48 new_esEs18(GT, GT) 16.46/6.48 new_esEs4(x0, x1, ty_Int) 16.46/6.48 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 16.46/6.48 new_esEs18(LT, EQ) 16.46/6.48 new_esEs18(EQ, LT) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 16.46/6.48 new_esEs25(x0, x1, ty_Double) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 16.46/6.48 new_esEs12(:%(x0, x1), :%(x2, x3), x4) 16.46/6.48 new_primPlusNat1(Zero, Succ(x0)) 16.46/6.48 new_esEs21(x0, x1, app(ty_Ratio, x2)) 16.46/6.48 new_esEs21(x0, x1, ty_Integer) 16.46/6.48 new_primEqNat0(Zero, Zero) 16.46/6.48 new_esEs20(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 16.46/6.48 new_esEs23(x0, x1, ty_@0) 16.46/6.48 new_esEs20(x0, x1, ty_Bool) 16.46/6.48 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs6(Left(x0), Right(x1), x2, x3) 16.46/6.48 new_esEs6(Right(x0), Left(x1), x2, x3) 16.46/6.48 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 16.46/6.48 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs5(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_deleteBy1(Left(x0), :(Right(x1), x2), x3, x4) 16.46/6.48 new_esEs20(x0, x1, ty_Float) 16.46/6.48 new_esEs16(:(x0, x1), [], x2) 16.46/6.48 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 16.46/6.48 new_primPlusNat1(Succ(x0), Succ(x1)) 16.46/6.48 new_esEs25(x0, x1, ty_Float) 16.46/6.48 new_esEs23(x0, x1, ty_Bool) 16.46/6.48 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 16.46/6.48 new_esEs23(x0, x1, ty_Float) 16.46/6.48 new_esEs23(x0, x1, ty_Double) 16.46/6.48 new_esEs22(x0, x1, app(ty_[], x2)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 16.46/6.48 new_esEs20(x0, x1, ty_Double) 16.46/6.48 new_asAs(False, x0) 16.46/6.48 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 16.46/6.48 new_esEs24(x0, x1, ty_Ordering) 16.46/6.48 new_esEs21(x0, x1, ty_Ordering) 16.46/6.48 new_esEs20(x0, x1, ty_Int) 16.46/6.48 new_sr(Pos(x0), Pos(x1)) 16.46/6.48 new_deleteBy02(x0, x1, x2, True, x3, x4) 16.46/6.48 new_esEs24(x0, x1, app(ty_[], x2)) 16.46/6.48 new_deleteBy1(Right(x0), :(Right(x1), x2), x3, x4) 16.46/6.48 new_esEs18(EQ, EQ) 16.46/6.48 new_primPlusNat1(Succ(x0), Zero) 16.46/6.48 new_esEs22(x0, x1, ty_@0) 16.46/6.48 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 16.46/6.48 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 16.46/6.48 new_esEs7(Char(x0), Char(x1)) 16.46/6.48 new_esEs22(x0, x1, app(ty_Maybe, x2)) 16.46/6.48 new_esEs9(True, True) 16.46/6.48 new_esEs23(x0, x1, ty_Int) 16.46/6.48 new_esEs22(x0, x1, ty_Float) 16.46/6.48 new_esEs20(x0, x1, ty_@0) 16.46/6.48 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 16.46/6.48 new_primEqNat0(Succ(x0), Zero) 16.46/6.48 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 16.46/6.48 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 16.46/6.48 new_esEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) 16.46/6.48 16.46/6.48 We have to consider all minimal (P,Q,R)-chains. 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (19) QDPSizeChangeProof (EQUIVALENT) 16.46/6.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 16.46/6.48 16.46/6.48 From the DPs we obtained the following set of size-change graphs: 16.46/6.48 *new_foldl(xy3, :(xy40, xy41), ba, bb) -> new_foldl(new_deleteBy1(xy40, xy3, ba, bb), xy41, ba, bb) 16.46/6.48 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 16.46/6.48 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (20) 16.46/6.48 YES 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (21) 16.46/6.48 Obligation: 16.46/6.48 Q DP problem: 16.46/6.48 The TRS P consists of the following rules: 16.46/6.48 16.46/6.48 new_primMulNat(Succ(xy400100), Succ(xy300000)) -> new_primMulNat(xy400100, Succ(xy300000)) 16.46/6.48 16.46/6.48 R is empty. 16.46/6.48 Q is empty. 16.46/6.48 We have to consider all minimal (P,Q,R)-chains. 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (22) QDPSizeChangeProof (EQUIVALENT) 16.46/6.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 16.46/6.48 16.46/6.48 From the DPs we obtained the following set of size-change graphs: 16.46/6.48 *new_primMulNat(Succ(xy400100), Succ(xy300000)) -> new_primMulNat(xy400100, Succ(xy300000)) 16.46/6.48 The graph contains the following edges 1 > 1, 2 >= 2 16.46/6.48 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (23) 16.46/6.48 YES 16.46/6.48 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (24) 16.46/6.48 Obligation: 16.46/6.48 Q DP problem: 16.46/6.48 The TRS P consists of the following rules: 16.46/6.48 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(app(ty_@2, dd), de), be) -> new_esEs2(xy4001, xy3001, dd, de) 16.46/6.48 new_esEs0(Left(xy4000), Left(xy3000), app(ty_Maybe, fg), fc) -> new_esEs1(xy4000, xy3000, fg) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(app(ty_@2, ee), ef)) -> new_esEs2(xy4002, xy3002, ee, ef) 16.46/6.48 new_esEs1(Just(xy4000), Just(xy3000), app(app(ty_Either, hh), baa)) -> new_esEs0(xy4000, xy3000, hh, baa) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs(xy4002, xy3002, dg, dh, ea) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(ty_[], eg)) -> new_esEs3(xy4002, xy3002, eg) 16.46/6.48 new_esEs0(Right(xy4000), Right(xy3000), gc, app(ty_[], hd)) -> new_esEs3(xy4000, xy3000, hd) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(app(ty_@2, bcg), bch)) -> new_esEs2(xy4001, xy3001, bcg, bch) 16.46/6.48 new_esEs0(Left(xy4000), Left(xy3000), app(app(ty_@2, fh), ga), fc) -> new_esEs2(xy4000, xy3000, fh, ga) 16.46/6.48 new_esEs0(Right(xy4000), Right(xy3000), gc, app(app(ty_Either, gg), gh)) -> new_esEs0(xy4000, xy3000, gg, gh) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(app(app(ty_@3, baf), bag), bah), bba) -> new_esEs(xy4000, xy3000, baf, bag, bah) 16.46/6.48 new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(ty_Maybe, bdg)) -> new_esEs1(xy4000, xy3000, bdg) 16.46/6.48 new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(ty_[], beb)) -> new_esEs3(xy4000, xy3000, beb) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(ty_Maybe, bh), bd, be) -> new_esEs1(xy4000, xy3000, bh) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(ty_[], df), be) -> new_esEs3(xy4001, xy3001, df) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(ty_[], cc), bd, be) -> new_esEs3(xy4000, xy3000, cc) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(ty_Maybe, dc), be) -> new_esEs1(xy4001, xy3001, dc) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(app(ty_@2, bbe), bbf), bba) -> new_esEs2(xy4000, xy3000, bbe, bbf) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(app(app(ty_@3, ce), cf), cg), be) -> new_esEs(xy4001, xy3001, ce, cf, cg) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(app(ty_@2, ca), cb), bd, be) -> new_esEs2(xy4000, xy3000, ca, cb) 16.46/6.48 new_esEs1(Just(xy4000), Just(xy3000), app(app(app(ty_@3, he), hf), hg)) -> new_esEs(xy4000, xy3000, he, hf, hg) 16.46/6.48 new_esEs0(Left(xy4000), Left(xy3000), app(ty_[], gb), fc) -> new_esEs3(xy4000, xy3000, gb) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(app(ty_Either, bf), bg), bd, be) -> new_esEs0(xy4000, xy3000, bf, bg) 16.46/6.48 new_esEs0(Left(xy4000), Left(xy3000), app(app(ty_Either, fd), ff), fc) -> new_esEs0(xy4000, xy3000, fd, ff) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs(xy4001, xy3001, bca, bcb, bcc) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(app(ty_Either, bbb), bbc), bba) -> new_esEs0(xy4000, xy3000, bbb, bbc) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(app(ty_Either, da), db), be) -> new_esEs0(xy4001, xy3001, da, db) 16.46/6.48 new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), bec) -> new_esEs3(xy4001, xy3001, bec) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(app(ty_Either, bcd), bce)) -> new_esEs0(xy4001, xy3001, bcd, bce) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(ty_Maybe, ed)) -> new_esEs1(xy4002, xy3002, ed) 16.46/6.48 new_esEs1(Just(xy4000), Just(xy3000), app(app(ty_@2, bac), bad)) -> new_esEs2(xy4000, xy3000, bac, bad) 16.46/6.48 new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xy4000, xy3000, bdb, bdc, bdd) 16.46/6.48 new_esEs0(Right(xy4000), Right(xy3000), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs(xy4000, xy3000, gd, ge, gf) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(app(app(ty_@3, ba), bb), bc), bd, be) -> new_esEs(xy4000, xy3000, ba, bb, bc) 16.46/6.48 new_esEs0(Right(xy4000), Right(xy3000), gc, app(ty_Maybe, ha)) -> new_esEs1(xy4000, xy3000, ha) 16.46/6.48 new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(app(ty_@2, bdh), bea)) -> new_esEs2(xy4000, xy3000, bdh, bea) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(ty_Maybe, bcf)) -> new_esEs1(xy4001, xy3001, bcf) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(ty_[], bda)) -> new_esEs3(xy4001, xy3001, bda) 16.46/6.48 new_esEs1(Just(xy4000), Just(xy3000), app(ty_[], bae)) -> new_esEs3(xy4000, xy3000, bae) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(ty_Maybe, bbd), bba) -> new_esEs1(xy4000, xy3000, bbd) 16.46/6.48 new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(ty_[], bbg), bba) -> new_esEs3(xy4000, xy3000, bbg) 16.46/6.48 new_esEs1(Just(xy4000), Just(xy3000), app(ty_Maybe, bab)) -> new_esEs1(xy4000, xy3000, bab) 16.46/6.48 new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(app(ty_Either, eb), ec)) -> new_esEs0(xy4002, xy3002, eb, ec) 16.46/6.48 new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(app(ty_Either, bde), bdf)) -> new_esEs0(xy4000, xy3000, bde, bdf) 16.46/6.48 new_esEs0(Left(xy4000), Left(xy3000), app(app(app(ty_@3, eh), fa), fb), fc) -> new_esEs(xy4000, xy3000, eh, fa, fb) 16.46/6.48 new_esEs0(Right(xy4000), Right(xy3000), gc, app(app(ty_@2, hb), hc)) -> new_esEs2(xy4000, xy3000, hb, hc) 16.46/6.48 16.46/6.48 R is empty. 16.46/6.48 Q is empty. 16.46/6.48 We have to consider all minimal (P,Q,R)-chains. 16.46/6.48 ---------------------------------------- 16.46/6.48 16.46/6.48 (25) QDPSizeChangeProof (EQUIVALENT) 16.46/6.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 16.46/6.48 16.46/6.48 From the DPs we obtained the following set of size-change graphs: 16.46/6.48 *new_esEs1(Just(xy4000), Just(xy3000), app(app(app(ty_@3, he), hf), hg)) -> new_esEs(xy4000, xy3000, he, hf, hg) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs1(Just(xy4000), Just(xy3000), app(app(ty_Either, hh), baa)) -> new_esEs0(xy4000, xy3000, hh, baa) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs1(Just(xy4000), Just(xy3000), app(ty_Maybe, bab)) -> new_esEs1(xy4000, xy3000, bab) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xy4000, xy3000, bdb, bdc, bdd) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(app(ty_Either, bde), bdf)) -> new_esEs0(xy4000, xy3000, bde, bdf) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(ty_Maybe, bdg)) -> new_esEs1(xy4000, xy3000, bdg) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs1(Just(xy4000), Just(xy3000), app(app(ty_@2, bac), bad)) -> new_esEs2(xy4000, xy3000, bac, bad) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs1(Just(xy4000), Just(xy3000), app(ty_[], bae)) -> new_esEs3(xy4000, xy3000, bae) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(app(ty_@2, bdh), bea)) -> new_esEs2(xy4000, xy3000, bdh, bea) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(app(app(ty_@3, baf), bag), bah), bba) -> new_esEs(xy4000, xy3000, baf, bag, bah) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs(xy4001, xy3001, bca, bcb, bcc) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(app(ty_Either, bbb), bbc), bba) -> new_esEs0(xy4000, xy3000, bbb, bbc) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(app(ty_Either, bcd), bce)) -> new_esEs0(xy4001, xy3001, bcd, bce) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(ty_Maybe, bcf)) -> new_esEs1(xy4001, xy3001, bcf) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(ty_Maybe, bbd), bba) -> new_esEs1(xy4000, xy3000, bbd) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(app(ty_@2, bcg), bch)) -> new_esEs2(xy4001, xy3001, bcg, bch) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(app(ty_@2, bbe), bbf), bba) -> new_esEs2(xy4000, xy3000, bbe, bbf) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), bbh, app(ty_[], bda)) -> new_esEs3(xy4001, xy3001, bda) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.46/6.48 16.46/6.48 16.46/6.48 *new_esEs2(@2(xy4000, xy4001), @2(xy3000, xy3001), app(ty_[], bbg), bba) -> new_esEs3(xy4000, xy3000, bbg) 16.46/6.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Right(xy4000), Right(xy3000), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs(xy4000, xy3000, gd, ge, gf) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Left(xy4000), Left(xy3000), app(app(app(ty_@3, eh), fa), fb), fc) -> new_esEs(xy4000, xy3000, eh, fa, fb) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs(xy4002, xy3002, dg, dh, ea) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(app(app(ty_@3, ce), cf), cg), be) -> new_esEs(xy4001, xy3001, ce, cf, cg) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(app(app(ty_@3, ba), bb), bc), bd, be) -> new_esEs(xy4000, xy3000, ba, bb, bc) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Right(xy4000), Right(xy3000), gc, app(app(ty_Either, gg), gh)) -> new_esEs0(xy4000, xy3000, gg, gh) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Left(xy4000), Left(xy3000), app(app(ty_Either, fd), ff), fc) -> new_esEs0(xy4000, xy3000, fd, ff) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(app(ty_Either, bf), bg), bd, be) -> new_esEs0(xy4000, xy3000, bf, bg) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(app(ty_Either, da), db), be) -> new_esEs0(xy4001, xy3001, da, db) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(app(ty_Either, eb), ec)) -> new_esEs0(xy4002, xy3002, eb, ec) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Left(xy4000), Left(xy3000), app(ty_Maybe, fg), fc) -> new_esEs1(xy4000, xy3000, fg) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Right(xy4000), Right(xy3000), gc, app(ty_Maybe, ha)) -> new_esEs1(xy4000, xy3000, ha) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Left(xy4000), Left(xy3000), app(app(ty_@2, fh), ga), fc) -> new_esEs2(xy4000, xy3000, fh, ga) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Right(xy4000), Right(xy3000), gc, app(app(ty_@2, hb), hc)) -> new_esEs2(xy4000, xy3000, hb, hc) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Right(xy4000), Right(xy3000), gc, app(ty_[], hd)) -> new_esEs3(xy4000, xy3000, hd) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs0(Left(xy4000), Left(xy3000), app(ty_[], gb), fc) -> new_esEs3(xy4000, xy3000, gb) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(ty_Maybe, bh), bd, be) -> new_esEs1(xy4000, xy3000, bh) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(ty_Maybe, dc), be) -> new_esEs1(xy4001, xy3001, dc) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(ty_Maybe, ed)) -> new_esEs1(xy4002, xy3002, ed) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(app(ty_@2, dd), de), be) -> new_esEs2(xy4001, xy3001, dd, de) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(app(ty_@2, ee), ef)) -> new_esEs2(xy4002, xy3002, ee, ef) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(app(ty_@2, ca), cb), bd, be) -> new_esEs2(xy4000, xy3000, ca, cb) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, bd, app(ty_[], eg)) -> new_esEs3(xy4002, xy3002, eg) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), cd, app(ty_[], df), be) -> new_esEs3(xy4001, xy3001, df) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs(@3(xy4000, xy4001, xy4002), @3(xy3000, xy3001, xy3002), app(ty_[], cc), bd, be) -> new_esEs3(xy4000, xy3000, cc) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), app(ty_[], beb)) -> new_esEs3(xy4000, xy3000, beb) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.46/6.49 16.46/6.49 16.46/6.49 *new_esEs3(:(xy4000, xy4001), :(xy3000, xy3001), bec) -> new_esEs3(xy4001, xy3001, bec) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 16.46/6.49 16.46/6.49 16.46/6.49 ---------------------------------------- 16.46/6.49 16.46/6.49 (26) 16.46/6.49 YES 16.46/6.49 16.46/6.49 ---------------------------------------- 16.46/6.49 16.46/6.49 (27) 16.46/6.49 Obligation: 16.46/6.49 Q DP problem: 16.46/6.49 The TRS P consists of the following rules: 16.46/6.49 16.46/6.49 new_primPlusNat(Succ(xy4200), Succ(xy3000000)) -> new_primPlusNat(xy4200, xy3000000) 16.46/6.49 16.46/6.49 R is empty. 16.46/6.49 Q is empty. 16.46/6.49 We have to consider all minimal (P,Q,R)-chains. 16.46/6.49 ---------------------------------------- 16.46/6.49 16.46/6.49 (28) QDPSizeChangeProof (EQUIVALENT) 16.46/6.49 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 16.46/6.49 16.46/6.49 From the DPs we obtained the following set of size-change graphs: 16.46/6.49 *new_primPlusNat(Succ(xy4200), Succ(xy3000000)) -> new_primPlusNat(xy4200, xy3000000) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2 16.46/6.49 16.46/6.49 16.46/6.49 ---------------------------------------- 16.46/6.49 16.46/6.49 (29) 16.46/6.49 YES 16.46/6.49 16.46/6.49 ---------------------------------------- 16.46/6.49 16.46/6.49 (30) 16.46/6.49 Obligation: 16.46/6.49 Q DP problem: 16.46/6.49 The TRS P consists of the following rules: 16.46/6.49 16.46/6.49 new_primEqNat(Succ(xy40000), Succ(xy30000)) -> new_primEqNat(xy40000, xy30000) 16.46/6.49 16.46/6.49 R is empty. 16.46/6.49 Q is empty. 16.46/6.49 We have to consider all minimal (P,Q,R)-chains. 16.46/6.49 ---------------------------------------- 16.46/6.49 16.46/6.49 (31) QDPSizeChangeProof (EQUIVALENT) 16.46/6.49 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 16.46/6.49 16.46/6.49 From the DPs we obtained the following set of size-change graphs: 16.46/6.49 *new_primEqNat(Succ(xy40000), Succ(xy30000)) -> new_primEqNat(xy40000, xy30000) 16.46/6.49 The graph contains the following edges 1 > 1, 2 > 2 16.46/6.49 16.46/6.49 16.46/6.49 ---------------------------------------- 16.46/6.49 16.46/6.49 (32) 16.46/6.49 YES 16.51/8.29 EOF