12.70/4.96 YES 14.86/5.54 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 14.86/5.54 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 14.86/5.54 14.86/5.54 14.86/5.54 H-Termination with start terms of the given HASKELL could be proven: 14.86/5.54 14.86/5.54 (0) HASKELL 14.86/5.54 (1) IFR [EQUIVALENT, 0 ms] 14.86/5.54 (2) HASKELL 14.86/5.54 (3) BR [EQUIVALENT, 13 ms] 14.86/5.54 (4) HASKELL 14.86/5.54 (5) COR [EQUIVALENT, 0 ms] 14.86/5.54 (6) HASKELL 14.86/5.54 (7) Narrow [SOUND, 0 ms] 14.86/5.54 (8) AND 14.86/5.54 (9) QDP 14.86/5.54 (10) DependencyGraphProof [EQUIVALENT, 0 ms] 14.86/5.54 (11) AND 14.86/5.54 (12) QDP 14.86/5.54 (13) QDPSizeChangeProof [EQUIVALENT, 0 ms] 14.86/5.54 (14) YES 14.86/5.54 (15) QDP 14.86/5.54 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 14.86/5.54 (17) YES 14.86/5.54 (18) QDP 14.86/5.54 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 14.86/5.54 (20) YES 14.86/5.54 (21) QDP 14.86/5.54 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 14.86/5.54 (23) YES 14.86/5.54 (24) QDP 14.86/5.54 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 14.86/5.54 (26) YES 14.86/5.54 (27) QDP 14.86/5.54 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 14.86/5.54 (29) YES 14.86/5.54 14.86/5.54 14.86/5.54 ---------------------------------------- 14.86/5.54 14.86/5.54 (0) 14.86/5.54 Obligation: 14.86/5.54 mainModule Main 14.86/5.54 module Maybe where { 14.86/5.54 import qualified List; 14.86/5.54 import qualified Main; 14.86/5.54 import qualified Prelude; 14.86/5.54 } 14.86/5.54 module List where { 14.86/5.54 import qualified Main; 14.86/5.54 import qualified Maybe; 14.86/5.54 import qualified Prelude; 14.86/5.54 delete :: Eq a => a -> [a] -> [a]; 14.86/5.54 delete = deleteBy (==); 14.86/5.54 14.86/5.54 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 14.86/5.54 deleteBy _ _ [] = []; 14.86/5.54 deleteBy eq x (y : ys) = if x `eq` y then ys else y : deleteBy eq x ys; 14.86/5.54 14.86/5.54 } 14.86/5.54 module Main where { 14.86/5.54 import qualified List; 14.86/5.54 import qualified Maybe; 14.86/5.54 import qualified Prelude; 14.86/5.54 } 14.86/5.54 14.86/5.54 ---------------------------------------- 14.86/5.54 14.86/5.54 (1) IFR (EQUIVALENT) 14.86/5.54 If Reductions: 14.86/5.54 The following If expression 14.86/5.54 "if eq x y then ys else y : deleteBy eq x ys" 14.86/5.54 is transformed to 14.86/5.54 "deleteBy0 ys y eq x True = ys; 14.86/5.54 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 14.86/5.54 " 14.86/5.54 14.86/5.54 ---------------------------------------- 14.86/5.54 14.86/5.54 (2) 14.86/5.54 Obligation: 14.86/5.54 mainModule Main 14.86/5.54 module Maybe where { 14.86/5.54 import qualified List; 14.86/5.54 import qualified Main; 14.86/5.54 import qualified Prelude; 14.86/5.54 } 14.86/5.54 module List where { 14.86/5.54 import qualified Main; 14.86/5.54 import qualified Maybe; 14.86/5.54 import qualified Prelude; 14.86/5.54 delete :: Eq a => a -> [a] -> [a]; 14.86/5.54 delete = deleteBy (==); 14.86/5.54 14.86/5.54 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 14.86/5.54 deleteBy _ _ [] = []; 14.86/5.54 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 14.86/5.54 14.86/5.54 deleteBy0 ys y eq x True = ys; 14.86/5.54 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 14.86/5.54 14.86/5.54 } 14.86/5.54 module Main where { 14.86/5.54 import qualified List; 14.86/5.54 import qualified Maybe; 14.86/5.54 import qualified Prelude; 14.86/5.54 } 14.86/5.54 14.86/5.54 ---------------------------------------- 14.86/5.54 14.86/5.54 (3) BR (EQUIVALENT) 14.86/5.54 Replaced joker patterns by fresh variables and removed binding patterns. 14.86/5.54 ---------------------------------------- 14.86/5.54 14.86/5.54 (4) 14.86/5.54 Obligation: 14.86/5.54 mainModule Main 14.86/5.54 module Maybe where { 14.86/5.54 import qualified List; 14.86/5.54 import qualified Main; 14.86/5.54 import qualified Prelude; 14.86/5.54 } 14.86/5.54 module List where { 14.86/5.54 import qualified Main; 14.86/5.54 import qualified Maybe; 14.86/5.54 import qualified Prelude; 14.86/5.54 delete :: Eq a => a -> [a] -> [a]; 14.86/5.54 delete = deleteBy (==); 14.86/5.54 14.86/5.54 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 14.86/5.54 deleteBy xw xx [] = []; 14.86/5.54 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 14.86/5.54 14.86/5.54 deleteBy0 ys y eq x True = ys; 14.86/5.54 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 14.86/5.54 14.86/5.54 } 14.86/5.54 module Main where { 14.86/5.54 import qualified List; 14.86/5.54 import qualified Maybe; 14.86/5.54 import qualified Prelude; 14.86/5.54 } 14.86/5.54 14.86/5.54 ---------------------------------------- 14.86/5.54 14.86/5.54 (5) COR (EQUIVALENT) 14.86/5.54 Cond Reductions: 14.86/5.54 The following Function with conditions 14.86/5.54 "undefined |Falseundefined; 14.86/5.54 " 14.86/5.54 is transformed to 14.86/5.54 "undefined = undefined1; 14.86/5.54 " 14.86/5.54 "undefined0 True = undefined; 14.86/5.54 " 14.86/5.54 "undefined1 = undefined0 False; 14.86/5.54 " 14.86/5.54 14.86/5.54 ---------------------------------------- 14.86/5.54 14.86/5.54 (6) 14.86/5.54 Obligation: 14.86/5.54 mainModule Main 14.86/5.54 module Maybe where { 14.86/5.54 import qualified List; 14.86/5.54 import qualified Main; 14.86/5.54 import qualified Prelude; 14.86/5.54 } 14.86/5.54 module List where { 14.86/5.54 import qualified Main; 14.86/5.54 import qualified Maybe; 14.86/5.54 import qualified Prelude; 14.86/5.54 delete :: Eq a => a -> [a] -> [a]; 14.86/5.54 delete = deleteBy (==); 14.86/5.54 14.86/5.54 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 14.86/5.54 deleteBy xw xx [] = []; 14.86/5.54 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 14.86/5.54 14.86/5.54 deleteBy0 ys y eq x True = ys; 14.86/5.54 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 14.86/5.54 14.86/5.54 } 14.86/5.54 module Main where { 14.86/5.54 import qualified List; 14.86/5.54 import qualified Maybe; 14.86/5.54 import qualified Prelude; 14.86/5.54 } 14.86/5.54 14.86/5.54 ---------------------------------------- 14.86/5.54 14.86/5.54 (7) Narrow (SOUND) 14.86/5.54 Haskell To QDPs 14.86/5.54 14.86/5.54 digraph dp_graph { 14.86/5.54 node [outthreshold=100, inthreshold=100];1[label="List.delete",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 14.86/5.54 3[label="List.delete xy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 14.86/5.54 4[label="List.delete xy3 xy4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 14.86/5.54 5[label="List.deleteBy (==) xy3 xy4",fontsize=16,color="burlywood",shape="triangle"];750[label="xy4/xy40 : xy41",fontsize=10,color="white",style="solid",shape="box"];5 -> 750[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 750 -> 6[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 751[label="xy4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 751[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 751 -> 7[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 6[label="List.deleteBy (==) xy3 (xy40 : xy41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 14.86/5.54 7[label="List.deleteBy (==) xy3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 14.86/5.54 8[label="List.deleteBy0 xy41 xy40 (==) xy3 ((==) xy3 xy40)",fontsize=16,color="burlywood",shape="box"];752[label="xy3/Left xy30",fontsize=10,color="white",style="solid",shape="box"];8 -> 752[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 752 -> 10[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 753[label="xy3/Right xy30",fontsize=10,color="white",style="solid",shape="box"];8 -> 753[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 753 -> 11[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 9[label="[]",fontsize=16,color="green",shape="box"];10[label="List.deleteBy0 xy41 xy40 (==) (Left xy30) ((==) Left xy30 xy40)",fontsize=16,color="burlywood",shape="box"];754[label="xy40/Left xy400",fontsize=10,color="white",style="solid",shape="box"];10 -> 754[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 754 -> 12[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 755[label="xy40/Right xy400",fontsize=10,color="white",style="solid",shape="box"];10 -> 755[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 755 -> 13[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 11[label="List.deleteBy0 xy41 xy40 (==) (Right xy30) ((==) Right xy30 xy40)",fontsize=16,color="burlywood",shape="box"];756[label="xy40/Left xy400",fontsize=10,color="white",style="solid",shape="box"];11 -> 756[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 756 -> 14[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 757[label="xy40/Right xy400",fontsize=10,color="white",style="solid",shape="box"];11 -> 757[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 757 -> 15[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 12[label="List.deleteBy0 xy41 (Left xy400) (==) (Left xy30) ((==) Left xy30 Left xy400)",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 14.86/5.54 13[label="List.deleteBy0 xy41 (Right xy400) (==) (Left xy30) ((==) Left xy30 Right xy400)",fontsize=16,color="black",shape="box"];13 -> 17[label="",style="solid", color="black", weight=3]; 14.86/5.54 14[label="List.deleteBy0 xy41 (Left xy400) (==) (Right xy30) ((==) Right xy30 Left xy400)",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 14.86/5.54 15[label="List.deleteBy0 xy41 (Right xy400) (==) (Right xy30) ((==) Right xy30 Right xy400)",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 14.86/5.54 16 -> 20[label="",style="dashed", color="red", weight=0]; 14.86/5.54 16[label="List.deleteBy0 xy41 (Left xy400) (==) (Left xy30) (xy30 == xy400)",fontsize=16,color="magenta"];16 -> 21[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 16 -> 22[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 16 -> 23[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 16 -> 24[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 17[label="List.deleteBy0 xy41 (Right xy400) (==) (Left xy30) False",fontsize=16,color="black",shape="box"];17 -> 25[label="",style="solid", color="black", weight=3]; 14.86/5.54 18[label="List.deleteBy0 xy41 (Left xy400) (==) (Right xy30) False",fontsize=16,color="black",shape="box"];18 -> 26[label="",style="solid", color="black", weight=3]; 14.86/5.54 19 -> 27[label="",style="dashed", color="red", weight=0]; 14.86/5.54 19[label="List.deleteBy0 xy41 (Right xy400) (==) (Right xy30) (xy30 == xy400)",fontsize=16,color="magenta"];19 -> 28[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 19 -> 29[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 19 -> 30[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 19 -> 31[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 21[label="xy41",fontsize=16,color="green",shape="box"];22[label="xy30",fontsize=16,color="green",shape="box"];23[label="xy400",fontsize=16,color="green",shape="box"];24[label="xy30 == xy400",fontsize=16,color="blue",shape="box"];758[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 758[label="",style="solid", color="blue", weight=9]; 14.86/5.54 758 -> 32[label="",style="solid", color="blue", weight=3]; 14.86/5.54 759[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 759[label="",style="solid", color="blue", weight=9]; 14.86/5.54 759 -> 33[label="",style="solid", color="blue", weight=3]; 14.86/5.54 760[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 760[label="",style="solid", color="blue", weight=9]; 14.86/5.54 760 -> 34[label="",style="solid", color="blue", weight=3]; 14.86/5.54 761[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 761[label="",style="solid", color="blue", weight=9]; 14.86/5.54 761 -> 35[label="",style="solid", color="blue", weight=3]; 14.86/5.54 762[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 762[label="",style="solid", color="blue", weight=9]; 14.86/5.54 762 -> 36[label="",style="solid", color="blue", weight=3]; 14.86/5.54 763[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 763[label="",style="solid", color="blue", weight=9]; 14.86/5.54 763 -> 37[label="",style="solid", color="blue", weight=3]; 14.86/5.54 764[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 764[label="",style="solid", color="blue", weight=9]; 14.86/5.54 764 -> 38[label="",style="solid", color="blue", weight=3]; 14.86/5.54 765[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 765[label="",style="solid", color="blue", weight=9]; 14.86/5.54 765 -> 39[label="",style="solid", color="blue", weight=3]; 14.86/5.54 766[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 766[label="",style="solid", color="blue", weight=9]; 14.86/5.54 766 -> 40[label="",style="solid", color="blue", weight=3]; 14.86/5.54 767[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 767[label="",style="solid", color="blue", weight=9]; 14.86/5.54 767 -> 41[label="",style="solid", color="blue", weight=3]; 14.86/5.54 768[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 768[label="",style="solid", color="blue", weight=9]; 14.86/5.54 768 -> 42[label="",style="solid", color="blue", weight=3]; 14.86/5.54 769[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 769[label="",style="solid", color="blue", weight=9]; 14.86/5.54 769 -> 43[label="",style="solid", color="blue", weight=3]; 14.86/5.54 770[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 770[label="",style="solid", color="blue", weight=9]; 14.86/5.54 770 -> 44[label="",style="solid", color="blue", weight=3]; 14.86/5.54 771[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 771[label="",style="solid", color="blue", weight=9]; 14.86/5.54 771 -> 45[label="",style="solid", color="blue", weight=3]; 14.86/5.54 20[label="List.deleteBy0 xy10 (Left xy11) (==) (Left xy12) xy13",fontsize=16,color="burlywood",shape="triangle"];772[label="xy13/False",fontsize=10,color="white",style="solid",shape="box"];20 -> 772[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 772 -> 46[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 773[label="xy13/True",fontsize=10,color="white",style="solid",shape="box"];20 -> 773[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 773 -> 47[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 25[label="Right xy400 : List.deleteBy (==) (Left xy30) xy41",fontsize=16,color="green",shape="box"];25 -> 48[label="",style="dashed", color="green", weight=3]; 14.86/5.54 26[label="Left xy400 : List.deleteBy (==) (Right xy30) xy41",fontsize=16,color="green",shape="box"];26 -> 49[label="",style="dashed", color="green", weight=3]; 14.86/5.54 28[label="xy30",fontsize=16,color="green",shape="box"];29[label="xy41",fontsize=16,color="green",shape="box"];30[label="xy400",fontsize=16,color="green",shape="box"];31[label="xy30 == xy400",fontsize=16,color="blue",shape="box"];774[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 774[label="",style="solid", color="blue", weight=9]; 14.86/5.54 774 -> 50[label="",style="solid", color="blue", weight=3]; 14.86/5.54 775[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 775[label="",style="solid", color="blue", weight=9]; 14.86/5.54 775 -> 51[label="",style="solid", color="blue", weight=3]; 14.86/5.54 776[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 776[label="",style="solid", color="blue", weight=9]; 14.86/5.54 776 -> 52[label="",style="solid", color="blue", weight=3]; 14.86/5.54 777[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 777[label="",style="solid", color="blue", weight=9]; 14.86/5.54 777 -> 53[label="",style="solid", color="blue", weight=3]; 14.86/5.54 778[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 778[label="",style="solid", color="blue", weight=9]; 14.86/5.54 778 -> 54[label="",style="solid", color="blue", weight=3]; 14.86/5.54 779[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 779[label="",style="solid", color="blue", weight=9]; 14.86/5.54 779 -> 55[label="",style="solid", color="blue", weight=3]; 14.86/5.54 780[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 780[label="",style="solid", color="blue", weight=9]; 14.86/5.54 780 -> 56[label="",style="solid", color="blue", weight=3]; 14.86/5.54 781[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 781[label="",style="solid", color="blue", weight=9]; 14.86/5.54 781 -> 57[label="",style="solid", color="blue", weight=3]; 14.86/5.54 782[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 782[label="",style="solid", color="blue", weight=9]; 14.86/5.54 782 -> 58[label="",style="solid", color="blue", weight=3]; 14.86/5.54 783[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 783[label="",style="solid", color="blue", weight=9]; 14.86/5.54 783 -> 59[label="",style="solid", color="blue", weight=3]; 14.86/5.54 784[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 784[label="",style="solid", color="blue", weight=9]; 14.86/5.54 784 -> 60[label="",style="solid", color="blue", weight=3]; 14.86/5.54 785[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 785[label="",style="solid", color="blue", weight=9]; 14.86/5.54 785 -> 61[label="",style="solid", color="blue", weight=3]; 14.86/5.54 786[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 786[label="",style="solid", color="blue", weight=9]; 14.86/5.54 786 -> 62[label="",style="solid", color="blue", weight=3]; 14.86/5.54 787[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 787[label="",style="solid", color="blue", weight=9]; 14.86/5.54 787 -> 63[label="",style="solid", color="blue", weight=3]; 14.86/5.54 27[label="List.deleteBy0 xy19 (Right xy20) (==) (Right xy21) xy22",fontsize=16,color="burlywood",shape="triangle"];788[label="xy22/False",fontsize=10,color="white",style="solid",shape="box"];27 -> 788[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 788 -> 64[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 789[label="xy22/True",fontsize=10,color="white",style="solid",shape="box"];27 -> 789[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 789 -> 65[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 32[label="xy30 == xy400",fontsize=16,color="black",shape="triangle"];32 -> 66[label="",style="solid", color="black", weight=3]; 14.86/5.54 33[label="xy30 == xy400",fontsize=16,color="black",shape="triangle"];33 -> 67[label="",style="solid", color="black", weight=3]; 14.86/5.54 34[label="xy30 == xy400",fontsize=16,color="black",shape="triangle"];34 -> 68[label="",style="solid", color="black", weight=3]; 14.86/5.54 35[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];790[label="xy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];35 -> 790[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 790 -> 69[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 791[label="xy30/Just xy300",fontsize=10,color="white",style="solid",shape="box"];35 -> 791[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 791 -> 70[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 36[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];792[label="xy30/xy300 :% xy301",fontsize=10,color="white",style="solid",shape="box"];36 -> 792[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 792 -> 71[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 37[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];793[label="xy30/Left xy300",fontsize=10,color="white",style="solid",shape="box"];37 -> 793[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 793 -> 72[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 794[label="xy30/Right xy300",fontsize=10,color="white",style="solid",shape="box"];37 -> 794[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 794 -> 73[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 38[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];795[label="xy30/Integer xy300",fontsize=10,color="white",style="solid",shape="box"];38 -> 795[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 795 -> 74[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 39[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];796[label="xy30/(xy300,xy301,xy302)",fontsize=10,color="white",style="solid",shape="box"];39 -> 796[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 796 -> 75[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 40[label="xy30 == xy400",fontsize=16,color="black",shape="triangle"];40 -> 76[label="",style="solid", color="black", weight=3]; 14.86/5.54 41[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];797[label="xy30/LT",fontsize=10,color="white",style="solid",shape="box"];41 -> 797[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 797 -> 77[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 798[label="xy30/EQ",fontsize=10,color="white",style="solid",shape="box"];41 -> 798[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 798 -> 78[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 799[label="xy30/GT",fontsize=10,color="white",style="solid",shape="box"];41 -> 799[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 799 -> 79[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 42[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];800[label="xy30/()",fontsize=10,color="white",style="solid",shape="box"];42 -> 800[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 800 -> 80[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 43[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];801[label="xy30/(xy300,xy301)",fontsize=10,color="white",style="solid",shape="box"];43 -> 801[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 801 -> 81[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 44[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];802[label="xy30/False",fontsize=10,color="white",style="solid",shape="box"];44 -> 802[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 802 -> 82[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 803[label="xy30/True",fontsize=10,color="white",style="solid",shape="box"];44 -> 803[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 803 -> 83[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 45[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];804[label="xy30/xy300 : xy301",fontsize=10,color="white",style="solid",shape="box"];45 -> 804[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 804 -> 84[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 805[label="xy30/[]",fontsize=10,color="white",style="solid",shape="box"];45 -> 805[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 805 -> 85[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 46[label="List.deleteBy0 xy10 (Left xy11) (==) (Left xy12) False",fontsize=16,color="black",shape="box"];46 -> 86[label="",style="solid", color="black", weight=3]; 14.86/5.54 47[label="List.deleteBy0 xy10 (Left xy11) (==) (Left xy12) True",fontsize=16,color="black",shape="box"];47 -> 87[label="",style="solid", color="black", weight=3]; 14.86/5.54 48 -> 5[label="",style="dashed", color="red", weight=0]; 14.86/5.54 48[label="List.deleteBy (==) (Left xy30) xy41",fontsize=16,color="magenta"];48 -> 88[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 48 -> 89[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 49 -> 5[label="",style="dashed", color="red", weight=0]; 14.86/5.54 49[label="List.deleteBy (==) (Right xy30) xy41",fontsize=16,color="magenta"];49 -> 90[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 49 -> 91[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 50 -> 32[label="",style="dashed", color="red", weight=0]; 14.86/5.54 50[label="xy30 == xy400",fontsize=16,color="magenta"];50 -> 92[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 50 -> 93[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 51 -> 33[label="",style="dashed", color="red", weight=0]; 14.86/5.54 51[label="xy30 == xy400",fontsize=16,color="magenta"];51 -> 94[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 51 -> 95[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 52 -> 34[label="",style="dashed", color="red", weight=0]; 14.86/5.54 52[label="xy30 == xy400",fontsize=16,color="magenta"];52 -> 96[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 52 -> 97[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 53 -> 35[label="",style="dashed", color="red", weight=0]; 14.86/5.54 53[label="xy30 == xy400",fontsize=16,color="magenta"];53 -> 98[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 53 -> 99[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 54 -> 36[label="",style="dashed", color="red", weight=0]; 14.86/5.54 54[label="xy30 == xy400",fontsize=16,color="magenta"];54 -> 100[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 54 -> 101[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 55 -> 37[label="",style="dashed", color="red", weight=0]; 14.86/5.54 55[label="xy30 == xy400",fontsize=16,color="magenta"];55 -> 102[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 55 -> 103[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 56 -> 38[label="",style="dashed", color="red", weight=0]; 14.86/5.54 56[label="xy30 == xy400",fontsize=16,color="magenta"];56 -> 104[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 56 -> 105[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 57 -> 39[label="",style="dashed", color="red", weight=0]; 14.86/5.54 57[label="xy30 == xy400",fontsize=16,color="magenta"];57 -> 106[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 57 -> 107[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 58 -> 40[label="",style="dashed", color="red", weight=0]; 14.86/5.54 58[label="xy30 == xy400",fontsize=16,color="magenta"];58 -> 108[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 58 -> 109[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 59 -> 41[label="",style="dashed", color="red", weight=0]; 14.86/5.54 59[label="xy30 == xy400",fontsize=16,color="magenta"];59 -> 110[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 59 -> 111[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 60 -> 42[label="",style="dashed", color="red", weight=0]; 14.86/5.54 60[label="xy30 == xy400",fontsize=16,color="magenta"];60 -> 112[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 60 -> 113[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 61 -> 43[label="",style="dashed", color="red", weight=0]; 14.86/5.54 61[label="xy30 == xy400",fontsize=16,color="magenta"];61 -> 114[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 61 -> 115[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 62 -> 44[label="",style="dashed", color="red", weight=0]; 14.86/5.54 62[label="xy30 == xy400",fontsize=16,color="magenta"];62 -> 116[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 62 -> 117[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 63 -> 45[label="",style="dashed", color="red", weight=0]; 14.86/5.54 63[label="xy30 == xy400",fontsize=16,color="magenta"];63 -> 118[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 63 -> 119[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 64[label="List.deleteBy0 xy19 (Right xy20) (==) (Right xy21) False",fontsize=16,color="black",shape="box"];64 -> 120[label="",style="solid", color="black", weight=3]; 14.86/5.54 65[label="List.deleteBy0 xy19 (Right xy20) (==) (Right xy21) True",fontsize=16,color="black",shape="box"];65 -> 121[label="",style="solid", color="black", weight=3]; 14.86/5.54 66[label="primEqFloat xy30 xy400",fontsize=16,color="burlywood",shape="box"];806[label="xy30/Float xy300 xy301",fontsize=10,color="white",style="solid",shape="box"];66 -> 806[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 806 -> 122[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 67[label="primEqChar xy30 xy400",fontsize=16,color="burlywood",shape="box"];807[label="xy30/Char xy300",fontsize=10,color="white",style="solid",shape="box"];67 -> 807[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 807 -> 123[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 68[label="primEqDouble xy30 xy400",fontsize=16,color="burlywood",shape="box"];808[label="xy30/Double xy300 xy301",fontsize=10,color="white",style="solid",shape="box"];68 -> 808[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 808 -> 124[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 69[label="Nothing == xy400",fontsize=16,color="burlywood",shape="box"];809[label="xy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];69 -> 809[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 809 -> 125[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 810[label="xy400/Just xy4000",fontsize=10,color="white",style="solid",shape="box"];69 -> 810[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 810 -> 126[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 70[label="Just xy300 == xy400",fontsize=16,color="burlywood",shape="box"];811[label="xy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];70 -> 811[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 811 -> 127[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 812[label="xy400/Just xy4000",fontsize=10,color="white",style="solid",shape="box"];70 -> 812[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 812 -> 128[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 71[label="xy300 :% xy301 == xy400",fontsize=16,color="burlywood",shape="box"];813[label="xy400/xy4000 :% xy4001",fontsize=10,color="white",style="solid",shape="box"];71 -> 813[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 813 -> 129[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 72[label="Left xy300 == xy400",fontsize=16,color="burlywood",shape="box"];814[label="xy400/Left xy4000",fontsize=10,color="white",style="solid",shape="box"];72 -> 814[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 814 -> 130[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 815[label="xy400/Right xy4000",fontsize=10,color="white",style="solid",shape="box"];72 -> 815[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 815 -> 131[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 73[label="Right xy300 == xy400",fontsize=16,color="burlywood",shape="box"];816[label="xy400/Left xy4000",fontsize=10,color="white",style="solid",shape="box"];73 -> 816[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 816 -> 132[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 817[label="xy400/Right xy4000",fontsize=10,color="white",style="solid",shape="box"];73 -> 817[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 817 -> 133[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 74[label="Integer xy300 == xy400",fontsize=16,color="burlywood",shape="box"];818[label="xy400/Integer xy4000",fontsize=10,color="white",style="solid",shape="box"];74 -> 818[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 818 -> 134[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 75[label="(xy300,xy301,xy302) == xy400",fontsize=16,color="burlywood",shape="box"];819[label="xy400/(xy4000,xy4001,xy4002)",fontsize=10,color="white",style="solid",shape="box"];75 -> 819[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 819 -> 135[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 76[label="primEqInt xy30 xy400",fontsize=16,color="burlywood",shape="triangle"];820[label="xy30/Pos xy300",fontsize=10,color="white",style="solid",shape="box"];76 -> 820[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 820 -> 136[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 821[label="xy30/Neg xy300",fontsize=10,color="white",style="solid",shape="box"];76 -> 821[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 821 -> 137[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 77[label="LT == xy400",fontsize=16,color="burlywood",shape="box"];822[label="xy400/LT",fontsize=10,color="white",style="solid",shape="box"];77 -> 822[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 822 -> 138[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 823[label="xy400/EQ",fontsize=10,color="white",style="solid",shape="box"];77 -> 823[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 823 -> 139[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 824[label="xy400/GT",fontsize=10,color="white",style="solid",shape="box"];77 -> 824[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 824 -> 140[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 78[label="EQ == xy400",fontsize=16,color="burlywood",shape="box"];825[label="xy400/LT",fontsize=10,color="white",style="solid",shape="box"];78 -> 825[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 825 -> 141[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 826[label="xy400/EQ",fontsize=10,color="white",style="solid",shape="box"];78 -> 826[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 826 -> 142[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 827[label="xy400/GT",fontsize=10,color="white",style="solid",shape="box"];78 -> 827[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 827 -> 143[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 79[label="GT == xy400",fontsize=16,color="burlywood",shape="box"];828[label="xy400/LT",fontsize=10,color="white",style="solid",shape="box"];79 -> 828[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 828 -> 144[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 829[label="xy400/EQ",fontsize=10,color="white",style="solid",shape="box"];79 -> 829[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 829 -> 145[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 830[label="xy400/GT",fontsize=10,color="white",style="solid",shape="box"];79 -> 830[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 830 -> 146[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 80[label="() == xy400",fontsize=16,color="burlywood",shape="box"];831[label="xy400/()",fontsize=10,color="white",style="solid",shape="box"];80 -> 831[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 831 -> 147[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 81[label="(xy300,xy301) == xy400",fontsize=16,color="burlywood",shape="box"];832[label="xy400/(xy4000,xy4001)",fontsize=10,color="white",style="solid",shape="box"];81 -> 832[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 832 -> 148[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 82[label="False == xy400",fontsize=16,color="burlywood",shape="box"];833[label="xy400/False",fontsize=10,color="white",style="solid",shape="box"];82 -> 833[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 833 -> 149[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 834[label="xy400/True",fontsize=10,color="white",style="solid",shape="box"];82 -> 834[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 834 -> 150[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 83[label="True == xy400",fontsize=16,color="burlywood",shape="box"];835[label="xy400/False",fontsize=10,color="white",style="solid",shape="box"];83 -> 835[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 835 -> 151[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 836[label="xy400/True",fontsize=10,color="white",style="solid",shape="box"];83 -> 836[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 836 -> 152[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 84[label="xy300 : xy301 == xy400",fontsize=16,color="burlywood",shape="box"];837[label="xy400/xy4000 : xy4001",fontsize=10,color="white",style="solid",shape="box"];84 -> 837[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 837 -> 153[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 838[label="xy400/[]",fontsize=10,color="white",style="solid",shape="box"];84 -> 838[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 838 -> 154[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 85[label="[] == xy400",fontsize=16,color="burlywood",shape="box"];839[label="xy400/xy4000 : xy4001",fontsize=10,color="white",style="solid",shape="box"];85 -> 839[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 839 -> 155[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 840[label="xy400/[]",fontsize=10,color="white",style="solid",shape="box"];85 -> 840[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 840 -> 156[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 86[label="Left xy11 : List.deleteBy (==) (Left xy12) xy10",fontsize=16,color="green",shape="box"];86 -> 157[label="",style="dashed", color="green", weight=3]; 14.86/5.54 87[label="xy10",fontsize=16,color="green",shape="box"];88[label="xy41",fontsize=16,color="green",shape="box"];89[label="Left xy30",fontsize=16,color="green",shape="box"];90[label="xy41",fontsize=16,color="green",shape="box"];91[label="Right xy30",fontsize=16,color="green",shape="box"];92[label="xy30",fontsize=16,color="green",shape="box"];93[label="xy400",fontsize=16,color="green",shape="box"];94[label="xy30",fontsize=16,color="green",shape="box"];95[label="xy400",fontsize=16,color="green",shape="box"];96[label="xy30",fontsize=16,color="green",shape="box"];97[label="xy400",fontsize=16,color="green",shape="box"];98[label="xy30",fontsize=16,color="green",shape="box"];99[label="xy400",fontsize=16,color="green",shape="box"];100[label="xy30",fontsize=16,color="green",shape="box"];101[label="xy400",fontsize=16,color="green",shape="box"];102[label="xy30",fontsize=16,color="green",shape="box"];103[label="xy400",fontsize=16,color="green",shape="box"];104[label="xy30",fontsize=16,color="green",shape="box"];105[label="xy400",fontsize=16,color="green",shape="box"];106[label="xy30",fontsize=16,color="green",shape="box"];107[label="xy400",fontsize=16,color="green",shape="box"];108[label="xy30",fontsize=16,color="green",shape="box"];109[label="xy400",fontsize=16,color="green",shape="box"];110[label="xy30",fontsize=16,color="green",shape="box"];111[label="xy400",fontsize=16,color="green",shape="box"];112[label="xy30",fontsize=16,color="green",shape="box"];113[label="xy400",fontsize=16,color="green",shape="box"];114[label="xy30",fontsize=16,color="green",shape="box"];115[label="xy400",fontsize=16,color="green",shape="box"];116[label="xy30",fontsize=16,color="green",shape="box"];117[label="xy400",fontsize=16,color="green",shape="box"];118[label="xy30",fontsize=16,color="green",shape="box"];119[label="xy400",fontsize=16,color="green",shape="box"];120[label="Right xy20 : List.deleteBy (==) (Right xy21) xy19",fontsize=16,color="green",shape="box"];120 -> 158[label="",style="dashed", color="green", weight=3]; 14.86/5.54 121[label="xy19",fontsize=16,color="green",shape="box"];122[label="primEqFloat (Float xy300 xy301) xy400",fontsize=16,color="burlywood",shape="box"];841[label="xy400/Float xy4000 xy4001",fontsize=10,color="white",style="solid",shape="box"];122 -> 841[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 841 -> 159[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 123[label="primEqChar (Char xy300) xy400",fontsize=16,color="burlywood",shape="box"];842[label="xy400/Char xy4000",fontsize=10,color="white",style="solid",shape="box"];123 -> 842[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 842 -> 160[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 124[label="primEqDouble (Double xy300 xy301) xy400",fontsize=16,color="burlywood",shape="box"];843[label="xy400/Double xy4000 xy4001",fontsize=10,color="white",style="solid",shape="box"];124 -> 843[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 843 -> 161[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 125[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];125 -> 162[label="",style="solid", color="black", weight=3]; 14.86/5.54 126[label="Nothing == Just xy4000",fontsize=16,color="black",shape="box"];126 -> 163[label="",style="solid", color="black", weight=3]; 14.86/5.54 127[label="Just xy300 == Nothing",fontsize=16,color="black",shape="box"];127 -> 164[label="",style="solid", color="black", weight=3]; 14.86/5.54 128[label="Just xy300 == Just xy4000",fontsize=16,color="black",shape="box"];128 -> 165[label="",style="solid", color="black", weight=3]; 14.86/5.54 129[label="xy300 :% xy301 == xy4000 :% xy4001",fontsize=16,color="black",shape="box"];129 -> 166[label="",style="solid", color="black", weight=3]; 14.86/5.54 130[label="Left xy300 == Left xy4000",fontsize=16,color="black",shape="box"];130 -> 167[label="",style="solid", color="black", weight=3]; 14.86/5.54 131[label="Left xy300 == Right xy4000",fontsize=16,color="black",shape="box"];131 -> 168[label="",style="solid", color="black", weight=3]; 14.86/5.54 132[label="Right xy300 == Left xy4000",fontsize=16,color="black",shape="box"];132 -> 169[label="",style="solid", color="black", weight=3]; 14.86/5.54 133[label="Right xy300 == Right xy4000",fontsize=16,color="black",shape="box"];133 -> 170[label="",style="solid", color="black", weight=3]; 14.86/5.54 134[label="Integer xy300 == Integer xy4000",fontsize=16,color="black",shape="box"];134 -> 171[label="",style="solid", color="black", weight=3]; 14.86/5.54 135[label="(xy300,xy301,xy302) == (xy4000,xy4001,xy4002)",fontsize=16,color="black",shape="box"];135 -> 172[label="",style="solid", color="black", weight=3]; 14.86/5.54 136[label="primEqInt (Pos xy300) xy400",fontsize=16,color="burlywood",shape="box"];844[label="xy300/Succ xy3000",fontsize=10,color="white",style="solid",shape="box"];136 -> 844[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 844 -> 173[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 845[label="xy300/Zero",fontsize=10,color="white",style="solid",shape="box"];136 -> 845[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 845 -> 174[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 137[label="primEqInt (Neg xy300) xy400",fontsize=16,color="burlywood",shape="box"];846[label="xy300/Succ xy3000",fontsize=10,color="white",style="solid",shape="box"];137 -> 846[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 846 -> 175[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 847[label="xy300/Zero",fontsize=10,color="white",style="solid",shape="box"];137 -> 847[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 847 -> 176[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 138[label="LT == LT",fontsize=16,color="black",shape="box"];138 -> 177[label="",style="solid", color="black", weight=3]; 14.86/5.54 139[label="LT == EQ",fontsize=16,color="black",shape="box"];139 -> 178[label="",style="solid", color="black", weight=3]; 14.86/5.54 140[label="LT == GT",fontsize=16,color="black",shape="box"];140 -> 179[label="",style="solid", color="black", weight=3]; 14.86/5.54 141[label="EQ == LT",fontsize=16,color="black",shape="box"];141 -> 180[label="",style="solid", color="black", weight=3]; 14.86/5.54 142[label="EQ == EQ",fontsize=16,color="black",shape="box"];142 -> 181[label="",style="solid", color="black", weight=3]; 14.86/5.54 143[label="EQ == GT",fontsize=16,color="black",shape="box"];143 -> 182[label="",style="solid", color="black", weight=3]; 14.86/5.54 144[label="GT == LT",fontsize=16,color="black",shape="box"];144 -> 183[label="",style="solid", color="black", weight=3]; 14.86/5.54 145[label="GT == EQ",fontsize=16,color="black",shape="box"];145 -> 184[label="",style="solid", color="black", weight=3]; 14.86/5.54 146[label="GT == GT",fontsize=16,color="black",shape="box"];146 -> 185[label="",style="solid", color="black", weight=3]; 14.86/5.54 147[label="() == ()",fontsize=16,color="black",shape="box"];147 -> 186[label="",style="solid", color="black", weight=3]; 14.86/5.54 148[label="(xy300,xy301) == (xy4000,xy4001)",fontsize=16,color="black",shape="box"];148 -> 187[label="",style="solid", color="black", weight=3]; 14.86/5.54 149[label="False == False",fontsize=16,color="black",shape="box"];149 -> 188[label="",style="solid", color="black", weight=3]; 14.86/5.54 150[label="False == True",fontsize=16,color="black",shape="box"];150 -> 189[label="",style="solid", color="black", weight=3]; 14.86/5.54 151[label="True == False",fontsize=16,color="black",shape="box"];151 -> 190[label="",style="solid", color="black", weight=3]; 14.86/5.54 152[label="True == True",fontsize=16,color="black",shape="box"];152 -> 191[label="",style="solid", color="black", weight=3]; 14.86/5.54 153[label="xy300 : xy301 == xy4000 : xy4001",fontsize=16,color="black",shape="box"];153 -> 192[label="",style="solid", color="black", weight=3]; 14.86/5.54 154[label="xy300 : xy301 == []",fontsize=16,color="black",shape="box"];154 -> 193[label="",style="solid", color="black", weight=3]; 14.86/5.54 155[label="[] == xy4000 : xy4001",fontsize=16,color="black",shape="box"];155 -> 194[label="",style="solid", color="black", weight=3]; 14.86/5.54 156[label="[] == []",fontsize=16,color="black",shape="box"];156 -> 195[label="",style="solid", color="black", weight=3]; 14.86/5.54 157 -> 5[label="",style="dashed", color="red", weight=0]; 14.86/5.54 157[label="List.deleteBy (==) (Left xy12) xy10",fontsize=16,color="magenta"];157 -> 196[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 157 -> 197[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 158 -> 5[label="",style="dashed", color="red", weight=0]; 14.86/5.54 158[label="List.deleteBy (==) (Right xy21) xy19",fontsize=16,color="magenta"];158 -> 198[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 158 -> 199[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 159[label="primEqFloat (Float xy300 xy301) (Float xy4000 xy4001)",fontsize=16,color="black",shape="box"];159 -> 200[label="",style="solid", color="black", weight=3]; 14.86/5.54 160[label="primEqChar (Char xy300) (Char xy4000)",fontsize=16,color="black",shape="box"];160 -> 201[label="",style="solid", color="black", weight=3]; 14.86/5.54 161[label="primEqDouble (Double xy300 xy301) (Double xy4000 xy4001)",fontsize=16,color="black",shape="box"];161 -> 202[label="",style="solid", color="black", weight=3]; 14.86/5.54 162[label="True",fontsize=16,color="green",shape="box"];163[label="False",fontsize=16,color="green",shape="box"];164[label="False",fontsize=16,color="green",shape="box"];165[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];848[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 848[label="",style="solid", color="blue", weight=9]; 14.86/5.54 848 -> 203[label="",style="solid", color="blue", weight=3]; 14.86/5.54 849[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 849[label="",style="solid", color="blue", weight=9]; 14.86/5.54 849 -> 204[label="",style="solid", color="blue", weight=3]; 14.86/5.54 850[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 850[label="",style="solid", color="blue", weight=9]; 14.86/5.54 850 -> 205[label="",style="solid", color="blue", weight=3]; 14.86/5.54 851[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 851[label="",style="solid", color="blue", weight=9]; 14.86/5.54 851 -> 206[label="",style="solid", color="blue", weight=3]; 14.86/5.54 852[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 852[label="",style="solid", color="blue", weight=9]; 14.86/5.54 852 -> 207[label="",style="solid", color="blue", weight=3]; 14.86/5.54 853[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 853[label="",style="solid", color="blue", weight=9]; 14.86/5.54 853 -> 208[label="",style="solid", color="blue", weight=3]; 14.86/5.54 854[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 854[label="",style="solid", color="blue", weight=9]; 14.86/5.54 854 -> 209[label="",style="solid", color="blue", weight=3]; 14.86/5.54 855[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 855[label="",style="solid", color="blue", weight=9]; 14.86/5.54 855 -> 210[label="",style="solid", color="blue", weight=3]; 14.86/5.54 856[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 856[label="",style="solid", color="blue", weight=9]; 14.86/5.54 856 -> 211[label="",style="solid", color="blue", weight=3]; 14.86/5.54 857[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 857[label="",style="solid", color="blue", weight=9]; 14.86/5.54 857 -> 212[label="",style="solid", color="blue", weight=3]; 14.86/5.54 858[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 858[label="",style="solid", color="blue", weight=9]; 14.86/5.54 858 -> 213[label="",style="solid", color="blue", weight=3]; 14.86/5.54 859[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 859[label="",style="solid", color="blue", weight=9]; 14.86/5.54 859 -> 214[label="",style="solid", color="blue", weight=3]; 14.86/5.54 860[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 860[label="",style="solid", color="blue", weight=9]; 14.86/5.54 860 -> 215[label="",style="solid", color="blue", weight=3]; 14.86/5.54 861[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];165 -> 861[label="",style="solid", color="blue", weight=9]; 14.86/5.54 861 -> 216[label="",style="solid", color="blue", weight=3]; 14.86/5.54 166 -> 312[label="",style="dashed", color="red", weight=0]; 14.86/5.54 166[label="xy300 == xy4000 && xy301 == xy4001",fontsize=16,color="magenta"];166 -> 313[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 166 -> 314[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 167[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];862[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 862[label="",style="solid", color="blue", weight=9]; 14.86/5.54 862 -> 227[label="",style="solid", color="blue", weight=3]; 14.86/5.54 863[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 863[label="",style="solid", color="blue", weight=9]; 14.86/5.54 863 -> 228[label="",style="solid", color="blue", weight=3]; 14.86/5.54 864[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 864[label="",style="solid", color="blue", weight=9]; 14.86/5.54 864 -> 229[label="",style="solid", color="blue", weight=3]; 14.86/5.54 865[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 865[label="",style="solid", color="blue", weight=9]; 14.86/5.54 865 -> 230[label="",style="solid", color="blue", weight=3]; 14.86/5.54 866[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 866[label="",style="solid", color="blue", weight=9]; 14.86/5.54 866 -> 231[label="",style="solid", color="blue", weight=3]; 14.86/5.54 867[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 867[label="",style="solid", color="blue", weight=9]; 14.86/5.54 867 -> 232[label="",style="solid", color="blue", weight=3]; 14.86/5.54 868[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 868[label="",style="solid", color="blue", weight=9]; 14.86/5.54 868 -> 233[label="",style="solid", color="blue", weight=3]; 14.86/5.54 869[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 869[label="",style="solid", color="blue", weight=9]; 14.86/5.54 869 -> 234[label="",style="solid", color="blue", weight=3]; 14.86/5.54 870[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 870[label="",style="solid", color="blue", weight=9]; 14.86/5.54 870 -> 235[label="",style="solid", color="blue", weight=3]; 14.86/5.54 871[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 871[label="",style="solid", color="blue", weight=9]; 14.86/5.54 871 -> 236[label="",style="solid", color="blue", weight=3]; 14.86/5.54 872[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 872[label="",style="solid", color="blue", weight=9]; 14.86/5.54 872 -> 237[label="",style="solid", color="blue", weight=3]; 14.86/5.54 873[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 873[label="",style="solid", color="blue", weight=9]; 14.86/5.54 873 -> 238[label="",style="solid", color="blue", weight=3]; 14.86/5.54 874[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 874[label="",style="solid", color="blue", weight=9]; 14.86/5.54 874 -> 239[label="",style="solid", color="blue", weight=3]; 14.86/5.54 875[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];167 -> 875[label="",style="solid", color="blue", weight=9]; 14.86/5.54 875 -> 240[label="",style="solid", color="blue", weight=3]; 14.86/5.54 168[label="False",fontsize=16,color="green",shape="box"];169[label="False",fontsize=16,color="green",shape="box"];170[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];876[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 876[label="",style="solid", color="blue", weight=9]; 14.86/5.54 876 -> 241[label="",style="solid", color="blue", weight=3]; 14.86/5.54 877[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 877[label="",style="solid", color="blue", weight=9]; 14.86/5.54 877 -> 242[label="",style="solid", color="blue", weight=3]; 14.86/5.54 878[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 878[label="",style="solid", color="blue", weight=9]; 14.86/5.54 878 -> 243[label="",style="solid", color="blue", weight=3]; 14.86/5.54 879[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 879[label="",style="solid", color="blue", weight=9]; 14.86/5.54 879 -> 244[label="",style="solid", color="blue", weight=3]; 14.86/5.54 880[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 880[label="",style="solid", color="blue", weight=9]; 14.86/5.54 880 -> 245[label="",style="solid", color="blue", weight=3]; 14.86/5.54 881[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 881[label="",style="solid", color="blue", weight=9]; 14.86/5.54 881 -> 246[label="",style="solid", color="blue", weight=3]; 14.86/5.54 882[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 882[label="",style="solid", color="blue", weight=9]; 14.86/5.54 882 -> 247[label="",style="solid", color="blue", weight=3]; 14.86/5.54 883[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 883[label="",style="solid", color="blue", weight=9]; 14.86/5.54 883 -> 248[label="",style="solid", color="blue", weight=3]; 14.86/5.54 884[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 884[label="",style="solid", color="blue", weight=9]; 14.86/5.54 884 -> 249[label="",style="solid", color="blue", weight=3]; 14.86/5.54 885[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 885[label="",style="solid", color="blue", weight=9]; 14.86/5.54 885 -> 250[label="",style="solid", color="blue", weight=3]; 14.86/5.54 886[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 886[label="",style="solid", color="blue", weight=9]; 14.86/5.54 886 -> 251[label="",style="solid", color="blue", weight=3]; 14.86/5.54 887[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 887[label="",style="solid", color="blue", weight=9]; 14.86/5.54 887 -> 252[label="",style="solid", color="blue", weight=3]; 14.86/5.54 888[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 888[label="",style="solid", color="blue", weight=9]; 14.86/5.54 888 -> 253[label="",style="solid", color="blue", weight=3]; 14.86/5.54 889[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 889[label="",style="solid", color="blue", weight=9]; 14.86/5.54 889 -> 254[label="",style="solid", color="blue", weight=3]; 14.86/5.54 171 -> 76[label="",style="dashed", color="red", weight=0]; 14.86/5.54 171[label="primEqInt xy300 xy4000",fontsize=16,color="magenta"];171 -> 255[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 171 -> 256[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 172 -> 312[label="",style="dashed", color="red", weight=0]; 14.86/5.54 172[label="xy300 == xy4000 && xy301 == xy4001 && xy302 == xy4002",fontsize=16,color="magenta"];172 -> 315[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 172 -> 316[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 173[label="primEqInt (Pos (Succ xy3000)) xy400",fontsize=16,color="burlywood",shape="box"];890[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];173 -> 890[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 890 -> 268[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 891[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];173 -> 891[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 891 -> 269[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 174[label="primEqInt (Pos Zero) xy400",fontsize=16,color="burlywood",shape="box"];892[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];174 -> 892[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 892 -> 270[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 893[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];174 -> 893[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 893 -> 271[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 175[label="primEqInt (Neg (Succ xy3000)) xy400",fontsize=16,color="burlywood",shape="box"];894[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];175 -> 894[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 894 -> 272[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 895[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];175 -> 895[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 895 -> 273[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 176[label="primEqInt (Neg Zero) xy400",fontsize=16,color="burlywood",shape="box"];896[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];176 -> 896[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 896 -> 274[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 897[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];176 -> 897[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 897 -> 275[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 177[label="True",fontsize=16,color="green",shape="box"];178[label="False",fontsize=16,color="green",shape="box"];179[label="False",fontsize=16,color="green",shape="box"];180[label="False",fontsize=16,color="green",shape="box"];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="False",fontsize=16,color="green",shape="box"];185[label="True",fontsize=16,color="green",shape="box"];186[label="True",fontsize=16,color="green",shape="box"];187 -> 312[label="",style="dashed", color="red", weight=0]; 14.86/5.54 187[label="xy300 == xy4000 && xy301 == xy4001",fontsize=16,color="magenta"];187 -> 317[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 187 -> 318[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 188[label="True",fontsize=16,color="green",shape="box"];189[label="False",fontsize=16,color="green",shape="box"];190[label="False",fontsize=16,color="green",shape="box"];191[label="True",fontsize=16,color="green",shape="box"];192 -> 312[label="",style="dashed", color="red", weight=0]; 14.86/5.54 192[label="xy300 == xy4000 && xy301 == xy4001",fontsize=16,color="magenta"];192 -> 319[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 192 -> 320[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 193[label="False",fontsize=16,color="green",shape="box"];194[label="False",fontsize=16,color="green",shape="box"];195[label="True",fontsize=16,color="green",shape="box"];196[label="xy10",fontsize=16,color="green",shape="box"];197[label="Left xy12",fontsize=16,color="green",shape="box"];198[label="xy19",fontsize=16,color="green",shape="box"];199[label="Right xy21",fontsize=16,color="green",shape="box"];200 -> 40[label="",style="dashed", color="red", weight=0]; 14.86/5.54 200[label="xy300 * xy4001 == xy301 * xy4000",fontsize=16,color="magenta"];200 -> 276[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 200 -> 277[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 201[label="primEqNat xy300 xy4000",fontsize=16,color="burlywood",shape="triangle"];898[label="xy300/Succ xy3000",fontsize=10,color="white",style="solid",shape="box"];201 -> 898[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 898 -> 278[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 899[label="xy300/Zero",fontsize=10,color="white",style="solid",shape="box"];201 -> 899[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 899 -> 279[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 202 -> 40[label="",style="dashed", color="red", weight=0]; 14.86/5.54 202[label="xy300 * xy4001 == xy301 * xy4000",fontsize=16,color="magenta"];202 -> 280[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 202 -> 281[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 203 -> 32[label="",style="dashed", color="red", weight=0]; 14.86/5.54 203[label="xy300 == xy4000",fontsize=16,color="magenta"];203 -> 282[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 203 -> 283[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 204 -> 33[label="",style="dashed", color="red", weight=0]; 14.86/5.54 204[label="xy300 == xy4000",fontsize=16,color="magenta"];204 -> 284[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 204 -> 285[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 205 -> 34[label="",style="dashed", color="red", weight=0]; 14.86/5.54 205[label="xy300 == xy4000",fontsize=16,color="magenta"];205 -> 286[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 205 -> 287[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 206 -> 35[label="",style="dashed", color="red", weight=0]; 14.86/5.54 206[label="xy300 == xy4000",fontsize=16,color="magenta"];206 -> 288[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 206 -> 289[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 207 -> 36[label="",style="dashed", color="red", weight=0]; 14.86/5.54 207[label="xy300 == xy4000",fontsize=16,color="magenta"];207 -> 290[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 207 -> 291[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 208 -> 37[label="",style="dashed", color="red", weight=0]; 14.86/5.54 208[label="xy300 == xy4000",fontsize=16,color="magenta"];208 -> 292[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 208 -> 293[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 209 -> 38[label="",style="dashed", color="red", weight=0]; 14.86/5.54 209[label="xy300 == xy4000",fontsize=16,color="magenta"];209 -> 294[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 209 -> 295[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 210 -> 39[label="",style="dashed", color="red", weight=0]; 14.86/5.54 210[label="xy300 == xy4000",fontsize=16,color="magenta"];210 -> 296[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 210 -> 297[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 211 -> 40[label="",style="dashed", color="red", weight=0]; 14.86/5.54 211[label="xy300 == xy4000",fontsize=16,color="magenta"];211 -> 298[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 211 -> 299[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 212 -> 41[label="",style="dashed", color="red", weight=0]; 14.86/5.54 212[label="xy300 == xy4000",fontsize=16,color="magenta"];212 -> 300[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 212 -> 301[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 213 -> 42[label="",style="dashed", color="red", weight=0]; 14.86/5.54 213[label="xy300 == xy4000",fontsize=16,color="magenta"];213 -> 302[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 213 -> 303[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 214 -> 43[label="",style="dashed", color="red", weight=0]; 14.86/5.54 214[label="xy300 == xy4000",fontsize=16,color="magenta"];214 -> 304[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 214 -> 305[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 215 -> 44[label="",style="dashed", color="red", weight=0]; 14.86/5.54 215[label="xy300 == xy4000",fontsize=16,color="magenta"];215 -> 306[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 215 -> 307[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 216 -> 45[label="",style="dashed", color="red", weight=0]; 14.86/5.54 216[label="xy300 == xy4000",fontsize=16,color="magenta"];216 -> 308[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 216 -> 309[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 313[label="xy301 == xy4001",fontsize=16,color="blue",shape="box"];900[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];313 -> 900[label="",style="solid", color="blue", weight=9]; 14.86/5.54 900 -> 325[label="",style="solid", color="blue", weight=3]; 14.86/5.54 901[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];313 -> 901[label="",style="solid", color="blue", weight=9]; 14.86/5.54 901 -> 326[label="",style="solid", color="blue", weight=3]; 14.86/5.54 314[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];902[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];314 -> 902[label="",style="solid", color="blue", weight=9]; 14.86/5.54 902 -> 327[label="",style="solid", color="blue", weight=3]; 14.86/5.54 903[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];314 -> 903[label="",style="solid", color="blue", weight=9]; 14.86/5.54 903 -> 328[label="",style="solid", color="blue", weight=3]; 14.86/5.54 312[label="xy34 && xy35",fontsize=16,color="burlywood",shape="triangle"];904[label="xy34/False",fontsize=10,color="white",style="solid",shape="box"];312 -> 904[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 904 -> 329[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 905[label="xy34/True",fontsize=10,color="white",style="solid",shape="box"];312 -> 905[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 905 -> 330[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 227 -> 32[label="",style="dashed", color="red", weight=0]; 14.86/5.54 227[label="xy300 == xy4000",fontsize=16,color="magenta"];227 -> 331[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 227 -> 332[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 228 -> 33[label="",style="dashed", color="red", weight=0]; 14.86/5.54 228[label="xy300 == xy4000",fontsize=16,color="magenta"];228 -> 333[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 228 -> 334[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 229 -> 34[label="",style="dashed", color="red", weight=0]; 14.86/5.54 229[label="xy300 == xy4000",fontsize=16,color="magenta"];229 -> 335[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 229 -> 336[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 230 -> 35[label="",style="dashed", color="red", weight=0]; 14.86/5.54 230[label="xy300 == xy4000",fontsize=16,color="magenta"];230 -> 337[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 230 -> 338[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 231 -> 36[label="",style="dashed", color="red", weight=0]; 14.86/5.54 231[label="xy300 == xy4000",fontsize=16,color="magenta"];231 -> 339[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 231 -> 340[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 232 -> 37[label="",style="dashed", color="red", weight=0]; 14.86/5.54 232[label="xy300 == xy4000",fontsize=16,color="magenta"];232 -> 341[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 232 -> 342[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 233 -> 38[label="",style="dashed", color="red", weight=0]; 14.86/5.54 233[label="xy300 == xy4000",fontsize=16,color="magenta"];233 -> 343[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 233 -> 344[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 234 -> 39[label="",style="dashed", color="red", weight=0]; 14.86/5.54 234[label="xy300 == xy4000",fontsize=16,color="magenta"];234 -> 345[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 234 -> 346[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 235 -> 40[label="",style="dashed", color="red", weight=0]; 14.86/5.54 235[label="xy300 == xy4000",fontsize=16,color="magenta"];235 -> 347[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 235 -> 348[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 236 -> 41[label="",style="dashed", color="red", weight=0]; 14.86/5.54 236[label="xy300 == xy4000",fontsize=16,color="magenta"];236 -> 349[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 236 -> 350[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 237 -> 42[label="",style="dashed", color="red", weight=0]; 14.86/5.54 237[label="xy300 == xy4000",fontsize=16,color="magenta"];237 -> 351[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 237 -> 352[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 238 -> 43[label="",style="dashed", color="red", weight=0]; 14.86/5.54 238[label="xy300 == xy4000",fontsize=16,color="magenta"];238 -> 353[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 238 -> 354[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 239 -> 44[label="",style="dashed", color="red", weight=0]; 14.86/5.54 239[label="xy300 == xy4000",fontsize=16,color="magenta"];239 -> 355[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 239 -> 356[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 240 -> 45[label="",style="dashed", color="red", weight=0]; 14.86/5.54 240[label="xy300 == xy4000",fontsize=16,color="magenta"];240 -> 357[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 240 -> 358[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 241 -> 32[label="",style="dashed", color="red", weight=0]; 14.86/5.54 241[label="xy300 == xy4000",fontsize=16,color="magenta"];241 -> 359[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 241 -> 360[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 242 -> 33[label="",style="dashed", color="red", weight=0]; 14.86/5.54 242[label="xy300 == xy4000",fontsize=16,color="magenta"];242 -> 361[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 242 -> 362[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 243 -> 34[label="",style="dashed", color="red", weight=0]; 14.86/5.54 243[label="xy300 == xy4000",fontsize=16,color="magenta"];243 -> 363[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 243 -> 364[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 244 -> 35[label="",style="dashed", color="red", weight=0]; 14.86/5.54 244[label="xy300 == xy4000",fontsize=16,color="magenta"];244 -> 365[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 244 -> 366[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 245 -> 36[label="",style="dashed", color="red", weight=0]; 14.86/5.54 245[label="xy300 == xy4000",fontsize=16,color="magenta"];245 -> 367[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 245 -> 368[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 246 -> 37[label="",style="dashed", color="red", weight=0]; 14.86/5.54 246[label="xy300 == xy4000",fontsize=16,color="magenta"];246 -> 369[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 246 -> 370[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 247 -> 38[label="",style="dashed", color="red", weight=0]; 14.86/5.54 247[label="xy300 == xy4000",fontsize=16,color="magenta"];247 -> 371[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 247 -> 372[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 248 -> 39[label="",style="dashed", color="red", weight=0]; 14.86/5.54 248[label="xy300 == xy4000",fontsize=16,color="magenta"];248 -> 373[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 248 -> 374[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 249 -> 40[label="",style="dashed", color="red", weight=0]; 14.86/5.54 249[label="xy300 == xy4000",fontsize=16,color="magenta"];249 -> 375[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 249 -> 376[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 250 -> 41[label="",style="dashed", color="red", weight=0]; 14.86/5.54 250[label="xy300 == xy4000",fontsize=16,color="magenta"];250 -> 377[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 250 -> 378[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 251 -> 42[label="",style="dashed", color="red", weight=0]; 14.86/5.54 251[label="xy300 == xy4000",fontsize=16,color="magenta"];251 -> 379[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 251 -> 380[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 252 -> 43[label="",style="dashed", color="red", weight=0]; 14.86/5.54 252[label="xy300 == xy4000",fontsize=16,color="magenta"];252 -> 381[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 252 -> 382[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 253 -> 44[label="",style="dashed", color="red", weight=0]; 14.86/5.54 253[label="xy300 == xy4000",fontsize=16,color="magenta"];253 -> 383[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 253 -> 384[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 254 -> 45[label="",style="dashed", color="red", weight=0]; 14.86/5.54 254[label="xy300 == xy4000",fontsize=16,color="magenta"];254 -> 385[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 254 -> 386[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 255[label="xy300",fontsize=16,color="green",shape="box"];256[label="xy4000",fontsize=16,color="green",shape="box"];315 -> 312[label="",style="dashed", color="red", weight=0]; 14.86/5.54 315[label="xy301 == xy4001 && xy302 == xy4002",fontsize=16,color="magenta"];315 -> 387[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 315 -> 388[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 316[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];906[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 906[label="",style="solid", color="blue", weight=9]; 14.86/5.54 906 -> 389[label="",style="solid", color="blue", weight=3]; 14.86/5.54 907[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 907[label="",style="solid", color="blue", weight=9]; 14.86/5.54 907 -> 390[label="",style="solid", color="blue", weight=3]; 14.86/5.54 908[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 908[label="",style="solid", color="blue", weight=9]; 14.86/5.54 908 -> 391[label="",style="solid", color="blue", weight=3]; 14.86/5.54 909[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 909[label="",style="solid", color="blue", weight=9]; 14.86/5.54 909 -> 392[label="",style="solid", color="blue", weight=3]; 14.86/5.54 910[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 910[label="",style="solid", color="blue", weight=9]; 14.86/5.54 910 -> 393[label="",style="solid", color="blue", weight=3]; 14.86/5.54 911[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 911[label="",style="solid", color="blue", weight=9]; 14.86/5.54 911 -> 394[label="",style="solid", color="blue", weight=3]; 14.86/5.54 912[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 912[label="",style="solid", color="blue", weight=9]; 14.86/5.54 912 -> 395[label="",style="solid", color="blue", weight=3]; 14.86/5.54 913[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 913[label="",style="solid", color="blue", weight=9]; 14.86/5.54 913 -> 396[label="",style="solid", color="blue", weight=3]; 14.86/5.54 914[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 914[label="",style="solid", color="blue", weight=9]; 14.86/5.54 914 -> 397[label="",style="solid", color="blue", weight=3]; 14.86/5.54 915[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 915[label="",style="solid", color="blue", weight=9]; 14.86/5.54 915 -> 398[label="",style="solid", color="blue", weight=3]; 14.86/5.54 916[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 916[label="",style="solid", color="blue", weight=9]; 14.86/5.54 916 -> 399[label="",style="solid", color="blue", weight=3]; 14.86/5.54 917[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 917[label="",style="solid", color="blue", weight=9]; 14.86/5.54 917 -> 400[label="",style="solid", color="blue", weight=3]; 14.86/5.54 918[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 918[label="",style="solid", color="blue", weight=9]; 14.86/5.54 918 -> 401[label="",style="solid", color="blue", weight=3]; 14.86/5.54 919[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 919[label="",style="solid", color="blue", weight=9]; 14.86/5.54 919 -> 402[label="",style="solid", color="blue", weight=3]; 14.86/5.54 268[label="primEqInt (Pos (Succ xy3000)) (Pos xy4000)",fontsize=16,color="burlywood",shape="box"];920[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];268 -> 920[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 920 -> 403[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 921[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];268 -> 921[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 921 -> 404[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 269[label="primEqInt (Pos (Succ xy3000)) (Neg xy4000)",fontsize=16,color="black",shape="box"];269 -> 405[label="",style="solid", color="black", weight=3]; 14.86/5.54 270[label="primEqInt (Pos Zero) (Pos xy4000)",fontsize=16,color="burlywood",shape="box"];922[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];270 -> 922[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 922 -> 406[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 923[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];270 -> 923[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 923 -> 407[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 271[label="primEqInt (Pos Zero) (Neg xy4000)",fontsize=16,color="burlywood",shape="box"];924[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];271 -> 924[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 924 -> 408[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 925[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];271 -> 925[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 925 -> 409[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 272[label="primEqInt (Neg (Succ xy3000)) (Pos xy4000)",fontsize=16,color="black",shape="box"];272 -> 410[label="",style="solid", color="black", weight=3]; 14.86/5.54 273[label="primEqInt (Neg (Succ xy3000)) (Neg xy4000)",fontsize=16,color="burlywood",shape="box"];926[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];273 -> 926[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 926 -> 411[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 927[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];273 -> 927[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 927 -> 412[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 274[label="primEqInt (Neg Zero) (Pos xy4000)",fontsize=16,color="burlywood",shape="box"];928[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];274 -> 928[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 928 -> 413[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 929[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];274 -> 929[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 929 -> 414[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 275[label="primEqInt (Neg Zero) (Neg xy4000)",fontsize=16,color="burlywood",shape="box"];930[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];275 -> 930[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 930 -> 415[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 931[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];275 -> 931[label="",style="solid", color="burlywood", weight=9]; 14.86/5.54 931 -> 416[label="",style="solid", color="burlywood", weight=3]; 14.86/5.54 317[label="xy301 == xy4001",fontsize=16,color="blue",shape="box"];932[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 932[label="",style="solid", color="blue", weight=9]; 14.86/5.54 932 -> 417[label="",style="solid", color="blue", weight=3]; 14.86/5.54 933[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 933[label="",style="solid", color="blue", weight=9]; 14.86/5.54 933 -> 418[label="",style="solid", color="blue", weight=3]; 14.86/5.54 934[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 934[label="",style="solid", color="blue", weight=9]; 14.86/5.54 934 -> 419[label="",style="solid", color="blue", weight=3]; 14.86/5.54 935[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 935[label="",style="solid", color="blue", weight=9]; 14.86/5.54 935 -> 420[label="",style="solid", color="blue", weight=3]; 14.86/5.54 936[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 936[label="",style="solid", color="blue", weight=9]; 14.86/5.54 936 -> 421[label="",style="solid", color="blue", weight=3]; 14.86/5.54 937[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 937[label="",style="solid", color="blue", weight=9]; 14.86/5.54 937 -> 422[label="",style="solid", color="blue", weight=3]; 14.86/5.54 938[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 938[label="",style="solid", color="blue", weight=9]; 14.86/5.54 938 -> 423[label="",style="solid", color="blue", weight=3]; 14.86/5.54 939[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 939[label="",style="solid", color="blue", weight=9]; 14.86/5.54 939 -> 424[label="",style="solid", color="blue", weight=3]; 14.86/5.54 940[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 940[label="",style="solid", color="blue", weight=9]; 14.86/5.54 940 -> 425[label="",style="solid", color="blue", weight=3]; 14.86/5.54 941[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 941[label="",style="solid", color="blue", weight=9]; 14.86/5.54 941 -> 426[label="",style="solid", color="blue", weight=3]; 14.86/5.54 942[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 942[label="",style="solid", color="blue", weight=9]; 14.86/5.54 942 -> 427[label="",style="solid", color="blue", weight=3]; 14.86/5.54 943[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 943[label="",style="solid", color="blue", weight=9]; 14.86/5.54 943 -> 428[label="",style="solid", color="blue", weight=3]; 14.86/5.54 944[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 944[label="",style="solid", color="blue", weight=9]; 14.86/5.54 944 -> 429[label="",style="solid", color="blue", weight=3]; 14.86/5.54 945[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];317 -> 945[label="",style="solid", color="blue", weight=9]; 14.86/5.54 945 -> 430[label="",style="solid", color="blue", weight=3]; 14.86/5.54 318[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];946[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 946[label="",style="solid", color="blue", weight=9]; 14.86/5.54 946 -> 431[label="",style="solid", color="blue", weight=3]; 14.86/5.54 947[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 947[label="",style="solid", color="blue", weight=9]; 14.86/5.54 947 -> 432[label="",style="solid", color="blue", weight=3]; 14.86/5.54 948[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 948[label="",style="solid", color="blue", weight=9]; 14.86/5.54 948 -> 433[label="",style="solid", color="blue", weight=3]; 14.86/5.54 949[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 949[label="",style="solid", color="blue", weight=9]; 14.86/5.54 949 -> 434[label="",style="solid", color="blue", weight=3]; 14.86/5.54 950[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 950[label="",style="solid", color="blue", weight=9]; 14.86/5.54 950 -> 435[label="",style="solid", color="blue", weight=3]; 14.86/5.54 951[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 951[label="",style="solid", color="blue", weight=9]; 14.86/5.54 951 -> 436[label="",style="solid", color="blue", weight=3]; 14.86/5.54 952[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 952[label="",style="solid", color="blue", weight=9]; 14.86/5.54 952 -> 437[label="",style="solid", color="blue", weight=3]; 14.86/5.54 953[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 953[label="",style="solid", color="blue", weight=9]; 14.86/5.54 953 -> 438[label="",style="solid", color="blue", weight=3]; 14.86/5.54 954[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 954[label="",style="solid", color="blue", weight=9]; 14.86/5.54 954 -> 439[label="",style="solid", color="blue", weight=3]; 14.86/5.54 955[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 955[label="",style="solid", color="blue", weight=9]; 14.86/5.54 955 -> 440[label="",style="solid", color="blue", weight=3]; 14.86/5.54 956[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 956[label="",style="solid", color="blue", weight=9]; 14.86/5.54 956 -> 441[label="",style="solid", color="blue", weight=3]; 14.86/5.54 957[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 957[label="",style="solid", color="blue", weight=9]; 14.86/5.54 957 -> 442[label="",style="solid", color="blue", weight=3]; 14.86/5.54 958[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 958[label="",style="solid", color="blue", weight=9]; 14.86/5.54 958 -> 443[label="",style="solid", color="blue", weight=3]; 14.86/5.54 959[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];318 -> 959[label="",style="solid", color="blue", weight=9]; 14.86/5.54 959 -> 444[label="",style="solid", color="blue", weight=3]; 14.86/5.54 319 -> 45[label="",style="dashed", color="red", weight=0]; 14.86/5.54 319[label="xy301 == xy4001",fontsize=16,color="magenta"];319 -> 445[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 319 -> 446[label="",style="dashed", color="magenta", weight=3]; 14.86/5.54 320[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];960[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 960[label="",style="solid", color="blue", weight=9]; 14.86/5.54 960 -> 447[label="",style="solid", color="blue", weight=3]; 14.86/5.54 961[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 961[label="",style="solid", color="blue", weight=9]; 14.86/5.54 961 -> 448[label="",style="solid", color="blue", weight=3]; 14.86/5.54 962[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 962[label="",style="solid", color="blue", weight=9]; 14.86/5.54 962 -> 449[label="",style="solid", color="blue", weight=3]; 14.86/5.54 963[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 963[label="",style="solid", color="blue", weight=9]; 14.86/5.55 963 -> 450[label="",style="solid", color="blue", weight=3]; 14.86/5.55 964[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 964[label="",style="solid", color="blue", weight=9]; 14.86/5.55 964 -> 451[label="",style="solid", color="blue", weight=3]; 14.86/5.55 965[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 965[label="",style="solid", color="blue", weight=9]; 14.86/5.55 965 -> 452[label="",style="solid", color="blue", weight=3]; 14.86/5.55 966[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 966[label="",style="solid", color="blue", weight=9]; 14.86/5.55 966 -> 453[label="",style="solid", color="blue", weight=3]; 14.86/5.55 967[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 967[label="",style="solid", color="blue", weight=9]; 14.86/5.55 967 -> 454[label="",style="solid", color="blue", weight=3]; 14.86/5.55 968[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 968[label="",style="solid", color="blue", weight=9]; 14.86/5.55 968 -> 455[label="",style="solid", color="blue", weight=3]; 14.86/5.55 969[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 969[label="",style="solid", color="blue", weight=9]; 14.86/5.55 969 -> 456[label="",style="solid", color="blue", weight=3]; 14.86/5.55 970[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 970[label="",style="solid", color="blue", weight=9]; 14.86/5.55 970 -> 457[label="",style="solid", color="blue", weight=3]; 14.86/5.55 971[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 971[label="",style="solid", color="blue", weight=9]; 14.86/5.55 971 -> 458[label="",style="solid", color="blue", weight=3]; 14.86/5.55 972[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 972[label="",style="solid", color="blue", weight=9]; 14.86/5.55 972 -> 459[label="",style="solid", color="blue", weight=3]; 14.86/5.55 973[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];320 -> 973[label="",style="solid", color="blue", weight=9]; 14.86/5.55 973 -> 460[label="",style="solid", color="blue", weight=3]; 14.86/5.55 276[label="xy300 * xy4001",fontsize=16,color="black",shape="triangle"];276 -> 461[label="",style="solid", color="black", weight=3]; 14.86/5.55 277 -> 276[label="",style="dashed", color="red", weight=0]; 14.86/5.55 277[label="xy301 * xy4000",fontsize=16,color="magenta"];277 -> 462[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 277 -> 463[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 278[label="primEqNat (Succ xy3000) xy4000",fontsize=16,color="burlywood",shape="box"];974[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];278 -> 974[label="",style="solid", color="burlywood", weight=9]; 14.86/5.55 974 -> 464[label="",style="solid", color="burlywood", weight=3]; 14.86/5.55 975[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];278 -> 975[label="",style="solid", color="burlywood", weight=9]; 14.86/5.55 975 -> 465[label="",style="solid", color="burlywood", weight=3]; 14.86/5.55 279[label="primEqNat Zero xy4000",fontsize=16,color="burlywood",shape="box"];976[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];279 -> 976[label="",style="solid", color="burlywood", weight=9]; 14.86/5.55 976 -> 466[label="",style="solid", color="burlywood", weight=3]; 14.86/5.55 977[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];279 -> 977[label="",style="solid", color="burlywood", weight=9]; 14.86/5.55 977 -> 467[label="",style="solid", color="burlywood", weight=3]; 14.86/5.55 280 -> 276[label="",style="dashed", color="red", weight=0]; 14.86/5.55 280[label="xy300 * xy4001",fontsize=16,color="magenta"];280 -> 468[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 280 -> 469[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 281 -> 276[label="",style="dashed", color="red", weight=0]; 14.86/5.55 281[label="xy301 * xy4000",fontsize=16,color="magenta"];281 -> 470[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 281 -> 471[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 282[label="xy300",fontsize=16,color="green",shape="box"];283[label="xy4000",fontsize=16,color="green",shape="box"];284[label="xy300",fontsize=16,color="green",shape="box"];285[label="xy4000",fontsize=16,color="green",shape="box"];286[label="xy300",fontsize=16,color="green",shape="box"];287[label="xy4000",fontsize=16,color="green",shape="box"];288[label="xy300",fontsize=16,color="green",shape="box"];289[label="xy4000",fontsize=16,color="green",shape="box"];290[label="xy300",fontsize=16,color="green",shape="box"];291[label="xy4000",fontsize=16,color="green",shape="box"];292[label="xy300",fontsize=16,color="green",shape="box"];293[label="xy4000",fontsize=16,color="green",shape="box"];294[label="xy300",fontsize=16,color="green",shape="box"];295[label="xy4000",fontsize=16,color="green",shape="box"];296[label="xy300",fontsize=16,color="green",shape="box"];297[label="xy4000",fontsize=16,color="green",shape="box"];298[label="xy300",fontsize=16,color="green",shape="box"];299[label="xy4000",fontsize=16,color="green",shape="box"];300[label="xy300",fontsize=16,color="green",shape="box"];301[label="xy4000",fontsize=16,color="green",shape="box"];302[label="xy300",fontsize=16,color="green",shape="box"];303[label="xy4000",fontsize=16,color="green",shape="box"];304[label="xy300",fontsize=16,color="green",shape="box"];305[label="xy4000",fontsize=16,color="green",shape="box"];306[label="xy300",fontsize=16,color="green",shape="box"];307[label="xy4000",fontsize=16,color="green",shape="box"];308[label="xy300",fontsize=16,color="green",shape="box"];309[label="xy4000",fontsize=16,color="green",shape="box"];325 -> 38[label="",style="dashed", color="red", weight=0]; 14.86/5.55 325[label="xy301 == xy4001",fontsize=16,color="magenta"];325 -> 472[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 325 -> 473[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 326 -> 40[label="",style="dashed", color="red", weight=0]; 14.86/5.55 326[label="xy301 == xy4001",fontsize=16,color="magenta"];326 -> 474[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 326 -> 475[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 327 -> 38[label="",style="dashed", color="red", weight=0]; 14.86/5.55 327[label="xy300 == xy4000",fontsize=16,color="magenta"];327 -> 476[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 327 -> 477[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 328 -> 40[label="",style="dashed", color="red", weight=0]; 14.86/5.55 328[label="xy300 == xy4000",fontsize=16,color="magenta"];328 -> 478[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 328 -> 479[label="",style="dashed", color="magenta", weight=3]; 14.86/5.55 329[label="False && xy35",fontsize=16,color="black",shape="box"];329 -> 480[label="",style="solid", color="black", weight=3]; 14.86/5.55 330[label="True && xy35",fontsize=16,color="black",shape="box"];330 -> 481[label="",style="solid", color="black", weight=3]; 14.86/5.55 331[label="xy300",fontsize=16,color="green",shape="box"];332[label="xy4000",fontsize=16,color="green",shape="box"];333[label="xy300",fontsize=16,color="green",shape="box"];334[label="xy4000",fontsize=16,color="green",shape="box"];335[label="xy300",fontsize=16,color="green",shape="box"];336[label="xy4000",fontsize=16,color="green",shape="box"];337[label="xy300",fontsize=16,color="green",shape="box"];338[label="xy4000",fontsize=16,color="green",shape="box"];339[label="xy300",fontsize=16,color="green",shape="box"];340[label="xy4000",fontsize=16,color="green",shape="box"];341[label="xy300",fontsize=16,color="green",shape="box"];342[label="xy4000",fontsize=16,color="green",shape="box"];343[label="xy300",fontsize=16,color="green",shape="box"];344[label="xy4000",fontsize=16,color="green",shape="box"];345[label="xy300",fontsize=16,color="green",shape="box"];346[label="xy4000",fontsize=16,color="green",shape="box"];347[label="xy300",fontsize=16,color="green",shape="box"];348[label="xy4000",fontsize=16,color="green",shape="box"];349[label="xy300",fontsize=16,color="green",shape="box"];350[label="xy4000",fontsize=16,color="green",shape="box"];351[label="xy300",fontsize=16,color="green",shape="box"];352[label="xy4000",fontsize=16,color="green",shape="box"];353[label="xy300",fontsize=16,color="green",shape="box"];354[label="xy4000",fontsize=16,color="green",shape="box"];355[label="xy300",fontsize=16,color="green",shape="box"];356[label="xy4000",fontsize=16,color="green",shape="box"];357[label="xy300",fontsize=16,color="green",shape="box"];358[label="xy4000",fontsize=16,color="green",shape="box"];359[label="xy300",fontsize=16,color="green",shape="box"];360[label="xy4000",fontsize=16,color="green",shape="box"];361[label="xy300",fontsize=16,color="green",shape="box"];362[label="xy4000",fontsize=16,color="green",shape="box"];363[label="xy300",fontsize=16,color="green",shape="box"];364[label="xy4000",fontsize=16,color="green",shape="box"];365[label="xy300",fontsize=16,color="green",shape="box"];366[label="xy4000",fontsize=16,color="green",shape="box"];367[label="xy300",fontsize=16,color="green",shape="box"];368[label="xy4000",fontsize=16,color="green",shape="box"];369[label="xy300",fontsize=16,color="green",shape="box"];370[label="xy4000",fontsize=16,color="green",shape="box"];371[label="xy300",fontsize=16,color="green",shape="box"];372[label="xy4000",fontsize=16,color="green",shape="box"];373[label="xy300",fontsize=16,color="green",shape="box"];374[label="xy4000",fontsize=16,color="green",shape="box"];375[label="xy300",fontsize=16,color="green",shape="box"];376[label="xy4000",fontsize=16,color="green",shape="box"];377[label="xy300",fontsize=16,color="green",shape="box"];378[label="xy4000",fontsize=16,color="green",shape="box"];379[label="xy300",fontsize=16,color="green",shape="box"];380[label="xy4000",fontsize=16,color="green",shape="box"];381[label="xy300",fontsize=16,color="green",shape="box"];382[label="xy4000",fontsize=16,color="green",shape="box"];383[label="xy300",fontsize=16,color="green",shape="box"];384[label="xy4000",fontsize=16,color="green",shape="box"];385[label="xy300",fontsize=16,color="green",shape="box"];386[label="xy4000",fontsize=16,color="green",shape="box"];387[label="xy302 == xy4002",fontsize=16,color="blue",shape="box"];978[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 978[label="",style="solid", color="blue", weight=9]; 14.86/5.55 978 -> 482[label="",style="solid", color="blue", weight=3]; 14.86/5.55 979[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 979[label="",style="solid", color="blue", weight=9]; 14.86/5.55 979 -> 483[label="",style="solid", color="blue", weight=3]; 14.86/5.55 980[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 980[label="",style="solid", color="blue", weight=9]; 14.86/5.55 980 -> 484[label="",style="solid", color="blue", weight=3]; 14.86/5.55 981[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 981[label="",style="solid", color="blue", weight=9]; 14.86/5.55 981 -> 485[label="",style="solid", color="blue", weight=3]; 14.86/5.55 982[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 982[label="",style="solid", color="blue", weight=9]; 15.01/5.55 982 -> 486[label="",style="solid", color="blue", weight=3]; 15.01/5.55 983[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 983[label="",style="solid", color="blue", weight=9]; 15.01/5.55 983 -> 487[label="",style="solid", color="blue", weight=3]; 15.01/5.55 984[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 984[label="",style="solid", color="blue", weight=9]; 15.01/5.55 984 -> 488[label="",style="solid", color="blue", weight=3]; 15.01/5.55 985[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 985[label="",style="solid", color="blue", weight=9]; 15.01/5.55 985 -> 489[label="",style="solid", color="blue", weight=3]; 15.01/5.55 986[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 986[label="",style="solid", color="blue", weight=9]; 15.01/5.55 986 -> 490[label="",style="solid", color="blue", weight=3]; 15.01/5.55 987[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 987[label="",style="solid", color="blue", weight=9]; 15.01/5.55 987 -> 491[label="",style="solid", color="blue", weight=3]; 15.01/5.55 988[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 988[label="",style="solid", color="blue", weight=9]; 15.01/5.55 988 -> 492[label="",style="solid", color="blue", weight=3]; 15.01/5.55 989[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 989[label="",style="solid", color="blue", weight=9]; 15.01/5.55 989 -> 493[label="",style="solid", color="blue", weight=3]; 15.01/5.55 990[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 990[label="",style="solid", color="blue", weight=9]; 15.01/5.55 990 -> 494[label="",style="solid", color="blue", weight=3]; 15.01/5.55 991[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 991[label="",style="solid", color="blue", weight=9]; 15.01/5.55 991 -> 495[label="",style="solid", color="blue", weight=3]; 15.01/5.55 388[label="xy301 == xy4001",fontsize=16,color="blue",shape="box"];992[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 992[label="",style="solid", color="blue", weight=9]; 15.01/5.55 992 -> 496[label="",style="solid", color="blue", weight=3]; 15.01/5.55 993[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 993[label="",style="solid", color="blue", weight=9]; 15.01/5.55 993 -> 497[label="",style="solid", color="blue", weight=3]; 15.01/5.55 994[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 994[label="",style="solid", color="blue", weight=9]; 15.01/5.55 994 -> 498[label="",style="solid", color="blue", weight=3]; 15.01/5.55 995[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 995[label="",style="solid", color="blue", weight=9]; 15.01/5.55 995 -> 499[label="",style="solid", color="blue", weight=3]; 15.01/5.55 996[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 996[label="",style="solid", color="blue", weight=9]; 15.01/5.55 996 -> 500[label="",style="solid", color="blue", weight=3]; 15.01/5.55 997[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 997[label="",style="solid", color="blue", weight=9]; 15.01/5.55 997 -> 501[label="",style="solid", color="blue", weight=3]; 15.01/5.55 998[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 998[label="",style="solid", color="blue", weight=9]; 15.01/5.55 998 -> 502[label="",style="solid", color="blue", weight=3]; 15.01/5.55 999[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 999[label="",style="solid", color="blue", weight=9]; 15.01/5.55 999 -> 503[label="",style="solid", color="blue", weight=3]; 15.01/5.55 1000[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1000[label="",style="solid", color="blue", weight=9]; 15.01/5.55 1000 -> 504[label="",style="solid", color="blue", weight=3]; 15.01/5.55 1001[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1001[label="",style="solid", color="blue", weight=9]; 15.01/5.55 1001 -> 505[label="",style="solid", color="blue", weight=3]; 15.01/5.55 1002[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1002[label="",style="solid", color="blue", weight=9]; 15.01/5.55 1002 -> 506[label="",style="solid", color="blue", weight=3]; 15.01/5.55 1003[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1003[label="",style="solid", color="blue", weight=9]; 15.01/5.55 1003 -> 507[label="",style="solid", color="blue", weight=3]; 15.01/5.55 1004[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1004[label="",style="solid", color="blue", weight=9]; 15.01/5.55 1004 -> 508[label="",style="solid", color="blue", weight=3]; 15.01/5.55 1005[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1005[label="",style="solid", color="blue", weight=9]; 15.01/5.55 1005 -> 509[label="",style="solid", color="blue", weight=3]; 15.01/5.55 389 -> 32[label="",style="dashed", color="red", weight=0]; 15.01/5.55 389[label="xy300 == xy4000",fontsize=16,color="magenta"];389 -> 510[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 389 -> 511[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 390 -> 33[label="",style="dashed", color="red", weight=0]; 15.01/5.55 390[label="xy300 == xy4000",fontsize=16,color="magenta"];390 -> 512[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 390 -> 513[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 391 -> 34[label="",style="dashed", color="red", weight=0]; 15.01/5.55 391[label="xy300 == xy4000",fontsize=16,color="magenta"];391 -> 514[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 391 -> 515[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 392 -> 35[label="",style="dashed", color="red", weight=0]; 15.01/5.55 392[label="xy300 == xy4000",fontsize=16,color="magenta"];392 -> 516[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 392 -> 517[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 393 -> 36[label="",style="dashed", color="red", weight=0]; 15.01/5.55 393[label="xy300 == xy4000",fontsize=16,color="magenta"];393 -> 518[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 393 -> 519[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 394 -> 37[label="",style="dashed", color="red", weight=0]; 15.01/5.55 394[label="xy300 == xy4000",fontsize=16,color="magenta"];394 -> 520[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 394 -> 521[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 395 -> 38[label="",style="dashed", color="red", weight=0]; 15.01/5.55 395[label="xy300 == xy4000",fontsize=16,color="magenta"];395 -> 522[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 395 -> 523[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 396 -> 39[label="",style="dashed", color="red", weight=0]; 15.01/5.55 396[label="xy300 == xy4000",fontsize=16,color="magenta"];396 -> 524[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 396 -> 525[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 397 -> 40[label="",style="dashed", color="red", weight=0]; 15.01/5.55 397[label="xy300 == xy4000",fontsize=16,color="magenta"];397 -> 526[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 397 -> 527[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 398 -> 41[label="",style="dashed", color="red", weight=0]; 15.01/5.55 398[label="xy300 == xy4000",fontsize=16,color="magenta"];398 -> 528[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 398 -> 529[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 399 -> 42[label="",style="dashed", color="red", weight=0]; 15.01/5.55 399[label="xy300 == xy4000",fontsize=16,color="magenta"];399 -> 530[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 399 -> 531[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 400 -> 43[label="",style="dashed", color="red", weight=0]; 15.01/5.55 400[label="xy300 == xy4000",fontsize=16,color="magenta"];400 -> 532[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 400 -> 533[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 401 -> 44[label="",style="dashed", color="red", weight=0]; 15.01/5.55 401[label="xy300 == xy4000",fontsize=16,color="magenta"];401 -> 534[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 401 -> 535[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 402 -> 45[label="",style="dashed", color="red", weight=0]; 15.01/5.55 402[label="xy300 == xy4000",fontsize=16,color="magenta"];402 -> 536[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 402 -> 537[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 403[label="primEqInt (Pos (Succ xy3000)) (Pos (Succ xy40000))",fontsize=16,color="black",shape="box"];403 -> 538[label="",style="solid", color="black", weight=3]; 15.01/5.55 404[label="primEqInt (Pos (Succ xy3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];404 -> 539[label="",style="solid", color="black", weight=3]; 15.01/5.55 405[label="False",fontsize=16,color="green",shape="box"];406[label="primEqInt (Pos Zero) (Pos (Succ xy40000))",fontsize=16,color="black",shape="box"];406 -> 540[label="",style="solid", color="black", weight=3]; 15.01/5.55 407[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];407 -> 541[label="",style="solid", color="black", weight=3]; 15.01/5.55 408[label="primEqInt (Pos Zero) (Neg (Succ xy40000))",fontsize=16,color="black",shape="box"];408 -> 542[label="",style="solid", color="black", weight=3]; 15.01/5.55 409[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];409 -> 543[label="",style="solid", color="black", weight=3]; 15.01/5.55 410[label="False",fontsize=16,color="green",shape="box"];411[label="primEqInt (Neg (Succ xy3000)) (Neg (Succ xy40000))",fontsize=16,color="black",shape="box"];411 -> 544[label="",style="solid", color="black", weight=3]; 15.01/5.55 412[label="primEqInt (Neg (Succ xy3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];412 -> 545[label="",style="solid", color="black", weight=3]; 15.01/5.55 413[label="primEqInt (Neg Zero) (Pos (Succ xy40000))",fontsize=16,color="black",shape="box"];413 -> 546[label="",style="solid", color="black", weight=3]; 15.01/5.55 414[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];414 -> 547[label="",style="solid", color="black", weight=3]; 15.01/5.55 415[label="primEqInt (Neg Zero) (Neg (Succ xy40000))",fontsize=16,color="black",shape="box"];415 -> 548[label="",style="solid", color="black", weight=3]; 15.01/5.55 416[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];416 -> 549[label="",style="solid", color="black", weight=3]; 15.01/5.55 417 -> 32[label="",style="dashed", color="red", weight=0]; 15.01/5.55 417[label="xy301 == xy4001",fontsize=16,color="magenta"];417 -> 550[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 417 -> 551[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 418 -> 33[label="",style="dashed", color="red", weight=0]; 15.01/5.55 418[label="xy301 == xy4001",fontsize=16,color="magenta"];418 -> 552[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 418 -> 553[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 419 -> 34[label="",style="dashed", color="red", weight=0]; 15.01/5.55 419[label="xy301 == xy4001",fontsize=16,color="magenta"];419 -> 554[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 419 -> 555[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 420 -> 35[label="",style="dashed", color="red", weight=0]; 15.01/5.55 420[label="xy301 == xy4001",fontsize=16,color="magenta"];420 -> 556[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 420 -> 557[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 421 -> 36[label="",style="dashed", color="red", weight=0]; 15.01/5.55 421[label="xy301 == xy4001",fontsize=16,color="magenta"];421 -> 558[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 421 -> 559[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 422 -> 37[label="",style="dashed", color="red", weight=0]; 15.01/5.55 422[label="xy301 == xy4001",fontsize=16,color="magenta"];422 -> 560[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 422 -> 561[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 423 -> 38[label="",style="dashed", color="red", weight=0]; 15.01/5.55 423[label="xy301 == xy4001",fontsize=16,color="magenta"];423 -> 562[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 423 -> 563[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 424 -> 39[label="",style="dashed", color="red", weight=0]; 15.01/5.55 424[label="xy301 == xy4001",fontsize=16,color="magenta"];424 -> 564[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 424 -> 565[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 425 -> 40[label="",style="dashed", color="red", weight=0]; 15.01/5.55 425[label="xy301 == xy4001",fontsize=16,color="magenta"];425 -> 566[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 425 -> 567[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 426 -> 41[label="",style="dashed", color="red", weight=0]; 15.01/5.55 426[label="xy301 == xy4001",fontsize=16,color="magenta"];426 -> 568[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 426 -> 569[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 427 -> 42[label="",style="dashed", color="red", weight=0]; 15.01/5.55 427[label="xy301 == xy4001",fontsize=16,color="magenta"];427 -> 570[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 427 -> 571[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 428 -> 43[label="",style="dashed", color="red", weight=0]; 15.01/5.55 428[label="xy301 == xy4001",fontsize=16,color="magenta"];428 -> 572[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 428 -> 573[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 429 -> 44[label="",style="dashed", color="red", weight=0]; 15.01/5.55 429[label="xy301 == xy4001",fontsize=16,color="magenta"];429 -> 574[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 429 -> 575[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 430 -> 45[label="",style="dashed", color="red", weight=0]; 15.01/5.55 430[label="xy301 == xy4001",fontsize=16,color="magenta"];430 -> 576[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 430 -> 577[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 431 -> 32[label="",style="dashed", color="red", weight=0]; 15.01/5.55 431[label="xy300 == xy4000",fontsize=16,color="magenta"];431 -> 578[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 431 -> 579[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 432 -> 33[label="",style="dashed", color="red", weight=0]; 15.01/5.55 432[label="xy300 == xy4000",fontsize=16,color="magenta"];432 -> 580[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 432 -> 581[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 433 -> 34[label="",style="dashed", color="red", weight=0]; 15.01/5.55 433[label="xy300 == xy4000",fontsize=16,color="magenta"];433 -> 582[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 433 -> 583[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 434 -> 35[label="",style="dashed", color="red", weight=0]; 15.01/5.55 434[label="xy300 == xy4000",fontsize=16,color="magenta"];434 -> 584[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 434 -> 585[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 435 -> 36[label="",style="dashed", color="red", weight=0]; 15.01/5.55 435[label="xy300 == xy4000",fontsize=16,color="magenta"];435 -> 586[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 435 -> 587[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 436 -> 37[label="",style="dashed", color="red", weight=0]; 15.01/5.55 436[label="xy300 == xy4000",fontsize=16,color="magenta"];436 -> 588[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 436 -> 589[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 437 -> 38[label="",style="dashed", color="red", weight=0]; 15.01/5.55 437[label="xy300 == xy4000",fontsize=16,color="magenta"];437 -> 590[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 437 -> 591[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 438 -> 39[label="",style="dashed", color="red", weight=0]; 15.01/5.55 438[label="xy300 == xy4000",fontsize=16,color="magenta"];438 -> 592[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 438 -> 593[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 439 -> 40[label="",style="dashed", color="red", weight=0]; 15.01/5.55 439[label="xy300 == xy4000",fontsize=16,color="magenta"];439 -> 594[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 439 -> 595[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 440 -> 41[label="",style="dashed", color="red", weight=0]; 15.01/5.55 440[label="xy300 == xy4000",fontsize=16,color="magenta"];440 -> 596[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 440 -> 597[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 441 -> 42[label="",style="dashed", color="red", weight=0]; 15.01/5.55 441[label="xy300 == xy4000",fontsize=16,color="magenta"];441 -> 598[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 441 -> 599[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 442 -> 43[label="",style="dashed", color="red", weight=0]; 15.01/5.55 442[label="xy300 == xy4000",fontsize=16,color="magenta"];442 -> 600[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 442 -> 601[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 443 -> 44[label="",style="dashed", color="red", weight=0]; 15.01/5.55 443[label="xy300 == xy4000",fontsize=16,color="magenta"];443 -> 602[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 443 -> 603[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 444 -> 45[label="",style="dashed", color="red", weight=0]; 15.01/5.55 444[label="xy300 == xy4000",fontsize=16,color="magenta"];444 -> 604[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 444 -> 605[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 445[label="xy301",fontsize=16,color="green",shape="box"];446[label="xy4001",fontsize=16,color="green",shape="box"];447 -> 32[label="",style="dashed", color="red", weight=0]; 15.01/5.55 447[label="xy300 == xy4000",fontsize=16,color="magenta"];447 -> 606[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 447 -> 607[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 448 -> 33[label="",style="dashed", color="red", weight=0]; 15.01/5.55 448[label="xy300 == xy4000",fontsize=16,color="magenta"];448 -> 608[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 448 -> 609[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 449 -> 34[label="",style="dashed", color="red", weight=0]; 15.01/5.55 449[label="xy300 == xy4000",fontsize=16,color="magenta"];449 -> 610[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 449 -> 611[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 450 -> 35[label="",style="dashed", color="red", weight=0]; 15.01/5.55 450[label="xy300 == xy4000",fontsize=16,color="magenta"];450 -> 612[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 450 -> 613[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 451 -> 36[label="",style="dashed", color="red", weight=0]; 15.01/5.55 451[label="xy300 == xy4000",fontsize=16,color="magenta"];451 -> 614[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 451 -> 615[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 452 -> 37[label="",style="dashed", color="red", weight=0]; 15.01/5.55 452[label="xy300 == xy4000",fontsize=16,color="magenta"];452 -> 616[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 452 -> 617[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 453 -> 38[label="",style="dashed", color="red", weight=0]; 15.01/5.55 453[label="xy300 == xy4000",fontsize=16,color="magenta"];453 -> 618[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 453 -> 619[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 454 -> 39[label="",style="dashed", color="red", weight=0]; 15.01/5.55 454[label="xy300 == xy4000",fontsize=16,color="magenta"];454 -> 620[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 454 -> 621[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 455 -> 40[label="",style="dashed", color="red", weight=0]; 15.01/5.55 455[label="xy300 == xy4000",fontsize=16,color="magenta"];455 -> 622[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 455 -> 623[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 456 -> 41[label="",style="dashed", color="red", weight=0]; 15.01/5.55 456[label="xy300 == xy4000",fontsize=16,color="magenta"];456 -> 624[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 456 -> 625[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 457 -> 42[label="",style="dashed", color="red", weight=0]; 15.01/5.55 457[label="xy300 == xy4000",fontsize=16,color="magenta"];457 -> 626[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 457 -> 627[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 458 -> 43[label="",style="dashed", color="red", weight=0]; 15.01/5.55 458[label="xy300 == xy4000",fontsize=16,color="magenta"];458 -> 628[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 458 -> 629[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 459 -> 44[label="",style="dashed", color="red", weight=0]; 15.01/5.55 459[label="xy300 == xy4000",fontsize=16,color="magenta"];459 -> 630[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 459 -> 631[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 460 -> 45[label="",style="dashed", color="red", weight=0]; 15.01/5.55 460[label="xy300 == xy4000",fontsize=16,color="magenta"];460 -> 632[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 460 -> 633[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 461[label="primMulInt xy300 xy4001",fontsize=16,color="burlywood",shape="box"];1006[label="xy300/Pos xy3000",fontsize=10,color="white",style="solid",shape="box"];461 -> 1006[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1006 -> 634[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1007[label="xy300/Neg xy3000",fontsize=10,color="white",style="solid",shape="box"];461 -> 1007[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1007 -> 635[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 462[label="xy301",fontsize=16,color="green",shape="box"];463[label="xy4000",fontsize=16,color="green",shape="box"];464[label="primEqNat (Succ xy3000) (Succ xy40000)",fontsize=16,color="black",shape="box"];464 -> 636[label="",style="solid", color="black", weight=3]; 15.01/5.55 465[label="primEqNat (Succ xy3000) Zero",fontsize=16,color="black",shape="box"];465 -> 637[label="",style="solid", color="black", weight=3]; 15.01/5.55 466[label="primEqNat Zero (Succ xy40000)",fontsize=16,color="black",shape="box"];466 -> 638[label="",style="solid", color="black", weight=3]; 15.01/5.55 467[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];467 -> 639[label="",style="solid", color="black", weight=3]; 15.01/5.55 468[label="xy300",fontsize=16,color="green",shape="box"];469[label="xy4001",fontsize=16,color="green",shape="box"];470[label="xy301",fontsize=16,color="green",shape="box"];471[label="xy4000",fontsize=16,color="green",shape="box"];472[label="xy301",fontsize=16,color="green",shape="box"];473[label="xy4001",fontsize=16,color="green",shape="box"];474[label="xy301",fontsize=16,color="green",shape="box"];475[label="xy4001",fontsize=16,color="green",shape="box"];476[label="xy300",fontsize=16,color="green",shape="box"];477[label="xy4000",fontsize=16,color="green",shape="box"];478[label="xy300",fontsize=16,color="green",shape="box"];479[label="xy4000",fontsize=16,color="green",shape="box"];480[label="False",fontsize=16,color="green",shape="box"];481[label="xy35",fontsize=16,color="green",shape="box"];482 -> 32[label="",style="dashed", color="red", weight=0]; 15.01/5.55 482[label="xy302 == xy4002",fontsize=16,color="magenta"];482 -> 640[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 482 -> 641[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 483 -> 33[label="",style="dashed", color="red", weight=0]; 15.01/5.55 483[label="xy302 == xy4002",fontsize=16,color="magenta"];483 -> 642[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 483 -> 643[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 484 -> 34[label="",style="dashed", color="red", weight=0]; 15.01/5.55 484[label="xy302 == xy4002",fontsize=16,color="magenta"];484 -> 644[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 484 -> 645[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 485 -> 35[label="",style="dashed", color="red", weight=0]; 15.01/5.55 485[label="xy302 == xy4002",fontsize=16,color="magenta"];485 -> 646[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 485 -> 647[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 486 -> 36[label="",style="dashed", color="red", weight=0]; 15.01/5.55 486[label="xy302 == xy4002",fontsize=16,color="magenta"];486 -> 648[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 486 -> 649[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 487 -> 37[label="",style="dashed", color="red", weight=0]; 15.01/5.55 487[label="xy302 == xy4002",fontsize=16,color="magenta"];487 -> 650[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 487 -> 651[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 488 -> 38[label="",style="dashed", color="red", weight=0]; 15.01/5.55 488[label="xy302 == xy4002",fontsize=16,color="magenta"];488 -> 652[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 488 -> 653[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 489 -> 39[label="",style="dashed", color="red", weight=0]; 15.01/5.55 489[label="xy302 == xy4002",fontsize=16,color="magenta"];489 -> 654[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 489 -> 655[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 490 -> 40[label="",style="dashed", color="red", weight=0]; 15.01/5.55 490[label="xy302 == xy4002",fontsize=16,color="magenta"];490 -> 656[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 490 -> 657[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 491 -> 41[label="",style="dashed", color="red", weight=0]; 15.01/5.55 491[label="xy302 == xy4002",fontsize=16,color="magenta"];491 -> 658[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 491 -> 659[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 492 -> 42[label="",style="dashed", color="red", weight=0]; 15.01/5.55 492[label="xy302 == xy4002",fontsize=16,color="magenta"];492 -> 660[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 492 -> 661[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 493 -> 43[label="",style="dashed", color="red", weight=0]; 15.01/5.55 493[label="xy302 == xy4002",fontsize=16,color="magenta"];493 -> 662[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 493 -> 663[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 494 -> 44[label="",style="dashed", color="red", weight=0]; 15.01/5.55 494[label="xy302 == xy4002",fontsize=16,color="magenta"];494 -> 664[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 494 -> 665[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 495 -> 45[label="",style="dashed", color="red", weight=0]; 15.01/5.55 495[label="xy302 == xy4002",fontsize=16,color="magenta"];495 -> 666[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 495 -> 667[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 496 -> 32[label="",style="dashed", color="red", weight=0]; 15.01/5.55 496[label="xy301 == xy4001",fontsize=16,color="magenta"];496 -> 668[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 496 -> 669[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 497 -> 33[label="",style="dashed", color="red", weight=0]; 15.01/5.55 497[label="xy301 == xy4001",fontsize=16,color="magenta"];497 -> 670[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 497 -> 671[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 498 -> 34[label="",style="dashed", color="red", weight=0]; 15.01/5.55 498[label="xy301 == xy4001",fontsize=16,color="magenta"];498 -> 672[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 498 -> 673[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 499 -> 35[label="",style="dashed", color="red", weight=0]; 15.01/5.55 499[label="xy301 == xy4001",fontsize=16,color="magenta"];499 -> 674[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 499 -> 675[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 500 -> 36[label="",style="dashed", color="red", weight=0]; 15.01/5.55 500[label="xy301 == xy4001",fontsize=16,color="magenta"];500 -> 676[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 500 -> 677[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 501 -> 37[label="",style="dashed", color="red", weight=0]; 15.01/5.55 501[label="xy301 == xy4001",fontsize=16,color="magenta"];501 -> 678[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 501 -> 679[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 502 -> 38[label="",style="dashed", color="red", weight=0]; 15.01/5.55 502[label="xy301 == xy4001",fontsize=16,color="magenta"];502 -> 680[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 502 -> 681[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 503 -> 39[label="",style="dashed", color="red", weight=0]; 15.01/5.55 503[label="xy301 == xy4001",fontsize=16,color="magenta"];503 -> 682[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 503 -> 683[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 504 -> 40[label="",style="dashed", color="red", weight=0]; 15.01/5.55 504[label="xy301 == xy4001",fontsize=16,color="magenta"];504 -> 684[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 504 -> 685[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 505 -> 41[label="",style="dashed", color="red", weight=0]; 15.01/5.55 505[label="xy301 == xy4001",fontsize=16,color="magenta"];505 -> 686[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 505 -> 687[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 506 -> 42[label="",style="dashed", color="red", weight=0]; 15.01/5.55 506[label="xy301 == xy4001",fontsize=16,color="magenta"];506 -> 688[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 506 -> 689[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 507 -> 43[label="",style="dashed", color="red", weight=0]; 15.01/5.55 507[label="xy301 == xy4001",fontsize=16,color="magenta"];507 -> 690[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 507 -> 691[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 508 -> 44[label="",style="dashed", color="red", weight=0]; 15.01/5.55 508[label="xy301 == xy4001",fontsize=16,color="magenta"];508 -> 692[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 508 -> 693[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 509 -> 45[label="",style="dashed", color="red", weight=0]; 15.01/5.55 509[label="xy301 == xy4001",fontsize=16,color="magenta"];509 -> 694[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 509 -> 695[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 510[label="xy300",fontsize=16,color="green",shape="box"];511[label="xy4000",fontsize=16,color="green",shape="box"];512[label="xy300",fontsize=16,color="green",shape="box"];513[label="xy4000",fontsize=16,color="green",shape="box"];514[label="xy300",fontsize=16,color="green",shape="box"];515[label="xy4000",fontsize=16,color="green",shape="box"];516[label="xy300",fontsize=16,color="green",shape="box"];517[label="xy4000",fontsize=16,color="green",shape="box"];518[label="xy300",fontsize=16,color="green",shape="box"];519[label="xy4000",fontsize=16,color="green",shape="box"];520[label="xy300",fontsize=16,color="green",shape="box"];521[label="xy4000",fontsize=16,color="green",shape="box"];522[label="xy300",fontsize=16,color="green",shape="box"];523[label="xy4000",fontsize=16,color="green",shape="box"];524[label="xy300",fontsize=16,color="green",shape="box"];525[label="xy4000",fontsize=16,color="green",shape="box"];526[label="xy300",fontsize=16,color="green",shape="box"];527[label="xy4000",fontsize=16,color="green",shape="box"];528[label="xy300",fontsize=16,color="green",shape="box"];529[label="xy4000",fontsize=16,color="green",shape="box"];530[label="xy300",fontsize=16,color="green",shape="box"];531[label="xy4000",fontsize=16,color="green",shape="box"];532[label="xy300",fontsize=16,color="green",shape="box"];533[label="xy4000",fontsize=16,color="green",shape="box"];534[label="xy300",fontsize=16,color="green",shape="box"];535[label="xy4000",fontsize=16,color="green",shape="box"];536[label="xy300",fontsize=16,color="green",shape="box"];537[label="xy4000",fontsize=16,color="green",shape="box"];538 -> 201[label="",style="dashed", color="red", weight=0]; 15.01/5.55 538[label="primEqNat xy3000 xy40000",fontsize=16,color="magenta"];538 -> 696[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 538 -> 697[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 539[label="False",fontsize=16,color="green",shape="box"];540[label="False",fontsize=16,color="green",shape="box"];541[label="True",fontsize=16,color="green",shape="box"];542[label="False",fontsize=16,color="green",shape="box"];543[label="True",fontsize=16,color="green",shape="box"];544 -> 201[label="",style="dashed", color="red", weight=0]; 15.01/5.55 544[label="primEqNat xy3000 xy40000",fontsize=16,color="magenta"];544 -> 698[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 544 -> 699[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 545[label="False",fontsize=16,color="green",shape="box"];546[label="False",fontsize=16,color="green",shape="box"];547[label="True",fontsize=16,color="green",shape="box"];548[label="False",fontsize=16,color="green",shape="box"];549[label="True",fontsize=16,color="green",shape="box"];550[label="xy301",fontsize=16,color="green",shape="box"];551[label="xy4001",fontsize=16,color="green",shape="box"];552[label="xy301",fontsize=16,color="green",shape="box"];553[label="xy4001",fontsize=16,color="green",shape="box"];554[label="xy301",fontsize=16,color="green",shape="box"];555[label="xy4001",fontsize=16,color="green",shape="box"];556[label="xy301",fontsize=16,color="green",shape="box"];557[label="xy4001",fontsize=16,color="green",shape="box"];558[label="xy301",fontsize=16,color="green",shape="box"];559[label="xy4001",fontsize=16,color="green",shape="box"];560[label="xy301",fontsize=16,color="green",shape="box"];561[label="xy4001",fontsize=16,color="green",shape="box"];562[label="xy301",fontsize=16,color="green",shape="box"];563[label="xy4001",fontsize=16,color="green",shape="box"];564[label="xy301",fontsize=16,color="green",shape="box"];565[label="xy4001",fontsize=16,color="green",shape="box"];566[label="xy301",fontsize=16,color="green",shape="box"];567[label="xy4001",fontsize=16,color="green",shape="box"];568[label="xy301",fontsize=16,color="green",shape="box"];569[label="xy4001",fontsize=16,color="green",shape="box"];570[label="xy301",fontsize=16,color="green",shape="box"];571[label="xy4001",fontsize=16,color="green",shape="box"];572[label="xy301",fontsize=16,color="green",shape="box"];573[label="xy4001",fontsize=16,color="green",shape="box"];574[label="xy301",fontsize=16,color="green",shape="box"];575[label="xy4001",fontsize=16,color="green",shape="box"];576[label="xy301",fontsize=16,color="green",shape="box"];577[label="xy4001",fontsize=16,color="green",shape="box"];578[label="xy300",fontsize=16,color="green",shape="box"];579[label="xy4000",fontsize=16,color="green",shape="box"];580[label="xy300",fontsize=16,color="green",shape="box"];581[label="xy4000",fontsize=16,color="green",shape="box"];582[label="xy300",fontsize=16,color="green",shape="box"];583[label="xy4000",fontsize=16,color="green",shape="box"];584[label="xy300",fontsize=16,color="green",shape="box"];585[label="xy4000",fontsize=16,color="green",shape="box"];586[label="xy300",fontsize=16,color="green",shape="box"];587[label="xy4000",fontsize=16,color="green",shape="box"];588[label="xy300",fontsize=16,color="green",shape="box"];589[label="xy4000",fontsize=16,color="green",shape="box"];590[label="xy300",fontsize=16,color="green",shape="box"];591[label="xy4000",fontsize=16,color="green",shape="box"];592[label="xy300",fontsize=16,color="green",shape="box"];593[label="xy4000",fontsize=16,color="green",shape="box"];594[label="xy300",fontsize=16,color="green",shape="box"];595[label="xy4000",fontsize=16,color="green",shape="box"];596[label="xy300",fontsize=16,color="green",shape="box"];597[label="xy4000",fontsize=16,color="green",shape="box"];598[label="xy300",fontsize=16,color="green",shape="box"];599[label="xy4000",fontsize=16,color="green",shape="box"];600[label="xy300",fontsize=16,color="green",shape="box"];601[label="xy4000",fontsize=16,color="green",shape="box"];602[label="xy300",fontsize=16,color="green",shape="box"];603[label="xy4000",fontsize=16,color="green",shape="box"];604[label="xy300",fontsize=16,color="green",shape="box"];605[label="xy4000",fontsize=16,color="green",shape="box"];606[label="xy300",fontsize=16,color="green",shape="box"];607[label="xy4000",fontsize=16,color="green",shape="box"];608[label="xy300",fontsize=16,color="green",shape="box"];609[label="xy4000",fontsize=16,color="green",shape="box"];610[label="xy300",fontsize=16,color="green",shape="box"];611[label="xy4000",fontsize=16,color="green",shape="box"];612[label="xy300",fontsize=16,color="green",shape="box"];613[label="xy4000",fontsize=16,color="green",shape="box"];614[label="xy300",fontsize=16,color="green",shape="box"];615[label="xy4000",fontsize=16,color="green",shape="box"];616[label="xy300",fontsize=16,color="green",shape="box"];617[label="xy4000",fontsize=16,color="green",shape="box"];618[label="xy300",fontsize=16,color="green",shape="box"];619[label="xy4000",fontsize=16,color="green",shape="box"];620[label="xy300",fontsize=16,color="green",shape="box"];621[label="xy4000",fontsize=16,color="green",shape="box"];622[label="xy300",fontsize=16,color="green",shape="box"];623[label="xy4000",fontsize=16,color="green",shape="box"];624[label="xy300",fontsize=16,color="green",shape="box"];625[label="xy4000",fontsize=16,color="green",shape="box"];626[label="xy300",fontsize=16,color="green",shape="box"];627[label="xy4000",fontsize=16,color="green",shape="box"];628[label="xy300",fontsize=16,color="green",shape="box"];629[label="xy4000",fontsize=16,color="green",shape="box"];630[label="xy300",fontsize=16,color="green",shape="box"];631[label="xy4000",fontsize=16,color="green",shape="box"];632[label="xy300",fontsize=16,color="green",shape="box"];633[label="xy4000",fontsize=16,color="green",shape="box"];634[label="primMulInt (Pos xy3000) xy4001",fontsize=16,color="burlywood",shape="box"];1008[label="xy4001/Pos xy40010",fontsize=10,color="white",style="solid",shape="box"];634 -> 1008[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1008 -> 700[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1009[label="xy4001/Neg xy40010",fontsize=10,color="white",style="solid",shape="box"];634 -> 1009[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1009 -> 701[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 635[label="primMulInt (Neg xy3000) xy4001",fontsize=16,color="burlywood",shape="box"];1010[label="xy4001/Pos xy40010",fontsize=10,color="white",style="solid",shape="box"];635 -> 1010[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1010 -> 702[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1011[label="xy4001/Neg xy40010",fontsize=10,color="white",style="solid",shape="box"];635 -> 1011[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1011 -> 703[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 636 -> 201[label="",style="dashed", color="red", weight=0]; 15.01/5.55 636[label="primEqNat xy3000 xy40000",fontsize=16,color="magenta"];636 -> 704[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 636 -> 705[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 637[label="False",fontsize=16,color="green",shape="box"];638[label="False",fontsize=16,color="green",shape="box"];639[label="True",fontsize=16,color="green",shape="box"];640[label="xy302",fontsize=16,color="green",shape="box"];641[label="xy4002",fontsize=16,color="green",shape="box"];642[label="xy302",fontsize=16,color="green",shape="box"];643[label="xy4002",fontsize=16,color="green",shape="box"];644[label="xy302",fontsize=16,color="green",shape="box"];645[label="xy4002",fontsize=16,color="green",shape="box"];646[label="xy302",fontsize=16,color="green",shape="box"];647[label="xy4002",fontsize=16,color="green",shape="box"];648[label="xy302",fontsize=16,color="green",shape="box"];649[label="xy4002",fontsize=16,color="green",shape="box"];650[label="xy302",fontsize=16,color="green",shape="box"];651[label="xy4002",fontsize=16,color="green",shape="box"];652[label="xy302",fontsize=16,color="green",shape="box"];653[label="xy4002",fontsize=16,color="green",shape="box"];654[label="xy302",fontsize=16,color="green",shape="box"];655[label="xy4002",fontsize=16,color="green",shape="box"];656[label="xy302",fontsize=16,color="green",shape="box"];657[label="xy4002",fontsize=16,color="green",shape="box"];658[label="xy302",fontsize=16,color="green",shape="box"];659[label="xy4002",fontsize=16,color="green",shape="box"];660[label="xy302",fontsize=16,color="green",shape="box"];661[label="xy4002",fontsize=16,color="green",shape="box"];662[label="xy302",fontsize=16,color="green",shape="box"];663[label="xy4002",fontsize=16,color="green",shape="box"];664[label="xy302",fontsize=16,color="green",shape="box"];665[label="xy4002",fontsize=16,color="green",shape="box"];666[label="xy302",fontsize=16,color="green",shape="box"];667[label="xy4002",fontsize=16,color="green",shape="box"];668[label="xy301",fontsize=16,color="green",shape="box"];669[label="xy4001",fontsize=16,color="green",shape="box"];670[label="xy301",fontsize=16,color="green",shape="box"];671[label="xy4001",fontsize=16,color="green",shape="box"];672[label="xy301",fontsize=16,color="green",shape="box"];673[label="xy4001",fontsize=16,color="green",shape="box"];674[label="xy301",fontsize=16,color="green",shape="box"];675[label="xy4001",fontsize=16,color="green",shape="box"];676[label="xy301",fontsize=16,color="green",shape="box"];677[label="xy4001",fontsize=16,color="green",shape="box"];678[label="xy301",fontsize=16,color="green",shape="box"];679[label="xy4001",fontsize=16,color="green",shape="box"];680[label="xy301",fontsize=16,color="green",shape="box"];681[label="xy4001",fontsize=16,color="green",shape="box"];682[label="xy301",fontsize=16,color="green",shape="box"];683[label="xy4001",fontsize=16,color="green",shape="box"];684[label="xy301",fontsize=16,color="green",shape="box"];685[label="xy4001",fontsize=16,color="green",shape="box"];686[label="xy301",fontsize=16,color="green",shape="box"];687[label="xy4001",fontsize=16,color="green",shape="box"];688[label="xy301",fontsize=16,color="green",shape="box"];689[label="xy4001",fontsize=16,color="green",shape="box"];690[label="xy301",fontsize=16,color="green",shape="box"];691[label="xy4001",fontsize=16,color="green",shape="box"];692[label="xy301",fontsize=16,color="green",shape="box"];693[label="xy4001",fontsize=16,color="green",shape="box"];694[label="xy301",fontsize=16,color="green",shape="box"];695[label="xy4001",fontsize=16,color="green",shape="box"];696[label="xy3000",fontsize=16,color="green",shape="box"];697[label="xy40000",fontsize=16,color="green",shape="box"];698[label="xy3000",fontsize=16,color="green",shape="box"];699[label="xy40000",fontsize=16,color="green",shape="box"];700[label="primMulInt (Pos xy3000) (Pos xy40010)",fontsize=16,color="black",shape="box"];700 -> 706[label="",style="solid", color="black", weight=3]; 15.01/5.55 701[label="primMulInt (Pos xy3000) (Neg xy40010)",fontsize=16,color="black",shape="box"];701 -> 707[label="",style="solid", color="black", weight=3]; 15.01/5.55 702[label="primMulInt (Neg xy3000) (Pos xy40010)",fontsize=16,color="black",shape="box"];702 -> 708[label="",style="solid", color="black", weight=3]; 15.01/5.55 703[label="primMulInt (Neg xy3000) (Neg xy40010)",fontsize=16,color="black",shape="box"];703 -> 709[label="",style="solid", color="black", weight=3]; 15.01/5.55 704[label="xy3000",fontsize=16,color="green",shape="box"];705[label="xy40000",fontsize=16,color="green",shape="box"];706[label="Pos (primMulNat xy3000 xy40010)",fontsize=16,color="green",shape="box"];706 -> 710[label="",style="dashed", color="green", weight=3]; 15.01/5.55 707[label="Neg (primMulNat xy3000 xy40010)",fontsize=16,color="green",shape="box"];707 -> 711[label="",style="dashed", color="green", weight=3]; 15.01/5.55 708[label="Neg (primMulNat xy3000 xy40010)",fontsize=16,color="green",shape="box"];708 -> 712[label="",style="dashed", color="green", weight=3]; 15.01/5.55 709[label="Pos (primMulNat xy3000 xy40010)",fontsize=16,color="green",shape="box"];709 -> 713[label="",style="dashed", color="green", weight=3]; 15.01/5.55 710[label="primMulNat xy3000 xy40010",fontsize=16,color="burlywood",shape="triangle"];1012[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];710 -> 1012[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1012 -> 714[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1013[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];710 -> 1013[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1013 -> 715[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 711 -> 710[label="",style="dashed", color="red", weight=0]; 15.01/5.55 711[label="primMulNat xy3000 xy40010",fontsize=16,color="magenta"];711 -> 716[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 712 -> 710[label="",style="dashed", color="red", weight=0]; 15.01/5.55 712[label="primMulNat xy3000 xy40010",fontsize=16,color="magenta"];712 -> 717[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 713 -> 710[label="",style="dashed", color="red", weight=0]; 15.01/5.55 713[label="primMulNat xy3000 xy40010",fontsize=16,color="magenta"];713 -> 718[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 713 -> 719[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 714[label="primMulNat (Succ xy30000) xy40010",fontsize=16,color="burlywood",shape="box"];1014[label="xy40010/Succ xy400100",fontsize=10,color="white",style="solid",shape="box"];714 -> 1014[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1014 -> 720[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1015[label="xy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];714 -> 1015[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1015 -> 721[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 715[label="primMulNat Zero xy40010",fontsize=16,color="burlywood",shape="box"];1016[label="xy40010/Succ xy400100",fontsize=10,color="white",style="solid",shape="box"];715 -> 1016[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1016 -> 722[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1017[label="xy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];715 -> 1017[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1017 -> 723[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 716[label="xy40010",fontsize=16,color="green",shape="box"];717[label="xy3000",fontsize=16,color="green",shape="box"];718[label="xy3000",fontsize=16,color="green",shape="box"];719[label="xy40010",fontsize=16,color="green",shape="box"];720[label="primMulNat (Succ xy30000) (Succ xy400100)",fontsize=16,color="black",shape="box"];720 -> 724[label="",style="solid", color="black", weight=3]; 15.01/5.55 721[label="primMulNat (Succ xy30000) Zero",fontsize=16,color="black",shape="box"];721 -> 725[label="",style="solid", color="black", weight=3]; 15.01/5.55 722[label="primMulNat Zero (Succ xy400100)",fontsize=16,color="black",shape="box"];722 -> 726[label="",style="solid", color="black", weight=3]; 15.01/5.55 723[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];723 -> 727[label="",style="solid", color="black", weight=3]; 15.01/5.55 724 -> 728[label="",style="dashed", color="red", weight=0]; 15.01/5.55 724[label="primPlusNat (primMulNat xy30000 (Succ xy400100)) (Succ xy400100)",fontsize=16,color="magenta"];724 -> 729[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 725[label="Zero",fontsize=16,color="green",shape="box"];726[label="Zero",fontsize=16,color="green",shape="box"];727[label="Zero",fontsize=16,color="green",shape="box"];729 -> 710[label="",style="dashed", color="red", weight=0]; 15.01/5.55 729[label="primMulNat xy30000 (Succ xy400100)",fontsize=16,color="magenta"];729 -> 730[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 729 -> 731[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 728[label="primPlusNat xy36 (Succ xy400100)",fontsize=16,color="burlywood",shape="triangle"];1018[label="xy36/Succ xy360",fontsize=10,color="white",style="solid",shape="box"];728 -> 1018[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1018 -> 732[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1019[label="xy36/Zero",fontsize=10,color="white",style="solid",shape="box"];728 -> 1019[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1019 -> 733[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 730[label="xy30000",fontsize=16,color="green",shape="box"];731[label="Succ xy400100",fontsize=16,color="green",shape="box"];732[label="primPlusNat (Succ xy360) (Succ xy400100)",fontsize=16,color="black",shape="box"];732 -> 734[label="",style="solid", color="black", weight=3]; 15.01/5.55 733[label="primPlusNat Zero (Succ xy400100)",fontsize=16,color="black",shape="box"];733 -> 735[label="",style="solid", color="black", weight=3]; 15.01/5.55 734[label="Succ (Succ (primPlusNat xy360 xy400100))",fontsize=16,color="green",shape="box"];734 -> 736[label="",style="dashed", color="green", weight=3]; 15.01/5.55 735[label="Succ xy400100",fontsize=16,color="green",shape="box"];736[label="primPlusNat xy360 xy400100",fontsize=16,color="burlywood",shape="triangle"];1020[label="xy360/Succ xy3600",fontsize=10,color="white",style="solid",shape="box"];736 -> 1020[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1020 -> 737[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1021[label="xy360/Zero",fontsize=10,color="white",style="solid",shape="box"];736 -> 1021[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1021 -> 738[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 737[label="primPlusNat (Succ xy3600) xy400100",fontsize=16,color="burlywood",shape="box"];1022[label="xy400100/Succ xy4001000",fontsize=10,color="white",style="solid",shape="box"];737 -> 1022[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1022 -> 739[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1023[label="xy400100/Zero",fontsize=10,color="white",style="solid",shape="box"];737 -> 1023[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1023 -> 740[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 738[label="primPlusNat Zero xy400100",fontsize=16,color="burlywood",shape="box"];1024[label="xy400100/Succ xy4001000",fontsize=10,color="white",style="solid",shape="box"];738 -> 1024[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1024 -> 741[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 1025[label="xy400100/Zero",fontsize=10,color="white",style="solid",shape="box"];738 -> 1025[label="",style="solid", color="burlywood", weight=9]; 15.01/5.55 1025 -> 742[label="",style="solid", color="burlywood", weight=3]; 15.01/5.55 739[label="primPlusNat (Succ xy3600) (Succ xy4001000)",fontsize=16,color="black",shape="box"];739 -> 743[label="",style="solid", color="black", weight=3]; 15.01/5.55 740[label="primPlusNat (Succ xy3600) Zero",fontsize=16,color="black",shape="box"];740 -> 744[label="",style="solid", color="black", weight=3]; 15.01/5.55 741[label="primPlusNat Zero (Succ xy4001000)",fontsize=16,color="black",shape="box"];741 -> 745[label="",style="solid", color="black", weight=3]; 15.01/5.55 742[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];742 -> 746[label="",style="solid", color="black", weight=3]; 15.01/5.55 743[label="Succ (Succ (primPlusNat xy3600 xy4001000))",fontsize=16,color="green",shape="box"];743 -> 747[label="",style="dashed", color="green", weight=3]; 15.01/5.55 744[label="Succ xy3600",fontsize=16,color="green",shape="box"];745[label="Succ xy4001000",fontsize=16,color="green",shape="box"];746[label="Zero",fontsize=16,color="green",shape="box"];747 -> 736[label="",style="dashed", color="red", weight=0]; 15.01/5.55 747[label="primPlusNat xy3600 xy4001000",fontsize=16,color="magenta"];747 -> 748[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 747 -> 749[label="",style="dashed", color="magenta", weight=3]; 15.01/5.55 748[label="xy3600",fontsize=16,color="green",shape="box"];749[label="xy4001000",fontsize=16,color="green",shape="box"];} 15.01/5.55 15.01/5.55 ---------------------------------------- 15.01/5.55 15.01/5.55 (8) 15.01/5.55 Complex Obligation (AND) 15.01/5.55 15.01/5.55 ---------------------------------------- 15.01/5.55 15.01/5.55 (9) 15.01/5.55 Obligation: 15.01/5.55 Q DP problem: 15.01/5.55 The TRS P consists of the following rules: 15.01/5.55 15.01/5.55 new_deleteBy00(xy19, xy20, xy21, False, be, bf) -> new_deleteBy(Right(xy21), xy19, be, bf) 15.01/5.55 new_deleteBy(Left(xy30), :(Right(xy400), xy41), bc, bd) -> new_deleteBy(Left(xy30), xy41, bc, bd) 15.01/5.55 new_deleteBy(Right(xy30), :(Left(xy400), xy41), bc, bd) -> new_deleteBy(Right(xy30), xy41, bc, bd) 15.01/5.55 new_deleteBy(Left(xy30), :(Left(xy400), xy41), bc, bd) -> new_deleteBy0(xy41, xy400, xy30, new_esEs4(xy30, xy400, bc), bc, bd) 15.01/5.55 new_deleteBy0(xy10, xy11, xy12, False, ba, bb) -> new_deleteBy(Left(xy12), xy10, ba, bb) 15.01/5.55 new_deleteBy(Right(xy30), :(Right(xy400), xy41), bc, bd) -> new_deleteBy00(xy41, xy400, xy30, new_esEs5(xy30, xy400, bd), bc, bd) 15.01/5.55 15.01/5.55 The TRS R consists of the following rules: 15.01/5.55 15.01/5.55 new_esEs26(xy301, xy4001, ty_@0) -> new_esEs18(xy301, xy4001) 15.01/5.55 new_esEs11(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_[], ef)) -> new_esEs21(xy300, xy4000, ef) 15.01/5.55 new_esEs4(xy30, xy400, ty_Ordering) -> new_esEs17(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 15.01/5.55 new_primPlusNat0(Zero, Zero) -> Zero 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Int, bh) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs16(xy300, xy4000, gg, gh, ha) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, app(ty_Maybe, eg)) -> new_esEs15(xy30, xy400, eg) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_Maybe, bbe)) -> new_esEs15(xy300, xy4000, bbe) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(ty_@2, hb), hc)) -> new_esEs19(xy300, xy4000, hb, hc) 15.01/5.55 new_esEs4(xy30, xy400, app(app(ty_Either, dd), bh)) -> new_esEs13(xy30, xy400, dd, bh) 15.01/5.55 new_esEs10(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(ty_Either, bae), baf)) -> new_esEs13(xy301, xy4001, bae, baf) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Ordering) -> new_esEs17(xy302, xy4002) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(ty_Either, bda), bdb)) -> new_esEs13(xy300, xy4000, bda, bdb) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_Maybe, de)) -> new_esEs15(xy300, xy4000, de) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_Maybe, bfc)) -> new_esEs15(xy301, xy4001, bfc) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Integer) -> new_esEs12(xy302, xy4002) 15.01/5.55 new_esEs18(@0, @0) -> True 15.01/5.55 new_esEs21(:(xy300, xy301), :(xy4000, xy4001), gb) -> new_asAs(new_esEs22(xy300, xy4000, gb), new_esEs21(xy301, xy4001, gb)) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_[], bcf)) -> new_esEs21(xy300, xy4000, bcf) 15.01/5.55 new_primMulNat0(Succ(xy30000), Succ(xy400100)) -> new_primPlusNat1(new_primMulNat0(xy30000, Succ(xy400100)), xy400100) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(ty_Either, bec), bed)) -> new_esEs13(xy302, xy4002, bec, bed) 15.01/5.55 new_esEs13(Left(xy300), Right(xy4000), dd, bh) -> False 15.01/5.55 new_esEs13(Right(xy300), Left(xy4000), dd, bh) -> False 15.01/5.55 new_esEs24(xy300, xy4000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs16(xy300, xy4000, bca, bcb, bcc) 15.01/5.55 new_asAs(True, xy35) -> xy35 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs4(xy30, xy400, ty_Integer) -> new_esEs12(xy30, xy400) 15.01/5.55 new_esEs5(xy30, xy400, app(app(ty_@2, fg), fh)) -> new_esEs19(xy30, xy400, fg, fh) 15.01/5.55 new_esEs4(xy30, xy400, ty_Bool) -> new_esEs20(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Pos(Zero)) -> False 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Bool) -> new_esEs20(xy302, xy4002) 15.01/5.55 new_esEs17(LT, LT) -> True 15.01/5.55 new_esEs23(xy301, xy4001, ty_Bool) -> new_esEs20(xy301, xy4001) 15.01/5.55 new_esEs24(xy300, xy4000, app(app(ty_@2, bcd), bce)) -> new_esEs19(xy300, xy4000, bcd, bce) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_primEqNat0(Succ(xy3000), Succ(xy40000)) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_@0, bh) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Int) -> new_esEs7(xy30, xy400) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_esEs5(xy30, xy400, app(ty_[], ga)) -> new_esEs21(xy30, xy400, ga) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_[], bgd)) -> new_esEs21(xy301, xy4001, bgd) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Char) -> new_esEs8(xy301, xy4001) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs15(Nothing, Just(xy4000), he) -> False 15.01/5.55 new_esEs15(Just(xy300), Nothing, he) -> False 15.01/5.55 new_esEs27(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs21([], [], gb) -> True 15.01/5.55 new_esEs23(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_primMulNat0(Zero, Zero) -> Zero 15.01/5.55 new_esEs15(Nothing, Nothing, he) -> True 15.01/5.55 new_esEs5(xy30, xy400, app(ty_Ratio, eh)) -> new_esEs9(xy30, xy400, eh) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs16(xy300, xy4000, bha, bhb, bhc) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(ty_Either, cc), cd), bh) -> new_esEs13(xy300, xy4000, cc, cd) 15.01/5.55 new_esEs4(xy30, xy400, ty_Int) -> new_esEs7(xy30, xy400) 15.01/5.55 new_primEqNat0(Succ(xy3000), Zero) -> False 15.01/5.55 new_primEqNat0(Zero, Succ(xy40000)) -> False 15.01/5.55 new_esEs12(Integer(xy300), Integer(xy4000)) -> new_primEqInt(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(app(ty_@2, bgb), bgc)) -> new_esEs19(xy301, xy4001, bgb, bgc) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(ty_@2, da), db), bh) -> new_esEs19(xy300, xy4000, da, db) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Double, bh) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_@0) -> new_esEs18(xy301, xy4001) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Ordering, bh) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs17(EQ, GT) -> False 15.01/5.55 new_esEs17(GT, EQ) -> False 15.01/5.55 new_esEs24(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs20(False, True) -> False 15.01/5.55 new_esEs20(True, False) -> False 15.01/5.55 new_esEs24(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_Ratio, bgf)) -> new_esEs9(xy300, xy4000, bgf) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(ty_@2, beh), bfa)) -> new_esEs19(xy302, xy4002, beh, bfa) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Ordering) -> new_esEs17(xy301, xy4001) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_[], bdh)) -> new_esEs21(xy300, xy4000, bdh) 15.01/5.55 new_esEs17(GT, GT) -> True 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Neg(Zero)) -> False 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(ty_@2, ed), ee)) -> new_esEs19(xy300, xy4000, ed, ee) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_Maybe, bcg)) -> new_esEs15(xy300, xy4000, bcg) 15.01/5.55 new_esEs5(xy30, xy400, ty_Float) -> new_esEs6(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Pos(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_Maybe, ca), bh) -> new_esEs15(xy300, xy4000, ca) 15.01/5.55 new_esEs24(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_@0) -> new_esEs18(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_[], bfb)) -> new_esEs21(xy302, xy4002, bfb) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Double) -> new_esEs14(xy301, xy4001) 15.01/5.55 new_esEs7(xy30, xy400) -> new_primEqInt(xy30, xy400) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_Ratio, bg)) -> new_esEs9(xy30, xy400, bg) 15.01/5.55 new_sr(Pos(xy3000), Neg(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_sr(Neg(xy3000), Pos(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(ty_@2, bdf), bdg)) -> new_esEs19(xy300, xy4000, bdf, bdg) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Integer) -> new_esEs12(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Neg(xy4000)) -> False 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Pos(xy4000)) -> False 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_[], dc), bh) -> new_esEs21(xy300, xy4000, dc) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs16(xy301, xy4001, bfg, bfh, bga) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_Ratio, gd)) -> new_esEs9(xy300, xy4000, gd) 15.01/5.55 new_esEs24(xy300, xy4000, app(app(ty_Either, bbg), bbh)) -> new_esEs13(xy300, xy4000, bbg, bbh) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(ty_@2, bbb), bbc)) -> new_esEs19(xy301, xy4001, bbb, bbc) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs20(False, False) -> True 15.01/5.55 new_esEs26(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_Maybe, bea)) -> new_esEs15(xy302, xy4002, bea) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_[], gb)) -> new_esEs21(xy30, xy400, gb) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Double) -> new_esEs14(xy301, xy4001) 15.01/5.55 new_esEs19(@2(xy300, xy301), @2(xy4000, xy4001), baa, bab) -> new_asAs(new_esEs24(xy300, xy4000, baa), new_esEs23(xy301, xy4001, bab)) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs16(xy300, xy4000, bdc, bdd, bde) 15.01/5.55 new_sr(Neg(xy3000), Neg(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_[], bbd)) -> new_esEs21(xy301, xy4001, bbd) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Float) -> new_esEs6(xy301, xy4001) 15.01/5.55 new_esEs4(xy30, xy400, ty_Double) -> new_esEs14(xy30, xy400) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_Maybe, bac)) -> new_esEs15(xy301, xy4001, bac) 15.01/5.55 new_esEs10(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_esEs14(Double(xy300, xy301), Double(xy4000, xy4001)) -> new_esEs7(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.01/5.55 new_esEs5(xy30, xy400, ty_Bool) -> new_esEs20(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Succ(xy40000))) -> False 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Integer, bh) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Bool) -> new_esEs20(xy301, xy4001) 15.01/5.55 new_esEs5(xy30, xy400, app(app(ty_Either, fa), fb)) -> new_esEs13(xy30, xy400, fa, fb) 15.01/5.55 new_primPlusNat0(Succ(xy3600), Succ(xy4001000)) -> Succ(Succ(new_primPlusNat0(xy3600, xy4001000))) 15.01/5.55 new_esEs27(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs11(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(ty_Either, ge), gf)) -> new_esEs13(xy300, xy4000, ge, gf) 15.01/5.55 new_esEs4(xy30, xy400, ty_Char) -> new_esEs8(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Double) -> new_esEs14(xy302, xy4002) 15.01/5.55 new_esEs17(EQ, EQ) -> True 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_Maybe, bge)) -> new_esEs15(xy300, xy4000, bge) 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Neg(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs17(LT, EQ) -> False 15.01/5.55 new_esEs17(EQ, LT) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Char) -> new_esEs8(xy301, xy4001) 15.01/5.55 new_esEs16(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), hf, hg, hh) -> new_asAs(new_esEs27(xy300, xy4000, hf), new_asAs(new_esEs26(xy301, xy4001, hg), new_esEs25(xy302, xy4002, hh))) 15.01/5.55 new_esEs4(xy30, xy400, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs16(xy30, xy400, hf, hg, hh) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Char, bh) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_Ratio, bad)) -> new_esEs9(xy301, xy4001, bad) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs16(xy302, xy4002, bee, bef, beg) 15.01/5.55 new_esEs21(:(xy300, xy301), [], gb) -> False 15.01/5.55 new_esEs21([], :(xy4000, xy4001), gb) -> False 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Bool, bh) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Float, bh) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(app(ty_@3, ce), cf), cg), bh) -> new_esEs16(xy300, xy4000, ce, cf, cg) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_Ratio, bfd)) -> new_esEs9(xy301, xy4001, bfd) 15.01/5.55 new_primMulNat0(Succ(xy30000), Zero) -> Zero 15.01/5.55 new_primMulNat0(Zero, Succ(xy400100)) -> Zero 15.01/5.55 new_sr(Pos(xy3000), Pos(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(ty_Either, dg), dh)) -> new_esEs13(xy300, xy4000, dg, dh) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs4(xy30, xy400, ty_Float) -> new_esEs6(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Float) -> new_esEs6(xy302, xy4002) 15.01/5.55 new_esEs6(Float(xy300, xy301), Float(xy4000, xy4001)) -> new_esEs7(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.01/5.55 new_primPlusNat1(Succ(xy360), xy400100) -> Succ(Succ(new_primPlusNat0(xy360, xy400100))) 15.01/5.55 new_esEs17(LT, GT) -> False 15.01/5.55 new_esEs17(GT, LT) -> False 15.01/5.55 new_esEs4(xy30, xy400, ty_@0) -> new_esEs18(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_@0) -> new_esEs18(xy302, xy4002) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_Ratio, beb)) -> new_esEs9(xy302, xy4002, beb) 15.01/5.55 new_primPlusNat0(Succ(xy3600), Zero) -> Succ(xy3600) 15.01/5.55 new_primPlusNat0(Zero, Succ(xy4001000)) -> Succ(xy4001000) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_primPlusNat1(Zero, xy400100) -> Succ(xy400100) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Float) -> new_esEs6(xy301, xy4001) 15.01/5.55 new_esEs22(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs20(True, True) -> True 15.01/5.55 new_esEs25(xy302, xy4002, ty_Char) -> new_esEs8(xy302, xy4002) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(ty_Either, bgg), bgh)) -> new_esEs13(xy300, xy4000, bgg, bgh) 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_[], bhf)) -> new_esEs21(xy300, xy4000, bhf) 15.01/5.55 new_esEs5(xy30, xy400, ty_Char) -> new_esEs8(xy30, xy400) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_Ratio, bbf)) -> new_esEs9(xy300, xy4000, bbf) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(ty_@2, bhd), bhe)) -> new_esEs19(xy300, xy4000, bhd, bhe) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 15.01/5.55 new_esEs26(xy301, xy4001, app(app(ty_Either, bfe), bff)) -> new_esEs13(xy301, xy4001, bfe, bff) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs9(:%(xy300, xy301), :%(xy4000, xy4001), bg) -> new_asAs(new_esEs11(xy300, xy4000, bg), new_esEs10(xy301, xy4001, bg)) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_Maybe, gc)) -> new_esEs15(xy300, xy4000, gc) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Int) -> new_esEs7(xy302, xy4002) 15.01/5.55 new_esEs5(xy30, xy400, ty_Double) -> new_esEs14(xy30, xy400) 15.01/5.55 new_primEqNat0(Zero, Zero) -> True 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_Ratio, df)) -> new_esEs9(xy300, xy4000, df) 15.01/5.55 new_asAs(False, xy35) -> False 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs8(Char(xy300), Char(xy4000)) -> new_primEqNat0(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs16(xy301, xy4001, bag, bah, bba) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_[], hd)) -> new_esEs21(xy300, xy4000, hd) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Ordering) -> new_esEs17(xy30, xy400) 15.01/5.55 new_esEs4(xy30, xy400, app(app(ty_@2, baa), bab)) -> new_esEs19(xy30, xy400, baa, bab) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_Maybe, he)) -> new_esEs15(xy30, xy400, he) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_Ratio, bch)) -> new_esEs9(xy300, xy4000, bch) 15.01/5.55 new_esEs5(xy30, xy400, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs16(xy30, xy400, fc, fd, ff) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Ordering) -> new_esEs17(xy301, xy4001) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs16(xy300, xy4000, ea, eb, ec) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_Ratio, cb), bh) -> new_esEs9(xy300, xy4000, cb) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 15.01/5.55 The set Q consists of the following terms: 15.01/5.55 15.01/5.55 new_esEs25(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs22(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_@0) 15.01/5.55 new_esEs4(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, ty_Bool) 15.01/5.55 new_esEs25(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, ty_@0) 15.01/5.55 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs23(x0, x1, ty_Bool) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Bool) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Bool, x2) 15.01/5.55 new_sr(Pos(x0), Neg(x1)) 15.01/5.55 new_sr(Neg(x0), Pos(x1)) 15.01/5.55 new_sr(Neg(x0), Neg(x1)) 15.01/5.55 new_primMulNat0(Zero, Zero) 15.01/5.55 new_esEs6(Float(x0, x1), Float(x2, x3)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 15.01/5.55 new_esEs22(x0, x1, ty_@0) 15.01/5.55 new_esEs24(x0, x1, ty_@0) 15.01/5.55 new_esEs4(x0, x1, app(ty_[], x2)) 15.01/5.55 new_asAs(True, x0) 15.01/5.55 new_esEs23(x0, x1, ty_@0) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_@0, x2) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 15.01/5.55 new_primMulNat0(Zero, Succ(x0)) 15.01/5.55 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Zero)) 15.01/5.55 new_esEs21(:(x0, x1), [], x2) 15.01/5.55 new_esEs7(x0, x1) 15.01/5.55 new_esEs22(x0, x1, ty_Bool) 15.01/5.55 new_esEs20(False, True) 15.01/5.55 new_esEs20(True, False) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 15.01/5.55 new_esEs22(x0, x1, ty_Char) 15.01/5.55 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Zero)) 15.01/5.55 new_esEs5(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs23(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs5(x0, x1, app(ty_[], x2)) 15.01/5.55 new_sr(Pos(x0), Pos(x1)) 15.01/5.55 new_esEs11(x0, x1, ty_Int) 15.01/5.55 new_primPlusNat0(Zero, Zero) 15.01/5.55 new_primMulNat0(Succ(x0), Zero) 15.01/5.55 new_esEs23(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Char) 15.01/5.55 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, ty_Ordering) 15.01/5.55 new_primEqNat0(Succ(x0), Succ(x1)) 15.01/5.55 new_primPlusNat0(Succ(x0), Zero) 15.01/5.55 new_esEs4(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs25(x0, x1, ty_@0) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 15.01/5.55 new_esEs15(Just(x0), Nothing, x1) 15.01/5.55 new_esEs27(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs12(Integer(x0), Integer(x1)) 15.01/5.55 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) 15.01/5.55 new_esEs10(x0, x1, ty_Integer) 15.01/5.55 new_esEs17(LT, EQ) 15.01/5.55 new_esEs17(EQ, LT) 15.01/5.55 new_primPlusNat1(Succ(x0), x1) 15.01/5.55 new_esEs24(x0, x1, ty_Integer) 15.01/5.55 new_esEs24(x0, x1, ty_Ordering) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Integer) 15.01/5.55 new_esEs25(x0, x1, ty_Double) 15.01/5.55 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 15.01/5.55 new_esEs13(Left(x0), Right(x1), x2, x3) 15.01/5.55 new_esEs13(Right(x0), Left(x1), x2, x3) 15.01/5.55 new_esEs22(x0, x1, ty_Int) 15.01/5.55 new_esEs17(GT, GT) 15.01/5.55 new_esEs24(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_Bool) 15.01/5.55 new_esEs17(EQ, GT) 15.01/5.55 new_esEs17(GT, EQ) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Integer) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Zero)) 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Zero)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 15.01/5.55 new_esEs21([], [], x0) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Integer, x2) 15.01/5.55 new_esEs23(x0, x1, ty_Integer) 15.01/5.55 new_esEs17(EQ, EQ) 15.01/5.55 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs15(Nothing, Nothing, x0) 15.01/5.55 new_esEs20(False, False) 15.01/5.55 new_esEs22(x0, x1, ty_Float) 15.01/5.55 new_esEs24(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 15.01/5.55 new_esEs25(x0, x1, ty_Bool) 15.01/5.55 new_primPlusNat0(Zero, Succ(x0)) 15.01/5.55 new_esEs26(x0, x1, ty_Integer) 15.01/5.55 new_esEs15(Nothing, Just(x0), x1) 15.01/5.55 new_esEs11(x0, x1, ty_Integer) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Double) 15.01/5.55 new_esEs17(LT, GT) 15.01/5.55 new_esEs17(GT, LT) 15.01/5.55 new_esEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 15.01/5.55 new_esEs4(x0, x1, ty_Int) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Float) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 15.01/5.55 new_esEs26(x0, x1, ty_Ordering) 15.01/5.55 new_esEs26(x0, x1, ty_Double) 15.01/5.55 new_esEs25(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Int, x2) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Char) 15.01/5.55 new_esEs22(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs20(True, True) 15.01/5.55 new_esEs25(x0, x1, ty_Int) 15.01/5.55 new_asAs(False, x0) 15.01/5.55 new_esEs23(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs23(x0, x1, ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) 15.01/5.55 new_esEs25(x0, x1, ty_Char) 15.01/5.55 new_esEs4(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs23(x0, x1, ty_Ordering) 15.01/5.55 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs22(x0, x1, app(ty_[], x2)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 15.01/5.55 new_esEs5(x0, x1, ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 15.01/5.55 new_esEs21(:(x0, x1), :(x2, x3), x4) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 15.01/5.55 new_esEs26(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs5(x0, x1, ty_Float) 15.01/5.55 new_esEs24(x0, x1, ty_Float) 15.01/5.55 new_esEs25(x0, x1, ty_Ordering) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Char, x2) 15.01/5.55 new_esEs27(x0, x1, ty_Integer) 15.01/5.55 new_esEs5(x0, x1, ty_Ordering) 15.01/5.55 new_esEs26(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_Double) 15.01/5.55 new_esEs4(x0, x1, ty_Ordering) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 15.01/5.55 new_primPlusNat1(Zero, x0) 15.01/5.55 new_esEs25(x0, x1, ty_Float) 15.01/5.55 new_esEs4(x0, x1, ty_Char) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Ordering) 15.01/5.55 new_esEs23(x0, x1, ty_Double) 15.01/5.55 new_esEs27(x0, x1, ty_Float) 15.01/5.55 new_esEs22(x0, x1, ty_Double) 15.01/5.55 new_esEs23(x0, x1, ty_Char) 15.01/5.55 new_esEs18(@0, @0) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Double, x2) 15.01/5.55 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Bool) 15.01/5.55 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 15.01/5.55 new_esEs22(x0, x1, ty_Integer) 15.01/5.55 new_primEqNat0(Zero, Zero) 15.01/5.55 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 15.01/5.55 new_esEs27(x0, x1, ty_Bool) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Double) 15.01/5.55 new_esEs17(LT, LT) 15.01/5.55 new_esEs24(x0, x1, ty_Int) 15.01/5.55 new_esEs26(x0, x1, ty_Char) 15.01/5.55 new_esEs27(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_@0) 15.01/5.55 new_primEqNat0(Succ(x0), Zero) 15.01/5.55 new_esEs5(x0, x1, ty_@0) 15.01/5.55 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs8(Char(x0), Char(x1)) 15.01/5.55 new_primMulNat0(Succ(x0), Succ(x1)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Int) 15.01/5.55 new_esEs27(x0, x1, ty_Int) 15.01/5.55 new_esEs24(x0, x1, ty_Bool) 15.01/5.55 new_esEs27(x0, x1, ty_@0) 15.01/5.55 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs4(x0, x1, ty_Float) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 15.01/5.55 new_esEs26(x0, x1, ty_Int) 15.01/5.55 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs24(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 15.01/5.55 new_esEs21([], :(x0, x1), x2) 15.01/5.55 new_esEs22(x0, x1, ty_Ordering) 15.01/5.55 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs24(x0, x1, ty_Double) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 15.01/5.55 new_esEs27(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs5(x0, x1, ty_Bool) 15.01/5.55 new_esEs5(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs5(x0, x1, ty_Double) 15.01/5.55 new_primPlusNat0(Succ(x0), Succ(x1)) 15.01/5.55 new_esEs5(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 15.01/5.55 new_esEs5(x0, x1, ty_Char) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_@0) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(ty_[], x2)) 15.01/5.55 new_esEs23(x0, x1, ty_Float) 15.01/5.55 new_esEs27(x0, x1, ty_Double) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Float, x2) 15.01/5.55 new_esEs14(Double(x0, x1), Double(x2, x3)) 15.01/5.55 new_esEs27(x0, x1, ty_Char) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 15.01/5.55 new_esEs10(x0, x1, ty_Int) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Float) 15.01/5.55 new_esEs24(x0, x1, ty_Char) 15.01/5.55 new_primEqNat0(Zero, Succ(x0)) 15.01/5.55 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs25(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs26(x0, x1, ty_Float) 15.01/5.55 15.01/5.55 We have to consider all minimal (P,Q,R)-chains. 15.01/5.55 ---------------------------------------- 15.01/5.55 15.01/5.55 (10) DependencyGraphProof (EQUIVALENT) 15.01/5.55 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 15.01/5.55 ---------------------------------------- 15.01/5.55 15.01/5.55 (11) 15.01/5.55 Complex Obligation (AND) 15.01/5.55 15.01/5.55 ---------------------------------------- 15.01/5.55 15.01/5.55 (12) 15.01/5.55 Obligation: 15.01/5.55 Q DP problem: 15.01/5.55 The TRS P consists of the following rules: 15.01/5.55 15.01/5.55 new_deleteBy(Left(xy30), :(Left(xy400), xy41), bc, bd) -> new_deleteBy0(xy41, xy400, xy30, new_esEs4(xy30, xy400, bc), bc, bd) 15.01/5.55 new_deleteBy0(xy10, xy11, xy12, False, ba, bb) -> new_deleteBy(Left(xy12), xy10, ba, bb) 15.01/5.55 new_deleteBy(Left(xy30), :(Right(xy400), xy41), bc, bd) -> new_deleteBy(Left(xy30), xy41, bc, bd) 15.01/5.55 15.01/5.55 The TRS R consists of the following rules: 15.01/5.55 15.01/5.55 new_esEs26(xy301, xy4001, ty_@0) -> new_esEs18(xy301, xy4001) 15.01/5.55 new_esEs11(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_[], ef)) -> new_esEs21(xy300, xy4000, ef) 15.01/5.55 new_esEs4(xy30, xy400, ty_Ordering) -> new_esEs17(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 15.01/5.55 new_primPlusNat0(Zero, Zero) -> Zero 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Int, bh) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs16(xy300, xy4000, gg, gh, ha) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, app(ty_Maybe, eg)) -> new_esEs15(xy30, xy400, eg) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_Maybe, bbe)) -> new_esEs15(xy300, xy4000, bbe) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(ty_@2, hb), hc)) -> new_esEs19(xy300, xy4000, hb, hc) 15.01/5.55 new_esEs4(xy30, xy400, app(app(ty_Either, dd), bh)) -> new_esEs13(xy30, xy400, dd, bh) 15.01/5.55 new_esEs10(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(ty_Either, bae), baf)) -> new_esEs13(xy301, xy4001, bae, baf) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Ordering) -> new_esEs17(xy302, xy4002) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(ty_Either, bda), bdb)) -> new_esEs13(xy300, xy4000, bda, bdb) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_Maybe, de)) -> new_esEs15(xy300, xy4000, de) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_Maybe, bfc)) -> new_esEs15(xy301, xy4001, bfc) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Integer) -> new_esEs12(xy302, xy4002) 15.01/5.55 new_esEs18(@0, @0) -> True 15.01/5.55 new_esEs21(:(xy300, xy301), :(xy4000, xy4001), gb) -> new_asAs(new_esEs22(xy300, xy4000, gb), new_esEs21(xy301, xy4001, gb)) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_[], bcf)) -> new_esEs21(xy300, xy4000, bcf) 15.01/5.55 new_primMulNat0(Succ(xy30000), Succ(xy400100)) -> new_primPlusNat1(new_primMulNat0(xy30000, Succ(xy400100)), xy400100) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(ty_Either, bec), bed)) -> new_esEs13(xy302, xy4002, bec, bed) 15.01/5.55 new_esEs13(Left(xy300), Right(xy4000), dd, bh) -> False 15.01/5.55 new_esEs13(Right(xy300), Left(xy4000), dd, bh) -> False 15.01/5.55 new_esEs24(xy300, xy4000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs16(xy300, xy4000, bca, bcb, bcc) 15.01/5.55 new_asAs(True, xy35) -> xy35 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs4(xy30, xy400, ty_Integer) -> new_esEs12(xy30, xy400) 15.01/5.55 new_esEs5(xy30, xy400, app(app(ty_@2, fg), fh)) -> new_esEs19(xy30, xy400, fg, fh) 15.01/5.55 new_esEs4(xy30, xy400, ty_Bool) -> new_esEs20(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Pos(Zero)) -> False 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Bool) -> new_esEs20(xy302, xy4002) 15.01/5.55 new_esEs17(LT, LT) -> True 15.01/5.55 new_esEs23(xy301, xy4001, ty_Bool) -> new_esEs20(xy301, xy4001) 15.01/5.55 new_esEs24(xy300, xy4000, app(app(ty_@2, bcd), bce)) -> new_esEs19(xy300, xy4000, bcd, bce) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_primEqNat0(Succ(xy3000), Succ(xy40000)) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_@0, bh) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Int) -> new_esEs7(xy30, xy400) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_esEs5(xy30, xy400, app(ty_[], ga)) -> new_esEs21(xy30, xy400, ga) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_[], bgd)) -> new_esEs21(xy301, xy4001, bgd) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Char) -> new_esEs8(xy301, xy4001) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs15(Nothing, Just(xy4000), he) -> False 15.01/5.55 new_esEs15(Just(xy300), Nothing, he) -> False 15.01/5.55 new_esEs27(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs21([], [], gb) -> True 15.01/5.55 new_esEs23(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_primMulNat0(Zero, Zero) -> Zero 15.01/5.55 new_esEs15(Nothing, Nothing, he) -> True 15.01/5.55 new_esEs5(xy30, xy400, app(ty_Ratio, eh)) -> new_esEs9(xy30, xy400, eh) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs16(xy300, xy4000, bha, bhb, bhc) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(ty_Either, cc), cd), bh) -> new_esEs13(xy300, xy4000, cc, cd) 15.01/5.55 new_esEs4(xy30, xy400, ty_Int) -> new_esEs7(xy30, xy400) 15.01/5.55 new_primEqNat0(Succ(xy3000), Zero) -> False 15.01/5.55 new_primEqNat0(Zero, Succ(xy40000)) -> False 15.01/5.55 new_esEs12(Integer(xy300), Integer(xy4000)) -> new_primEqInt(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(app(ty_@2, bgb), bgc)) -> new_esEs19(xy301, xy4001, bgb, bgc) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(ty_@2, da), db), bh) -> new_esEs19(xy300, xy4000, da, db) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Double, bh) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_@0) -> new_esEs18(xy301, xy4001) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Ordering, bh) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs17(EQ, GT) -> False 15.01/5.55 new_esEs17(GT, EQ) -> False 15.01/5.55 new_esEs24(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs20(False, True) -> False 15.01/5.55 new_esEs20(True, False) -> False 15.01/5.55 new_esEs24(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_Ratio, bgf)) -> new_esEs9(xy300, xy4000, bgf) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(ty_@2, beh), bfa)) -> new_esEs19(xy302, xy4002, beh, bfa) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Ordering) -> new_esEs17(xy301, xy4001) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_[], bdh)) -> new_esEs21(xy300, xy4000, bdh) 15.01/5.55 new_esEs17(GT, GT) -> True 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Neg(Zero)) -> False 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(ty_@2, ed), ee)) -> new_esEs19(xy300, xy4000, ed, ee) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_Maybe, bcg)) -> new_esEs15(xy300, xy4000, bcg) 15.01/5.55 new_esEs5(xy30, xy400, ty_Float) -> new_esEs6(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Pos(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_Maybe, ca), bh) -> new_esEs15(xy300, xy4000, ca) 15.01/5.55 new_esEs24(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_@0) -> new_esEs18(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_[], bfb)) -> new_esEs21(xy302, xy4002, bfb) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Double) -> new_esEs14(xy301, xy4001) 15.01/5.55 new_esEs7(xy30, xy400) -> new_primEqInt(xy30, xy400) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_Ratio, bg)) -> new_esEs9(xy30, xy400, bg) 15.01/5.55 new_sr(Pos(xy3000), Neg(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_sr(Neg(xy3000), Pos(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(ty_@2, bdf), bdg)) -> new_esEs19(xy300, xy4000, bdf, bdg) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Integer) -> new_esEs12(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Neg(xy4000)) -> False 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Pos(xy4000)) -> False 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_[], dc), bh) -> new_esEs21(xy300, xy4000, dc) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs16(xy301, xy4001, bfg, bfh, bga) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_Ratio, gd)) -> new_esEs9(xy300, xy4000, gd) 15.01/5.55 new_esEs24(xy300, xy4000, app(app(ty_Either, bbg), bbh)) -> new_esEs13(xy300, xy4000, bbg, bbh) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(ty_@2, bbb), bbc)) -> new_esEs19(xy301, xy4001, bbb, bbc) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs20(False, False) -> True 15.01/5.55 new_esEs26(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_Maybe, bea)) -> new_esEs15(xy302, xy4002, bea) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_[], gb)) -> new_esEs21(xy30, xy400, gb) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Double) -> new_esEs14(xy301, xy4001) 15.01/5.55 new_esEs19(@2(xy300, xy301), @2(xy4000, xy4001), baa, bab) -> new_asAs(new_esEs24(xy300, xy4000, baa), new_esEs23(xy301, xy4001, bab)) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs16(xy300, xy4000, bdc, bdd, bde) 15.01/5.55 new_sr(Neg(xy3000), Neg(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_[], bbd)) -> new_esEs21(xy301, xy4001, bbd) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Float) -> new_esEs6(xy301, xy4001) 15.01/5.55 new_esEs4(xy30, xy400, ty_Double) -> new_esEs14(xy30, xy400) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_Maybe, bac)) -> new_esEs15(xy301, xy4001, bac) 15.01/5.55 new_esEs10(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_esEs14(Double(xy300, xy301), Double(xy4000, xy4001)) -> new_esEs7(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.01/5.55 new_esEs5(xy30, xy400, ty_Bool) -> new_esEs20(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Succ(xy40000))) -> False 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Integer, bh) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Bool) -> new_esEs20(xy301, xy4001) 15.01/5.55 new_esEs5(xy30, xy400, app(app(ty_Either, fa), fb)) -> new_esEs13(xy30, xy400, fa, fb) 15.01/5.55 new_primPlusNat0(Succ(xy3600), Succ(xy4001000)) -> Succ(Succ(new_primPlusNat0(xy3600, xy4001000))) 15.01/5.55 new_esEs27(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs11(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(ty_Either, ge), gf)) -> new_esEs13(xy300, xy4000, ge, gf) 15.01/5.55 new_esEs4(xy30, xy400, ty_Char) -> new_esEs8(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Double) -> new_esEs14(xy302, xy4002) 15.01/5.55 new_esEs17(EQ, EQ) -> True 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_Maybe, bge)) -> new_esEs15(xy300, xy4000, bge) 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Neg(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs17(LT, EQ) -> False 15.01/5.55 new_esEs17(EQ, LT) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Char) -> new_esEs8(xy301, xy4001) 15.01/5.55 new_esEs16(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), hf, hg, hh) -> new_asAs(new_esEs27(xy300, xy4000, hf), new_asAs(new_esEs26(xy301, xy4001, hg), new_esEs25(xy302, xy4002, hh))) 15.01/5.55 new_esEs4(xy30, xy400, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs16(xy30, xy400, hf, hg, hh) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Char, bh) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_Ratio, bad)) -> new_esEs9(xy301, xy4001, bad) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs16(xy302, xy4002, bee, bef, beg) 15.01/5.55 new_esEs21(:(xy300, xy301), [], gb) -> False 15.01/5.55 new_esEs21([], :(xy4000, xy4001), gb) -> False 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Bool, bh) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Float, bh) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(app(ty_@3, ce), cf), cg), bh) -> new_esEs16(xy300, xy4000, ce, cf, cg) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_Ratio, bfd)) -> new_esEs9(xy301, xy4001, bfd) 15.01/5.55 new_primMulNat0(Succ(xy30000), Zero) -> Zero 15.01/5.55 new_primMulNat0(Zero, Succ(xy400100)) -> Zero 15.01/5.55 new_sr(Pos(xy3000), Pos(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(ty_Either, dg), dh)) -> new_esEs13(xy300, xy4000, dg, dh) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs4(xy30, xy400, ty_Float) -> new_esEs6(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Float) -> new_esEs6(xy302, xy4002) 15.01/5.55 new_esEs6(Float(xy300, xy301), Float(xy4000, xy4001)) -> new_esEs7(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.01/5.55 new_primPlusNat1(Succ(xy360), xy400100) -> Succ(Succ(new_primPlusNat0(xy360, xy400100))) 15.01/5.55 new_esEs17(LT, GT) -> False 15.01/5.55 new_esEs17(GT, LT) -> False 15.01/5.55 new_esEs4(xy30, xy400, ty_@0) -> new_esEs18(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_@0) -> new_esEs18(xy302, xy4002) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_Ratio, beb)) -> new_esEs9(xy302, xy4002, beb) 15.01/5.55 new_primPlusNat0(Succ(xy3600), Zero) -> Succ(xy3600) 15.01/5.55 new_primPlusNat0(Zero, Succ(xy4001000)) -> Succ(xy4001000) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_primPlusNat1(Zero, xy400100) -> Succ(xy400100) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Float) -> new_esEs6(xy301, xy4001) 15.01/5.55 new_esEs22(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs20(True, True) -> True 15.01/5.55 new_esEs25(xy302, xy4002, ty_Char) -> new_esEs8(xy302, xy4002) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(ty_Either, bgg), bgh)) -> new_esEs13(xy300, xy4000, bgg, bgh) 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_[], bhf)) -> new_esEs21(xy300, xy4000, bhf) 15.01/5.55 new_esEs5(xy30, xy400, ty_Char) -> new_esEs8(xy30, xy400) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_Ratio, bbf)) -> new_esEs9(xy300, xy4000, bbf) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(ty_@2, bhd), bhe)) -> new_esEs19(xy300, xy4000, bhd, bhe) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 15.01/5.55 new_esEs26(xy301, xy4001, app(app(ty_Either, bfe), bff)) -> new_esEs13(xy301, xy4001, bfe, bff) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs9(:%(xy300, xy301), :%(xy4000, xy4001), bg) -> new_asAs(new_esEs11(xy300, xy4000, bg), new_esEs10(xy301, xy4001, bg)) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_Maybe, gc)) -> new_esEs15(xy300, xy4000, gc) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Int) -> new_esEs7(xy302, xy4002) 15.01/5.55 new_esEs5(xy30, xy400, ty_Double) -> new_esEs14(xy30, xy400) 15.01/5.55 new_primEqNat0(Zero, Zero) -> True 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_Ratio, df)) -> new_esEs9(xy300, xy4000, df) 15.01/5.55 new_asAs(False, xy35) -> False 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs8(Char(xy300), Char(xy4000)) -> new_primEqNat0(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs16(xy301, xy4001, bag, bah, bba) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_[], hd)) -> new_esEs21(xy300, xy4000, hd) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Ordering) -> new_esEs17(xy30, xy400) 15.01/5.55 new_esEs4(xy30, xy400, app(app(ty_@2, baa), bab)) -> new_esEs19(xy30, xy400, baa, bab) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_Maybe, he)) -> new_esEs15(xy30, xy400, he) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_Ratio, bch)) -> new_esEs9(xy300, xy4000, bch) 15.01/5.55 new_esEs5(xy30, xy400, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs16(xy30, xy400, fc, fd, ff) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Ordering) -> new_esEs17(xy301, xy4001) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs16(xy300, xy4000, ea, eb, ec) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_Ratio, cb), bh) -> new_esEs9(xy300, xy4000, cb) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 15.01/5.55 The set Q consists of the following terms: 15.01/5.55 15.01/5.55 new_esEs25(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs22(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_@0) 15.01/5.55 new_esEs4(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, ty_Bool) 15.01/5.55 new_esEs25(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, ty_@0) 15.01/5.55 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs23(x0, x1, ty_Bool) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Bool) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Bool, x2) 15.01/5.55 new_sr(Pos(x0), Neg(x1)) 15.01/5.55 new_sr(Neg(x0), Pos(x1)) 15.01/5.55 new_sr(Neg(x0), Neg(x1)) 15.01/5.55 new_primMulNat0(Zero, Zero) 15.01/5.55 new_esEs6(Float(x0, x1), Float(x2, x3)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 15.01/5.55 new_esEs22(x0, x1, ty_@0) 15.01/5.55 new_esEs24(x0, x1, ty_@0) 15.01/5.55 new_esEs4(x0, x1, app(ty_[], x2)) 15.01/5.55 new_asAs(True, x0) 15.01/5.55 new_esEs23(x0, x1, ty_@0) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_@0, x2) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 15.01/5.55 new_primMulNat0(Zero, Succ(x0)) 15.01/5.55 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Zero)) 15.01/5.55 new_esEs21(:(x0, x1), [], x2) 15.01/5.55 new_esEs7(x0, x1) 15.01/5.55 new_esEs22(x0, x1, ty_Bool) 15.01/5.55 new_esEs20(False, True) 15.01/5.55 new_esEs20(True, False) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 15.01/5.55 new_esEs22(x0, x1, ty_Char) 15.01/5.55 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Zero)) 15.01/5.55 new_esEs5(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs23(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs5(x0, x1, app(ty_[], x2)) 15.01/5.55 new_sr(Pos(x0), Pos(x1)) 15.01/5.55 new_esEs11(x0, x1, ty_Int) 15.01/5.55 new_primPlusNat0(Zero, Zero) 15.01/5.55 new_primMulNat0(Succ(x0), Zero) 15.01/5.55 new_esEs23(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Char) 15.01/5.55 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, ty_Ordering) 15.01/5.55 new_primEqNat0(Succ(x0), Succ(x1)) 15.01/5.55 new_primPlusNat0(Succ(x0), Zero) 15.01/5.55 new_esEs4(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs25(x0, x1, ty_@0) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 15.01/5.55 new_esEs15(Just(x0), Nothing, x1) 15.01/5.55 new_esEs27(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs12(Integer(x0), Integer(x1)) 15.01/5.55 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) 15.01/5.55 new_esEs10(x0, x1, ty_Integer) 15.01/5.55 new_esEs17(LT, EQ) 15.01/5.55 new_esEs17(EQ, LT) 15.01/5.55 new_primPlusNat1(Succ(x0), x1) 15.01/5.55 new_esEs24(x0, x1, ty_Integer) 15.01/5.55 new_esEs24(x0, x1, ty_Ordering) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Integer) 15.01/5.55 new_esEs25(x0, x1, ty_Double) 15.01/5.55 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 15.01/5.55 new_esEs13(Left(x0), Right(x1), x2, x3) 15.01/5.55 new_esEs13(Right(x0), Left(x1), x2, x3) 15.01/5.55 new_esEs22(x0, x1, ty_Int) 15.01/5.55 new_esEs17(GT, GT) 15.01/5.55 new_esEs24(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_Bool) 15.01/5.55 new_esEs17(EQ, GT) 15.01/5.55 new_esEs17(GT, EQ) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Integer) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Zero)) 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Zero)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 15.01/5.55 new_esEs21([], [], x0) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Integer, x2) 15.01/5.55 new_esEs23(x0, x1, ty_Integer) 15.01/5.55 new_esEs17(EQ, EQ) 15.01/5.55 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs15(Nothing, Nothing, x0) 15.01/5.55 new_esEs20(False, False) 15.01/5.55 new_esEs22(x0, x1, ty_Float) 15.01/5.55 new_esEs24(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 15.01/5.55 new_esEs25(x0, x1, ty_Bool) 15.01/5.55 new_primPlusNat0(Zero, Succ(x0)) 15.01/5.55 new_esEs26(x0, x1, ty_Integer) 15.01/5.55 new_esEs15(Nothing, Just(x0), x1) 15.01/5.55 new_esEs11(x0, x1, ty_Integer) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Double) 15.01/5.55 new_esEs17(LT, GT) 15.01/5.55 new_esEs17(GT, LT) 15.01/5.55 new_esEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 15.01/5.55 new_esEs4(x0, x1, ty_Int) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Float) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 15.01/5.55 new_esEs26(x0, x1, ty_Ordering) 15.01/5.55 new_esEs26(x0, x1, ty_Double) 15.01/5.55 new_esEs25(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Int, x2) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Char) 15.01/5.55 new_esEs22(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs20(True, True) 15.01/5.55 new_esEs25(x0, x1, ty_Int) 15.01/5.55 new_asAs(False, x0) 15.01/5.55 new_esEs23(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs23(x0, x1, ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) 15.01/5.55 new_esEs25(x0, x1, ty_Char) 15.01/5.55 new_esEs4(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs23(x0, x1, ty_Ordering) 15.01/5.55 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs22(x0, x1, app(ty_[], x2)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 15.01/5.55 new_esEs5(x0, x1, ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 15.01/5.55 new_esEs21(:(x0, x1), :(x2, x3), x4) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 15.01/5.55 new_esEs26(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs5(x0, x1, ty_Float) 15.01/5.55 new_esEs24(x0, x1, ty_Float) 15.01/5.55 new_esEs25(x0, x1, ty_Ordering) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Char, x2) 15.01/5.55 new_esEs27(x0, x1, ty_Integer) 15.01/5.55 new_esEs5(x0, x1, ty_Ordering) 15.01/5.55 new_esEs26(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_Double) 15.01/5.55 new_esEs4(x0, x1, ty_Ordering) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 15.01/5.55 new_primPlusNat1(Zero, x0) 15.01/5.55 new_esEs25(x0, x1, ty_Float) 15.01/5.55 new_esEs4(x0, x1, ty_Char) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Ordering) 15.01/5.55 new_esEs23(x0, x1, ty_Double) 15.01/5.55 new_esEs27(x0, x1, ty_Float) 15.01/5.55 new_esEs22(x0, x1, ty_Double) 15.01/5.55 new_esEs23(x0, x1, ty_Char) 15.01/5.55 new_esEs18(@0, @0) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Double, x2) 15.01/5.55 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Bool) 15.01/5.55 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 15.01/5.55 new_esEs22(x0, x1, ty_Integer) 15.01/5.55 new_primEqNat0(Zero, Zero) 15.01/5.55 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 15.01/5.55 new_esEs27(x0, x1, ty_Bool) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Double) 15.01/5.55 new_esEs17(LT, LT) 15.01/5.55 new_esEs24(x0, x1, ty_Int) 15.01/5.55 new_esEs26(x0, x1, ty_Char) 15.01/5.55 new_esEs27(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_@0) 15.01/5.55 new_primEqNat0(Succ(x0), Zero) 15.01/5.55 new_esEs5(x0, x1, ty_@0) 15.01/5.55 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs8(Char(x0), Char(x1)) 15.01/5.55 new_primMulNat0(Succ(x0), Succ(x1)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Int) 15.01/5.55 new_esEs27(x0, x1, ty_Int) 15.01/5.55 new_esEs24(x0, x1, ty_Bool) 15.01/5.55 new_esEs27(x0, x1, ty_@0) 15.01/5.55 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs4(x0, x1, ty_Float) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 15.01/5.55 new_esEs26(x0, x1, ty_Int) 15.01/5.55 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs24(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 15.01/5.55 new_esEs21([], :(x0, x1), x2) 15.01/5.55 new_esEs22(x0, x1, ty_Ordering) 15.01/5.55 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs24(x0, x1, ty_Double) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 15.01/5.55 new_esEs27(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs5(x0, x1, ty_Bool) 15.01/5.55 new_esEs5(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs5(x0, x1, ty_Double) 15.01/5.55 new_primPlusNat0(Succ(x0), Succ(x1)) 15.01/5.55 new_esEs5(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 15.01/5.55 new_esEs5(x0, x1, ty_Char) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_@0) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(ty_[], x2)) 15.01/5.55 new_esEs23(x0, x1, ty_Float) 15.01/5.55 new_esEs27(x0, x1, ty_Double) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Float, x2) 15.01/5.55 new_esEs14(Double(x0, x1), Double(x2, x3)) 15.01/5.55 new_esEs27(x0, x1, ty_Char) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 15.01/5.55 new_esEs10(x0, x1, ty_Int) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Float) 15.01/5.55 new_esEs24(x0, x1, ty_Char) 15.01/5.55 new_primEqNat0(Zero, Succ(x0)) 15.01/5.55 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs25(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs26(x0, x1, ty_Float) 15.01/5.55 15.01/5.55 We have to consider all minimal (P,Q,R)-chains. 15.01/5.55 ---------------------------------------- 15.01/5.55 15.01/5.55 (13) QDPSizeChangeProof (EQUIVALENT) 15.01/5.55 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. 15.01/5.55 15.01/5.55 From the DPs we obtained the following set of size-change graphs: 15.01/5.55 *new_deleteBy0(xy10, xy11, xy12, False, ba, bb) -> new_deleteBy(Left(xy12), xy10, ba, bb) 15.01/5.55 The graph contains the following edges 1 >= 2, 5 >= 3, 6 >= 4 15.01/5.55 15.01/5.55 15.01/5.55 *new_deleteBy(Left(xy30), :(Right(xy400), xy41), bc, bd) -> new_deleteBy(Left(xy30), xy41, bc, bd) 15.01/5.55 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 15.01/5.55 15.01/5.55 15.01/5.55 *new_deleteBy(Left(xy30), :(Left(xy400), xy41), bc, bd) -> new_deleteBy0(xy41, xy400, xy30, new_esEs4(xy30, xy400, bc), bc, bd) 15.01/5.55 The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 3 >= 5, 4 >= 6 15.01/5.55 15.01/5.55 15.01/5.55 ---------------------------------------- 15.01/5.55 15.01/5.55 (14) 15.01/5.55 YES 15.01/5.55 15.01/5.55 ---------------------------------------- 15.01/5.55 15.01/5.55 (15) 15.01/5.55 Obligation: 15.01/5.55 Q DP problem: 15.01/5.55 The TRS P consists of the following rules: 15.01/5.55 15.01/5.55 new_deleteBy(Right(xy30), :(Left(xy400), xy41), bc, bd) -> new_deleteBy(Right(xy30), xy41, bc, bd) 15.01/5.55 new_deleteBy(Right(xy30), :(Right(xy400), xy41), bc, bd) -> new_deleteBy00(xy41, xy400, xy30, new_esEs5(xy30, xy400, bd), bc, bd) 15.01/5.55 new_deleteBy00(xy19, xy20, xy21, False, be, bf) -> new_deleteBy(Right(xy21), xy19, be, bf) 15.01/5.55 15.01/5.55 The TRS R consists of the following rules: 15.01/5.55 15.01/5.55 new_esEs26(xy301, xy4001, ty_@0) -> new_esEs18(xy301, xy4001) 15.01/5.55 new_esEs11(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_[], ef)) -> new_esEs21(xy300, xy4000, ef) 15.01/5.55 new_esEs4(xy30, xy400, ty_Ordering) -> new_esEs17(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 15.01/5.55 new_primPlusNat0(Zero, Zero) -> Zero 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Int, bh) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs16(xy300, xy4000, gg, gh, ha) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, app(ty_Maybe, eg)) -> new_esEs15(xy30, xy400, eg) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_Maybe, bbe)) -> new_esEs15(xy300, xy4000, bbe) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(ty_@2, hb), hc)) -> new_esEs19(xy300, xy4000, hb, hc) 15.01/5.55 new_esEs4(xy30, xy400, app(app(ty_Either, dd), bh)) -> new_esEs13(xy30, xy400, dd, bh) 15.01/5.55 new_esEs10(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(ty_Either, bae), baf)) -> new_esEs13(xy301, xy4001, bae, baf) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Ordering) -> new_esEs17(xy302, xy4002) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(ty_Either, bda), bdb)) -> new_esEs13(xy300, xy4000, bda, bdb) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_Maybe, de)) -> new_esEs15(xy300, xy4000, de) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_Maybe, bfc)) -> new_esEs15(xy301, xy4001, bfc) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Integer) -> new_esEs12(xy302, xy4002) 15.01/5.55 new_esEs18(@0, @0) -> True 15.01/5.55 new_esEs21(:(xy300, xy301), :(xy4000, xy4001), gb) -> new_asAs(new_esEs22(xy300, xy4000, gb), new_esEs21(xy301, xy4001, gb)) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_[], bcf)) -> new_esEs21(xy300, xy4000, bcf) 15.01/5.55 new_primMulNat0(Succ(xy30000), Succ(xy400100)) -> new_primPlusNat1(new_primMulNat0(xy30000, Succ(xy400100)), xy400100) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(ty_Either, bec), bed)) -> new_esEs13(xy302, xy4002, bec, bed) 15.01/5.55 new_esEs13(Left(xy300), Right(xy4000), dd, bh) -> False 15.01/5.55 new_esEs13(Right(xy300), Left(xy4000), dd, bh) -> False 15.01/5.55 new_esEs24(xy300, xy4000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs16(xy300, xy4000, bca, bcb, bcc) 15.01/5.55 new_asAs(True, xy35) -> xy35 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs4(xy30, xy400, ty_Integer) -> new_esEs12(xy30, xy400) 15.01/5.55 new_esEs5(xy30, xy400, app(app(ty_@2, fg), fh)) -> new_esEs19(xy30, xy400, fg, fh) 15.01/5.55 new_esEs4(xy30, xy400, ty_Bool) -> new_esEs20(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Pos(Zero)) -> False 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Bool) -> new_esEs20(xy302, xy4002) 15.01/5.55 new_esEs17(LT, LT) -> True 15.01/5.55 new_esEs23(xy301, xy4001, ty_Bool) -> new_esEs20(xy301, xy4001) 15.01/5.55 new_esEs24(xy300, xy4000, app(app(ty_@2, bcd), bce)) -> new_esEs19(xy300, xy4000, bcd, bce) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_primEqNat0(Succ(xy3000), Succ(xy40000)) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_@0, bh) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Int) -> new_esEs7(xy30, xy400) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_esEs5(xy30, xy400, app(ty_[], ga)) -> new_esEs21(xy30, xy400, ga) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_[], bgd)) -> new_esEs21(xy301, xy4001, bgd) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Char) -> new_esEs8(xy301, xy4001) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs15(Nothing, Just(xy4000), he) -> False 15.01/5.55 new_esEs15(Just(xy300), Nothing, he) -> False 15.01/5.55 new_esEs27(xy300, xy4000, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs21([], [], gb) -> True 15.01/5.55 new_esEs23(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_primMulNat0(Zero, Zero) -> Zero 15.01/5.55 new_esEs15(Nothing, Nothing, he) -> True 15.01/5.55 new_esEs5(xy30, xy400, app(ty_Ratio, eh)) -> new_esEs9(xy30, xy400, eh) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs16(xy300, xy4000, bha, bhb, bhc) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(ty_Either, cc), cd), bh) -> new_esEs13(xy300, xy4000, cc, cd) 15.01/5.55 new_esEs4(xy30, xy400, ty_Int) -> new_esEs7(xy30, xy400) 15.01/5.55 new_primEqNat0(Succ(xy3000), Zero) -> False 15.01/5.55 new_primEqNat0(Zero, Succ(xy40000)) -> False 15.01/5.55 new_esEs12(Integer(xy300), Integer(xy4000)) -> new_primEqInt(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(app(ty_@2, bgb), bgc)) -> new_esEs19(xy301, xy4001, bgb, bgc) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(ty_@2, da), db), bh) -> new_esEs19(xy300, xy4000, da, db) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Double, bh) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_@0) -> new_esEs18(xy301, xy4001) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Ordering, bh) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs17(EQ, GT) -> False 15.01/5.55 new_esEs17(GT, EQ) -> False 15.01/5.55 new_esEs24(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs20(False, True) -> False 15.01/5.55 new_esEs20(True, False) -> False 15.01/5.55 new_esEs24(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_Ratio, bgf)) -> new_esEs9(xy300, xy4000, bgf) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(ty_@2, beh), bfa)) -> new_esEs19(xy302, xy4002, beh, bfa) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Ordering) -> new_esEs17(xy301, xy4001) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_[], bdh)) -> new_esEs21(xy300, xy4000, bdh) 15.01/5.55 new_esEs17(GT, GT) -> True 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Neg(Zero)) -> False 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(ty_@2, ed), ee)) -> new_esEs19(xy300, xy4000, ed, ee) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_Maybe, bcg)) -> new_esEs15(xy300, xy4000, bcg) 15.01/5.55 new_esEs5(xy30, xy400, ty_Float) -> new_esEs6(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Pos(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_Maybe, ca), bh) -> new_esEs15(xy300, xy4000, ca) 15.01/5.55 new_esEs24(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_@0) -> new_esEs18(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_[], bfb)) -> new_esEs21(xy302, xy4002, bfb) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Double) -> new_esEs14(xy301, xy4001) 15.01/5.55 new_esEs7(xy30, xy400) -> new_primEqInt(xy30, xy400) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_Ratio, bg)) -> new_esEs9(xy30, xy400, bg) 15.01/5.55 new_sr(Pos(xy3000), Neg(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_sr(Neg(xy3000), Pos(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(ty_@2, bdf), bdg)) -> new_esEs19(xy300, xy4000, bdf, bdg) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Integer) -> new_esEs12(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Succ(xy3000)), Neg(xy4000)) -> False 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Pos(xy4000)) -> False 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_[], dc), bh) -> new_esEs21(xy300, xy4000, dc) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs16(xy301, xy4001, bfg, bfh, bga) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_Ratio, gd)) -> new_esEs9(xy300, xy4000, gd) 15.01/5.55 new_esEs24(xy300, xy4000, app(app(ty_Either, bbg), bbh)) -> new_esEs13(xy300, xy4000, bbg, bbh) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(ty_@2, bbb), bbc)) -> new_esEs19(xy301, xy4001, bbb, bbc) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs20(False, False) -> True 15.01/5.55 new_esEs26(xy301, xy4001, ty_Integer) -> new_esEs12(xy301, xy4001) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_Maybe, bea)) -> new_esEs15(xy302, xy4002, bea) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_[], gb)) -> new_esEs21(xy30, xy400, gb) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Double) -> new_esEs14(xy301, xy4001) 15.01/5.55 new_esEs19(@2(xy300, xy301), @2(xy4000, xy4001), baa, bab) -> new_asAs(new_esEs24(xy300, xy4000, baa), new_esEs23(xy301, xy4001, bab)) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs16(xy300, xy4000, bdc, bdd, bde) 15.01/5.55 new_sr(Neg(xy3000), Neg(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_[], bbd)) -> new_esEs21(xy301, xy4001, bbd) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Float) -> new_esEs6(xy301, xy4001) 15.01/5.55 new_esEs4(xy30, xy400, ty_Double) -> new_esEs14(xy30, xy400) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Double) -> new_esEs14(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_Maybe, bac)) -> new_esEs15(xy301, xy4001, bac) 15.01/5.55 new_esEs10(xy301, xy4001, ty_Int) -> new_esEs7(xy301, xy4001) 15.01/5.55 new_esEs14(Double(xy300, xy301), Double(xy4000, xy4001)) -> new_esEs7(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.01/5.55 new_esEs5(xy30, xy400, ty_Bool) -> new_esEs20(xy30, xy400) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Succ(xy40000))) -> False 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Succ(xy40000))) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Integer, bh) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Bool) -> new_esEs20(xy301, xy4001) 15.01/5.55 new_esEs5(xy30, xy400, app(app(ty_Either, fa), fb)) -> new_esEs13(xy30, xy400, fa, fb) 15.01/5.55 new_primPlusNat0(Succ(xy3600), Succ(xy4001000)) -> Succ(Succ(new_primPlusNat0(xy3600, xy4001000))) 15.01/5.55 new_esEs27(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs11(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, app(app(ty_Either, ge), gf)) -> new_esEs13(xy300, xy4000, ge, gf) 15.01/5.55 new_esEs4(xy30, xy400, ty_Char) -> new_esEs8(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Double) -> new_esEs14(xy302, xy4002) 15.01/5.55 new_esEs17(EQ, EQ) -> True 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_Maybe, bge)) -> new_esEs15(xy300, xy4000, bge) 15.01/5.55 new_primEqInt(Neg(Succ(xy3000)), Neg(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs17(LT, EQ) -> False 15.01/5.55 new_esEs17(EQ, LT) -> False 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Char) -> new_esEs8(xy301, xy4001) 15.01/5.55 new_esEs16(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), hf, hg, hh) -> new_asAs(new_esEs27(xy300, xy4000, hf), new_asAs(new_esEs26(xy301, xy4001, hg), new_esEs25(xy302, xy4002, hh))) 15.01/5.55 new_esEs4(xy30, xy400, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs16(xy30, xy400, hf, hg, hh) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Char, bh) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Ordering) -> new_esEs17(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(ty_Ratio, bad)) -> new_esEs9(xy301, xy4001, bad) 15.01/5.55 new_esEs25(xy302, xy4002, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs16(xy302, xy4002, bee, bef, beg) 15.01/5.55 new_esEs21(:(xy300, xy301), [], gb) -> False 15.01/5.55 new_esEs21([], :(xy4000, xy4001), gb) -> False 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Bool, bh) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), ty_Float, bh) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(app(app(ty_@3, ce), cf), cg), bh) -> new_esEs16(xy300, xy4000, ce, cf, cg) 15.01/5.55 new_esEs26(xy301, xy4001, app(ty_Ratio, bfd)) -> new_esEs9(xy301, xy4001, bfd) 15.01/5.55 new_primMulNat0(Succ(xy30000), Zero) -> Zero 15.01/5.55 new_primMulNat0(Zero, Succ(xy400100)) -> Zero 15.01/5.55 new_sr(Pos(xy3000), Pos(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(ty_Either, dg), dh)) -> new_esEs13(xy300, xy4000, dg, dh) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_esEs4(xy30, xy400, ty_Float) -> new_esEs6(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Float) -> new_esEs6(xy302, xy4002) 15.01/5.55 new_esEs6(Float(xy300, xy301), Float(xy4000, xy4001)) -> new_esEs7(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.01/5.55 new_primPlusNat1(Succ(xy360), xy400100) -> Succ(Succ(new_primPlusNat0(xy360, xy400100))) 15.01/5.55 new_esEs17(LT, GT) -> False 15.01/5.55 new_esEs17(GT, LT) -> False 15.01/5.55 new_esEs4(xy30, xy400, ty_@0) -> new_esEs18(xy30, xy400) 15.01/5.55 new_esEs25(xy302, xy4002, ty_@0) -> new_esEs18(xy302, xy4002) 15.01/5.55 new_esEs25(xy302, xy4002, app(ty_Ratio, beb)) -> new_esEs9(xy302, xy4002, beb) 15.01/5.55 new_primPlusNat0(Succ(xy3600), Zero) -> Succ(xy3600) 15.01/5.55 new_primPlusNat0(Zero, Succ(xy4001000)) -> Succ(xy4001000) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_primPlusNat1(Zero, xy400100) -> Succ(xy400100) 15.01/5.55 new_esEs26(xy301, xy4001, ty_Float) -> new_esEs6(xy301, xy4001) 15.01/5.55 new_esEs22(xy300, xy4000, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs20(True, True) -> True 15.01/5.55 new_esEs25(xy302, xy4002, ty_Char) -> new_esEs8(xy302, xy4002) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(ty_Either, bgg), bgh)) -> new_esEs13(xy300, xy4000, bgg, bgh) 15.01/5.55 new_esEs27(xy300, xy4000, app(ty_[], bhf)) -> new_esEs21(xy300, xy4000, bhf) 15.01/5.55 new_esEs5(xy30, xy400, ty_Char) -> new_esEs8(xy30, xy400) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_@0) -> new_esEs18(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs24(xy300, xy4000, app(ty_Ratio, bbf)) -> new_esEs9(xy300, xy4000, bbf) 15.01/5.55 new_esEs27(xy300, xy4000, app(app(ty_@2, bhd), bhe)) -> new_esEs19(xy300, xy4000, bhd, bhe) 15.01/5.55 new_esEs27(xy300, xy4000, ty_Float) -> new_esEs6(xy300, xy4000) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 15.01/5.55 new_esEs26(xy301, xy4001, app(app(ty_Either, bfe), bff)) -> new_esEs13(xy301, xy4001, bfe, bff) 15.01/5.55 new_esEs22(xy300, xy4000, ty_Bool) -> new_esEs20(xy300, xy4000) 15.01/5.55 new_esEs9(:%(xy300, xy301), :%(xy4000, xy4001), bg) -> new_asAs(new_esEs11(xy300, xy4000, bg), new_esEs10(xy301, xy4001, bg)) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_Maybe, gc)) -> new_esEs15(xy300, xy4000, gc) 15.01/5.55 new_esEs25(xy302, xy4002, ty_Int) -> new_esEs7(xy302, xy4002) 15.01/5.55 new_esEs5(xy30, xy400, ty_Double) -> new_esEs14(xy30, xy400) 15.01/5.55 new_primEqNat0(Zero, Zero) -> True 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(ty_Ratio, df)) -> new_esEs9(xy300, xy4000, df) 15.01/5.55 new_asAs(False, xy35) -> False 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), ty_Int) -> new_esEs7(xy300, xy4000) 15.01/5.55 new_esEs8(Char(xy300), Char(xy4000)) -> new_primEqNat0(xy300, xy4000) 15.01/5.55 new_esEs23(xy301, xy4001, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs16(xy301, xy4001, bag, bah, bba) 15.01/5.55 new_esEs22(xy300, xy4000, app(ty_[], hd)) -> new_esEs21(xy300, xy4000, hd) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, ty_Integer) -> new_esEs12(xy300, xy4000) 15.01/5.55 new_esEs5(xy30, xy400, ty_Ordering) -> new_esEs17(xy30, xy400) 15.01/5.55 new_esEs4(xy30, xy400, app(app(ty_@2, baa), bab)) -> new_esEs19(xy30, xy400, baa, bab) 15.01/5.55 new_esEs4(xy30, xy400, app(ty_Maybe, he)) -> new_esEs15(xy30, xy400, he) 15.01/5.55 new_esEs15(Just(xy300), Just(xy4000), app(ty_Ratio, bch)) -> new_esEs9(xy300, xy4000, bch) 15.01/5.55 new_esEs5(xy30, xy400, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs16(xy30, xy400, fc, fd, ff) 15.01/5.55 new_esEs23(xy301, xy4001, ty_Ordering) -> new_esEs17(xy301, xy4001) 15.01/5.55 new_esEs13(Right(xy300), Right(xy4000), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs16(xy300, xy4000, ea, eb, ec) 15.01/5.55 new_esEs13(Left(xy300), Left(xy4000), app(ty_Ratio, cb), bh) -> new_esEs9(xy300, xy4000, cb) 15.01/5.55 new_esEs24(xy300, xy4000, ty_Char) -> new_esEs8(xy300, xy4000) 15.01/5.55 15.01/5.55 The set Q consists of the following terms: 15.01/5.55 15.01/5.55 new_esEs25(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs22(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_@0) 15.01/5.55 new_esEs4(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, ty_Bool) 15.01/5.55 new_esEs25(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, ty_@0) 15.01/5.55 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs23(x0, x1, ty_Bool) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Bool) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Bool, x2) 15.01/5.55 new_sr(Pos(x0), Neg(x1)) 15.01/5.55 new_sr(Neg(x0), Pos(x1)) 15.01/5.55 new_sr(Neg(x0), Neg(x1)) 15.01/5.55 new_primMulNat0(Zero, Zero) 15.01/5.55 new_esEs6(Float(x0, x1), Float(x2, x3)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 15.01/5.55 new_esEs22(x0, x1, ty_@0) 15.01/5.55 new_esEs24(x0, x1, ty_@0) 15.01/5.55 new_esEs4(x0, x1, app(ty_[], x2)) 15.01/5.55 new_asAs(True, x0) 15.01/5.55 new_esEs23(x0, x1, ty_@0) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_@0, x2) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 15.01/5.55 new_primMulNat0(Zero, Succ(x0)) 15.01/5.55 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Zero)) 15.01/5.55 new_esEs21(:(x0, x1), [], x2) 15.01/5.55 new_esEs7(x0, x1) 15.01/5.55 new_esEs22(x0, x1, ty_Bool) 15.01/5.55 new_esEs20(False, True) 15.01/5.55 new_esEs20(True, False) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 15.01/5.55 new_esEs22(x0, x1, ty_Char) 15.01/5.55 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Zero)) 15.01/5.55 new_esEs5(x0, x1, ty_Integer) 15.01/5.55 new_esEs26(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs23(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs5(x0, x1, app(ty_[], x2)) 15.01/5.55 new_sr(Pos(x0), Pos(x1)) 15.01/5.55 new_esEs11(x0, x1, ty_Int) 15.01/5.55 new_primPlusNat0(Zero, Zero) 15.01/5.55 new_primMulNat0(Succ(x0), Zero) 15.01/5.55 new_esEs23(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Char) 15.01/5.55 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, ty_Ordering) 15.01/5.55 new_primEqNat0(Succ(x0), Succ(x1)) 15.01/5.55 new_primPlusNat0(Succ(x0), Zero) 15.01/5.55 new_esEs4(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs25(x0, x1, ty_@0) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 15.01/5.55 new_esEs15(Just(x0), Nothing, x1) 15.01/5.55 new_esEs27(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs12(Integer(x0), Integer(x1)) 15.01/5.55 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) 15.01/5.55 new_esEs10(x0, x1, ty_Integer) 15.01/5.55 new_esEs17(LT, EQ) 15.01/5.55 new_esEs17(EQ, LT) 15.01/5.55 new_primPlusNat1(Succ(x0), x1) 15.01/5.55 new_esEs24(x0, x1, ty_Integer) 15.01/5.55 new_esEs24(x0, x1, ty_Ordering) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Integer) 15.01/5.55 new_esEs25(x0, x1, ty_Double) 15.01/5.55 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 15.01/5.55 new_esEs13(Left(x0), Right(x1), x2, x3) 15.01/5.55 new_esEs13(Right(x0), Left(x1), x2, x3) 15.01/5.55 new_esEs22(x0, x1, ty_Int) 15.01/5.55 new_esEs17(GT, GT) 15.01/5.55 new_esEs24(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_Bool) 15.01/5.55 new_esEs17(EQ, GT) 15.01/5.55 new_esEs17(GT, EQ) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Integer) 15.01/5.55 new_primEqInt(Pos(Zero), Neg(Zero)) 15.01/5.55 new_primEqInt(Neg(Zero), Pos(Zero)) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 15.01/5.55 new_esEs21([], [], x0) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Integer, x2) 15.01/5.55 new_esEs23(x0, x1, ty_Integer) 15.01/5.55 new_esEs17(EQ, EQ) 15.01/5.55 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 15.01/5.55 new_esEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs15(Nothing, Nothing, x0) 15.01/5.55 new_esEs20(False, False) 15.01/5.55 new_esEs22(x0, x1, ty_Float) 15.01/5.55 new_esEs24(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 15.01/5.55 new_esEs25(x0, x1, ty_Bool) 15.01/5.55 new_primPlusNat0(Zero, Succ(x0)) 15.01/5.55 new_esEs26(x0, x1, ty_Integer) 15.01/5.55 new_esEs15(Nothing, Just(x0), x1) 15.01/5.55 new_esEs11(x0, x1, ty_Integer) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Double) 15.01/5.55 new_esEs17(LT, GT) 15.01/5.55 new_esEs17(GT, LT) 15.01/5.55 new_esEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 15.01/5.55 new_esEs4(x0, x1, ty_Int) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Float) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 15.01/5.55 new_esEs26(x0, x1, ty_Ordering) 15.01/5.55 new_esEs26(x0, x1, ty_Double) 15.01/5.55 new_esEs25(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Int, x2) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Char) 15.01/5.55 new_esEs22(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs20(True, True) 15.01/5.55 new_esEs25(x0, x1, ty_Int) 15.01/5.55 new_asAs(False, x0) 15.01/5.55 new_esEs23(x0, x1, app(ty_Ratio, x2)) 15.01/5.55 new_esEs23(x0, x1, ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) 15.01/5.55 new_esEs25(x0, x1, ty_Char) 15.01/5.55 new_esEs4(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs23(x0, x1, ty_Ordering) 15.01/5.55 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 15.01/5.55 new_esEs22(x0, x1, app(ty_[], x2)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 15.01/5.55 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 15.01/5.55 new_esEs5(x0, x1, ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 15.01/5.55 new_esEs21(:(x0, x1), :(x2, x3), x4) 15.01/5.55 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 15.01/5.55 new_esEs26(x0, x1, app(ty_[], x2)) 15.01/5.55 new_esEs5(x0, x1, ty_Float) 15.01/5.55 new_esEs24(x0, x1, ty_Float) 15.01/5.55 new_esEs25(x0, x1, ty_Ordering) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Char, x2) 15.01/5.55 new_esEs27(x0, x1, ty_Integer) 15.01/5.55 new_esEs5(x0, x1, ty_Ordering) 15.01/5.55 new_esEs26(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_Double) 15.01/5.55 new_esEs4(x0, x1, ty_Ordering) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 15.01/5.55 new_primPlusNat1(Zero, x0) 15.01/5.55 new_esEs25(x0, x1, ty_Float) 15.01/5.55 new_esEs4(x0, x1, ty_Char) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Ordering) 15.01/5.55 new_esEs23(x0, x1, ty_Double) 15.01/5.55 new_esEs27(x0, x1, ty_Float) 15.01/5.55 new_esEs22(x0, x1, ty_Double) 15.01/5.55 new_esEs23(x0, x1, ty_Char) 15.01/5.55 new_esEs18(@0, @0) 15.01/5.55 new_esEs15(Just(x0), Just(x1), ty_Int) 15.01/5.55 new_esEs13(Left(x0), Left(x1), ty_Double, x2) 15.01/5.55 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Bool) 15.01/5.55 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 15.01/5.55 new_esEs22(x0, x1, ty_Integer) 15.01/5.55 new_primEqNat0(Zero, Zero) 15.01/5.55 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 15.01/5.55 new_esEs27(x0, x1, ty_Bool) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Double) 15.01/5.55 new_esEs17(LT, LT) 15.01/5.55 new_esEs24(x0, x1, ty_Int) 15.01/5.55 new_esEs26(x0, x1, ty_Char) 15.01/5.55 new_esEs27(x0, x1, app(ty_Maybe, x2)) 15.01/5.55 new_esEs4(x0, x1, ty_@0) 15.01/5.55 new_primEqNat0(Succ(x0), Zero) 15.01/5.55 new_esEs5(x0, x1, ty_@0) 15.01/5.55 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.55 new_esEs8(Char(x0), Char(x1)) 15.01/5.55 new_primMulNat0(Succ(x0), Succ(x1)) 15.01/5.55 new_esEs13(Right(x0), Right(x1), x2, ty_Int) 15.01/5.55 new_esEs27(x0, x1, ty_Int) 15.01/5.55 new_esEs24(x0, x1, ty_Bool) 15.01/5.55 new_esEs27(x0, x1, ty_@0) 15.01/5.55 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.55 new_esEs4(x0, x1, ty_Float) 15.01/5.55 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 15.01/5.55 new_esEs26(x0, x1, ty_Int) 15.01/5.56 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.56 new_esEs24(x0, x1, app(ty_[], x2)) 15.01/5.56 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.56 new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 15.01/5.56 new_esEs21([], :(x0, x1), x2) 15.01/5.56 new_esEs22(x0, x1, ty_Ordering) 15.01/5.56 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.56 new_esEs24(x0, x1, ty_Double) 15.01/5.56 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 15.01/5.56 new_esEs27(x0, x1, app(ty_Ratio, x2)) 15.01/5.56 new_esEs5(x0, x1, ty_Bool) 15.01/5.56 new_esEs5(x0, x1, app(ty_Ratio, x2)) 15.01/5.56 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.01/5.56 new_esEs5(x0, x1, ty_Double) 15.01/5.56 new_primPlusNat0(Succ(x0), Succ(x1)) 15.01/5.56 new_esEs5(x0, x1, app(ty_Maybe, x2)) 15.01/5.56 new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 15.01/5.56 new_esEs5(x0, x1, ty_Char) 15.01/5.56 new_esEs13(Right(x0), Right(x1), x2, ty_@0) 15.01/5.56 new_esEs15(Just(x0), Just(x1), app(ty_[], x2)) 15.01/5.56 new_esEs23(x0, x1, ty_Float) 15.01/5.56 new_esEs27(x0, x1, ty_Double) 15.01/5.56 new_esEs13(Left(x0), Left(x1), ty_Float, x2) 15.01/5.56 new_esEs14(Double(x0, x1), Double(x2, x3)) 15.01/5.56 new_esEs27(x0, x1, ty_Char) 15.01/5.56 new_esEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 15.01/5.56 new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 15.01/5.56 new_esEs10(x0, x1, ty_Int) 15.01/5.56 new_esEs13(Right(x0), Right(x1), x2, ty_Float) 15.01/5.56 new_esEs24(x0, x1, ty_Char) 15.01/5.56 new_primEqNat0(Zero, Succ(x0)) 15.01/5.56 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 15.01/5.56 new_esEs25(x0, x1, app(ty_[], x2)) 15.01/5.56 new_esEs26(x0, x1, ty_Float) 15.01/5.56 15.01/5.56 We have to consider all minimal (P,Q,R)-chains. 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (16) QDPSizeChangeProof (EQUIVALENT) 15.01/5.56 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. 15.01/5.56 15.01/5.56 From the DPs we obtained the following set of size-change graphs: 15.01/5.56 *new_deleteBy(Right(xy30), :(Left(xy400), xy41), bc, bd) -> new_deleteBy(Right(xy30), xy41, bc, bd) 15.01/5.56 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_deleteBy(Right(xy30), :(Right(xy400), xy41), bc, bd) -> new_deleteBy00(xy41, xy400, xy30, new_esEs5(xy30, xy400, bd), bc, bd) 15.01/5.56 The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 3 >= 5, 4 >= 6 15.01/5.56 15.01/5.56 15.01/5.56 *new_deleteBy00(xy19, xy20, xy21, False, be, bf) -> new_deleteBy(Right(xy21), xy19, be, bf) 15.01/5.56 The graph contains the following edges 1 >= 2, 5 >= 3, 6 >= 4 15.01/5.56 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (17) 15.01/5.56 YES 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (18) 15.01/5.56 Obligation: 15.01/5.56 Q DP problem: 15.01/5.56 The TRS P consists of the following rules: 15.01/5.56 15.01/5.56 new_primMulNat(Succ(xy30000), Succ(xy400100)) -> new_primMulNat(xy30000, Succ(xy400100)) 15.01/5.56 15.01/5.56 R is empty. 15.01/5.56 Q is empty. 15.01/5.56 We have to consider all minimal (P,Q,R)-chains. 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (19) QDPSizeChangeProof (EQUIVALENT) 15.01/5.56 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. 15.01/5.56 15.01/5.56 From the DPs we obtained the following set of size-change graphs: 15.01/5.56 *new_primMulNat(Succ(xy30000), Succ(xy400100)) -> new_primMulNat(xy30000, Succ(xy400100)) 15.01/5.56 The graph contains the following edges 1 > 1, 2 >= 2 15.01/5.56 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (20) 15.01/5.56 YES 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (21) 15.01/5.56 Obligation: 15.01/5.56 Q DP problem: 15.01/5.56 The TRS P consists of the following rules: 15.01/5.56 15.01/5.56 new_esEs(Just(xy300), Just(xy4000), app(app(ty_@2, bg), bh)) -> new_esEs2(xy300, xy4000, bg, bh) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(app(ty_Either, fb), fc)) -> new_esEs0(xy302, xy4002, fb, fc) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(app(ty_Either, ge), gf), gd) -> new_esEs0(xy301, xy4001, ge, gf) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(ty_Either, hf), hg), eh, gd) -> new_esEs0(xy300, xy4000, hf, hg) 15.01/5.56 new_esEs0(Left(xy300), Left(xy4000), app(ty_Maybe, cb), cc) -> new_esEs(xy300, xy4000, cb) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(ty_[], hd), gd) -> new_esEs3(xy301, xy4001, hd) 15.01/5.56 new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(ty_Maybe, bdc)) -> new_esEs(xy300, xy4000, bdc) 15.01/5.56 new_esEs0(Right(xy300), Right(xy4000), de, app(ty_[], ef)) -> new_esEs3(xy300, xy4000, ef) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(xy301, xy4001, bbe, bbf) 15.01/5.56 new_esEs0(Left(xy300), Left(xy4000), app(app(ty_@2, db), dc), cc) -> new_esEs2(xy300, xy4000, db, dc) 15.01/5.56 new_esEs0(Right(xy300), Right(xy4000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xy300, xy4000, dg, dh) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(app(ty_@3, hh), baa), bab), eh, gd) -> new_esEs1(xy300, xy4000, hh, baa, bab) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(ty_[], bae), eh, gd) -> new_esEs3(xy300, xy4000, bae) 15.01/5.56 new_esEs(Just(xy300), Just(xy4000), app(ty_[], ca)) -> new_esEs3(xy300, xy4000, ca) 15.01/5.56 new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(ty_[], bec)) -> new_esEs3(xy300, xy4000, bec) 15.01/5.56 new_esEs(Just(xy300), Just(xy4000), app(ty_Maybe, ba)) -> new_esEs(xy300, xy4000, ba) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(ty_@2, bac), bad), eh, gd) -> new_esEs2(xy300, xy4000, bac, bad) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(ty_Maybe, bag)) -> new_esEs(xy301, xy4001, bag) 15.01/5.56 new_esEs(Just(xy300), Just(xy4000), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(xy300, xy4000, bd, be, bf) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(app(ty_@2, bcg), bch), bca) -> new_esEs2(xy300, xy4000, bcg, bch) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(ty_Maybe, fa)) -> new_esEs(xy302, xy4002, fa) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(ty_Maybe, bbh), bca) -> new_esEs(xy300, xy4000, bbh) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(ty_Maybe, gc), gd) -> new_esEs(xy301, xy4001, gc) 15.01/5.56 new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(xy300, xy4000, bdf, bdg, bdh) 15.01/5.56 new_esEs0(Left(xy300), Left(xy4000), app(ty_[], dd), cc) -> new_esEs3(xy300, xy4000, dd) 15.01/5.56 new_esEs0(Left(xy300), Left(xy4000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xy300, xy4000, cd, ce) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(ty_Maybe, he), eh, gd) -> new_esEs(xy300, xy4000, he) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(xy300, xy4000, bcb, bcc) 15.01/5.56 new_esEs3(:(xy300, xy301), :(xy4000, xy4001), bdb) -> new_esEs3(xy301, xy4001, bdb) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(app(ty_Either, bah), bba)) -> new_esEs0(xy301, xy4001, bah, bba) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs1(xy302, xy4002, fd, ff, fg) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs1(xy301, xy4001, bbb, bbc, bbd) 15.01/5.56 new_esEs(Just(xy300), Just(xy4000), app(app(ty_Either, bb), bc)) -> new_esEs0(xy300, xy4000, bb, bc) 15.01/5.56 new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(app(ty_@2, bea), beb)) -> new_esEs2(xy300, xy4000, bea, beb) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(ty_[], bbg)) -> new_esEs3(xy301, xy4001, bbg) 15.01/5.56 new_esEs0(Left(xy300), Left(xy4000), app(app(app(ty_@3, cf), cg), da), cc) -> new_esEs1(xy300, xy4000, cf, cg, da) 15.01/5.56 new_esEs0(Right(xy300), Right(xy4000), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs1(xy300, xy4000, ea, eb, ec) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(ty_[], gb)) -> new_esEs3(xy302, xy4002, gb) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(ty_[], bda), bca) -> new_esEs3(xy300, xy4000, bda) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(app(ty_@2, hb), hc), gd) -> new_esEs2(xy301, xy4001, hb, hc) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(app(app(ty_@3, gg), gh), ha), gd) -> new_esEs1(xy301, xy4001, gg, gh, ha) 15.01/5.56 new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(app(ty_@2, fh), ga)) -> new_esEs2(xy302, xy4002, fh, ga) 15.01/5.56 new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(app(ty_Either, bdd), bde)) -> new_esEs0(xy300, xy4000, bdd, bde) 15.01/5.56 new_esEs0(Right(xy300), Right(xy4000), de, app(ty_Maybe, df)) -> new_esEs(xy300, xy4000, df) 15.01/5.56 new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs1(xy300, xy4000, bcd, bce, bcf) 15.01/5.56 new_esEs0(Right(xy300), Right(xy4000), de, app(app(ty_@2, ed), ee)) -> new_esEs2(xy300, xy4000, ed, ee) 15.01/5.56 15.01/5.56 R is empty. 15.01/5.56 Q is empty. 15.01/5.56 We have to consider all minimal (P,Q,R)-chains. 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (22) QDPSizeChangeProof (EQUIVALENT) 15.01/5.56 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. 15.01/5.56 15.01/5.56 From the DPs we obtained the following set of size-change graphs: 15.01/5.56 *new_esEs(Just(xy300), Just(xy4000), app(ty_Maybe, ba)) -> new_esEs(xy300, xy4000, ba) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs(Just(xy300), Just(xy4000), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(xy300, xy4000, bd, be, bf) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs(Just(xy300), Just(xy4000), app(app(ty_Either, bb), bc)) -> new_esEs0(xy300, xy4000, bb, bc) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(ty_Maybe, bdc)) -> new_esEs(xy300, xy4000, bdc) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(xy300, xy4000, bdf, bdg, bdh) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(app(ty_Either, bdd), bde)) -> new_esEs0(xy300, xy4000, bdd, bde) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs(Just(xy300), Just(xy4000), app(ty_[], ca)) -> new_esEs3(xy300, xy4000, ca) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs(Just(xy300), Just(xy4000), app(app(ty_@2, bg), bh)) -> new_esEs2(xy300, xy4000, bg, bh) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(app(ty_@2, bea), beb)) -> new_esEs2(xy300, xy4000, bea, beb) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(ty_Maybe, bag)) -> new_esEs(xy301, xy4001, bag) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(ty_Maybe, bbh), bca) -> new_esEs(xy300, xy4000, bbh) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs1(xy301, xy4001, bbb, bbc, bbd) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs1(xy300, xy4000, bcd, bce, bcf) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(xy300, xy4000, bcb, bcc) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(app(ty_Either, bah), bba)) -> new_esEs0(xy301, xy4001, bah, bba) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(ty_[], bbg)) -> new_esEs3(xy301, xy4001, bbg) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(ty_[], bda), bca) -> new_esEs3(xy300, xy4000, bda) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(xy301, xy4001, bbe, bbf) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs2(@2(xy300, xy301), @2(xy4000, xy4001), app(app(ty_@2, bcg), bch), bca) -> new_esEs2(xy300, xy4000, bcg, bch) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Left(xy300), Left(xy4000), app(ty_Maybe, cb), cc) -> new_esEs(xy300, xy4000, cb) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Right(xy300), Right(xy4000), de, app(ty_Maybe, df)) -> new_esEs(xy300, xy4000, df) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(ty_Maybe, fa)) -> new_esEs(xy302, xy4002, fa) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(ty_Maybe, gc), gd) -> new_esEs(xy301, xy4001, gc) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(ty_Maybe, he), eh, gd) -> new_esEs(xy300, xy4000, he) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Left(xy300), Left(xy4000), app(app(app(ty_@3, cf), cg), da), cc) -> new_esEs1(xy300, xy4000, cf, cg, da) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Right(xy300), Right(xy4000), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs1(xy300, xy4000, ea, eb, ec) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Right(xy300), Right(xy4000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xy300, xy4000, dg, dh) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Left(xy300), Left(xy4000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xy300, xy4000, cd, ce) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Right(xy300), Right(xy4000), de, app(ty_[], ef)) -> new_esEs3(xy300, xy4000, ef) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Left(xy300), Left(xy4000), app(ty_[], dd), cc) -> new_esEs3(xy300, xy4000, dd) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Left(xy300), Left(xy4000), app(app(ty_@2, db), dc), cc) -> new_esEs2(xy300, xy4000, db, dc) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs0(Right(xy300), Right(xy4000), de, app(app(ty_@2, ed), ee)) -> new_esEs2(xy300, xy4000, ed, ee) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(app(ty_@3, hh), baa), bab), eh, gd) -> new_esEs1(xy300, xy4000, hh, baa, bab) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs1(xy302, xy4002, fd, ff, fg) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(app(app(ty_@3, gg), gh), ha), gd) -> new_esEs1(xy301, xy4001, gg, gh, ha) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(app(ty_Either, fb), fc)) -> new_esEs0(xy302, xy4002, fb, fc) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(app(ty_Either, ge), gf), gd) -> new_esEs0(xy301, xy4001, ge, gf) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(ty_Either, hf), hg), eh, gd) -> new_esEs0(xy300, xy4000, hf, hg) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs3(:(xy300, xy301), :(xy4000, xy4001), app(ty_[], bec)) -> new_esEs3(xy300, xy4000, bec) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs3(:(xy300, xy301), :(xy4000, xy4001), bdb) -> new_esEs3(xy301, xy4001, bdb) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(ty_[], hd), gd) -> new_esEs3(xy301, xy4001, hd) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(ty_[], bae), eh, gd) -> new_esEs3(xy300, xy4000, bae) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(ty_[], gb)) -> new_esEs3(xy302, xy4002, gb) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(ty_@2, bac), bad), eh, gd) -> new_esEs2(xy300, xy4000, bac, bad) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, app(app(ty_@2, hb), hc), gd) -> new_esEs2(xy301, xy4001, hb, hc) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.01/5.56 15.01/5.56 15.01/5.56 *new_esEs1(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), eg, eh, app(app(ty_@2, fh), ga)) -> new_esEs2(xy302, xy4002, fh, ga) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 15.01/5.56 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (23) 15.01/5.56 YES 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (24) 15.01/5.56 Obligation: 15.01/5.56 Q DP problem: 15.01/5.56 The TRS P consists of the following rules: 15.01/5.56 15.01/5.56 new_primPlusNat(Succ(xy3600), Succ(xy4001000)) -> new_primPlusNat(xy3600, xy4001000) 15.01/5.56 15.01/5.56 R is empty. 15.01/5.56 Q is empty. 15.01/5.56 We have to consider all minimal (P,Q,R)-chains. 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (25) QDPSizeChangeProof (EQUIVALENT) 15.01/5.56 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. 15.01/5.56 15.01/5.56 From the DPs we obtained the following set of size-change graphs: 15.01/5.56 *new_primPlusNat(Succ(xy3600), Succ(xy4001000)) -> new_primPlusNat(xy3600, xy4001000) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2 15.01/5.56 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (26) 15.01/5.56 YES 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (27) 15.01/5.56 Obligation: 15.01/5.56 Q DP problem: 15.01/5.56 The TRS P consists of the following rules: 15.01/5.56 15.01/5.56 new_primEqNat(Succ(xy3000), Succ(xy40000)) -> new_primEqNat(xy3000, xy40000) 15.01/5.56 15.01/5.56 R is empty. 15.01/5.56 Q is empty. 15.01/5.56 We have to consider all minimal (P,Q,R)-chains. 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (28) QDPSizeChangeProof (EQUIVALENT) 15.01/5.56 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. 15.01/5.56 15.01/5.56 From the DPs we obtained the following set of size-change graphs: 15.01/5.56 *new_primEqNat(Succ(xy3000), Succ(xy40000)) -> new_primEqNat(xy3000, xy40000) 15.01/5.56 The graph contains the following edges 1 > 1, 2 > 2 15.01/5.56 15.01/5.56 15.01/5.56 ---------------------------------------- 15.01/5.56 15.01/5.56 (29) 15.01/5.56 YES 15.01/5.59 EOF