13.06/5.25 YES 15.26/5.87 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 15.26/5.87 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 15.26/5.87 15.26/5.87 15.26/5.87 H-Termination with start terms of the given HASKELL could be proven: 15.26/5.87 15.26/5.87 (0) HASKELL 15.26/5.87 (1) IFR [EQUIVALENT, 0 ms] 15.26/5.87 (2) HASKELL 15.26/5.87 (3) BR [EQUIVALENT, 0 ms] 15.26/5.87 (4) HASKELL 15.26/5.87 (5) COR [EQUIVALENT, 14 ms] 15.26/5.87 (6) HASKELL 15.26/5.87 (7) Narrow [SOUND, 0 ms] 15.26/5.87 (8) AND 15.26/5.87 (9) QDP 15.26/5.87 (10) QDPSizeChangeProof [EQUIVALENT, 40 ms] 15.26/5.87 (11) YES 15.26/5.87 (12) QDP 15.26/5.87 (13) DependencyGraphProof [EQUIVALENT, 0 ms] 15.26/5.87 (14) AND 15.26/5.87 (15) QDP 15.26/5.87 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.26/5.87 (17) YES 15.26/5.87 (18) QDP 15.26/5.87 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.26/5.87 (20) YES 15.26/5.87 (21) QDP 15.26/5.87 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.26/5.87 (23) YES 15.26/5.87 (24) QDP 15.26/5.87 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.26/5.87 (26) YES 15.26/5.87 (27) QDP 15.26/5.87 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.26/5.87 (29) YES 15.26/5.87 15.26/5.87 15.26/5.87 ---------------------------------------- 15.26/5.87 15.26/5.87 (0) 15.26/5.87 Obligation: 15.26/5.87 mainModule Main 15.26/5.87 module Maybe where { 15.26/5.87 import qualified List; 15.26/5.87 import qualified Main; 15.26/5.87 import qualified Prelude; 15.26/5.87 } 15.26/5.87 module List where { 15.26/5.87 import qualified Main; 15.26/5.87 import qualified Maybe; 15.26/5.87 import qualified Prelude; 15.26/5.87 delete :: Eq a => a -> [a] -> [a]; 15.26/5.87 delete = deleteBy (==); 15.26/5.87 15.26/5.87 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 15.26/5.87 deleteBy _ _ [] = []; 15.26/5.87 deleteBy eq x (y : ys) = if x `eq` y then ys else y : deleteBy eq x ys; 15.26/5.87 15.26/5.87 } 15.26/5.87 module Main where { 15.26/5.87 import qualified List; 15.26/5.87 import qualified Maybe; 15.26/5.87 import qualified Prelude; 15.26/5.87 } 15.26/5.87 15.26/5.87 ---------------------------------------- 15.26/5.87 15.26/5.87 (1) IFR (EQUIVALENT) 15.26/5.87 If Reductions: 15.26/5.87 The following If expression 15.26/5.87 "if eq x y then ys else y : deleteBy eq x ys" 15.26/5.87 is transformed to 15.26/5.87 "deleteBy0 ys y eq x True = ys; 15.26/5.87 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 15.26/5.87 " 15.26/5.87 15.26/5.87 ---------------------------------------- 15.26/5.87 15.26/5.87 (2) 15.26/5.87 Obligation: 15.26/5.87 mainModule Main 15.26/5.87 module Maybe where { 15.26/5.87 import qualified List; 15.26/5.87 import qualified Main; 15.26/5.87 import qualified Prelude; 15.26/5.87 } 15.26/5.87 module List where { 15.26/5.87 import qualified Main; 15.26/5.87 import qualified Maybe; 15.26/5.87 import qualified Prelude; 15.26/5.87 delete :: Eq a => a -> [a] -> [a]; 15.26/5.87 delete = deleteBy (==); 15.26/5.87 15.26/5.87 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 15.26/5.87 deleteBy _ _ [] = []; 15.26/5.87 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 15.26/5.87 15.26/5.87 deleteBy0 ys y eq x True = ys; 15.26/5.87 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 15.26/5.87 15.26/5.87 } 15.26/5.87 module Main where { 15.26/5.87 import qualified List; 15.26/5.87 import qualified Maybe; 15.26/5.87 import qualified Prelude; 15.26/5.87 } 15.26/5.87 15.26/5.87 ---------------------------------------- 15.26/5.87 15.26/5.87 (3) BR (EQUIVALENT) 15.26/5.87 Replaced joker patterns by fresh variables and removed binding patterns. 15.26/5.87 ---------------------------------------- 15.26/5.87 15.26/5.87 (4) 15.26/5.87 Obligation: 15.26/5.87 mainModule Main 15.26/5.87 module Maybe where { 15.26/5.87 import qualified List; 15.26/5.87 import qualified Main; 15.26/5.87 import qualified Prelude; 15.26/5.87 } 15.26/5.87 module List where { 15.26/5.87 import qualified Main; 15.26/5.87 import qualified Maybe; 15.26/5.87 import qualified Prelude; 15.26/5.87 delete :: Eq a => a -> [a] -> [a]; 15.26/5.87 delete = deleteBy (==); 15.26/5.87 15.26/5.87 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 15.26/5.87 deleteBy xw xx [] = []; 15.26/5.87 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 15.26/5.87 15.26/5.87 deleteBy0 ys y eq x True = ys; 15.26/5.87 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 15.26/5.87 15.26/5.87 } 15.26/5.87 module Main where { 15.26/5.87 import qualified List; 15.26/5.87 import qualified Maybe; 15.26/5.87 import qualified Prelude; 15.26/5.87 } 15.26/5.87 15.26/5.87 ---------------------------------------- 15.26/5.87 15.26/5.87 (5) COR (EQUIVALENT) 15.26/5.87 Cond Reductions: 15.26/5.87 The following Function with conditions 15.26/5.87 "undefined |Falseundefined; 15.26/5.87 " 15.26/5.87 is transformed to 15.26/5.87 "undefined = undefined1; 15.26/5.87 " 15.26/5.87 "undefined0 True = undefined; 15.26/5.87 " 15.26/5.87 "undefined1 = undefined0 False; 15.26/5.87 " 15.26/5.87 15.26/5.87 ---------------------------------------- 15.26/5.87 15.26/5.87 (6) 15.26/5.87 Obligation: 15.26/5.87 mainModule Main 15.26/5.87 module Maybe where { 15.26/5.87 import qualified List; 15.26/5.87 import qualified Main; 15.26/5.87 import qualified Prelude; 15.26/5.87 } 15.26/5.87 module List where { 15.26/5.87 import qualified Main; 15.26/5.87 import qualified Maybe; 15.26/5.87 import qualified Prelude; 15.26/5.87 delete :: Eq a => a -> [a] -> [a]; 15.26/5.87 delete = deleteBy (==); 15.26/5.87 15.26/5.87 deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]; 15.26/5.87 deleteBy xw xx [] = []; 15.26/5.87 deleteBy eq x (y : ys) = deleteBy0 ys y eq x (x `eq` y); 15.26/5.87 15.26/5.87 deleteBy0 ys y eq x True = ys; 15.26/5.87 deleteBy0 ys y eq x False = y : deleteBy eq x ys; 15.26/5.87 15.26/5.87 } 15.26/5.87 module Main where { 15.26/5.87 import qualified List; 15.26/5.87 import qualified Maybe; 15.26/5.87 import qualified Prelude; 15.26/5.87 } 15.26/5.87 15.26/5.87 ---------------------------------------- 15.26/5.87 15.26/5.87 (7) Narrow (SOUND) 15.26/5.87 Haskell To QDPs 15.26/5.87 15.26/5.87 digraph dp_graph { 15.26/5.87 node [outthreshold=100, inthreshold=100];1[label="List.delete",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 15.26/5.87 3[label="List.delete xy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 15.26/5.87 4[label="List.delete xy3 xy4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 15.26/5.87 5[label="List.deleteBy (==) xy3 xy4",fontsize=16,color="burlywood",shape="triangle"];709[label="xy4/xy40 : xy41",fontsize=10,color="white",style="solid",shape="box"];5 -> 709[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 709 -> 6[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 710[label="xy4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 710[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 710 -> 7[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 6[label="List.deleteBy (==) xy3 (xy40 : xy41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 15.26/5.87 7[label="List.deleteBy (==) xy3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 15.26/5.87 8[label="List.deleteBy0 xy41 xy40 (==) xy3 ((==) xy3 xy40)",fontsize=16,color="burlywood",shape="box"];711[label="xy3/Nothing",fontsize=10,color="white",style="solid",shape="box"];8 -> 711[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 711 -> 10[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 712[label="xy3/Just xy30",fontsize=10,color="white",style="solid",shape="box"];8 -> 712[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 712 -> 11[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 9[label="[]",fontsize=16,color="green",shape="box"];10[label="List.deleteBy0 xy41 xy40 (==) Nothing ((==) Nothing xy40)",fontsize=16,color="burlywood",shape="box"];713[label="xy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];10 -> 713[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 713 -> 12[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 714[label="xy40/Just xy400",fontsize=10,color="white",style="solid",shape="box"];10 -> 714[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 714 -> 13[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 11[label="List.deleteBy0 xy41 xy40 (==) (Just xy30) ((==) Just xy30 xy40)",fontsize=16,color="burlywood",shape="box"];715[label="xy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];11 -> 715[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 715 -> 14[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 716[label="xy40/Just xy400",fontsize=10,color="white",style="solid",shape="box"];11 -> 716[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 716 -> 15[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 12[label="List.deleteBy0 xy41 Nothing (==) Nothing ((==) Nothing Nothing)",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 15.26/5.87 13[label="List.deleteBy0 xy41 (Just xy400) (==) Nothing ((==) Nothing Just xy400)",fontsize=16,color="black",shape="box"];13 -> 17[label="",style="solid", color="black", weight=3]; 15.26/5.87 14[label="List.deleteBy0 xy41 Nothing (==) (Just xy30) ((==) Just xy30 Nothing)",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 15.26/5.87 15[label="List.deleteBy0 xy41 (Just xy400) (==) (Just xy30) ((==) Just xy30 Just xy400)",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 15.26/5.87 16[label="List.deleteBy0 xy41 Nothing (==) Nothing True",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 15.26/5.87 17[label="List.deleteBy0 xy41 (Just xy400) (==) Nothing False",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 15.26/5.87 18[label="List.deleteBy0 xy41 Nothing (==) (Just xy30) False",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 15.26/5.87 19 -> 23[label="",style="dashed", color="red", weight=0]; 15.26/5.87 19[label="List.deleteBy0 xy41 (Just xy400) (==) (Just xy30) (xy30 == xy400)",fontsize=16,color="magenta"];19 -> 24[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 19 -> 25[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 19 -> 26[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 19 -> 27[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 20[label="xy41",fontsize=16,color="green",shape="box"];21[label="Just xy400 : List.deleteBy (==) Nothing xy41",fontsize=16,color="green",shape="box"];21 -> 28[label="",style="dashed", color="green", weight=3]; 15.26/5.87 22[label="Nothing : List.deleteBy (==) (Just xy30) xy41",fontsize=16,color="green",shape="box"];22 -> 29[label="",style="dashed", color="green", weight=3]; 15.26/5.87 24[label="xy400",fontsize=16,color="green",shape="box"];25[label="xy30",fontsize=16,color="green",shape="box"];26[label="xy30 == xy400",fontsize=16,color="blue",shape="box"];717[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 717[label="",style="solid", color="blue", weight=9]; 15.26/5.87 717 -> 30[label="",style="solid", color="blue", weight=3]; 15.26/5.87 718[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 718[label="",style="solid", color="blue", weight=9]; 15.26/5.87 718 -> 31[label="",style="solid", color="blue", weight=3]; 15.26/5.87 719[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 719[label="",style="solid", color="blue", weight=9]; 15.26/5.87 719 -> 32[label="",style="solid", color="blue", weight=3]; 15.26/5.87 720[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 720[label="",style="solid", color="blue", weight=9]; 15.26/5.87 720 -> 33[label="",style="solid", color="blue", weight=3]; 15.26/5.87 721[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 721[label="",style="solid", color="blue", weight=9]; 15.26/5.87 721 -> 34[label="",style="solid", color="blue", weight=3]; 15.26/5.87 722[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 722[label="",style="solid", color="blue", weight=9]; 15.26/5.87 722 -> 35[label="",style="solid", color="blue", weight=3]; 15.26/5.87 723[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 723[label="",style="solid", color="blue", weight=9]; 15.26/5.87 723 -> 36[label="",style="solid", color="blue", weight=3]; 15.26/5.87 724[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 724[label="",style="solid", color="blue", weight=9]; 15.26/5.87 724 -> 37[label="",style="solid", color="blue", weight=3]; 15.26/5.87 725[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 725[label="",style="solid", color="blue", weight=9]; 15.26/5.87 725 -> 38[label="",style="solid", color="blue", weight=3]; 15.26/5.87 726[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 726[label="",style="solid", color="blue", weight=9]; 15.26/5.87 726 -> 39[label="",style="solid", color="blue", weight=3]; 15.26/5.87 727[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 727[label="",style="solid", color="blue", weight=9]; 15.26/5.87 727 -> 40[label="",style="solid", color="blue", weight=3]; 15.26/5.87 728[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 728[label="",style="solid", color="blue", weight=9]; 15.26/5.87 728 -> 41[label="",style="solid", color="blue", weight=3]; 15.26/5.87 729[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 729[label="",style="solid", color="blue", weight=9]; 15.26/5.87 729 -> 42[label="",style="solid", color="blue", weight=3]; 15.26/5.87 730[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 730[label="",style="solid", color="blue", weight=9]; 15.26/5.87 730 -> 43[label="",style="solid", color="blue", weight=3]; 15.26/5.87 27[label="xy41",fontsize=16,color="green",shape="box"];23[label="List.deleteBy0 xy10 (Just xy11) (==) (Just xy12) xy13",fontsize=16,color="burlywood",shape="triangle"];731[label="xy13/False",fontsize=10,color="white",style="solid",shape="box"];23 -> 731[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 731 -> 44[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 732[label="xy13/True",fontsize=10,color="white",style="solid",shape="box"];23 -> 732[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 732 -> 45[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 28 -> 5[label="",style="dashed", color="red", weight=0]; 15.26/5.87 28[label="List.deleteBy (==) Nothing xy41",fontsize=16,color="magenta"];28 -> 46[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 28 -> 47[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 29 -> 5[label="",style="dashed", color="red", weight=0]; 15.26/5.87 29[label="List.deleteBy (==) (Just xy30) xy41",fontsize=16,color="magenta"];29 -> 48[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 29 -> 49[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 30[label="xy30 == xy400",fontsize=16,color="black",shape="triangle"];30 -> 50[label="",style="solid", color="black", weight=3]; 15.26/5.87 31[label="xy30 == xy400",fontsize=16,color="black",shape="triangle"];31 -> 51[label="",style="solid", color="black", weight=3]; 15.26/5.87 32[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];733[label="xy30/(xy300,xy301)",fontsize=10,color="white",style="solid",shape="box"];32 -> 733[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 733 -> 52[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 33[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];734[label="xy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];33 -> 734[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 734 -> 53[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 735[label="xy30/Just xy300",fontsize=10,color="white",style="solid",shape="box"];33 -> 735[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 735 -> 54[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 34[label="xy30 == xy400",fontsize=16,color="black",shape="triangle"];34 -> 55[label="",style="solid", color="black", weight=3]; 15.26/5.87 35[label="xy30 == xy400",fontsize=16,color="black",shape="triangle"];35 -> 56[label="",style="solid", color="black", weight=3]; 15.26/5.87 36[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];736[label="xy30/False",fontsize=10,color="white",style="solid",shape="box"];36 -> 736[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 736 -> 57[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 737[label="xy30/True",fontsize=10,color="white",style="solid",shape="box"];36 -> 737[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 737 -> 58[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 37[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];738[label="xy30/Left xy300",fontsize=10,color="white",style="solid",shape="box"];37 -> 738[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 738 -> 59[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 739[label="xy30/Right xy300",fontsize=10,color="white",style="solid",shape="box"];37 -> 739[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 739 -> 60[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 38[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];740[label="xy30/xy300 : xy301",fontsize=10,color="white",style="solid",shape="box"];38 -> 740[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 740 -> 61[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 741[label="xy30/[]",fontsize=10,color="white",style="solid",shape="box"];38 -> 741[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 741 -> 62[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 39[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];742[label="xy30/Integer xy300",fontsize=10,color="white",style="solid",shape="box"];39 -> 742[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 742 -> 63[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 40[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];743[label="xy30/xy300 :% xy301",fontsize=10,color="white",style="solid",shape="box"];40 -> 743[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 743 -> 64[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 41[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];744[label="xy30/(xy300,xy301,xy302)",fontsize=10,color="white",style="solid",shape="box"];41 -> 744[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 744 -> 65[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 42[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];745[label="xy30/LT",fontsize=10,color="white",style="solid",shape="box"];42 -> 745[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 745 -> 66[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 746[label="xy30/EQ",fontsize=10,color="white",style="solid",shape="box"];42 -> 746[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 746 -> 67[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 747[label="xy30/GT",fontsize=10,color="white",style="solid",shape="box"];42 -> 747[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 747 -> 68[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 43[label="xy30 == xy400",fontsize=16,color="burlywood",shape="triangle"];748[label="xy30/()",fontsize=10,color="white",style="solid",shape="box"];43 -> 748[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 748 -> 69[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 44[label="List.deleteBy0 xy10 (Just xy11) (==) (Just xy12) False",fontsize=16,color="black",shape="box"];44 -> 70[label="",style="solid", color="black", weight=3]; 15.26/5.87 45[label="List.deleteBy0 xy10 (Just xy11) (==) (Just xy12) True",fontsize=16,color="black",shape="box"];45 -> 71[label="",style="solid", color="black", weight=3]; 15.26/5.87 46[label="xy41",fontsize=16,color="green",shape="box"];47[label="Nothing",fontsize=16,color="green",shape="box"];48[label="xy41",fontsize=16,color="green",shape="box"];49[label="Just xy30",fontsize=16,color="green",shape="box"];50[label="primEqDouble xy30 xy400",fontsize=16,color="burlywood",shape="box"];749[label="xy30/Double xy300 xy301",fontsize=10,color="white",style="solid",shape="box"];50 -> 749[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 749 -> 72[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 51[label="primEqChar xy30 xy400",fontsize=16,color="burlywood",shape="box"];750[label="xy30/Char xy300",fontsize=10,color="white",style="solid",shape="box"];51 -> 750[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 750 -> 73[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 52[label="(xy300,xy301) == xy400",fontsize=16,color="burlywood",shape="box"];751[label="xy400/(xy4000,xy4001)",fontsize=10,color="white",style="solid",shape="box"];52 -> 751[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 751 -> 74[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 53[label="Nothing == xy400",fontsize=16,color="burlywood",shape="box"];752[label="xy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];53 -> 752[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 752 -> 75[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 753[label="xy400/Just xy4000",fontsize=10,color="white",style="solid",shape="box"];53 -> 753[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 753 -> 76[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 54[label="Just xy300 == xy400",fontsize=16,color="burlywood",shape="box"];754[label="xy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];54 -> 754[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 754 -> 77[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 755[label="xy400/Just xy4000",fontsize=10,color="white",style="solid",shape="box"];54 -> 755[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 755 -> 78[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 55[label="primEqInt xy30 xy400",fontsize=16,color="burlywood",shape="triangle"];756[label="xy30/Pos xy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 756[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 756 -> 79[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 757[label="xy30/Neg xy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 757[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 757 -> 80[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 56[label="primEqFloat xy30 xy400",fontsize=16,color="burlywood",shape="box"];758[label="xy30/Float xy300 xy301",fontsize=10,color="white",style="solid",shape="box"];56 -> 758[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 758 -> 81[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 57[label="False == xy400",fontsize=16,color="burlywood",shape="box"];759[label="xy400/False",fontsize=10,color="white",style="solid",shape="box"];57 -> 759[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 759 -> 82[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 760[label="xy400/True",fontsize=10,color="white",style="solid",shape="box"];57 -> 760[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 760 -> 83[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 58[label="True == xy400",fontsize=16,color="burlywood",shape="box"];761[label="xy400/False",fontsize=10,color="white",style="solid",shape="box"];58 -> 761[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 761 -> 84[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 762[label="xy400/True",fontsize=10,color="white",style="solid",shape="box"];58 -> 762[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 762 -> 85[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 59[label="Left xy300 == xy400",fontsize=16,color="burlywood",shape="box"];763[label="xy400/Left xy4000",fontsize=10,color="white",style="solid",shape="box"];59 -> 763[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 763 -> 86[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 764[label="xy400/Right xy4000",fontsize=10,color="white",style="solid",shape="box"];59 -> 764[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 764 -> 87[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 60[label="Right xy300 == xy400",fontsize=16,color="burlywood",shape="box"];765[label="xy400/Left xy4000",fontsize=10,color="white",style="solid",shape="box"];60 -> 765[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 765 -> 88[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 766[label="xy400/Right xy4000",fontsize=10,color="white",style="solid",shape="box"];60 -> 766[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 766 -> 89[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 61[label="xy300 : xy301 == xy400",fontsize=16,color="burlywood",shape="box"];767[label="xy400/xy4000 : xy4001",fontsize=10,color="white",style="solid",shape="box"];61 -> 767[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 767 -> 90[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 768[label="xy400/[]",fontsize=10,color="white",style="solid",shape="box"];61 -> 768[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 768 -> 91[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 62[label="[] == xy400",fontsize=16,color="burlywood",shape="box"];769[label="xy400/xy4000 : xy4001",fontsize=10,color="white",style="solid",shape="box"];62 -> 769[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 769 -> 92[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 770[label="xy400/[]",fontsize=10,color="white",style="solid",shape="box"];62 -> 770[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 770 -> 93[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 63[label="Integer xy300 == xy400",fontsize=16,color="burlywood",shape="box"];771[label="xy400/Integer xy4000",fontsize=10,color="white",style="solid",shape="box"];63 -> 771[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 771 -> 94[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 64[label="xy300 :% xy301 == xy400",fontsize=16,color="burlywood",shape="box"];772[label="xy400/xy4000 :% xy4001",fontsize=10,color="white",style="solid",shape="box"];64 -> 772[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 772 -> 95[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 65[label="(xy300,xy301,xy302) == xy400",fontsize=16,color="burlywood",shape="box"];773[label="xy400/(xy4000,xy4001,xy4002)",fontsize=10,color="white",style="solid",shape="box"];65 -> 773[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 773 -> 96[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 66[label="LT == xy400",fontsize=16,color="burlywood",shape="box"];774[label="xy400/LT",fontsize=10,color="white",style="solid",shape="box"];66 -> 774[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 774 -> 97[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 775[label="xy400/EQ",fontsize=10,color="white",style="solid",shape="box"];66 -> 775[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 775 -> 98[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 776[label="xy400/GT",fontsize=10,color="white",style="solid",shape="box"];66 -> 776[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 776 -> 99[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 67[label="EQ == xy400",fontsize=16,color="burlywood",shape="box"];777[label="xy400/LT",fontsize=10,color="white",style="solid",shape="box"];67 -> 777[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 777 -> 100[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 778[label="xy400/EQ",fontsize=10,color="white",style="solid",shape="box"];67 -> 778[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 778 -> 101[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 779[label="xy400/GT",fontsize=10,color="white",style="solid",shape="box"];67 -> 779[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 779 -> 102[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 68[label="GT == xy400",fontsize=16,color="burlywood",shape="box"];780[label="xy400/LT",fontsize=10,color="white",style="solid",shape="box"];68 -> 780[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 780 -> 103[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 781[label="xy400/EQ",fontsize=10,color="white",style="solid",shape="box"];68 -> 781[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 781 -> 104[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 782[label="xy400/GT",fontsize=10,color="white",style="solid",shape="box"];68 -> 782[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 782 -> 105[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 69[label="() == xy400",fontsize=16,color="burlywood",shape="box"];783[label="xy400/()",fontsize=10,color="white",style="solid",shape="box"];69 -> 783[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 783 -> 106[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 70[label="Just xy11 : List.deleteBy (==) (Just xy12) xy10",fontsize=16,color="green",shape="box"];70 -> 107[label="",style="dashed", color="green", weight=3]; 15.26/5.87 71[label="xy10",fontsize=16,color="green",shape="box"];72[label="primEqDouble (Double xy300 xy301) xy400",fontsize=16,color="burlywood",shape="box"];784[label="xy400/Double xy4000 xy4001",fontsize=10,color="white",style="solid",shape="box"];72 -> 784[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 784 -> 108[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 73[label="primEqChar (Char xy300) xy400",fontsize=16,color="burlywood",shape="box"];785[label="xy400/Char xy4000",fontsize=10,color="white",style="solid",shape="box"];73 -> 785[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 785 -> 109[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 74[label="(xy300,xy301) == (xy4000,xy4001)",fontsize=16,color="black",shape="box"];74 -> 110[label="",style="solid", color="black", weight=3]; 15.26/5.87 75[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];75 -> 111[label="",style="solid", color="black", weight=3]; 15.26/5.87 76[label="Nothing == Just xy4000",fontsize=16,color="black",shape="box"];76 -> 112[label="",style="solid", color="black", weight=3]; 15.26/5.87 77[label="Just xy300 == Nothing",fontsize=16,color="black",shape="box"];77 -> 113[label="",style="solid", color="black", weight=3]; 15.26/5.87 78[label="Just xy300 == Just xy4000",fontsize=16,color="black",shape="box"];78 -> 114[label="",style="solid", color="black", weight=3]; 15.26/5.87 79[label="primEqInt (Pos xy300) xy400",fontsize=16,color="burlywood",shape="box"];786[label="xy300/Succ xy3000",fontsize=10,color="white",style="solid",shape="box"];79 -> 786[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 786 -> 115[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 787[label="xy300/Zero",fontsize=10,color="white",style="solid",shape="box"];79 -> 787[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 787 -> 116[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 80[label="primEqInt (Neg xy300) xy400",fontsize=16,color="burlywood",shape="box"];788[label="xy300/Succ xy3000",fontsize=10,color="white",style="solid",shape="box"];80 -> 788[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 788 -> 117[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 789[label="xy300/Zero",fontsize=10,color="white",style="solid",shape="box"];80 -> 789[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 789 -> 118[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 81[label="primEqFloat (Float xy300 xy301) xy400",fontsize=16,color="burlywood",shape="box"];790[label="xy400/Float xy4000 xy4001",fontsize=10,color="white",style="solid",shape="box"];81 -> 790[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 790 -> 119[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 82[label="False == False",fontsize=16,color="black",shape="box"];82 -> 120[label="",style="solid", color="black", weight=3]; 15.26/5.87 83[label="False == True",fontsize=16,color="black",shape="box"];83 -> 121[label="",style="solid", color="black", weight=3]; 15.26/5.87 84[label="True == False",fontsize=16,color="black",shape="box"];84 -> 122[label="",style="solid", color="black", weight=3]; 15.26/5.87 85[label="True == True",fontsize=16,color="black",shape="box"];85 -> 123[label="",style="solid", color="black", weight=3]; 15.26/5.87 86[label="Left xy300 == Left xy4000",fontsize=16,color="black",shape="box"];86 -> 124[label="",style="solid", color="black", weight=3]; 15.26/5.87 87[label="Left xy300 == Right xy4000",fontsize=16,color="black",shape="box"];87 -> 125[label="",style="solid", color="black", weight=3]; 15.26/5.87 88[label="Right xy300 == Left xy4000",fontsize=16,color="black",shape="box"];88 -> 126[label="",style="solid", color="black", weight=3]; 15.26/5.87 89[label="Right xy300 == Right xy4000",fontsize=16,color="black",shape="box"];89 -> 127[label="",style="solid", color="black", weight=3]; 15.26/5.87 90[label="xy300 : xy301 == xy4000 : xy4001",fontsize=16,color="black",shape="box"];90 -> 128[label="",style="solid", color="black", weight=3]; 15.26/5.87 91[label="xy300 : xy301 == []",fontsize=16,color="black",shape="box"];91 -> 129[label="",style="solid", color="black", weight=3]; 15.26/5.87 92[label="[] == xy4000 : xy4001",fontsize=16,color="black",shape="box"];92 -> 130[label="",style="solid", color="black", weight=3]; 15.26/5.87 93[label="[] == []",fontsize=16,color="black",shape="box"];93 -> 131[label="",style="solid", color="black", weight=3]; 15.26/5.87 94[label="Integer xy300 == Integer xy4000",fontsize=16,color="black",shape="box"];94 -> 132[label="",style="solid", color="black", weight=3]; 15.26/5.87 95[label="xy300 :% xy301 == xy4000 :% xy4001",fontsize=16,color="black",shape="box"];95 -> 133[label="",style="solid", color="black", weight=3]; 15.26/5.87 96[label="(xy300,xy301,xy302) == (xy4000,xy4001,xy4002)",fontsize=16,color="black",shape="box"];96 -> 134[label="",style="solid", color="black", weight=3]; 15.26/5.87 97[label="LT == LT",fontsize=16,color="black",shape="box"];97 -> 135[label="",style="solid", color="black", weight=3]; 15.26/5.87 98[label="LT == EQ",fontsize=16,color="black",shape="box"];98 -> 136[label="",style="solid", color="black", weight=3]; 15.26/5.87 99[label="LT == GT",fontsize=16,color="black",shape="box"];99 -> 137[label="",style="solid", color="black", weight=3]; 15.26/5.87 100[label="EQ == LT",fontsize=16,color="black",shape="box"];100 -> 138[label="",style="solid", color="black", weight=3]; 15.26/5.87 101[label="EQ == EQ",fontsize=16,color="black",shape="box"];101 -> 139[label="",style="solid", color="black", weight=3]; 15.26/5.87 102[label="EQ == GT",fontsize=16,color="black",shape="box"];102 -> 140[label="",style="solid", color="black", weight=3]; 15.26/5.87 103[label="GT == LT",fontsize=16,color="black",shape="box"];103 -> 141[label="",style="solid", color="black", weight=3]; 15.26/5.87 104[label="GT == EQ",fontsize=16,color="black",shape="box"];104 -> 142[label="",style="solid", color="black", weight=3]; 15.26/5.87 105[label="GT == GT",fontsize=16,color="black",shape="box"];105 -> 143[label="",style="solid", color="black", weight=3]; 15.26/5.87 106[label="() == ()",fontsize=16,color="black",shape="box"];106 -> 144[label="",style="solid", color="black", weight=3]; 15.26/5.87 107 -> 5[label="",style="dashed", color="red", weight=0]; 15.26/5.87 107[label="List.deleteBy (==) (Just xy12) xy10",fontsize=16,color="magenta"];107 -> 145[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 107 -> 146[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 108[label="primEqDouble (Double xy300 xy301) (Double xy4000 xy4001)",fontsize=16,color="black",shape="box"];108 -> 147[label="",style="solid", color="black", weight=3]; 15.26/5.87 109[label="primEqChar (Char xy300) (Char xy4000)",fontsize=16,color="black",shape="box"];109 -> 148[label="",style="solid", color="black", weight=3]; 15.26/5.87 110 -> 241[label="",style="dashed", color="red", weight=0]; 15.26/5.87 110[label="xy300 == xy4000 && xy301 == xy4001",fontsize=16,color="magenta"];110 -> 242[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 110 -> 243[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 111[label="True",fontsize=16,color="green",shape="box"];112[label="False",fontsize=16,color="green",shape="box"];113[label="False",fontsize=16,color="green",shape="box"];114[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];791[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 791[label="",style="solid", color="blue", weight=9]; 15.26/5.87 791 -> 159[label="",style="solid", color="blue", weight=3]; 15.26/5.87 792[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 792[label="",style="solid", color="blue", weight=9]; 15.26/5.87 792 -> 160[label="",style="solid", color="blue", weight=3]; 15.26/5.87 793[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 793[label="",style="solid", color="blue", weight=9]; 15.26/5.87 793 -> 161[label="",style="solid", color="blue", weight=3]; 15.26/5.87 794[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 794[label="",style="solid", color="blue", weight=9]; 15.26/5.87 794 -> 162[label="",style="solid", color="blue", weight=3]; 15.26/5.87 795[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 795[label="",style="solid", color="blue", weight=9]; 15.26/5.87 795 -> 163[label="",style="solid", color="blue", weight=3]; 15.26/5.87 796[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 796[label="",style="solid", color="blue", weight=9]; 15.26/5.87 796 -> 164[label="",style="solid", color="blue", weight=3]; 15.26/5.87 797[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 797[label="",style="solid", color="blue", weight=9]; 15.26/5.87 797 -> 165[label="",style="solid", color="blue", weight=3]; 15.26/5.87 798[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 798[label="",style="solid", color="blue", weight=9]; 15.26/5.87 798 -> 166[label="",style="solid", color="blue", weight=3]; 15.26/5.87 799[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 799[label="",style="solid", color="blue", weight=9]; 15.26/5.87 799 -> 167[label="",style="solid", color="blue", weight=3]; 15.26/5.87 800[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 800[label="",style="solid", color="blue", weight=9]; 15.26/5.87 800 -> 168[label="",style="solid", color="blue", weight=3]; 15.26/5.87 801[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 801[label="",style="solid", color="blue", weight=9]; 15.26/5.87 801 -> 169[label="",style="solid", color="blue", weight=3]; 15.26/5.87 802[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 802[label="",style="solid", color="blue", weight=9]; 15.26/5.87 802 -> 170[label="",style="solid", color="blue", weight=3]; 15.26/5.87 803[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 803[label="",style="solid", color="blue", weight=9]; 15.26/5.87 803 -> 171[label="",style="solid", color="blue", weight=3]; 15.26/5.87 804[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];114 -> 804[label="",style="solid", color="blue", weight=9]; 15.26/5.87 804 -> 172[label="",style="solid", color="blue", weight=3]; 15.26/5.87 115[label="primEqInt (Pos (Succ xy3000)) xy400",fontsize=16,color="burlywood",shape="box"];805[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];115 -> 805[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 805 -> 173[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 806[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];115 -> 806[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 806 -> 174[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 116[label="primEqInt (Pos Zero) xy400",fontsize=16,color="burlywood",shape="box"];807[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];116 -> 807[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 807 -> 175[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 808[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];116 -> 808[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 808 -> 176[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 117[label="primEqInt (Neg (Succ xy3000)) xy400",fontsize=16,color="burlywood",shape="box"];809[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];117 -> 809[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 809 -> 177[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 810[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];117 -> 810[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 810 -> 178[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 118[label="primEqInt (Neg Zero) xy400",fontsize=16,color="burlywood",shape="box"];811[label="xy400/Pos xy4000",fontsize=10,color="white",style="solid",shape="box"];118 -> 811[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 811 -> 179[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 812[label="xy400/Neg xy4000",fontsize=10,color="white",style="solid",shape="box"];118 -> 812[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 812 -> 180[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 119[label="primEqFloat (Float xy300 xy301) (Float xy4000 xy4001)",fontsize=16,color="black",shape="box"];119 -> 181[label="",style="solid", color="black", weight=3]; 15.26/5.87 120[label="True",fontsize=16,color="green",shape="box"];121[label="False",fontsize=16,color="green",shape="box"];122[label="False",fontsize=16,color="green",shape="box"];123[label="True",fontsize=16,color="green",shape="box"];124[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];813[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 813[label="",style="solid", color="blue", weight=9]; 15.26/5.87 813 -> 182[label="",style="solid", color="blue", weight=3]; 15.26/5.87 814[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 814[label="",style="solid", color="blue", weight=9]; 15.26/5.87 814 -> 183[label="",style="solid", color="blue", weight=3]; 15.26/5.87 815[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 815[label="",style="solid", color="blue", weight=9]; 15.26/5.87 815 -> 184[label="",style="solid", color="blue", weight=3]; 15.26/5.87 816[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 816[label="",style="solid", color="blue", weight=9]; 15.26/5.87 816 -> 185[label="",style="solid", color="blue", weight=3]; 15.26/5.87 817[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 817[label="",style="solid", color="blue", weight=9]; 15.26/5.87 817 -> 186[label="",style="solid", color="blue", weight=3]; 15.26/5.87 818[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 818[label="",style="solid", color="blue", weight=9]; 15.26/5.87 818 -> 187[label="",style="solid", color="blue", weight=3]; 15.26/5.87 819[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 819[label="",style="solid", color="blue", weight=9]; 15.26/5.87 819 -> 188[label="",style="solid", color="blue", weight=3]; 15.26/5.87 820[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 820[label="",style="solid", color="blue", weight=9]; 15.26/5.87 820 -> 189[label="",style="solid", color="blue", weight=3]; 15.26/5.87 821[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 821[label="",style="solid", color="blue", weight=9]; 15.26/5.87 821 -> 190[label="",style="solid", color="blue", weight=3]; 15.26/5.87 822[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 822[label="",style="solid", color="blue", weight=9]; 15.26/5.87 822 -> 191[label="",style="solid", color="blue", weight=3]; 15.26/5.87 823[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 823[label="",style="solid", color="blue", weight=9]; 15.26/5.87 823 -> 192[label="",style="solid", color="blue", weight=3]; 15.26/5.87 824[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 824[label="",style="solid", color="blue", weight=9]; 15.26/5.87 824 -> 193[label="",style="solid", color="blue", weight=3]; 15.26/5.87 825[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 825[label="",style="solid", color="blue", weight=9]; 15.26/5.87 825 -> 194[label="",style="solid", color="blue", weight=3]; 15.26/5.87 826[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 826[label="",style="solid", color="blue", weight=9]; 15.26/5.87 826 -> 195[label="",style="solid", color="blue", weight=3]; 15.26/5.87 125[label="False",fontsize=16,color="green",shape="box"];126[label="False",fontsize=16,color="green",shape="box"];127[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];827[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 827[label="",style="solid", color="blue", weight=9]; 15.26/5.87 827 -> 196[label="",style="solid", color="blue", weight=3]; 15.26/5.87 828[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 828[label="",style="solid", color="blue", weight=9]; 15.26/5.87 828 -> 197[label="",style="solid", color="blue", weight=3]; 15.26/5.87 829[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 829[label="",style="solid", color="blue", weight=9]; 15.26/5.87 829 -> 198[label="",style="solid", color="blue", weight=3]; 15.26/5.87 830[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 830[label="",style="solid", color="blue", weight=9]; 15.26/5.87 830 -> 199[label="",style="solid", color="blue", weight=3]; 15.26/5.87 831[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 831[label="",style="solid", color="blue", weight=9]; 15.26/5.87 831 -> 200[label="",style="solid", color="blue", weight=3]; 15.26/5.87 832[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 832[label="",style="solid", color="blue", weight=9]; 15.26/5.87 832 -> 201[label="",style="solid", color="blue", weight=3]; 15.26/5.87 833[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 833[label="",style="solid", color="blue", weight=9]; 15.26/5.87 833 -> 202[label="",style="solid", color="blue", weight=3]; 15.26/5.87 834[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 834[label="",style="solid", color="blue", weight=9]; 15.26/5.87 834 -> 203[label="",style="solid", color="blue", weight=3]; 15.26/5.87 835[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 835[label="",style="solid", color="blue", weight=9]; 15.26/5.87 835 -> 204[label="",style="solid", color="blue", weight=3]; 15.26/5.87 836[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 836[label="",style="solid", color="blue", weight=9]; 15.26/5.87 836 -> 205[label="",style="solid", color="blue", weight=3]; 15.26/5.87 837[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 837[label="",style="solid", color="blue", weight=9]; 15.26/5.87 837 -> 206[label="",style="solid", color="blue", weight=3]; 15.26/5.87 838[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 838[label="",style="solid", color="blue", weight=9]; 15.26/5.87 838 -> 207[label="",style="solid", color="blue", weight=3]; 15.26/5.87 839[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 839[label="",style="solid", color="blue", weight=9]; 15.26/5.87 839 -> 208[label="",style="solid", color="blue", weight=3]; 15.26/5.87 840[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];127 -> 840[label="",style="solid", color="blue", weight=9]; 15.26/5.87 840 -> 209[label="",style="solid", color="blue", weight=3]; 15.26/5.87 128 -> 241[label="",style="dashed", color="red", weight=0]; 15.26/5.87 128[label="xy300 == xy4000 && xy301 == xy4001",fontsize=16,color="magenta"];128 -> 244[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 128 -> 245[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 129[label="False",fontsize=16,color="green",shape="box"];130[label="False",fontsize=16,color="green",shape="box"];131[label="True",fontsize=16,color="green",shape="box"];132 -> 55[label="",style="dashed", color="red", weight=0]; 15.26/5.87 132[label="primEqInt xy300 xy4000",fontsize=16,color="magenta"];132 -> 210[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 132 -> 211[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 133 -> 241[label="",style="dashed", color="red", weight=0]; 15.26/5.87 133[label="xy300 == xy4000 && xy301 == xy4001",fontsize=16,color="magenta"];133 -> 246[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 133 -> 247[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 134 -> 241[label="",style="dashed", color="red", weight=0]; 15.26/5.87 134[label="xy300 == xy4000 && xy301 == xy4001 && xy302 == xy4002",fontsize=16,color="magenta"];134 -> 248[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 134 -> 249[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 135[label="True",fontsize=16,color="green",shape="box"];136[label="False",fontsize=16,color="green",shape="box"];137[label="False",fontsize=16,color="green",shape="box"];138[label="False",fontsize=16,color="green",shape="box"];139[label="True",fontsize=16,color="green",shape="box"];140[label="False",fontsize=16,color="green",shape="box"];141[label="False",fontsize=16,color="green",shape="box"];142[label="False",fontsize=16,color="green",shape="box"];143[label="True",fontsize=16,color="green",shape="box"];144[label="True",fontsize=16,color="green",shape="box"];145[label="xy10",fontsize=16,color="green",shape="box"];146[label="Just xy12",fontsize=16,color="green",shape="box"];147 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.87 147[label="xy300 * xy4001 == xy301 * xy4000",fontsize=16,color="magenta"];147 -> 223[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 147 -> 224[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 148[label="primEqNat xy300 xy4000",fontsize=16,color="burlywood",shape="triangle"];841[label="xy300/Succ xy3000",fontsize=10,color="white",style="solid",shape="box"];148 -> 841[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 841 -> 225[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 842[label="xy300/Zero",fontsize=10,color="white",style="solid",shape="box"];148 -> 842[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 842 -> 226[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 242[label="xy301 == xy4001",fontsize=16,color="blue",shape="box"];843[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 843[label="",style="solid", color="blue", weight=9]; 15.26/5.87 843 -> 254[label="",style="solid", color="blue", weight=3]; 15.26/5.87 844[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 844[label="",style="solid", color="blue", weight=9]; 15.26/5.87 844 -> 255[label="",style="solid", color="blue", weight=3]; 15.26/5.87 845[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 845[label="",style="solid", color="blue", weight=9]; 15.26/5.87 845 -> 256[label="",style="solid", color="blue", weight=3]; 15.26/5.87 846[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 846[label="",style="solid", color="blue", weight=9]; 15.26/5.87 846 -> 257[label="",style="solid", color="blue", weight=3]; 15.26/5.87 847[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 847[label="",style="solid", color="blue", weight=9]; 15.26/5.87 847 -> 258[label="",style="solid", color="blue", weight=3]; 15.26/5.87 848[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 848[label="",style="solid", color="blue", weight=9]; 15.26/5.87 848 -> 259[label="",style="solid", color="blue", weight=3]; 15.26/5.87 849[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 849[label="",style="solid", color="blue", weight=9]; 15.26/5.87 849 -> 260[label="",style="solid", color="blue", weight=3]; 15.26/5.87 850[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 850[label="",style="solid", color="blue", weight=9]; 15.26/5.87 850 -> 261[label="",style="solid", color="blue", weight=3]; 15.26/5.87 851[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 851[label="",style="solid", color="blue", weight=9]; 15.26/5.87 851 -> 262[label="",style="solid", color="blue", weight=3]; 15.26/5.87 852[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 852[label="",style="solid", color="blue", weight=9]; 15.26/5.87 852 -> 263[label="",style="solid", color="blue", weight=3]; 15.26/5.87 853[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 853[label="",style="solid", color="blue", weight=9]; 15.26/5.87 853 -> 264[label="",style="solid", color="blue", weight=3]; 15.26/5.87 854[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 854[label="",style="solid", color="blue", weight=9]; 15.26/5.87 854 -> 265[label="",style="solid", color="blue", weight=3]; 15.26/5.87 855[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 855[label="",style="solid", color="blue", weight=9]; 15.26/5.87 855 -> 266[label="",style="solid", color="blue", weight=3]; 15.26/5.87 856[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 856[label="",style="solid", color="blue", weight=9]; 15.26/5.87 856 -> 267[label="",style="solid", color="blue", weight=3]; 15.26/5.87 243[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];857[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 857[label="",style="solid", color="blue", weight=9]; 15.26/5.87 857 -> 268[label="",style="solid", color="blue", weight=3]; 15.26/5.87 858[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 858[label="",style="solid", color="blue", weight=9]; 15.26/5.87 858 -> 269[label="",style="solid", color="blue", weight=3]; 15.26/5.87 859[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 859[label="",style="solid", color="blue", weight=9]; 15.26/5.87 859 -> 270[label="",style="solid", color="blue", weight=3]; 15.26/5.87 860[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 860[label="",style="solid", color="blue", weight=9]; 15.26/5.87 860 -> 271[label="",style="solid", color="blue", weight=3]; 15.26/5.87 861[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 861[label="",style="solid", color="blue", weight=9]; 15.26/5.87 861 -> 272[label="",style="solid", color="blue", weight=3]; 15.26/5.87 862[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 862[label="",style="solid", color="blue", weight=9]; 15.26/5.87 862 -> 273[label="",style="solid", color="blue", weight=3]; 15.26/5.87 863[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 863[label="",style="solid", color="blue", weight=9]; 15.26/5.87 863 -> 274[label="",style="solid", color="blue", weight=3]; 15.26/5.87 864[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 864[label="",style="solid", color="blue", weight=9]; 15.26/5.87 864 -> 275[label="",style="solid", color="blue", weight=3]; 15.26/5.87 865[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 865[label="",style="solid", color="blue", weight=9]; 15.26/5.87 865 -> 276[label="",style="solid", color="blue", weight=3]; 15.26/5.87 866[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 866[label="",style="solid", color="blue", weight=9]; 15.26/5.87 866 -> 277[label="",style="solid", color="blue", weight=3]; 15.26/5.87 867[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 867[label="",style="solid", color="blue", weight=9]; 15.26/5.87 867 -> 278[label="",style="solid", color="blue", weight=3]; 15.26/5.87 868[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 868[label="",style="solid", color="blue", weight=9]; 15.26/5.87 868 -> 279[label="",style="solid", color="blue", weight=3]; 15.26/5.87 869[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 869[label="",style="solid", color="blue", weight=9]; 15.26/5.87 869 -> 280[label="",style="solid", color="blue", weight=3]; 15.26/5.87 870[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 870[label="",style="solid", color="blue", weight=9]; 15.26/5.87 870 -> 281[label="",style="solid", color="blue", weight=3]; 15.26/5.87 241[label="xy25 && xy26",fontsize=16,color="burlywood",shape="triangle"];871[label="xy25/False",fontsize=10,color="white",style="solid",shape="box"];241 -> 871[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 871 -> 282[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 872[label="xy25/True",fontsize=10,color="white",style="solid",shape="box"];241 -> 872[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 872 -> 283[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 159 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.87 159[label="xy300 == xy4000",fontsize=16,color="magenta"];159 -> 284[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 159 -> 285[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 160 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.87 160[label="xy300 == xy4000",fontsize=16,color="magenta"];160 -> 286[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 160 -> 287[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 161 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.87 161[label="xy300 == xy4000",fontsize=16,color="magenta"];161 -> 288[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 161 -> 289[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 162 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.87 162[label="xy300 == xy4000",fontsize=16,color="magenta"];162 -> 290[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 162 -> 291[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 163 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.87 163[label="xy300 == xy4000",fontsize=16,color="magenta"];163 -> 292[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 163 -> 293[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 164 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.87 164[label="xy300 == xy4000",fontsize=16,color="magenta"];164 -> 294[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 164 -> 295[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 165 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.87 165[label="xy300 == xy4000",fontsize=16,color="magenta"];165 -> 296[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 165 -> 297[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 166 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.87 166[label="xy300 == xy4000",fontsize=16,color="magenta"];166 -> 298[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 166 -> 299[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 167 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.87 167[label="xy300 == xy4000",fontsize=16,color="magenta"];167 -> 300[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 167 -> 301[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 168 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.87 168[label="xy300 == xy4000",fontsize=16,color="magenta"];168 -> 302[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 168 -> 303[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 169 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.87 169[label="xy300 == xy4000",fontsize=16,color="magenta"];169 -> 304[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 169 -> 305[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 170 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.87 170[label="xy300 == xy4000",fontsize=16,color="magenta"];170 -> 306[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 170 -> 307[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 171 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.87 171[label="xy300 == xy4000",fontsize=16,color="magenta"];171 -> 308[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 171 -> 309[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 172 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.87 172[label="xy300 == xy4000",fontsize=16,color="magenta"];172 -> 310[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 172 -> 311[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 173[label="primEqInt (Pos (Succ xy3000)) (Pos xy4000)",fontsize=16,color="burlywood",shape="box"];873[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];173 -> 873[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 873 -> 312[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 874[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];173 -> 874[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 874 -> 313[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 174[label="primEqInt (Pos (Succ xy3000)) (Neg xy4000)",fontsize=16,color="black",shape="box"];174 -> 314[label="",style="solid", color="black", weight=3]; 15.26/5.87 175[label="primEqInt (Pos Zero) (Pos xy4000)",fontsize=16,color="burlywood",shape="box"];875[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];175 -> 875[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 875 -> 315[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 876[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];175 -> 876[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 876 -> 316[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 176[label="primEqInt (Pos Zero) (Neg xy4000)",fontsize=16,color="burlywood",shape="box"];877[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];176 -> 877[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 877 -> 317[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 878[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];176 -> 878[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 878 -> 318[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 177[label="primEqInt (Neg (Succ xy3000)) (Pos xy4000)",fontsize=16,color="black",shape="box"];177 -> 319[label="",style="solid", color="black", weight=3]; 15.26/5.87 178[label="primEqInt (Neg (Succ xy3000)) (Neg xy4000)",fontsize=16,color="burlywood",shape="box"];879[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];178 -> 879[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 879 -> 320[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 880[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];178 -> 880[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 880 -> 321[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 179[label="primEqInt (Neg Zero) (Pos xy4000)",fontsize=16,color="burlywood",shape="box"];881[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];179 -> 881[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 881 -> 322[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 882[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];179 -> 882[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 882 -> 323[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 180[label="primEqInt (Neg Zero) (Neg xy4000)",fontsize=16,color="burlywood",shape="box"];883[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];180 -> 883[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 883 -> 324[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 884[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];180 -> 884[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 884 -> 325[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 181 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.87 181[label="xy300 * xy4001 == xy301 * xy4000",fontsize=16,color="magenta"];181 -> 326[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 181 -> 327[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 182 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.87 182[label="xy300 == xy4000",fontsize=16,color="magenta"];182 -> 328[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 182 -> 329[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 183 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.87 183[label="xy300 == xy4000",fontsize=16,color="magenta"];183 -> 330[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 183 -> 331[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 184 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.87 184[label="xy300 == xy4000",fontsize=16,color="magenta"];184 -> 332[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 184 -> 333[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 185 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.87 185[label="xy300 == xy4000",fontsize=16,color="magenta"];185 -> 334[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 185 -> 335[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 186 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.87 186[label="xy300 == xy4000",fontsize=16,color="magenta"];186 -> 336[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 186 -> 337[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 187 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.87 187[label="xy300 == xy4000",fontsize=16,color="magenta"];187 -> 338[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 187 -> 339[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 188 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.87 188[label="xy300 == xy4000",fontsize=16,color="magenta"];188 -> 340[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 188 -> 341[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 189 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.87 189[label="xy300 == xy4000",fontsize=16,color="magenta"];189 -> 342[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 189 -> 343[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 190 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.87 190[label="xy300 == xy4000",fontsize=16,color="magenta"];190 -> 344[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 190 -> 345[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 191 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.87 191[label="xy300 == xy4000",fontsize=16,color="magenta"];191 -> 346[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 191 -> 347[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 192 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.87 192[label="xy300 == xy4000",fontsize=16,color="magenta"];192 -> 348[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 192 -> 349[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 193 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.87 193[label="xy300 == xy4000",fontsize=16,color="magenta"];193 -> 350[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 193 -> 351[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 194 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.87 194[label="xy300 == xy4000",fontsize=16,color="magenta"];194 -> 352[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 194 -> 353[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 195 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.87 195[label="xy300 == xy4000",fontsize=16,color="magenta"];195 -> 354[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 195 -> 355[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 196 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.87 196[label="xy300 == xy4000",fontsize=16,color="magenta"];196 -> 356[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 196 -> 357[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 197 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.87 197[label="xy300 == xy4000",fontsize=16,color="magenta"];197 -> 358[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 197 -> 359[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 198 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.87 198[label="xy300 == xy4000",fontsize=16,color="magenta"];198 -> 360[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 198 -> 361[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 199 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.87 199[label="xy300 == xy4000",fontsize=16,color="magenta"];199 -> 362[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 199 -> 363[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 200 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.87 200[label="xy300 == xy4000",fontsize=16,color="magenta"];200 -> 364[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 200 -> 365[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 201 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.87 201[label="xy300 == xy4000",fontsize=16,color="magenta"];201 -> 366[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 201 -> 367[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 202 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.87 202[label="xy300 == xy4000",fontsize=16,color="magenta"];202 -> 368[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 202 -> 369[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 203 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.87 203[label="xy300 == xy4000",fontsize=16,color="magenta"];203 -> 370[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 203 -> 371[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 204 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.87 204[label="xy300 == xy4000",fontsize=16,color="magenta"];204 -> 372[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 204 -> 373[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 205 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.87 205[label="xy300 == xy4000",fontsize=16,color="magenta"];205 -> 374[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 205 -> 375[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 206 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.87 206[label="xy300 == xy4000",fontsize=16,color="magenta"];206 -> 376[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 206 -> 377[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 207 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.87 207[label="xy300 == xy4000",fontsize=16,color="magenta"];207 -> 378[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 207 -> 379[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 208 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.87 208[label="xy300 == xy4000",fontsize=16,color="magenta"];208 -> 380[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 208 -> 381[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 209 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.87 209[label="xy300 == xy4000",fontsize=16,color="magenta"];209 -> 382[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 209 -> 383[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 244 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.87 244[label="xy301 == xy4001",fontsize=16,color="magenta"];244 -> 384[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 244 -> 385[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 245[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];885[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 885[label="",style="solid", color="blue", weight=9]; 15.26/5.87 885 -> 386[label="",style="solid", color="blue", weight=3]; 15.26/5.87 886[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 886[label="",style="solid", color="blue", weight=9]; 15.26/5.87 886 -> 387[label="",style="solid", color="blue", weight=3]; 15.26/5.87 887[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 887[label="",style="solid", color="blue", weight=9]; 15.26/5.87 887 -> 388[label="",style="solid", color="blue", weight=3]; 15.26/5.87 888[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 888[label="",style="solid", color="blue", weight=9]; 15.26/5.87 888 -> 389[label="",style="solid", color="blue", weight=3]; 15.26/5.87 889[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 889[label="",style="solid", color="blue", weight=9]; 15.26/5.87 889 -> 390[label="",style="solid", color="blue", weight=3]; 15.26/5.87 890[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 890[label="",style="solid", color="blue", weight=9]; 15.26/5.87 890 -> 391[label="",style="solid", color="blue", weight=3]; 15.26/5.87 891[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 891[label="",style="solid", color="blue", weight=9]; 15.26/5.87 891 -> 392[label="",style="solid", color="blue", weight=3]; 15.26/5.87 892[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 892[label="",style="solid", color="blue", weight=9]; 15.26/5.87 892 -> 393[label="",style="solid", color="blue", weight=3]; 15.26/5.87 893[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 893[label="",style="solid", color="blue", weight=9]; 15.26/5.87 893 -> 394[label="",style="solid", color="blue", weight=3]; 15.26/5.87 894[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 894[label="",style="solid", color="blue", weight=9]; 15.26/5.87 894 -> 395[label="",style="solid", color="blue", weight=3]; 15.26/5.87 895[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 895[label="",style="solid", color="blue", weight=9]; 15.26/5.87 895 -> 396[label="",style="solid", color="blue", weight=3]; 15.26/5.87 896[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 896[label="",style="solid", color="blue", weight=9]; 15.26/5.87 896 -> 397[label="",style="solid", color="blue", weight=3]; 15.26/5.87 897[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 897[label="",style="solid", color="blue", weight=9]; 15.26/5.87 897 -> 398[label="",style="solid", color="blue", weight=3]; 15.26/5.87 898[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 898[label="",style="solid", color="blue", weight=9]; 15.26/5.87 898 -> 399[label="",style="solid", color="blue", weight=3]; 15.26/5.87 210[label="xy300",fontsize=16,color="green",shape="box"];211[label="xy4000",fontsize=16,color="green",shape="box"];246[label="xy301 == xy4001",fontsize=16,color="blue",shape="box"];899[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];246 -> 899[label="",style="solid", color="blue", weight=9]; 15.26/5.87 899 -> 400[label="",style="solid", color="blue", weight=3]; 15.26/5.87 900[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];246 -> 900[label="",style="solid", color="blue", weight=9]; 15.26/5.87 900 -> 401[label="",style="solid", color="blue", weight=3]; 15.26/5.87 247[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];901[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 901[label="",style="solid", color="blue", weight=9]; 15.26/5.87 901 -> 402[label="",style="solid", color="blue", weight=3]; 15.26/5.87 902[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 902[label="",style="solid", color="blue", weight=9]; 15.26/5.87 902 -> 403[label="",style="solid", color="blue", weight=3]; 15.26/5.87 248 -> 241[label="",style="dashed", color="red", weight=0]; 15.26/5.87 248[label="xy301 == xy4001 && xy302 == xy4002",fontsize=16,color="magenta"];248 -> 404[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 248 -> 405[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 249[label="xy300 == xy4000",fontsize=16,color="blue",shape="box"];903[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 903[label="",style="solid", color="blue", weight=9]; 15.26/5.87 903 -> 406[label="",style="solid", color="blue", weight=3]; 15.26/5.87 904[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 904[label="",style="solid", color="blue", weight=9]; 15.26/5.87 904 -> 407[label="",style="solid", color="blue", weight=3]; 15.26/5.87 905[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 905[label="",style="solid", color="blue", weight=9]; 15.26/5.87 905 -> 408[label="",style="solid", color="blue", weight=3]; 15.26/5.87 906[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 906[label="",style="solid", color="blue", weight=9]; 15.26/5.87 906 -> 409[label="",style="solid", color="blue", weight=3]; 15.26/5.87 907[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 907[label="",style="solid", color="blue", weight=9]; 15.26/5.87 907 -> 410[label="",style="solid", color="blue", weight=3]; 15.26/5.87 908[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 908[label="",style="solid", color="blue", weight=9]; 15.26/5.87 908 -> 411[label="",style="solid", color="blue", weight=3]; 15.26/5.87 909[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 909[label="",style="solid", color="blue", weight=9]; 15.26/5.87 909 -> 412[label="",style="solid", color="blue", weight=3]; 15.26/5.87 910[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 910[label="",style="solid", color="blue", weight=9]; 15.26/5.87 910 -> 413[label="",style="solid", color="blue", weight=3]; 15.26/5.87 911[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 911[label="",style="solid", color="blue", weight=9]; 15.26/5.87 911 -> 414[label="",style="solid", color="blue", weight=3]; 15.26/5.87 912[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 912[label="",style="solid", color="blue", weight=9]; 15.26/5.87 912 -> 415[label="",style="solid", color="blue", weight=3]; 15.26/5.87 913[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 913[label="",style="solid", color="blue", weight=9]; 15.26/5.87 913 -> 416[label="",style="solid", color="blue", weight=3]; 15.26/5.87 914[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 914[label="",style="solid", color="blue", weight=9]; 15.26/5.87 914 -> 417[label="",style="solid", color="blue", weight=3]; 15.26/5.87 915[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 915[label="",style="solid", color="blue", weight=9]; 15.26/5.87 915 -> 418[label="",style="solid", color="blue", weight=3]; 15.26/5.87 916[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];249 -> 916[label="",style="solid", color="blue", weight=9]; 15.26/5.87 916 -> 419[label="",style="solid", color="blue", weight=3]; 15.26/5.87 223[label="xy300 * xy4001",fontsize=16,color="black",shape="triangle"];223 -> 420[label="",style="solid", color="black", weight=3]; 15.26/5.87 224 -> 223[label="",style="dashed", color="red", weight=0]; 15.26/5.87 224[label="xy301 * xy4000",fontsize=16,color="magenta"];224 -> 421[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 224 -> 422[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 225[label="primEqNat (Succ xy3000) xy4000",fontsize=16,color="burlywood",shape="box"];917[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];225 -> 917[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 917 -> 423[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 918[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];225 -> 918[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 918 -> 424[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 226[label="primEqNat Zero xy4000",fontsize=16,color="burlywood",shape="box"];919[label="xy4000/Succ xy40000",fontsize=10,color="white",style="solid",shape="box"];226 -> 919[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 919 -> 425[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 920[label="xy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];226 -> 920[label="",style="solid", color="burlywood", weight=9]; 15.26/5.87 920 -> 426[label="",style="solid", color="burlywood", weight=3]; 15.26/5.87 254 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.87 254[label="xy301 == xy4001",fontsize=16,color="magenta"];254 -> 427[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 254 -> 428[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 255 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.87 255[label="xy301 == xy4001",fontsize=16,color="magenta"];255 -> 429[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 255 -> 430[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 256 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.87 256[label="xy301 == xy4001",fontsize=16,color="magenta"];256 -> 431[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 256 -> 432[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 257 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.87 257[label="xy301 == xy4001",fontsize=16,color="magenta"];257 -> 433[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 257 -> 434[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 258 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.87 258[label="xy301 == xy4001",fontsize=16,color="magenta"];258 -> 435[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 258 -> 436[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 259 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.87 259[label="xy301 == xy4001",fontsize=16,color="magenta"];259 -> 437[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 259 -> 438[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 260 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.87 260[label="xy301 == xy4001",fontsize=16,color="magenta"];260 -> 439[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 260 -> 440[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 261 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.87 261[label="xy301 == xy4001",fontsize=16,color="magenta"];261 -> 441[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 261 -> 442[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 262 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.87 262[label="xy301 == xy4001",fontsize=16,color="magenta"];262 -> 443[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 262 -> 444[label="",style="dashed", color="magenta", weight=3]; 15.26/5.87 263 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.88 263[label="xy301 == xy4001",fontsize=16,color="magenta"];263 -> 445[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 263 -> 446[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 264 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.88 264[label="xy301 == xy4001",fontsize=16,color="magenta"];264 -> 447[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 264 -> 448[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 265 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.88 265[label="xy301 == xy4001",fontsize=16,color="magenta"];265 -> 449[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 265 -> 450[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 266 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.88 266[label="xy301 == xy4001",fontsize=16,color="magenta"];266 -> 451[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 266 -> 452[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 267 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.88 267[label="xy301 == xy4001",fontsize=16,color="magenta"];267 -> 453[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 267 -> 454[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 268 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.88 268[label="xy300 == xy4000",fontsize=16,color="magenta"];268 -> 455[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 268 -> 456[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 269 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.88 269[label="xy300 == xy4000",fontsize=16,color="magenta"];269 -> 457[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 269 -> 458[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 270 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.88 270[label="xy300 == xy4000",fontsize=16,color="magenta"];270 -> 459[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 270 -> 460[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 271 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.88 271[label="xy300 == xy4000",fontsize=16,color="magenta"];271 -> 461[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 271 -> 462[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 272 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.88 272[label="xy300 == xy4000",fontsize=16,color="magenta"];272 -> 463[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 272 -> 464[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 273 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.88 273[label="xy300 == xy4000",fontsize=16,color="magenta"];273 -> 465[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 273 -> 466[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 274 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.88 274[label="xy300 == xy4000",fontsize=16,color="magenta"];274 -> 467[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 274 -> 468[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 275 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.88 275[label="xy300 == xy4000",fontsize=16,color="magenta"];275 -> 469[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 275 -> 470[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 276 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.88 276[label="xy300 == xy4000",fontsize=16,color="magenta"];276 -> 471[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 276 -> 472[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 277 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.88 277[label="xy300 == xy4000",fontsize=16,color="magenta"];277 -> 473[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 277 -> 474[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 278 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.88 278[label="xy300 == xy4000",fontsize=16,color="magenta"];278 -> 475[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 278 -> 476[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 279 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.88 279[label="xy300 == xy4000",fontsize=16,color="magenta"];279 -> 477[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 279 -> 478[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 280 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.88 280[label="xy300 == xy4000",fontsize=16,color="magenta"];280 -> 479[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 280 -> 480[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 281 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.88 281[label="xy300 == xy4000",fontsize=16,color="magenta"];281 -> 481[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 281 -> 482[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 282[label="False && xy26",fontsize=16,color="black",shape="box"];282 -> 483[label="",style="solid", color="black", weight=3]; 15.26/5.88 283[label="True && xy26",fontsize=16,color="black",shape="box"];283 -> 484[label="",style="solid", color="black", weight=3]; 15.26/5.88 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"];310[label="xy300",fontsize=16,color="green",shape="box"];311[label="xy4000",fontsize=16,color="green",shape="box"];312[label="primEqInt (Pos (Succ xy3000)) (Pos (Succ xy40000))",fontsize=16,color="black",shape="box"];312 -> 485[label="",style="solid", color="black", weight=3]; 15.26/5.88 313[label="primEqInt (Pos (Succ xy3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];313 -> 486[label="",style="solid", color="black", weight=3]; 15.26/5.88 314[label="False",fontsize=16,color="green",shape="box"];315[label="primEqInt (Pos Zero) (Pos (Succ xy40000))",fontsize=16,color="black",shape="box"];315 -> 487[label="",style="solid", color="black", weight=3]; 15.26/5.88 316[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];316 -> 488[label="",style="solid", color="black", weight=3]; 15.26/5.88 317[label="primEqInt (Pos Zero) (Neg (Succ xy40000))",fontsize=16,color="black",shape="box"];317 -> 489[label="",style="solid", color="black", weight=3]; 15.26/5.88 318[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];318 -> 490[label="",style="solid", color="black", weight=3]; 15.26/5.88 319[label="False",fontsize=16,color="green",shape="box"];320[label="primEqInt (Neg (Succ xy3000)) (Neg (Succ xy40000))",fontsize=16,color="black",shape="box"];320 -> 491[label="",style="solid", color="black", weight=3]; 15.26/5.88 321[label="primEqInt (Neg (Succ xy3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];321 -> 492[label="",style="solid", color="black", weight=3]; 15.26/5.88 322[label="primEqInt (Neg Zero) (Pos (Succ xy40000))",fontsize=16,color="black",shape="box"];322 -> 493[label="",style="solid", color="black", weight=3]; 15.26/5.88 323[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];323 -> 494[label="",style="solid", color="black", weight=3]; 15.26/5.88 324[label="primEqInt (Neg Zero) (Neg (Succ xy40000))",fontsize=16,color="black",shape="box"];324 -> 495[label="",style="solid", color="black", weight=3]; 15.26/5.88 325[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];325 -> 496[label="",style="solid", color="black", weight=3]; 15.26/5.88 326 -> 223[label="",style="dashed", color="red", weight=0]; 15.26/5.88 326[label="xy300 * xy4001",fontsize=16,color="magenta"];326 -> 497[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 326 -> 498[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 327 -> 223[label="",style="dashed", color="red", weight=0]; 15.26/5.88 327[label="xy301 * xy4000",fontsize=16,color="magenta"];327 -> 499[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 327 -> 500[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 328[label="xy300",fontsize=16,color="green",shape="box"];329[label="xy4000",fontsize=16,color="green",shape="box"];330[label="xy300",fontsize=16,color="green",shape="box"];331[label="xy4000",fontsize=16,color="green",shape="box"];332[label="xy300",fontsize=16,color="green",shape="box"];333[label="xy4000",fontsize=16,color="green",shape="box"];334[label="xy300",fontsize=16,color="green",shape="box"];335[label="xy4000",fontsize=16,color="green",shape="box"];336[label="xy300",fontsize=16,color="green",shape="box"];337[label="xy4000",fontsize=16,color="green",shape="box"];338[label="xy300",fontsize=16,color="green",shape="box"];339[label="xy4000",fontsize=16,color="green",shape="box"];340[label="xy300",fontsize=16,color="green",shape="box"];341[label="xy4000",fontsize=16,color="green",shape="box"];342[label="xy300",fontsize=16,color="green",shape="box"];343[label="xy4000",fontsize=16,color="green",shape="box"];344[label="xy300",fontsize=16,color="green",shape="box"];345[label="xy4000",fontsize=16,color="green",shape="box"];346[label="xy300",fontsize=16,color="green",shape="box"];347[label="xy4000",fontsize=16,color="green",shape="box"];348[label="xy300",fontsize=16,color="green",shape="box"];349[label="xy4000",fontsize=16,color="green",shape="box"];350[label="xy300",fontsize=16,color="green",shape="box"];351[label="xy4000",fontsize=16,color="green",shape="box"];352[label="xy300",fontsize=16,color="green",shape="box"];353[label="xy4000",fontsize=16,color="green",shape="box"];354[label="xy300",fontsize=16,color="green",shape="box"];355[label="xy4000",fontsize=16,color="green",shape="box"];356[label="xy300",fontsize=16,color="green",shape="box"];357[label="xy4000",fontsize=16,color="green",shape="box"];358[label="xy300",fontsize=16,color="green",shape="box"];359[label="xy4000",fontsize=16,color="green",shape="box"];360[label="xy300",fontsize=16,color="green",shape="box"];361[label="xy4000",fontsize=16,color="green",shape="box"];362[label="xy300",fontsize=16,color="green",shape="box"];363[label="xy4000",fontsize=16,color="green",shape="box"];364[label="xy300",fontsize=16,color="green",shape="box"];365[label="xy4000",fontsize=16,color="green",shape="box"];366[label="xy300",fontsize=16,color="green",shape="box"];367[label="xy4000",fontsize=16,color="green",shape="box"];368[label="xy300",fontsize=16,color="green",shape="box"];369[label="xy4000",fontsize=16,color="green",shape="box"];370[label="xy300",fontsize=16,color="green",shape="box"];371[label="xy4000",fontsize=16,color="green",shape="box"];372[label="xy300",fontsize=16,color="green",shape="box"];373[label="xy4000",fontsize=16,color="green",shape="box"];374[label="xy300",fontsize=16,color="green",shape="box"];375[label="xy4000",fontsize=16,color="green",shape="box"];376[label="xy300",fontsize=16,color="green",shape="box"];377[label="xy4000",fontsize=16,color="green",shape="box"];378[label="xy300",fontsize=16,color="green",shape="box"];379[label="xy4000",fontsize=16,color="green",shape="box"];380[label="xy300",fontsize=16,color="green",shape="box"];381[label="xy4000",fontsize=16,color="green",shape="box"];382[label="xy300",fontsize=16,color="green",shape="box"];383[label="xy4000",fontsize=16,color="green",shape="box"];384[label="xy301",fontsize=16,color="green",shape="box"];385[label="xy4001",fontsize=16,color="green",shape="box"];386 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.88 386[label="xy300 == xy4000",fontsize=16,color="magenta"];386 -> 501[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 386 -> 502[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 387 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.88 387[label="xy300 == xy4000",fontsize=16,color="magenta"];387 -> 503[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 387 -> 504[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 388 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.88 388[label="xy300 == xy4000",fontsize=16,color="magenta"];388 -> 505[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 388 -> 506[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 389 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.88 389[label="xy300 == xy4000",fontsize=16,color="magenta"];389 -> 507[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 389 -> 508[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 390 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.88 390[label="xy300 == xy4000",fontsize=16,color="magenta"];390 -> 509[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 390 -> 510[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 391 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.88 391[label="xy300 == xy4000",fontsize=16,color="magenta"];391 -> 511[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 391 -> 512[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 392 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.88 392[label="xy300 == xy4000",fontsize=16,color="magenta"];392 -> 513[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 392 -> 514[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 393 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.88 393[label="xy300 == xy4000",fontsize=16,color="magenta"];393 -> 515[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 393 -> 516[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 394 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.88 394[label="xy300 == xy4000",fontsize=16,color="magenta"];394 -> 517[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 394 -> 518[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 395 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.88 395[label="xy300 == xy4000",fontsize=16,color="magenta"];395 -> 519[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 395 -> 520[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 396 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.88 396[label="xy300 == xy4000",fontsize=16,color="magenta"];396 -> 521[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 396 -> 522[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 397 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.88 397[label="xy300 == xy4000",fontsize=16,color="magenta"];397 -> 523[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 397 -> 524[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 398 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.88 398[label="xy300 == xy4000",fontsize=16,color="magenta"];398 -> 525[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 398 -> 526[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 399 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.88 399[label="xy300 == xy4000",fontsize=16,color="magenta"];399 -> 527[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 399 -> 528[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 400 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.88 400[label="xy301 == xy4001",fontsize=16,color="magenta"];400 -> 529[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 400 -> 530[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 401 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.88 401[label="xy301 == xy4001",fontsize=16,color="magenta"];401 -> 531[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 401 -> 532[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 402 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.88 402[label="xy300 == xy4000",fontsize=16,color="magenta"];402 -> 533[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 402 -> 534[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 403 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.88 403[label="xy300 == xy4000",fontsize=16,color="magenta"];403 -> 535[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 403 -> 536[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 404[label="xy302 == xy4002",fontsize=16,color="blue",shape="box"];921[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 921[label="",style="solid", color="blue", weight=9]; 15.26/5.88 921 -> 537[label="",style="solid", color="blue", weight=3]; 15.26/5.88 922[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 922[label="",style="solid", color="blue", weight=9]; 15.26/5.88 922 -> 538[label="",style="solid", color="blue", weight=3]; 15.26/5.88 923[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 923[label="",style="solid", color="blue", weight=9]; 15.26/5.88 923 -> 539[label="",style="solid", color="blue", weight=3]; 15.26/5.88 924[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 924[label="",style="solid", color="blue", weight=9]; 15.26/5.88 924 -> 540[label="",style="solid", color="blue", weight=3]; 15.26/5.88 925[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 925[label="",style="solid", color="blue", weight=9]; 15.26/5.88 925 -> 541[label="",style="solid", color="blue", weight=3]; 15.26/5.88 926[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 926[label="",style="solid", color="blue", weight=9]; 15.26/5.88 926 -> 542[label="",style="solid", color="blue", weight=3]; 15.26/5.88 927[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 927[label="",style="solid", color="blue", weight=9]; 15.26/5.88 927 -> 543[label="",style="solid", color="blue", weight=3]; 15.26/5.88 928[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 928[label="",style="solid", color="blue", weight=9]; 15.26/5.88 928 -> 544[label="",style="solid", color="blue", weight=3]; 15.26/5.88 929[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 929[label="",style="solid", color="blue", weight=9]; 15.26/5.88 929 -> 545[label="",style="solid", color="blue", weight=3]; 15.26/5.88 930[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 930[label="",style="solid", color="blue", weight=9]; 15.26/5.88 930 -> 546[label="",style="solid", color="blue", weight=3]; 15.26/5.88 931[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 931[label="",style="solid", color="blue", weight=9]; 15.26/5.88 931 -> 547[label="",style="solid", color="blue", weight=3]; 15.26/5.88 932[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 932[label="",style="solid", color="blue", weight=9]; 15.26/5.88 932 -> 548[label="",style="solid", color="blue", weight=3]; 15.26/5.88 933[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 933[label="",style="solid", color="blue", weight=9]; 15.26/5.88 933 -> 549[label="",style="solid", color="blue", weight=3]; 15.26/5.88 934[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 934[label="",style="solid", color="blue", weight=9]; 15.26/5.88 934 -> 550[label="",style="solid", color="blue", weight=3]; 15.26/5.88 405[label="xy301 == xy4001",fontsize=16,color="blue",shape="box"];935[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 935[label="",style="solid", color="blue", weight=9]; 15.26/5.88 935 -> 551[label="",style="solid", color="blue", weight=3]; 15.26/5.88 936[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 936[label="",style="solid", color="blue", weight=9]; 15.26/5.88 936 -> 552[label="",style="solid", color="blue", weight=3]; 15.26/5.88 937[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 937[label="",style="solid", color="blue", weight=9]; 15.26/5.88 937 -> 553[label="",style="solid", color="blue", weight=3]; 15.26/5.88 938[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 938[label="",style="solid", color="blue", weight=9]; 15.26/5.88 938 -> 554[label="",style="solid", color="blue", weight=3]; 15.26/5.88 939[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 939[label="",style="solid", color="blue", weight=9]; 15.26/5.88 939 -> 555[label="",style="solid", color="blue", weight=3]; 15.26/5.88 940[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 940[label="",style="solid", color="blue", weight=9]; 15.26/5.88 940 -> 556[label="",style="solid", color="blue", weight=3]; 15.26/5.88 941[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 941[label="",style="solid", color="blue", weight=9]; 15.26/5.88 941 -> 557[label="",style="solid", color="blue", weight=3]; 15.26/5.88 942[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 942[label="",style="solid", color="blue", weight=9]; 15.26/5.88 942 -> 558[label="",style="solid", color="blue", weight=3]; 15.26/5.88 943[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 943[label="",style="solid", color="blue", weight=9]; 15.26/5.88 943 -> 559[label="",style="solid", color="blue", weight=3]; 15.26/5.88 944[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 944[label="",style="solid", color="blue", weight=9]; 15.26/5.88 944 -> 560[label="",style="solid", color="blue", weight=3]; 15.26/5.88 945[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 945[label="",style="solid", color="blue", weight=9]; 15.26/5.88 945 -> 561[label="",style="solid", color="blue", weight=3]; 15.26/5.88 946[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 946[label="",style="solid", color="blue", weight=9]; 15.26/5.88 946 -> 562[label="",style="solid", color="blue", weight=3]; 15.26/5.88 947[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 947[label="",style="solid", color="blue", weight=9]; 15.26/5.88 947 -> 563[label="",style="solid", color="blue", weight=3]; 15.26/5.88 948[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 948[label="",style="solid", color="blue", weight=9]; 15.26/5.88 948 -> 564[label="",style="solid", color="blue", weight=3]; 15.26/5.88 406 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.88 406[label="xy300 == xy4000",fontsize=16,color="magenta"];406 -> 565[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 406 -> 566[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 407 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.88 407[label="xy300 == xy4000",fontsize=16,color="magenta"];407 -> 567[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 407 -> 568[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 408 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.88 408[label="xy300 == xy4000",fontsize=16,color="magenta"];408 -> 569[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 408 -> 570[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 409 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.88 409[label="xy300 == xy4000",fontsize=16,color="magenta"];409 -> 571[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 409 -> 572[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 410 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.88 410[label="xy300 == xy4000",fontsize=16,color="magenta"];410 -> 573[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 410 -> 574[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 411 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.88 411[label="xy300 == xy4000",fontsize=16,color="magenta"];411 -> 575[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 411 -> 576[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 412 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.88 412[label="xy300 == xy4000",fontsize=16,color="magenta"];412 -> 577[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 412 -> 578[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 413 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.88 413[label="xy300 == xy4000",fontsize=16,color="magenta"];413 -> 579[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 413 -> 580[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 414 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.88 414[label="xy300 == xy4000",fontsize=16,color="magenta"];414 -> 581[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 414 -> 582[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 415 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.88 415[label="xy300 == xy4000",fontsize=16,color="magenta"];415 -> 583[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 415 -> 584[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 416 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.88 416[label="xy300 == xy4000",fontsize=16,color="magenta"];416 -> 585[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 416 -> 586[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 417 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.88 417[label="xy300 == xy4000",fontsize=16,color="magenta"];417 -> 587[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 417 -> 588[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 418 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.88 418[label="xy300 == xy4000",fontsize=16,color="magenta"];418 -> 589[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 418 -> 590[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 419 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.88 419[label="xy300 == xy4000",fontsize=16,color="magenta"];419 -> 591[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 419 -> 592[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 420[label="primMulInt xy300 xy4001",fontsize=16,color="burlywood",shape="box"];949[label="xy300/Pos xy3000",fontsize=10,color="white",style="solid",shape="box"];420 -> 949[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 949 -> 593[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 950[label="xy300/Neg xy3000",fontsize=10,color="white",style="solid",shape="box"];420 -> 950[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 950 -> 594[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 421[label="xy4000",fontsize=16,color="green",shape="box"];422[label="xy301",fontsize=16,color="green",shape="box"];423[label="primEqNat (Succ xy3000) (Succ xy40000)",fontsize=16,color="black",shape="box"];423 -> 595[label="",style="solid", color="black", weight=3]; 15.26/5.88 424[label="primEqNat (Succ xy3000) Zero",fontsize=16,color="black",shape="box"];424 -> 596[label="",style="solid", color="black", weight=3]; 15.26/5.88 425[label="primEqNat Zero (Succ xy40000)",fontsize=16,color="black",shape="box"];425 -> 597[label="",style="solid", color="black", weight=3]; 15.26/5.88 426[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];426 -> 598[label="",style="solid", color="black", weight=3]; 15.26/5.88 427[label="xy301",fontsize=16,color="green",shape="box"];428[label="xy4001",fontsize=16,color="green",shape="box"];429[label="xy301",fontsize=16,color="green",shape="box"];430[label="xy4001",fontsize=16,color="green",shape="box"];431[label="xy301",fontsize=16,color="green",shape="box"];432[label="xy4001",fontsize=16,color="green",shape="box"];433[label="xy301",fontsize=16,color="green",shape="box"];434[label="xy4001",fontsize=16,color="green",shape="box"];435[label="xy301",fontsize=16,color="green",shape="box"];436[label="xy4001",fontsize=16,color="green",shape="box"];437[label="xy301",fontsize=16,color="green",shape="box"];438[label="xy4001",fontsize=16,color="green",shape="box"];439[label="xy301",fontsize=16,color="green",shape="box"];440[label="xy4001",fontsize=16,color="green",shape="box"];441[label="xy301",fontsize=16,color="green",shape="box"];442[label="xy4001",fontsize=16,color="green",shape="box"];443[label="xy301",fontsize=16,color="green",shape="box"];444[label="xy4001",fontsize=16,color="green",shape="box"];445[label="xy301",fontsize=16,color="green",shape="box"];446[label="xy4001",fontsize=16,color="green",shape="box"];447[label="xy301",fontsize=16,color="green",shape="box"];448[label="xy4001",fontsize=16,color="green",shape="box"];449[label="xy301",fontsize=16,color="green",shape="box"];450[label="xy4001",fontsize=16,color="green",shape="box"];451[label="xy301",fontsize=16,color="green",shape="box"];452[label="xy4001",fontsize=16,color="green",shape="box"];453[label="xy301",fontsize=16,color="green",shape="box"];454[label="xy4001",fontsize=16,color="green",shape="box"];455[label="xy300",fontsize=16,color="green",shape="box"];456[label="xy4000",fontsize=16,color="green",shape="box"];457[label="xy300",fontsize=16,color="green",shape="box"];458[label="xy4000",fontsize=16,color="green",shape="box"];459[label="xy300",fontsize=16,color="green",shape="box"];460[label="xy4000",fontsize=16,color="green",shape="box"];461[label="xy300",fontsize=16,color="green",shape="box"];462[label="xy4000",fontsize=16,color="green",shape="box"];463[label="xy300",fontsize=16,color="green",shape="box"];464[label="xy4000",fontsize=16,color="green",shape="box"];465[label="xy300",fontsize=16,color="green",shape="box"];466[label="xy4000",fontsize=16,color="green",shape="box"];467[label="xy300",fontsize=16,color="green",shape="box"];468[label="xy4000",fontsize=16,color="green",shape="box"];469[label="xy300",fontsize=16,color="green",shape="box"];470[label="xy4000",fontsize=16,color="green",shape="box"];471[label="xy300",fontsize=16,color="green",shape="box"];472[label="xy4000",fontsize=16,color="green",shape="box"];473[label="xy300",fontsize=16,color="green",shape="box"];474[label="xy4000",fontsize=16,color="green",shape="box"];475[label="xy300",fontsize=16,color="green",shape="box"];476[label="xy4000",fontsize=16,color="green",shape="box"];477[label="xy300",fontsize=16,color="green",shape="box"];478[label="xy4000",fontsize=16,color="green",shape="box"];479[label="xy300",fontsize=16,color="green",shape="box"];480[label="xy4000",fontsize=16,color="green",shape="box"];481[label="xy300",fontsize=16,color="green",shape="box"];482[label="xy4000",fontsize=16,color="green",shape="box"];483[label="False",fontsize=16,color="green",shape="box"];484[label="xy26",fontsize=16,color="green",shape="box"];485 -> 148[label="",style="dashed", color="red", weight=0]; 15.26/5.88 485[label="primEqNat xy3000 xy40000",fontsize=16,color="magenta"];485 -> 599[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 485 -> 600[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 486[label="False",fontsize=16,color="green",shape="box"];487[label="False",fontsize=16,color="green",shape="box"];488[label="True",fontsize=16,color="green",shape="box"];489[label="False",fontsize=16,color="green",shape="box"];490[label="True",fontsize=16,color="green",shape="box"];491 -> 148[label="",style="dashed", color="red", weight=0]; 15.26/5.88 491[label="primEqNat xy3000 xy40000",fontsize=16,color="magenta"];491 -> 601[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 491 -> 602[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 492[label="False",fontsize=16,color="green",shape="box"];493[label="False",fontsize=16,color="green",shape="box"];494[label="True",fontsize=16,color="green",shape="box"];495[label="False",fontsize=16,color="green",shape="box"];496[label="True",fontsize=16,color="green",shape="box"];497[label="xy4001",fontsize=16,color="green",shape="box"];498[label="xy300",fontsize=16,color="green",shape="box"];499[label="xy4000",fontsize=16,color="green",shape="box"];500[label="xy301",fontsize=16,color="green",shape="box"];501[label="xy300",fontsize=16,color="green",shape="box"];502[label="xy4000",fontsize=16,color="green",shape="box"];503[label="xy300",fontsize=16,color="green",shape="box"];504[label="xy4000",fontsize=16,color="green",shape="box"];505[label="xy300",fontsize=16,color="green",shape="box"];506[label="xy4000",fontsize=16,color="green",shape="box"];507[label="xy300",fontsize=16,color="green",shape="box"];508[label="xy4000",fontsize=16,color="green",shape="box"];509[label="xy300",fontsize=16,color="green",shape="box"];510[label="xy4000",fontsize=16,color="green",shape="box"];511[label="xy300",fontsize=16,color="green",shape="box"];512[label="xy4000",fontsize=16,color="green",shape="box"];513[label="xy300",fontsize=16,color="green",shape="box"];514[label="xy4000",fontsize=16,color="green",shape="box"];515[label="xy300",fontsize=16,color="green",shape="box"];516[label="xy4000",fontsize=16,color="green",shape="box"];517[label="xy300",fontsize=16,color="green",shape="box"];518[label="xy4000",fontsize=16,color="green",shape="box"];519[label="xy300",fontsize=16,color="green",shape="box"];520[label="xy4000",fontsize=16,color="green",shape="box"];521[label="xy300",fontsize=16,color="green",shape="box"];522[label="xy4000",fontsize=16,color="green",shape="box"];523[label="xy300",fontsize=16,color="green",shape="box"];524[label="xy4000",fontsize=16,color="green",shape="box"];525[label="xy300",fontsize=16,color="green",shape="box"];526[label="xy4000",fontsize=16,color="green",shape="box"];527[label="xy300",fontsize=16,color="green",shape="box"];528[label="xy4000",fontsize=16,color="green",shape="box"];529[label="xy301",fontsize=16,color="green",shape="box"];530[label="xy4001",fontsize=16,color="green",shape="box"];531[label="xy301",fontsize=16,color="green",shape="box"];532[label="xy4001",fontsize=16,color="green",shape="box"];533[label="xy300",fontsize=16,color="green",shape="box"];534[label="xy4000",fontsize=16,color="green",shape="box"];535[label="xy300",fontsize=16,color="green",shape="box"];536[label="xy4000",fontsize=16,color="green",shape="box"];537 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.88 537[label="xy302 == xy4002",fontsize=16,color="magenta"];537 -> 603[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 537 -> 604[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 538 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.88 538[label="xy302 == xy4002",fontsize=16,color="magenta"];538 -> 605[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 538 -> 606[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 539 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.88 539[label="xy302 == xy4002",fontsize=16,color="magenta"];539 -> 607[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 539 -> 608[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 540 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.88 540[label="xy302 == xy4002",fontsize=16,color="magenta"];540 -> 609[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 540 -> 610[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 541 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.88 541[label="xy302 == xy4002",fontsize=16,color="magenta"];541 -> 611[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 541 -> 612[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 542 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.88 542[label="xy302 == xy4002",fontsize=16,color="magenta"];542 -> 613[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 542 -> 614[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 543 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.88 543[label="xy302 == xy4002",fontsize=16,color="magenta"];543 -> 615[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 543 -> 616[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 544 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.88 544[label="xy302 == xy4002",fontsize=16,color="magenta"];544 -> 617[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 544 -> 618[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 545 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.88 545[label="xy302 == xy4002",fontsize=16,color="magenta"];545 -> 619[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 545 -> 620[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 546 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.88 546[label="xy302 == xy4002",fontsize=16,color="magenta"];546 -> 621[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 546 -> 622[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 547 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.88 547[label="xy302 == xy4002",fontsize=16,color="magenta"];547 -> 623[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 547 -> 624[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 548 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.88 548[label="xy302 == xy4002",fontsize=16,color="magenta"];548 -> 625[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 548 -> 626[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 549 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.88 549[label="xy302 == xy4002",fontsize=16,color="magenta"];549 -> 627[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 549 -> 628[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 550 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.88 550[label="xy302 == xy4002",fontsize=16,color="magenta"];550 -> 629[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 550 -> 630[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 551 -> 30[label="",style="dashed", color="red", weight=0]; 15.26/5.88 551[label="xy301 == xy4001",fontsize=16,color="magenta"];551 -> 631[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 551 -> 632[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 552 -> 31[label="",style="dashed", color="red", weight=0]; 15.26/5.88 552[label="xy301 == xy4001",fontsize=16,color="magenta"];552 -> 633[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 552 -> 634[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 553 -> 32[label="",style="dashed", color="red", weight=0]; 15.26/5.88 553[label="xy301 == xy4001",fontsize=16,color="magenta"];553 -> 635[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 553 -> 636[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 554 -> 33[label="",style="dashed", color="red", weight=0]; 15.26/5.88 554[label="xy301 == xy4001",fontsize=16,color="magenta"];554 -> 637[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 554 -> 638[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 555 -> 34[label="",style="dashed", color="red", weight=0]; 15.26/5.88 555[label="xy301 == xy4001",fontsize=16,color="magenta"];555 -> 639[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 555 -> 640[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 556 -> 35[label="",style="dashed", color="red", weight=0]; 15.26/5.88 556[label="xy301 == xy4001",fontsize=16,color="magenta"];556 -> 641[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 556 -> 642[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 557 -> 36[label="",style="dashed", color="red", weight=0]; 15.26/5.88 557[label="xy301 == xy4001",fontsize=16,color="magenta"];557 -> 643[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 557 -> 644[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 558 -> 37[label="",style="dashed", color="red", weight=0]; 15.26/5.88 558[label="xy301 == xy4001",fontsize=16,color="magenta"];558 -> 645[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 558 -> 646[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 559 -> 38[label="",style="dashed", color="red", weight=0]; 15.26/5.88 559[label="xy301 == xy4001",fontsize=16,color="magenta"];559 -> 647[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 559 -> 648[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 560 -> 39[label="",style="dashed", color="red", weight=0]; 15.26/5.88 560[label="xy301 == xy4001",fontsize=16,color="magenta"];560 -> 649[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 560 -> 650[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 561 -> 40[label="",style="dashed", color="red", weight=0]; 15.26/5.88 561[label="xy301 == xy4001",fontsize=16,color="magenta"];561 -> 651[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 561 -> 652[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 562 -> 41[label="",style="dashed", color="red", weight=0]; 15.26/5.88 562[label="xy301 == xy4001",fontsize=16,color="magenta"];562 -> 653[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 562 -> 654[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 563 -> 42[label="",style="dashed", color="red", weight=0]; 15.26/5.88 563[label="xy301 == xy4001",fontsize=16,color="magenta"];563 -> 655[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 563 -> 656[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 564 -> 43[label="",style="dashed", color="red", weight=0]; 15.26/5.88 564[label="xy301 == xy4001",fontsize=16,color="magenta"];564 -> 657[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 564 -> 658[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 565[label="xy300",fontsize=16,color="green",shape="box"];566[label="xy4000",fontsize=16,color="green",shape="box"];567[label="xy300",fontsize=16,color="green",shape="box"];568[label="xy4000",fontsize=16,color="green",shape="box"];569[label="xy300",fontsize=16,color="green",shape="box"];570[label="xy4000",fontsize=16,color="green",shape="box"];571[label="xy300",fontsize=16,color="green",shape="box"];572[label="xy4000",fontsize=16,color="green",shape="box"];573[label="xy300",fontsize=16,color="green",shape="box"];574[label="xy4000",fontsize=16,color="green",shape="box"];575[label="xy300",fontsize=16,color="green",shape="box"];576[label="xy4000",fontsize=16,color="green",shape="box"];577[label="xy300",fontsize=16,color="green",shape="box"];578[label="xy4000",fontsize=16,color="green",shape="box"];579[label="xy300",fontsize=16,color="green",shape="box"];580[label="xy4000",fontsize=16,color="green",shape="box"];581[label="xy300",fontsize=16,color="green",shape="box"];582[label="xy4000",fontsize=16,color="green",shape="box"];583[label="xy300",fontsize=16,color="green",shape="box"];584[label="xy4000",fontsize=16,color="green",shape="box"];585[label="xy300",fontsize=16,color="green",shape="box"];586[label="xy4000",fontsize=16,color="green",shape="box"];587[label="xy300",fontsize=16,color="green",shape="box"];588[label="xy4000",fontsize=16,color="green",shape="box"];589[label="xy300",fontsize=16,color="green",shape="box"];590[label="xy4000",fontsize=16,color="green",shape="box"];591[label="xy300",fontsize=16,color="green",shape="box"];592[label="xy4000",fontsize=16,color="green",shape="box"];593[label="primMulInt (Pos xy3000) xy4001",fontsize=16,color="burlywood",shape="box"];951[label="xy4001/Pos xy40010",fontsize=10,color="white",style="solid",shape="box"];593 -> 951[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 951 -> 659[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 952[label="xy4001/Neg xy40010",fontsize=10,color="white",style="solid",shape="box"];593 -> 952[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 952 -> 660[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 594[label="primMulInt (Neg xy3000) xy4001",fontsize=16,color="burlywood",shape="box"];953[label="xy4001/Pos xy40010",fontsize=10,color="white",style="solid",shape="box"];594 -> 953[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 953 -> 661[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 954[label="xy4001/Neg xy40010",fontsize=10,color="white",style="solid",shape="box"];594 -> 954[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 954 -> 662[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 595 -> 148[label="",style="dashed", color="red", weight=0]; 15.26/5.88 595[label="primEqNat xy3000 xy40000",fontsize=16,color="magenta"];595 -> 663[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 595 -> 664[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 596[label="False",fontsize=16,color="green",shape="box"];597[label="False",fontsize=16,color="green",shape="box"];598[label="True",fontsize=16,color="green",shape="box"];599[label="xy3000",fontsize=16,color="green",shape="box"];600[label="xy40000",fontsize=16,color="green",shape="box"];601[label="xy3000",fontsize=16,color="green",shape="box"];602[label="xy40000",fontsize=16,color="green",shape="box"];603[label="xy302",fontsize=16,color="green",shape="box"];604[label="xy4002",fontsize=16,color="green",shape="box"];605[label="xy302",fontsize=16,color="green",shape="box"];606[label="xy4002",fontsize=16,color="green",shape="box"];607[label="xy302",fontsize=16,color="green",shape="box"];608[label="xy4002",fontsize=16,color="green",shape="box"];609[label="xy302",fontsize=16,color="green",shape="box"];610[label="xy4002",fontsize=16,color="green",shape="box"];611[label="xy302",fontsize=16,color="green",shape="box"];612[label="xy4002",fontsize=16,color="green",shape="box"];613[label="xy302",fontsize=16,color="green",shape="box"];614[label="xy4002",fontsize=16,color="green",shape="box"];615[label="xy302",fontsize=16,color="green",shape="box"];616[label="xy4002",fontsize=16,color="green",shape="box"];617[label="xy302",fontsize=16,color="green",shape="box"];618[label="xy4002",fontsize=16,color="green",shape="box"];619[label="xy302",fontsize=16,color="green",shape="box"];620[label="xy4002",fontsize=16,color="green",shape="box"];621[label="xy302",fontsize=16,color="green",shape="box"];622[label="xy4002",fontsize=16,color="green",shape="box"];623[label="xy302",fontsize=16,color="green",shape="box"];624[label="xy4002",fontsize=16,color="green",shape="box"];625[label="xy302",fontsize=16,color="green",shape="box"];626[label="xy4002",fontsize=16,color="green",shape="box"];627[label="xy302",fontsize=16,color="green",shape="box"];628[label="xy4002",fontsize=16,color="green",shape="box"];629[label="xy302",fontsize=16,color="green",shape="box"];630[label="xy4002",fontsize=16,color="green",shape="box"];631[label="xy301",fontsize=16,color="green",shape="box"];632[label="xy4001",fontsize=16,color="green",shape="box"];633[label="xy301",fontsize=16,color="green",shape="box"];634[label="xy4001",fontsize=16,color="green",shape="box"];635[label="xy301",fontsize=16,color="green",shape="box"];636[label="xy4001",fontsize=16,color="green",shape="box"];637[label="xy301",fontsize=16,color="green",shape="box"];638[label="xy4001",fontsize=16,color="green",shape="box"];639[label="xy301",fontsize=16,color="green",shape="box"];640[label="xy4001",fontsize=16,color="green",shape="box"];641[label="xy301",fontsize=16,color="green",shape="box"];642[label="xy4001",fontsize=16,color="green",shape="box"];643[label="xy301",fontsize=16,color="green",shape="box"];644[label="xy4001",fontsize=16,color="green",shape="box"];645[label="xy301",fontsize=16,color="green",shape="box"];646[label="xy4001",fontsize=16,color="green",shape="box"];647[label="xy301",fontsize=16,color="green",shape="box"];648[label="xy4001",fontsize=16,color="green",shape="box"];649[label="xy301",fontsize=16,color="green",shape="box"];650[label="xy4001",fontsize=16,color="green",shape="box"];651[label="xy301",fontsize=16,color="green",shape="box"];652[label="xy4001",fontsize=16,color="green",shape="box"];653[label="xy301",fontsize=16,color="green",shape="box"];654[label="xy4001",fontsize=16,color="green",shape="box"];655[label="xy301",fontsize=16,color="green",shape="box"];656[label="xy4001",fontsize=16,color="green",shape="box"];657[label="xy301",fontsize=16,color="green",shape="box"];658[label="xy4001",fontsize=16,color="green",shape="box"];659[label="primMulInt (Pos xy3000) (Pos xy40010)",fontsize=16,color="black",shape="box"];659 -> 665[label="",style="solid", color="black", weight=3]; 15.26/5.88 660[label="primMulInt (Pos xy3000) (Neg xy40010)",fontsize=16,color="black",shape="box"];660 -> 666[label="",style="solid", color="black", weight=3]; 15.26/5.88 661[label="primMulInt (Neg xy3000) (Pos xy40010)",fontsize=16,color="black",shape="box"];661 -> 667[label="",style="solid", color="black", weight=3]; 15.26/5.88 662[label="primMulInt (Neg xy3000) (Neg xy40010)",fontsize=16,color="black",shape="box"];662 -> 668[label="",style="solid", color="black", weight=3]; 15.26/5.88 663[label="xy3000",fontsize=16,color="green",shape="box"];664[label="xy40000",fontsize=16,color="green",shape="box"];665[label="Pos (primMulNat xy3000 xy40010)",fontsize=16,color="green",shape="box"];665 -> 669[label="",style="dashed", color="green", weight=3]; 15.26/5.88 666[label="Neg (primMulNat xy3000 xy40010)",fontsize=16,color="green",shape="box"];666 -> 670[label="",style="dashed", color="green", weight=3]; 15.26/5.88 667[label="Neg (primMulNat xy3000 xy40010)",fontsize=16,color="green",shape="box"];667 -> 671[label="",style="dashed", color="green", weight=3]; 15.26/5.88 668[label="Pos (primMulNat xy3000 xy40010)",fontsize=16,color="green",shape="box"];668 -> 672[label="",style="dashed", color="green", weight=3]; 15.26/5.88 669[label="primMulNat xy3000 xy40010",fontsize=16,color="burlywood",shape="triangle"];955[label="xy3000/Succ xy30000",fontsize=10,color="white",style="solid",shape="box"];669 -> 955[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 955 -> 673[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 956[label="xy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];669 -> 956[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 956 -> 674[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 670 -> 669[label="",style="dashed", color="red", weight=0]; 15.26/5.88 670[label="primMulNat xy3000 xy40010",fontsize=16,color="magenta"];670 -> 675[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 671 -> 669[label="",style="dashed", color="red", weight=0]; 15.26/5.88 671[label="primMulNat xy3000 xy40010",fontsize=16,color="magenta"];671 -> 676[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 672 -> 669[label="",style="dashed", color="red", weight=0]; 15.26/5.88 672[label="primMulNat xy3000 xy40010",fontsize=16,color="magenta"];672 -> 677[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 672 -> 678[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 673[label="primMulNat (Succ xy30000) xy40010",fontsize=16,color="burlywood",shape="box"];957[label="xy40010/Succ xy400100",fontsize=10,color="white",style="solid",shape="box"];673 -> 957[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 957 -> 679[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 958[label="xy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];673 -> 958[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 958 -> 680[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 674[label="primMulNat Zero xy40010",fontsize=16,color="burlywood",shape="box"];959[label="xy40010/Succ xy400100",fontsize=10,color="white",style="solid",shape="box"];674 -> 959[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 959 -> 681[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 960[label="xy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];674 -> 960[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 960 -> 682[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 675[label="xy40010",fontsize=16,color="green",shape="box"];676[label="xy3000",fontsize=16,color="green",shape="box"];677[label="xy40010",fontsize=16,color="green",shape="box"];678[label="xy3000",fontsize=16,color="green",shape="box"];679[label="primMulNat (Succ xy30000) (Succ xy400100)",fontsize=16,color="black",shape="box"];679 -> 683[label="",style="solid", color="black", weight=3]; 15.26/5.88 680[label="primMulNat (Succ xy30000) Zero",fontsize=16,color="black",shape="box"];680 -> 684[label="",style="solid", color="black", weight=3]; 15.26/5.88 681[label="primMulNat Zero (Succ xy400100)",fontsize=16,color="black",shape="box"];681 -> 685[label="",style="solid", color="black", weight=3]; 15.26/5.88 682[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];682 -> 686[label="",style="solid", color="black", weight=3]; 15.26/5.88 683 -> 687[label="",style="dashed", color="red", weight=0]; 15.26/5.88 683[label="primPlusNat (primMulNat xy30000 (Succ xy400100)) (Succ xy400100)",fontsize=16,color="magenta"];683 -> 688[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 684[label="Zero",fontsize=16,color="green",shape="box"];685[label="Zero",fontsize=16,color="green",shape="box"];686[label="Zero",fontsize=16,color="green",shape="box"];688 -> 669[label="",style="dashed", color="red", weight=0]; 15.26/5.88 688[label="primMulNat xy30000 (Succ xy400100)",fontsize=16,color="magenta"];688 -> 689[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 688 -> 690[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 687[label="primPlusNat xy27 (Succ xy400100)",fontsize=16,color="burlywood",shape="triangle"];961[label="xy27/Succ xy270",fontsize=10,color="white",style="solid",shape="box"];687 -> 961[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 961 -> 691[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 962[label="xy27/Zero",fontsize=10,color="white",style="solid",shape="box"];687 -> 962[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 962 -> 692[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 689[label="Succ xy400100",fontsize=16,color="green",shape="box"];690[label="xy30000",fontsize=16,color="green",shape="box"];691[label="primPlusNat (Succ xy270) (Succ xy400100)",fontsize=16,color="black",shape="box"];691 -> 693[label="",style="solid", color="black", weight=3]; 15.26/5.88 692[label="primPlusNat Zero (Succ xy400100)",fontsize=16,color="black",shape="box"];692 -> 694[label="",style="solid", color="black", weight=3]; 15.26/5.88 693[label="Succ (Succ (primPlusNat xy270 xy400100))",fontsize=16,color="green",shape="box"];693 -> 695[label="",style="dashed", color="green", weight=3]; 15.26/5.88 694[label="Succ xy400100",fontsize=16,color="green",shape="box"];695[label="primPlusNat xy270 xy400100",fontsize=16,color="burlywood",shape="triangle"];963[label="xy270/Succ xy2700",fontsize=10,color="white",style="solid",shape="box"];695 -> 963[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 963 -> 696[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 964[label="xy270/Zero",fontsize=10,color="white",style="solid",shape="box"];695 -> 964[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 964 -> 697[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 696[label="primPlusNat (Succ xy2700) xy400100",fontsize=16,color="burlywood",shape="box"];965[label="xy400100/Succ xy4001000",fontsize=10,color="white",style="solid",shape="box"];696 -> 965[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 965 -> 698[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 966[label="xy400100/Zero",fontsize=10,color="white",style="solid",shape="box"];696 -> 966[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 966 -> 699[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 697[label="primPlusNat Zero xy400100",fontsize=16,color="burlywood",shape="box"];967[label="xy400100/Succ xy4001000",fontsize=10,color="white",style="solid",shape="box"];697 -> 967[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 967 -> 700[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 968[label="xy400100/Zero",fontsize=10,color="white",style="solid",shape="box"];697 -> 968[label="",style="solid", color="burlywood", weight=9]; 15.26/5.88 968 -> 701[label="",style="solid", color="burlywood", weight=3]; 15.26/5.88 698[label="primPlusNat (Succ xy2700) (Succ xy4001000)",fontsize=16,color="black",shape="box"];698 -> 702[label="",style="solid", color="black", weight=3]; 15.26/5.88 699[label="primPlusNat (Succ xy2700) Zero",fontsize=16,color="black",shape="box"];699 -> 703[label="",style="solid", color="black", weight=3]; 15.26/5.88 700[label="primPlusNat Zero (Succ xy4001000)",fontsize=16,color="black",shape="box"];700 -> 704[label="",style="solid", color="black", weight=3]; 15.26/5.88 701[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];701 -> 705[label="",style="solid", color="black", weight=3]; 15.26/5.88 702[label="Succ (Succ (primPlusNat xy2700 xy4001000))",fontsize=16,color="green",shape="box"];702 -> 706[label="",style="dashed", color="green", weight=3]; 15.26/5.88 703[label="Succ xy2700",fontsize=16,color="green",shape="box"];704[label="Succ xy4001000",fontsize=16,color="green",shape="box"];705[label="Zero",fontsize=16,color="green",shape="box"];706 -> 695[label="",style="dashed", color="red", weight=0]; 15.26/5.88 706[label="primPlusNat xy2700 xy4001000",fontsize=16,color="magenta"];706 -> 707[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 706 -> 708[label="",style="dashed", color="magenta", weight=3]; 15.26/5.88 707[label="xy4001000",fontsize=16,color="green",shape="box"];708[label="xy2700",fontsize=16,color="green",shape="box"];} 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (8) 15.26/5.88 Complex Obligation (AND) 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (9) 15.26/5.88 Obligation: 15.26/5.88 Q DP problem: 15.26/5.88 The TRS P consists of the following rules: 15.26/5.88 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(app(ty_Either, bce), bcf), bcc) -> new_esEs1(xy301, xy4001, bce, bcf) 15.26/5.88 new_esEs0(Just(xy300), Just(xy4000), app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xy300, xy4000, ed, ee, ef) 15.26/5.88 new_esEs1(Left(xy300), Left(xy4000), app(app(ty_Either, fc), fd), fa) -> new_esEs1(xy300, xy4000, fc, fd) 15.26/5.88 new_esEs2(:(xy300, xy301), :(xy4000, xy4001), hd) -> new_esEs2(xy301, xy4001, hd) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(ty_Maybe, bbb)) -> new_esEs0(xy302, xy4002, bbb) 15.26/5.88 new_esEs1(Left(xy300), Left(xy4000), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(xy300, xy4000, fg, fh, ga) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(ty_Either, bdf), bdg), bag, bcc) -> new_esEs1(xy300, xy4000, bdf, bdg) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(app(ty_@3, bea), beb), bec), bag, bcc) -> new_esEs3(xy300, xy4000, bea, beb, bec) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(app(ty_@2, cc), cd), ce) -> new_esEs(xy300, xy4000, cc, cd) 15.26/5.88 new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(app(ty_@2, he), hf)) -> new_esEs(xy300, xy4000, he, hf) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs3(xy300, xy4000, dc, dd, de) 15.26/5.88 new_esEs1(Right(xy300), Right(xy4000), gb, app(ty_[], gh)) -> new_esEs2(xy300, xy4000, gh) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(ty_[], bdh), bag, bcc) -> new_esEs2(xy300, xy4000, bdh) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs3(xy302, xy4002, bbf, bbg, bbh) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(ty_Maybe, bcd), bcc) -> new_esEs0(xy301, xy4001, bcd) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(app(ty_@2, bb), bc)) -> new_esEs(xy301, xy4001, bb, bc) 15.26/5.88 new_esEs1(Right(xy300), Right(xy4000), gb, app(ty_Maybe, ge)) -> new_esEs0(xy300, xy4000, ge) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(ty_Maybe, bde), bag, bcc) -> new_esEs0(xy300, xy4000, bde) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(app(ty_Either, bbc), bbd)) -> new_esEs1(xy302, xy4002, bbc, bbd) 15.26/5.88 new_esEs1(Left(xy300), Left(xy4000), app(app(ty_@2, eg), eh), fa) -> new_esEs(xy300, xy4000, eg, eh) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(app(ty_@2, bah), bba)) -> new_esEs(xy302, xy4002, bah, bba) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(app(ty_@2, bca), bcb), bcc) -> new_esEs(xy301, xy4001, bca, bcb) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs3(xy301, xy4001, bh, ca, cb) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(app(ty_Either, be), bf)) -> new_esEs1(xy301, xy4001, be, bf) 15.26/5.88 new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(app(ty_Either, hh), baa)) -> new_esEs1(xy300, xy4000, hh, baa) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(ty_[], bcg), bcc) -> new_esEs2(xy301, xy4001, bcg) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(app(app(ty_@3, bch), bda), bdb), bcc) -> new_esEs3(xy301, xy4001, bch, bda, bdb) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(app(ty_Either, cg), da), ce) -> new_esEs1(xy300, xy4000, cg, da) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(ty_[], bbe)) -> new_esEs2(xy302, xy4002, bbe) 15.26/5.88 new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(ty_@2, bdc), bdd), bag, bcc) -> new_esEs(xy300, xy4000, bdc, bdd) 15.26/5.88 new_esEs0(Just(xy300), Just(xy4000), app(app(ty_@2, df), dg)) -> new_esEs(xy300, xy4000, df, dg) 15.26/5.88 new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(ty_Maybe, hg)) -> new_esEs0(xy300, xy4000, hg) 15.26/5.88 new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(ty_[], bab)) -> new_esEs2(xy300, xy4000, bab) 15.26/5.88 new_esEs0(Just(xy300), Just(xy4000), app(app(ty_Either, ea), eb)) -> new_esEs1(xy300, xy4000, ea, eb) 15.26/5.88 new_esEs0(Just(xy300), Just(xy4000), app(ty_[], ec)) -> new_esEs2(xy300, xy4000, ec) 15.26/5.88 new_esEs0(Just(xy300), Just(xy4000), app(ty_Maybe, dh)) -> new_esEs0(xy300, xy4000, dh) 15.26/5.88 new_esEs1(Right(xy300), Right(xy4000), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(xy300, xy4000, ha, hb, hc) 15.26/5.88 new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs3(xy300, xy4000, bac, bad, bae) 15.26/5.88 new_esEs1(Right(xy300), Right(xy4000), gb, app(app(ty_@2, gc), gd)) -> new_esEs(xy300, xy4000, gc, gd) 15.26/5.88 new_esEs1(Left(xy300), Left(xy4000), app(ty_Maybe, fb), fa) -> new_esEs0(xy300, xy4000, fb) 15.26/5.88 new_esEs1(Left(xy300), Left(xy4000), app(ty_[], ff), fa) -> new_esEs2(xy300, xy4000, ff) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(ty_Maybe, cf), ce) -> new_esEs0(xy300, xy4000, cf) 15.26/5.88 new_esEs1(Right(xy300), Right(xy4000), gb, app(app(ty_Either, gf), gg)) -> new_esEs1(xy300, xy4000, gf, gg) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(ty_[], bg)) -> new_esEs2(xy301, xy4001, bg) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(ty_[], db), ce) -> new_esEs2(xy300, xy4000, db) 15.26/5.88 new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(ty_Maybe, bd)) -> new_esEs0(xy301, xy4001, bd) 15.26/5.88 15.26/5.88 R is empty. 15.26/5.88 Q is empty. 15.26/5.88 We have to consider all minimal (P,Q,R)-chains. 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (10) QDPSizeChangeProof (EQUIVALENT) 15.26/5.88 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.26/5.88 15.26/5.88 From the DPs we obtained the following set of size-change graphs: 15.26/5.88 *new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs3(xy300, xy4000, bac, bad, bae) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(ty_Maybe, hg)) -> new_esEs0(xy300, xy4000, hg) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(app(ty_Either, hh), baa)) -> new_esEs1(xy300, xy4000, hh, baa) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(app(ty_@2, he), hf)) -> new_esEs(xy300, xy4000, he, hf) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs0(Just(xy300), Just(xy4000), app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xy300, xy4000, ed, ee, ef) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs0(Just(xy300), Just(xy4000), app(ty_Maybe, dh)) -> new_esEs0(xy300, xy4000, dh) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs0(Just(xy300), Just(xy4000), app(app(ty_Either, ea), eb)) -> new_esEs1(xy300, xy4000, ea, eb) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs0(Just(xy300), Just(xy4000), app(ty_[], ec)) -> new_esEs2(xy300, xy4000, ec) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs0(Just(xy300), Just(xy4000), app(app(ty_@2, df), dg)) -> new_esEs(xy300, xy4000, df, dg) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Left(xy300), Left(xy4000), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(xy300, xy4000, fg, fh, ga) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Right(xy300), Right(xy4000), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(xy300, xy4000, ha, hb, hc) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Right(xy300), Right(xy4000), gb, app(ty_Maybe, ge)) -> new_esEs0(xy300, xy4000, ge) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Left(xy300), Left(xy4000), app(ty_Maybe, fb), fa) -> new_esEs0(xy300, xy4000, fb) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Left(xy300), Left(xy4000), app(app(ty_Either, fc), fd), fa) -> new_esEs1(xy300, xy4000, fc, fd) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Right(xy300), Right(xy4000), gb, app(app(ty_Either, gf), gg)) -> new_esEs1(xy300, xy4000, gf, gg) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Right(xy300), Right(xy4000), gb, app(ty_[], gh)) -> new_esEs2(xy300, xy4000, gh) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Left(xy300), Left(xy4000), app(ty_[], ff), fa) -> new_esEs2(xy300, xy4000, ff) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Left(xy300), Left(xy4000), app(app(ty_@2, eg), eh), fa) -> new_esEs(xy300, xy4000, eg, eh) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs1(Right(xy300), Right(xy4000), gb, app(app(ty_@2, gc), gd)) -> new_esEs(xy300, xy4000, gc, gd) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(app(ty_@3, bea), beb), bec), bag, bcc) -> new_esEs3(xy300, xy4000, bea, beb, bec) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs3(xy302, xy4002, bbf, bbg, bbh) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(app(app(ty_@3, bch), bda), bdb), bcc) -> new_esEs3(xy301, xy4001, bch, bda, bdb) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs3(xy300, xy4000, dc, dd, de) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs3(xy301, xy4001, bh, ca, cb) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(ty_Maybe, bbb)) -> new_esEs0(xy302, xy4002, bbb) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(ty_Maybe, bcd), bcc) -> new_esEs0(xy301, xy4001, bcd) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(ty_Maybe, bde), bag, bcc) -> new_esEs0(xy300, xy4000, bde) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(app(ty_Either, bce), bcf), bcc) -> new_esEs1(xy301, xy4001, bce, bcf) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(ty_Either, bdf), bdg), bag, bcc) -> new_esEs1(xy300, xy4000, bdf, bdg) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(app(ty_Either, bbc), bbd)) -> new_esEs1(xy302, xy4002, bbc, bbd) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(ty_[], bdh), bag, bcc) -> new_esEs2(xy300, xy4000, bdh) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(ty_[], bcg), bcc) -> new_esEs2(xy301, xy4001, bcg) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(ty_[], bbe)) -> new_esEs2(xy302, xy4002, bbe) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, bag, app(app(ty_@2, bah), bba)) -> new_esEs(xy302, xy4002, bah, bba) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), baf, app(app(ty_@2, bca), bcb), bcc) -> new_esEs(xy301, xy4001, bca, bcb) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs3(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), app(app(ty_@2, bdc), bdd), bag, bcc) -> new_esEs(xy300, xy4000, bdc, bdd) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(ty_Maybe, cf), ce) -> new_esEs0(xy300, xy4000, cf) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(ty_Maybe, bd)) -> new_esEs0(xy301, xy4001, bd) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(app(ty_Either, be), bf)) -> new_esEs1(xy301, xy4001, be, bf) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(app(ty_Either, cg), da), ce) -> new_esEs1(xy300, xy4000, cg, da) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs2(:(xy300, xy301), :(xy4000, xy4001), hd) -> new_esEs2(xy301, xy4001, hd) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs2(:(xy300, xy301), :(xy4000, xy4001), app(ty_[], bab)) -> new_esEs2(xy300, xy4000, bab) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(ty_[], bg)) -> new_esEs2(xy301, xy4001, bg) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(ty_[], db), ce) -> new_esEs2(xy300, xy4000, db) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), app(app(ty_@2, cc), cd), ce) -> new_esEs(xy300, xy4000, cc, cd) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.26/5.88 15.26/5.88 15.26/5.88 *new_esEs(@2(xy300, xy301), @2(xy4000, xy4001), ba, app(app(ty_@2, bb), bc)) -> new_esEs(xy301, xy4001, bb, bc) 15.26/5.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.26/5.88 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (11) 15.26/5.88 YES 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (12) 15.26/5.88 Obligation: 15.26/5.88 Q DP problem: 15.26/5.88 The TRS P consists of the following rules: 15.26/5.88 15.26/5.88 new_deleteBy(Just(xy30), :(Nothing, xy41), ba) -> new_deleteBy(Just(xy30), xy41, ba) 15.26/5.88 new_deleteBy0(xy10, xy11, xy12, False, bb) -> new_deleteBy(Just(xy12), xy10, bb) 15.26/5.88 new_deleteBy(Just(xy30), :(Just(xy400), xy41), ba) -> new_deleteBy0(xy41, xy400, xy30, new_esEs4(xy30, xy400, ba), ba) 15.26/5.88 new_deleteBy(Nothing, :(Just(xy400), xy41), ba) -> new_deleteBy(Nothing, xy41, ba) 15.26/5.88 15.26/5.88 The TRS R consists of the following rules: 15.26/5.88 15.26/5.88 new_esEs23(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_[], fh)) -> new_esEs17(xy300, xy4000, fh) 15.26/5.88 new_primPlusNat0(Zero, Zero) -> Zero 15.26/5.88 new_esEs26(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, app(ty_[], ca)) -> new_esEs17(xy30, xy400, ca) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(app(ty_@3, de), df), dg)) -> new_esEs18(xy302, xy4002, de, df, dg) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Bool) -> new_esEs11(xy30, xy400) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_Ratio, bbg)) -> new_esEs5(xy300, xy4000, bbg) 15.26/5.88 new_esEs4(xy30, xy400, ty_Integer) -> new_esEs9(xy30, xy400) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs5(:%(xy300, xy301), :%(xy4000, xy4001), bc) -> new_asAs(new_esEs7(xy300, xy4000, bc), new_esEs6(xy301, xy4001, bc)) 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_Ratio, ef)) -> new_esEs5(xy301, xy4001, ef) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs18(xy300, xy4000, gb, gc, gd) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Ordering) -> new_esEs19(xy301, xy4001) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(ty_Either, bab), bac)) -> new_esEs16(xy300, xy4000, bab, bac) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Double) -> new_esEs12(xy302, xy4002) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_[], hb), bh) -> new_esEs17(xy300, xy4000, hb) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Ordering, bh) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Double) -> new_esEs12(xy30, xy400) 15.26/5.88 new_esEs4(xy30, xy400, app(app(ty_@2, bd), be)) -> new_esEs13(xy30, xy400, bd, be) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(ty_@2, bde), bdf)) -> new_esEs13(xy300, xy4000, bde, bdf) 15.26/5.88 new_primMulNat0(Succ(xy30000), Succ(xy400100)) -> new_primPlusNat1(new_primMulNat0(xy30000, Succ(xy400100)), xy400100) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_Maybe, cg)) -> new_esEs14(xy302, xy4002, cg) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Integer) -> new_esEs9(xy302, xy4002) 15.26/5.88 new_esEs6(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs10(Char(xy300), Char(xy4000)) -> new_primEqNat0(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_asAs(True, xy26) -> xy26 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_[], bad)) -> new_esEs17(xy300, xy4000, bad) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_[], beb)) -> new_esEs17(xy300, xy4000, beb) 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Pos(Zero)) -> False 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Succ(xy40000))) -> False 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_Maybe, bfa)) -> new_esEs14(xy300, xy4000, bfa) 15.26/5.88 new_esEs19(LT, LT) -> True 15.26/5.88 new_primEqNat0(Succ(xy3000), Succ(xy40000)) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(ty_Either, bdh), bea)) -> new_esEs16(xy300, xy4000, bdh, bea) 15.26/5.88 new_esEs4(xy30, xy400, ty_Float) -> new_esEs15(xy30, xy400) 15.26/5.88 new_esEs4(xy30, xy400, app(app(ty_Either, bg), bh)) -> new_esEs16(xy30, xy400, bg, bh) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs4(xy30, xy400, ty_Char) -> new_esEs10(xy30, xy400) 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_Maybe, fd)) -> new_esEs14(xy300, xy4000, fd) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs18(xy300, xy4000, baf, bag, bah) 15.26/5.88 new_esEs22(xy301, xy4001, app(app(ty_Either, ec), ed)) -> new_esEs16(xy301, xy4001, ec, ed) 15.26/5.88 new_primMulNat0(Zero, Zero) -> Zero 15.26/5.88 new_esEs22(xy301, xy4001, ty_@0) -> new_esEs20(xy301, xy4001) 15.26/5.88 new_esEs20(@0, @0) -> True 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_Maybe, bce)) -> new_esEs14(xy301, xy4001, bce) 15.26/5.88 new_esEs21(xy302, xy4002, ty_@0) -> new_esEs20(xy302, xy4002) 15.26/5.88 new_esEs17(:(xy300, xy301), :(xy4000, xy4001), ca) -> new_asAs(new_esEs26(xy300, xy4000, ca), new_esEs17(xy301, xy4001, ca)) 15.26/5.88 new_esEs13(@2(xy300, xy301), @2(xy4000, xy4001), bd, be) -> new_asAs(new_esEs25(xy300, xy4000, bd), new_esEs24(xy301, xy4001, be)) 15.26/5.88 new_primEqNat0(Succ(xy3000), Zero) -> False 15.26/5.88 new_primEqNat0(Zero, Succ(xy40000)) -> False 15.26/5.88 new_esEs18(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), cb, cc, cd) -> new_asAs(new_esEs23(xy300, xy4000, cb), new_asAs(new_esEs22(xy301, xy4001, cc), new_esEs21(xy302, xy4002, cd))) 15.26/5.88 new_esEs9(Integer(xy300), Integer(xy4000)) -> new_primEqInt(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_Ratio, bec)) -> new_esEs5(xy300, xy4000, bec) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(ty_@2, ce), cf)) -> new_esEs13(xy302, xy4002, ce, cf) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_Maybe, bdg)) -> new_esEs14(xy300, xy4000, bdg) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(app(ty_@3, hd), he), hf), bh) -> new_esEs18(xy300, xy4000, hd, he, hf) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_[], dc)) -> new_esEs17(xy302, xy4002, dc) 15.26/5.88 new_esEs4(xy30, xy400, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs18(xy30, xy400, cb, cc, cd) 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_Ratio, bda)) -> new_esEs5(xy301, xy4001, bda) 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Neg(Zero)) -> False 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Succ(xy40000))) -> False 15.26/5.88 new_esEs21(xy302, xy4002, ty_Bool) -> new_esEs11(xy302, xy4002) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Pos(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(ty_@2, beg), beh)) -> new_esEs13(xy300, xy4000, beg, beh) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Int, bh) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Double) -> new_esEs12(xy301, xy4001) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(ty_Either, da), db)) -> new_esEs16(xy302, xy4002, da, db) 15.26/5.88 new_sr(Pos(xy3000), Neg(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_sr(Neg(xy3000), Pos(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs11(True, True) -> True 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Neg(xy4000)) -> False 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Pos(xy4000)) -> False 15.26/5.88 new_esEs22(xy301, xy4001, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs18(xy301, xy4001, eg, eh, fa) 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_[], bfd)) -> new_esEs17(xy300, xy4000, bfd) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Char) -> new_esEs10(xy302, xy4002) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Ordering) -> new_esEs19(xy301, xy4001) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Integer, bh) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_Ratio, dd)) -> new_esEs5(xy302, xy4002, dd) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(ty_@2, bcc), bcd)) -> new_esEs13(xy301, xy4001, bcc, bcd) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs8(xy30, xy400) -> new_primEqInt(xy30, xy400) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs11(False, True) -> False 15.26/5.88 new_esEs11(True, False) -> False 15.26/5.88 new_esEs23(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_Maybe, bbc)) -> new_esEs14(xy300, xy4000, bbc) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Double) -> new_esEs12(xy301, xy4001) 15.26/5.88 new_esEs19(LT, EQ) -> False 15.26/5.88 new_esEs19(EQ, LT) -> False 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Ordering) -> new_esEs19(xy30, xy400) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Float) -> new_esEs15(xy301, xy4001) 15.26/5.88 new_sr(Neg(xy3000), Neg(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Int) -> new_esEs8(xy30, xy400) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Float) -> new_esEs15(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs18(xy300, xy4000, bbh, bca, bcb) 15.26/5.88 new_esEs17([], [], ca) -> True 15.26/5.88 new_esEs22(xy301, xy4001, ty_Bool) -> new_esEs11(xy301, xy4001) 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_[], bch)) -> new_esEs17(xy301, xy4001, bch) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(ty_Either, bfb), bfc)) -> new_esEs16(xy300, xy4000, bfb, bfc) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Succ(xy40000))) -> False 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Succ(xy40000))) -> False 15.26/5.88 new_esEs16(Left(xy300), Right(xy4000), bg, bh) -> False 15.26/5.88 new_esEs16(Right(xy300), Left(xy4000), bg, bh) -> False 15.26/5.88 new_primPlusNat0(Succ(xy2700), Succ(xy4001000)) -> Succ(Succ(new_primPlusNat0(xy2700, xy4001000))) 15.26/5.88 new_esEs19(LT, GT) -> False 15.26/5.88 new_esEs19(GT, LT) -> False 15.26/5.88 new_esEs22(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(ty_Either, gh), ha), bh) -> new_esEs16(xy300, xy4000, gh, ha) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Char, bh) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, app(ty_Ratio, bc)) -> new_esEs5(xy30, xy400, bc) 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_Ratio, ga)) -> new_esEs5(xy300, xy4000, ga) 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Neg(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs4(xy30, xy400, ty_@0) -> new_esEs20(xy30, xy400) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs18(xy301, xy4001, bdb, bdc, bdd) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Float, bh) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs12(Double(xy300, xy301), Double(xy4000, xy4001)) -> new_esEs8(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Char) -> new_esEs10(xy301, xy4001) 15.26/5.88 new_esEs6(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs22(xy301, xy4001, app(app(ty_@2, dh), ea)) -> new_esEs13(xy301, xy4001, dh, ea) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Double, bh) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Int) -> new_esEs8(xy302, xy4002) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Ordering) -> new_esEs19(xy302, xy4002) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Bool, bh) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primMulNat0(Succ(xy30000), Zero) -> Zero 15.26/5.88 new_primMulNat0(Zero, Succ(xy400100)) -> Zero 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_[], ee)) -> new_esEs17(xy301, xy4001, ee) 15.26/5.88 new_esEs25(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_sr(Pos(xy3000), Pos(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_primPlusNat1(Succ(xy270), xy400100) -> Succ(Succ(new_primPlusNat0(xy270, xy400100))) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Char) -> new_esEs10(xy301, xy4001) 15.26/5.88 new_esEs19(EQ, EQ) -> True 15.26/5.88 new_primPlusNat0(Succ(xy2700), Zero) -> Succ(xy2700) 15.26/5.88 new_primPlusNat0(Zero, Succ(xy4001000)) -> Succ(xy4001000) 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_Ratio, bfe)) -> new_esEs5(xy300, xy4000, bfe) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_Ratio, bae)) -> new_esEs5(xy300, xy4000, bae) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs18(xy300, xy4000, bff, bfg, bfh) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_@0, bh) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_primPlusNat1(Zero, xy400100) -> Succ(xy400100) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_Ratio, hc), bh) -> new_esEs5(xy300, xy4000, hc) 15.26/5.88 new_esEs19(EQ, GT) -> False 15.26/5.88 new_esEs19(GT, EQ) -> False 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(ty_@2, bba), bbb)) -> new_esEs13(xy300, xy4000, bba, bbb) 15.26/5.88 new_esEs19(GT, GT) -> True 15.26/5.88 new_esEs14(Nothing, Just(xy4000), bf) -> False 15.26/5.88 new_esEs14(Just(xy300), Nothing, bf) -> False 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(ty_Either, ff), fg)) -> new_esEs16(xy300, xy4000, ff, fg) 15.26/5.88 new_esEs23(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs14(Nothing, Nothing, bf) -> True 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_Maybe, gg), bh) -> new_esEs14(xy300, xy4000, gg) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_[], bbf)) -> new_esEs17(xy300, xy4000, bbf) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 15.26/5.88 new_esEs4(xy30, xy400, app(ty_Maybe, bf)) -> new_esEs14(xy30, xy400, bf) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(ty_@2, ge), gf), bh) -> new_esEs13(xy300, xy4000, ge, gf) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primEqNat0(Zero, Zero) -> True 15.26/5.88 new_esEs25(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_@0) -> new_esEs20(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(ty_Either, bbd), bbe)) -> new_esEs16(xy300, xy4000, bbd, bbe) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(ty_Either, bcf), bcg)) -> new_esEs16(xy301, xy4001, bcf, bcg) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_asAs(False, xy26) -> False 15.26/5.88 new_esEs17(:(xy300, xy301), [], ca) -> False 15.26/5.88 new_esEs17([], :(xy4000, xy4001), ca) -> False 15.26/5.88 new_esEs25(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_Maybe, eb)) -> new_esEs14(xy301, xy4001, eb) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_Maybe, baa)) -> new_esEs14(xy300, xy4000, baa) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs18(xy300, xy4000, bed, bee, bef) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(ty_@2, fb), fc)) -> new_esEs13(xy300, xy4000, fb, fc) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(ty_@2, hg), hh)) -> new_esEs13(xy300, xy4000, hg, hh) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Bool) -> new_esEs11(xy301, xy4001) 15.26/5.88 new_esEs11(False, False) -> True 15.26/5.88 new_esEs7(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs7(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs15(Float(xy300, xy301), Float(xy4000, xy4001)) -> new_esEs8(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Float) -> new_esEs15(xy302, xy4002) 15.26/5.88 15.26/5.88 The set Q consists of the following terms: 15.26/5.88 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 15.26/5.88 new_esEs24(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs4(x0, x1, ty_Integer) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Bool, x2) 15.26/5.88 new_esEs7(x0, x1, ty_Int) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_[], x2), x3) 15.26/5.88 new_esEs24(x0, x1, ty_Bool) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Bool) 15.26/5.88 new_esEs18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 15.26/5.88 new_esEs21(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_@0) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_@0, x2) 15.26/5.88 new_sr(Pos(x0), Neg(x1)) 15.26/5.88 new_sr(Neg(x0), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_sr(Neg(x0), Neg(x1)) 15.26/5.88 new_esEs22(x0, x1, ty_Bool) 15.26/5.88 new_primMulNat0(Zero, Zero) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 15.26/5.88 new_esEs19(EQ, GT) 15.26/5.88 new_esEs19(GT, EQ) 15.26/5.88 new_asAs(False, x0) 15.26/5.88 new_esEs22(x0, x1, ty_Integer) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, ty_Char) 15.26/5.88 new_esEs19(EQ, EQ) 15.26/5.88 new_primMulNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs20(@0, @0) 15.26/5.88 new_esEs24(x0, x1, ty_Integer) 15.26/5.88 new_esEs21(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs26(x0, x1, ty_@0) 15.26/5.88 new_esEs14(Nothing, Just(x0), x1) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Zero)) 15.26/5.88 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, ty_Char) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 15.26/5.88 new_esEs26(x0, x1, ty_Int) 15.26/5.88 new_esEs24(x0, x1, ty_@0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 15.26/5.88 new_esEs5(:%(x0, x1), :%(x2, x3), x4) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Zero)) 15.26/5.88 new_esEs25(x0, x1, ty_Bool) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) 15.26/5.88 new_sr(Pos(x0), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_primPlusNat0(Zero, Zero) 15.26/5.88 new_primMulNat0(Succ(x0), Zero) 15.26/5.88 new_esEs23(x0, x1, ty_@0) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 15.26/5.88 new_esEs12(Double(x0, x1), Double(x2, x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Int) 15.26/5.88 new_esEs14(Nothing, Nothing, x0) 15.26/5.88 new_esEs26(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_primEqNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs4(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs22(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs26(x0, x1, ty_Ordering) 15.26/5.88 new_esEs23(x0, x1, ty_Integer) 15.26/5.88 new_esEs23(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs11(True, True) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Char) 15.26/5.88 new_esEs21(x0, x1, ty_@0) 15.26/5.88 new_esEs6(x0, x1, ty_Int) 15.26/5.88 new_esEs23(x0, x1, ty_Char) 15.26/5.88 new_esEs22(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs26(x0, x1, ty_Bool) 15.26/5.88 new_esEs9(Integer(x0), Integer(x1)) 15.26/5.88 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs25(x0, x1, ty_Int) 15.26/5.88 new_esEs21(x0, x1, ty_Float) 15.26/5.88 new_esEs26(x0, x1, ty_Integer) 15.26/5.88 new_esEs11(False, True) 15.26/5.88 new_esEs11(True, False) 15.26/5.88 new_esEs4(x0, x1, ty_Bool) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Int) 15.26/5.88 new_esEs17([], :(x0, x1), x2) 15.26/5.88 new_esEs4(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Float) 15.26/5.88 new_esEs23(x0, x1, ty_Bool) 15.26/5.88 new_esEs22(x0, x1, ty_@0) 15.26/5.88 new_esEs22(x0, x1, ty_Char) 15.26/5.88 new_esEs25(x0, x1, ty_@0) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Zero)) 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Zero)) 15.26/5.88 new_esEs4(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs22(x0, x1, ty_Double) 15.26/5.88 new_esEs14(Just(x0), Nothing, x1) 15.26/5.88 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Double) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_@0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Char) 15.26/5.88 new_esEs23(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs10(Char(x0), Char(x1)) 15.26/5.88 new_esEs7(x0, x1, ty_Integer) 15.26/5.88 new_esEs25(x0, x1, ty_Float) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 15.26/5.88 new_esEs26(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Int) 15.26/5.88 new_esEs15(Float(x0, x1), Float(x2, x3)) 15.26/5.88 new_esEs22(x0, x1, ty_Int) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Float) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Integer, x2) 15.26/5.88 new_primPlusNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 15.26/5.88 new_esEs24(x0, x1, ty_Ordering) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Float, x2) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Double) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 15.26/5.88 new_esEs4(x0, x1, ty_Int) 15.26/5.88 new_esEs19(LT, GT) 15.26/5.88 new_esEs19(GT, LT) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Ordering, x2) 15.26/5.88 new_esEs24(x0, x1, ty_Float) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Ordering) 15.26/5.88 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Double, x2) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 15.26/5.88 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs24(x0, x1, ty_Double) 15.26/5.88 new_primPlusNat1(Succ(x0), x1) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Double) 15.26/5.88 new_esEs22(x0, x1, ty_Float) 15.26/5.88 new_asAs(True, x0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Integer) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Bool) 15.26/5.88 new_esEs21(x0, x1, ty_Int) 15.26/5.88 new_esEs24(x0, x1, ty_Int) 15.26/5.88 new_esEs26(x0, x1, ty_Double) 15.26/5.88 new_esEs4(x0, x1, ty_Double) 15.26/5.88 new_esEs25(x0, x1, ty_Double) 15.26/5.88 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Float) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs25(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs4(x0, x1, ty_Ordering) 15.26/5.88 new_esEs24(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primPlusNat1(Zero, x0) 15.26/5.88 new_esEs21(x0, x1, ty_Char) 15.26/5.88 new_esEs4(x0, x1, ty_Char) 15.26/5.88 new_esEs21(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 15.26/5.88 new_esEs6(x0, x1, ty_Integer) 15.26/5.88 new_esEs23(x0, x1, ty_Ordering) 15.26/5.88 new_primEqNat0(Zero, Zero) 15.26/5.88 new_esEs21(x0, x1, ty_Ordering) 15.26/5.88 new_esEs17([], [], x0) 15.26/5.88 new_esEs17(:(x0, x1), [], x2) 15.26/5.88 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Char, x2) 15.26/5.88 new_esEs17(:(x0, x1), :(x2, x3), x4) 15.26/5.88 new_esEs19(GT, GT) 15.26/5.88 new_esEs21(x0, x1, ty_Double) 15.26/5.88 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs19(LT, EQ) 15.26/5.88 new_esEs19(EQ, LT) 15.26/5.88 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs4(x0, x1, ty_@0) 15.26/5.88 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, ty_Float) 15.26/5.88 new_primEqNat0(Succ(x0), Zero) 15.26/5.88 new_primPlusNat0(Succ(x0), Zero) 15.26/5.88 new_esEs23(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primPlusNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs11(False, False) 15.26/5.88 new_primMulNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs19(LT, LT) 15.26/5.88 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs4(x0, x1, ty_Float) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 15.26/5.88 new_esEs21(x0, x1, ty_Bool) 15.26/5.88 new_esEs24(x0, x1, ty_Char) 15.26/5.88 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 15.26/5.88 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Int, x2) 15.26/5.88 new_esEs22(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs21(x0, x1, ty_Integer) 15.26/5.88 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Ordering) 15.26/5.88 new_esEs8(x0, x1) 15.26/5.88 new_esEs25(x0, x1, ty_Ordering) 15.26/5.88 new_esEs25(x0, x1, ty_Integer) 15.26/5.88 new_esEs22(x0, x1, ty_Ordering) 15.26/5.88 new_esEs25(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primEqNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs24(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Integer) 15.26/5.88 new_esEs16(Left(x0), Right(x1), x2, x3) 15.26/5.88 new_esEs16(Right(x0), Left(x1), x2, x3) 15.26/5.88 15.26/5.88 We have to consider all minimal (P,Q,R)-chains. 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (13) DependencyGraphProof (EQUIVALENT) 15.26/5.88 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (14) 15.26/5.88 Complex Obligation (AND) 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (15) 15.26/5.88 Obligation: 15.26/5.88 Q DP problem: 15.26/5.88 The TRS P consists of the following rules: 15.26/5.88 15.26/5.88 new_deleteBy(Nothing, :(Just(xy400), xy41), ba) -> new_deleteBy(Nothing, xy41, ba) 15.26/5.88 15.26/5.88 The TRS R consists of the following rules: 15.26/5.88 15.26/5.88 new_esEs23(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_[], fh)) -> new_esEs17(xy300, xy4000, fh) 15.26/5.88 new_primPlusNat0(Zero, Zero) -> Zero 15.26/5.88 new_esEs26(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, app(ty_[], ca)) -> new_esEs17(xy30, xy400, ca) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(app(ty_@3, de), df), dg)) -> new_esEs18(xy302, xy4002, de, df, dg) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Bool) -> new_esEs11(xy30, xy400) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_Ratio, bbg)) -> new_esEs5(xy300, xy4000, bbg) 15.26/5.88 new_esEs4(xy30, xy400, ty_Integer) -> new_esEs9(xy30, xy400) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs5(:%(xy300, xy301), :%(xy4000, xy4001), bc) -> new_asAs(new_esEs7(xy300, xy4000, bc), new_esEs6(xy301, xy4001, bc)) 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_Ratio, ef)) -> new_esEs5(xy301, xy4001, ef) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs18(xy300, xy4000, gb, gc, gd) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Ordering) -> new_esEs19(xy301, xy4001) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(ty_Either, bab), bac)) -> new_esEs16(xy300, xy4000, bab, bac) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Double) -> new_esEs12(xy302, xy4002) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_[], hb), bh) -> new_esEs17(xy300, xy4000, hb) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Ordering, bh) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Double) -> new_esEs12(xy30, xy400) 15.26/5.88 new_esEs4(xy30, xy400, app(app(ty_@2, bd), be)) -> new_esEs13(xy30, xy400, bd, be) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(ty_@2, bde), bdf)) -> new_esEs13(xy300, xy4000, bde, bdf) 15.26/5.88 new_primMulNat0(Succ(xy30000), Succ(xy400100)) -> new_primPlusNat1(new_primMulNat0(xy30000, Succ(xy400100)), xy400100) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_Maybe, cg)) -> new_esEs14(xy302, xy4002, cg) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Integer) -> new_esEs9(xy302, xy4002) 15.26/5.88 new_esEs6(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs10(Char(xy300), Char(xy4000)) -> new_primEqNat0(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_asAs(True, xy26) -> xy26 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_[], bad)) -> new_esEs17(xy300, xy4000, bad) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_[], beb)) -> new_esEs17(xy300, xy4000, beb) 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Pos(Zero)) -> False 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Succ(xy40000))) -> False 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_Maybe, bfa)) -> new_esEs14(xy300, xy4000, bfa) 15.26/5.88 new_esEs19(LT, LT) -> True 15.26/5.88 new_primEqNat0(Succ(xy3000), Succ(xy40000)) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(ty_Either, bdh), bea)) -> new_esEs16(xy300, xy4000, bdh, bea) 15.26/5.88 new_esEs4(xy30, xy400, ty_Float) -> new_esEs15(xy30, xy400) 15.26/5.88 new_esEs4(xy30, xy400, app(app(ty_Either, bg), bh)) -> new_esEs16(xy30, xy400, bg, bh) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs4(xy30, xy400, ty_Char) -> new_esEs10(xy30, xy400) 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_Maybe, fd)) -> new_esEs14(xy300, xy4000, fd) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs18(xy300, xy4000, baf, bag, bah) 15.26/5.88 new_esEs22(xy301, xy4001, app(app(ty_Either, ec), ed)) -> new_esEs16(xy301, xy4001, ec, ed) 15.26/5.88 new_primMulNat0(Zero, Zero) -> Zero 15.26/5.88 new_esEs22(xy301, xy4001, ty_@0) -> new_esEs20(xy301, xy4001) 15.26/5.88 new_esEs20(@0, @0) -> True 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_Maybe, bce)) -> new_esEs14(xy301, xy4001, bce) 15.26/5.88 new_esEs21(xy302, xy4002, ty_@0) -> new_esEs20(xy302, xy4002) 15.26/5.88 new_esEs17(:(xy300, xy301), :(xy4000, xy4001), ca) -> new_asAs(new_esEs26(xy300, xy4000, ca), new_esEs17(xy301, xy4001, ca)) 15.26/5.88 new_esEs13(@2(xy300, xy301), @2(xy4000, xy4001), bd, be) -> new_asAs(new_esEs25(xy300, xy4000, bd), new_esEs24(xy301, xy4001, be)) 15.26/5.88 new_primEqNat0(Succ(xy3000), Zero) -> False 15.26/5.88 new_primEqNat0(Zero, Succ(xy40000)) -> False 15.26/5.88 new_esEs18(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), cb, cc, cd) -> new_asAs(new_esEs23(xy300, xy4000, cb), new_asAs(new_esEs22(xy301, xy4001, cc), new_esEs21(xy302, xy4002, cd))) 15.26/5.88 new_esEs9(Integer(xy300), Integer(xy4000)) -> new_primEqInt(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_Ratio, bec)) -> new_esEs5(xy300, xy4000, bec) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(ty_@2, ce), cf)) -> new_esEs13(xy302, xy4002, ce, cf) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_Maybe, bdg)) -> new_esEs14(xy300, xy4000, bdg) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(app(ty_@3, hd), he), hf), bh) -> new_esEs18(xy300, xy4000, hd, he, hf) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_[], dc)) -> new_esEs17(xy302, xy4002, dc) 15.26/5.88 new_esEs4(xy30, xy400, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs18(xy30, xy400, cb, cc, cd) 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_Ratio, bda)) -> new_esEs5(xy301, xy4001, bda) 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Neg(Zero)) -> False 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Succ(xy40000))) -> False 15.26/5.88 new_esEs21(xy302, xy4002, ty_Bool) -> new_esEs11(xy302, xy4002) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Pos(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(ty_@2, beg), beh)) -> new_esEs13(xy300, xy4000, beg, beh) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Int, bh) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Double) -> new_esEs12(xy301, xy4001) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(ty_Either, da), db)) -> new_esEs16(xy302, xy4002, da, db) 15.26/5.88 new_sr(Pos(xy3000), Neg(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_sr(Neg(xy3000), Pos(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs11(True, True) -> True 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Neg(xy4000)) -> False 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Pos(xy4000)) -> False 15.26/5.88 new_esEs22(xy301, xy4001, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs18(xy301, xy4001, eg, eh, fa) 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_[], bfd)) -> new_esEs17(xy300, xy4000, bfd) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Char) -> new_esEs10(xy302, xy4002) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Ordering) -> new_esEs19(xy301, xy4001) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Integer, bh) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_Ratio, dd)) -> new_esEs5(xy302, xy4002, dd) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(ty_@2, bcc), bcd)) -> new_esEs13(xy301, xy4001, bcc, bcd) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs8(xy30, xy400) -> new_primEqInt(xy30, xy400) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs11(False, True) -> False 15.26/5.88 new_esEs11(True, False) -> False 15.26/5.88 new_esEs23(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_Maybe, bbc)) -> new_esEs14(xy300, xy4000, bbc) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Double) -> new_esEs12(xy301, xy4001) 15.26/5.88 new_esEs19(LT, EQ) -> False 15.26/5.88 new_esEs19(EQ, LT) -> False 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Ordering) -> new_esEs19(xy30, xy400) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Float) -> new_esEs15(xy301, xy4001) 15.26/5.88 new_sr(Neg(xy3000), Neg(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Int) -> new_esEs8(xy30, xy400) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Float) -> new_esEs15(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs18(xy300, xy4000, bbh, bca, bcb) 15.26/5.88 new_esEs17([], [], ca) -> True 15.26/5.88 new_esEs22(xy301, xy4001, ty_Bool) -> new_esEs11(xy301, xy4001) 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_[], bch)) -> new_esEs17(xy301, xy4001, bch) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(ty_Either, bfb), bfc)) -> new_esEs16(xy300, xy4000, bfb, bfc) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Succ(xy40000))) -> False 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Succ(xy40000))) -> False 15.26/5.88 new_esEs16(Left(xy300), Right(xy4000), bg, bh) -> False 15.26/5.88 new_esEs16(Right(xy300), Left(xy4000), bg, bh) -> False 15.26/5.88 new_primPlusNat0(Succ(xy2700), Succ(xy4001000)) -> Succ(Succ(new_primPlusNat0(xy2700, xy4001000))) 15.26/5.88 new_esEs19(LT, GT) -> False 15.26/5.88 new_esEs19(GT, LT) -> False 15.26/5.88 new_esEs22(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(ty_Either, gh), ha), bh) -> new_esEs16(xy300, xy4000, gh, ha) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Char, bh) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, app(ty_Ratio, bc)) -> new_esEs5(xy30, xy400, bc) 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_Ratio, ga)) -> new_esEs5(xy300, xy4000, ga) 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Neg(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs4(xy30, xy400, ty_@0) -> new_esEs20(xy30, xy400) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs18(xy301, xy4001, bdb, bdc, bdd) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Float, bh) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs12(Double(xy300, xy301), Double(xy4000, xy4001)) -> new_esEs8(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Char) -> new_esEs10(xy301, xy4001) 15.26/5.88 new_esEs6(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs22(xy301, xy4001, app(app(ty_@2, dh), ea)) -> new_esEs13(xy301, xy4001, dh, ea) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Double, bh) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Int) -> new_esEs8(xy302, xy4002) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Ordering) -> new_esEs19(xy302, xy4002) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Bool, bh) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primMulNat0(Succ(xy30000), Zero) -> Zero 15.26/5.88 new_primMulNat0(Zero, Succ(xy400100)) -> Zero 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_[], ee)) -> new_esEs17(xy301, xy4001, ee) 15.26/5.88 new_esEs25(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_sr(Pos(xy3000), Pos(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_primPlusNat1(Succ(xy270), xy400100) -> Succ(Succ(new_primPlusNat0(xy270, xy400100))) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Char) -> new_esEs10(xy301, xy4001) 15.26/5.88 new_esEs19(EQ, EQ) -> True 15.26/5.88 new_primPlusNat0(Succ(xy2700), Zero) -> Succ(xy2700) 15.26/5.88 new_primPlusNat0(Zero, Succ(xy4001000)) -> Succ(xy4001000) 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_Ratio, bfe)) -> new_esEs5(xy300, xy4000, bfe) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_Ratio, bae)) -> new_esEs5(xy300, xy4000, bae) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs18(xy300, xy4000, bff, bfg, bfh) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_@0, bh) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_primPlusNat1(Zero, xy400100) -> Succ(xy400100) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_Ratio, hc), bh) -> new_esEs5(xy300, xy4000, hc) 15.26/5.88 new_esEs19(EQ, GT) -> False 15.26/5.88 new_esEs19(GT, EQ) -> False 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(ty_@2, bba), bbb)) -> new_esEs13(xy300, xy4000, bba, bbb) 15.26/5.88 new_esEs19(GT, GT) -> True 15.26/5.88 new_esEs14(Nothing, Just(xy4000), bf) -> False 15.26/5.88 new_esEs14(Just(xy300), Nothing, bf) -> False 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(ty_Either, ff), fg)) -> new_esEs16(xy300, xy4000, ff, fg) 15.26/5.88 new_esEs23(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs14(Nothing, Nothing, bf) -> True 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_Maybe, gg), bh) -> new_esEs14(xy300, xy4000, gg) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_[], bbf)) -> new_esEs17(xy300, xy4000, bbf) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 15.26/5.88 new_esEs4(xy30, xy400, app(ty_Maybe, bf)) -> new_esEs14(xy30, xy400, bf) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(ty_@2, ge), gf), bh) -> new_esEs13(xy300, xy4000, ge, gf) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primEqNat0(Zero, Zero) -> True 15.26/5.88 new_esEs25(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_@0) -> new_esEs20(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(ty_Either, bbd), bbe)) -> new_esEs16(xy300, xy4000, bbd, bbe) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(ty_Either, bcf), bcg)) -> new_esEs16(xy301, xy4001, bcf, bcg) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_asAs(False, xy26) -> False 15.26/5.88 new_esEs17(:(xy300, xy301), [], ca) -> False 15.26/5.88 new_esEs17([], :(xy4000, xy4001), ca) -> False 15.26/5.88 new_esEs25(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_Maybe, eb)) -> new_esEs14(xy301, xy4001, eb) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_Maybe, baa)) -> new_esEs14(xy300, xy4000, baa) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs18(xy300, xy4000, bed, bee, bef) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(ty_@2, fb), fc)) -> new_esEs13(xy300, xy4000, fb, fc) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(ty_@2, hg), hh)) -> new_esEs13(xy300, xy4000, hg, hh) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Bool) -> new_esEs11(xy301, xy4001) 15.26/5.88 new_esEs11(False, False) -> True 15.26/5.88 new_esEs7(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs7(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs15(Float(xy300, xy301), Float(xy4000, xy4001)) -> new_esEs8(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Float) -> new_esEs15(xy302, xy4002) 15.26/5.88 15.26/5.88 The set Q consists of the following terms: 15.26/5.88 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 15.26/5.88 new_esEs24(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs4(x0, x1, ty_Integer) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Bool, x2) 15.26/5.88 new_esEs7(x0, x1, ty_Int) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_[], x2), x3) 15.26/5.88 new_esEs24(x0, x1, ty_Bool) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Bool) 15.26/5.88 new_esEs18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 15.26/5.88 new_esEs21(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_@0) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_@0, x2) 15.26/5.88 new_sr(Pos(x0), Neg(x1)) 15.26/5.88 new_sr(Neg(x0), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_sr(Neg(x0), Neg(x1)) 15.26/5.88 new_esEs22(x0, x1, ty_Bool) 15.26/5.88 new_primMulNat0(Zero, Zero) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 15.26/5.88 new_esEs19(EQ, GT) 15.26/5.88 new_esEs19(GT, EQ) 15.26/5.88 new_asAs(False, x0) 15.26/5.88 new_esEs22(x0, x1, ty_Integer) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, ty_Char) 15.26/5.88 new_esEs19(EQ, EQ) 15.26/5.88 new_primMulNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs20(@0, @0) 15.26/5.88 new_esEs24(x0, x1, ty_Integer) 15.26/5.88 new_esEs21(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs26(x0, x1, ty_@0) 15.26/5.88 new_esEs14(Nothing, Just(x0), x1) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Zero)) 15.26/5.88 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, ty_Char) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 15.26/5.88 new_esEs26(x0, x1, ty_Int) 15.26/5.88 new_esEs24(x0, x1, ty_@0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 15.26/5.88 new_esEs5(:%(x0, x1), :%(x2, x3), x4) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Zero)) 15.26/5.88 new_esEs25(x0, x1, ty_Bool) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) 15.26/5.88 new_sr(Pos(x0), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_primPlusNat0(Zero, Zero) 15.26/5.88 new_primMulNat0(Succ(x0), Zero) 15.26/5.88 new_esEs23(x0, x1, ty_@0) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 15.26/5.88 new_esEs12(Double(x0, x1), Double(x2, x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Int) 15.26/5.88 new_esEs14(Nothing, Nothing, x0) 15.26/5.88 new_esEs26(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_primEqNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs4(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs22(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs26(x0, x1, ty_Ordering) 15.26/5.88 new_esEs23(x0, x1, ty_Integer) 15.26/5.88 new_esEs23(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs11(True, True) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Char) 15.26/5.88 new_esEs21(x0, x1, ty_@0) 15.26/5.88 new_esEs6(x0, x1, ty_Int) 15.26/5.88 new_esEs23(x0, x1, ty_Char) 15.26/5.88 new_esEs22(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs26(x0, x1, ty_Bool) 15.26/5.88 new_esEs9(Integer(x0), Integer(x1)) 15.26/5.88 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs25(x0, x1, ty_Int) 15.26/5.88 new_esEs21(x0, x1, ty_Float) 15.26/5.88 new_esEs26(x0, x1, ty_Integer) 15.26/5.88 new_esEs11(False, True) 15.26/5.88 new_esEs11(True, False) 15.26/5.88 new_esEs4(x0, x1, ty_Bool) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Int) 15.26/5.88 new_esEs17([], :(x0, x1), x2) 15.26/5.88 new_esEs4(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Float) 15.26/5.88 new_esEs23(x0, x1, ty_Bool) 15.26/5.88 new_esEs22(x0, x1, ty_@0) 15.26/5.88 new_esEs22(x0, x1, ty_Char) 15.26/5.88 new_esEs25(x0, x1, ty_@0) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Zero)) 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Zero)) 15.26/5.88 new_esEs4(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs22(x0, x1, ty_Double) 15.26/5.88 new_esEs14(Just(x0), Nothing, x1) 15.26/5.88 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Double) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_@0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Char) 15.26/5.88 new_esEs23(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs10(Char(x0), Char(x1)) 15.26/5.88 new_esEs7(x0, x1, ty_Integer) 15.26/5.88 new_esEs25(x0, x1, ty_Float) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 15.26/5.88 new_esEs26(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Int) 15.26/5.88 new_esEs15(Float(x0, x1), Float(x2, x3)) 15.26/5.88 new_esEs22(x0, x1, ty_Int) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Float) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Integer, x2) 15.26/5.88 new_primPlusNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 15.26/5.88 new_esEs24(x0, x1, ty_Ordering) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Float, x2) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Double) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 15.26/5.88 new_esEs4(x0, x1, ty_Int) 15.26/5.88 new_esEs19(LT, GT) 15.26/5.88 new_esEs19(GT, LT) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Ordering, x2) 15.26/5.88 new_esEs24(x0, x1, ty_Float) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Ordering) 15.26/5.88 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Double, x2) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 15.26/5.88 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs24(x0, x1, ty_Double) 15.26/5.88 new_primPlusNat1(Succ(x0), x1) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Double) 15.26/5.88 new_esEs22(x0, x1, ty_Float) 15.26/5.88 new_asAs(True, x0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Integer) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Bool) 15.26/5.88 new_esEs21(x0, x1, ty_Int) 15.26/5.88 new_esEs24(x0, x1, ty_Int) 15.26/5.88 new_esEs26(x0, x1, ty_Double) 15.26/5.88 new_esEs4(x0, x1, ty_Double) 15.26/5.88 new_esEs25(x0, x1, ty_Double) 15.26/5.88 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Float) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs25(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs4(x0, x1, ty_Ordering) 15.26/5.88 new_esEs24(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primPlusNat1(Zero, x0) 15.26/5.88 new_esEs21(x0, x1, ty_Char) 15.26/5.88 new_esEs4(x0, x1, ty_Char) 15.26/5.88 new_esEs21(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 15.26/5.88 new_esEs6(x0, x1, ty_Integer) 15.26/5.88 new_esEs23(x0, x1, ty_Ordering) 15.26/5.88 new_primEqNat0(Zero, Zero) 15.26/5.88 new_esEs21(x0, x1, ty_Ordering) 15.26/5.88 new_esEs17([], [], x0) 15.26/5.88 new_esEs17(:(x0, x1), [], x2) 15.26/5.88 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Char, x2) 15.26/5.88 new_esEs17(:(x0, x1), :(x2, x3), x4) 15.26/5.88 new_esEs19(GT, GT) 15.26/5.88 new_esEs21(x0, x1, ty_Double) 15.26/5.88 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs19(LT, EQ) 15.26/5.88 new_esEs19(EQ, LT) 15.26/5.88 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs4(x0, x1, ty_@0) 15.26/5.88 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, ty_Float) 15.26/5.88 new_primEqNat0(Succ(x0), Zero) 15.26/5.88 new_primPlusNat0(Succ(x0), Zero) 15.26/5.88 new_esEs23(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primPlusNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs11(False, False) 15.26/5.88 new_primMulNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs19(LT, LT) 15.26/5.88 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs4(x0, x1, ty_Float) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 15.26/5.88 new_esEs21(x0, x1, ty_Bool) 15.26/5.88 new_esEs24(x0, x1, ty_Char) 15.26/5.88 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 15.26/5.88 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Int, x2) 15.26/5.88 new_esEs22(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs21(x0, x1, ty_Integer) 15.26/5.88 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Ordering) 15.26/5.88 new_esEs8(x0, x1) 15.26/5.88 new_esEs25(x0, x1, ty_Ordering) 15.26/5.88 new_esEs25(x0, x1, ty_Integer) 15.26/5.88 new_esEs22(x0, x1, ty_Ordering) 15.26/5.88 new_esEs25(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primEqNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs24(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Integer) 15.26/5.88 new_esEs16(Left(x0), Right(x1), x2, x3) 15.26/5.88 new_esEs16(Right(x0), Left(x1), x2, x3) 15.26/5.88 15.26/5.88 We have to consider all minimal (P,Q,R)-chains. 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (16) QDPSizeChangeProof (EQUIVALENT) 15.26/5.88 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.26/5.88 15.26/5.88 From the DPs we obtained the following set of size-change graphs: 15.26/5.88 *new_deleteBy(Nothing, :(Just(xy400), xy41), ba) -> new_deleteBy(Nothing, xy41, ba) 15.26/5.88 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3 15.26/5.88 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (17) 15.26/5.88 YES 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (18) 15.26/5.88 Obligation: 15.26/5.88 Q DP problem: 15.26/5.88 The TRS P consists of the following rules: 15.26/5.88 15.26/5.88 new_deleteBy(Just(xy30), :(Just(xy400), xy41), ba) -> new_deleteBy0(xy41, xy400, xy30, new_esEs4(xy30, xy400, ba), ba) 15.26/5.88 new_deleteBy0(xy10, xy11, xy12, False, bb) -> new_deleteBy(Just(xy12), xy10, bb) 15.26/5.88 new_deleteBy(Just(xy30), :(Nothing, xy41), ba) -> new_deleteBy(Just(xy30), xy41, ba) 15.26/5.88 15.26/5.88 The TRS R consists of the following rules: 15.26/5.88 15.26/5.88 new_esEs23(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_[], fh)) -> new_esEs17(xy300, xy4000, fh) 15.26/5.88 new_primPlusNat0(Zero, Zero) -> Zero 15.26/5.88 new_esEs26(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, app(ty_[], ca)) -> new_esEs17(xy30, xy400, ca) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(app(ty_@3, de), df), dg)) -> new_esEs18(xy302, xy4002, de, df, dg) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Bool) -> new_esEs11(xy30, xy400) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_Ratio, bbg)) -> new_esEs5(xy300, xy4000, bbg) 15.26/5.88 new_esEs4(xy30, xy400, ty_Integer) -> new_esEs9(xy30, xy400) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs5(:%(xy300, xy301), :%(xy4000, xy4001), bc) -> new_asAs(new_esEs7(xy300, xy4000, bc), new_esEs6(xy301, xy4001, bc)) 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_Ratio, ef)) -> new_esEs5(xy301, xy4001, ef) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs18(xy300, xy4000, gb, gc, gd) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Ordering) -> new_esEs19(xy301, xy4001) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(ty_Either, bab), bac)) -> new_esEs16(xy300, xy4000, bab, bac) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Double) -> new_esEs12(xy302, xy4002) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_[], hb), bh) -> new_esEs17(xy300, xy4000, hb) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Ordering, bh) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Double) -> new_esEs12(xy30, xy400) 15.26/5.88 new_esEs4(xy30, xy400, app(app(ty_@2, bd), be)) -> new_esEs13(xy30, xy400, bd, be) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(ty_@2, bde), bdf)) -> new_esEs13(xy300, xy4000, bde, bdf) 15.26/5.88 new_primMulNat0(Succ(xy30000), Succ(xy400100)) -> new_primPlusNat1(new_primMulNat0(xy30000, Succ(xy400100)), xy400100) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_Maybe, cg)) -> new_esEs14(xy302, xy4002, cg) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Integer) -> new_esEs9(xy302, xy4002) 15.26/5.88 new_esEs6(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs10(Char(xy300), Char(xy4000)) -> new_primEqNat0(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_asAs(True, xy26) -> xy26 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_[], bad)) -> new_esEs17(xy300, xy4000, bad) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_[], beb)) -> new_esEs17(xy300, xy4000, beb) 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Pos(Zero)) -> False 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Succ(xy40000))) -> False 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_Maybe, bfa)) -> new_esEs14(xy300, xy4000, bfa) 15.26/5.88 new_esEs19(LT, LT) -> True 15.26/5.88 new_primEqNat0(Succ(xy3000), Succ(xy40000)) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(ty_Either, bdh), bea)) -> new_esEs16(xy300, xy4000, bdh, bea) 15.26/5.88 new_esEs4(xy30, xy400, ty_Float) -> new_esEs15(xy30, xy400) 15.26/5.88 new_esEs4(xy30, xy400, app(app(ty_Either, bg), bh)) -> new_esEs16(xy30, xy400, bg, bh) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs4(xy30, xy400, ty_Char) -> new_esEs10(xy30, xy400) 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_Maybe, fd)) -> new_esEs14(xy300, xy4000, fd) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs18(xy300, xy4000, baf, bag, bah) 15.26/5.88 new_esEs22(xy301, xy4001, app(app(ty_Either, ec), ed)) -> new_esEs16(xy301, xy4001, ec, ed) 15.26/5.88 new_primMulNat0(Zero, Zero) -> Zero 15.26/5.88 new_esEs22(xy301, xy4001, ty_@0) -> new_esEs20(xy301, xy4001) 15.26/5.88 new_esEs20(@0, @0) -> True 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_Maybe, bce)) -> new_esEs14(xy301, xy4001, bce) 15.26/5.88 new_esEs21(xy302, xy4002, ty_@0) -> new_esEs20(xy302, xy4002) 15.26/5.88 new_esEs17(:(xy300, xy301), :(xy4000, xy4001), ca) -> new_asAs(new_esEs26(xy300, xy4000, ca), new_esEs17(xy301, xy4001, ca)) 15.26/5.88 new_esEs13(@2(xy300, xy301), @2(xy4000, xy4001), bd, be) -> new_asAs(new_esEs25(xy300, xy4000, bd), new_esEs24(xy301, xy4001, be)) 15.26/5.88 new_primEqNat0(Succ(xy3000), Zero) -> False 15.26/5.88 new_primEqNat0(Zero, Succ(xy40000)) -> False 15.26/5.88 new_esEs18(@3(xy300, xy301, xy302), @3(xy4000, xy4001, xy4002), cb, cc, cd) -> new_asAs(new_esEs23(xy300, xy4000, cb), new_asAs(new_esEs22(xy301, xy4001, cc), new_esEs21(xy302, xy4002, cd))) 15.26/5.88 new_esEs9(Integer(xy300), Integer(xy4000)) -> new_primEqInt(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_Ratio, bec)) -> new_esEs5(xy300, xy4000, bec) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(ty_@2, ce), cf)) -> new_esEs13(xy302, xy4002, ce, cf) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, app(ty_Maybe, bdg)) -> new_esEs14(xy300, xy4000, bdg) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(app(ty_@3, hd), he), hf), bh) -> new_esEs18(xy300, xy4000, hd, he, hf) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_[], dc)) -> new_esEs17(xy302, xy4002, dc) 15.26/5.88 new_esEs4(xy30, xy400, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs18(xy30, xy400, cb, cc, cd) 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_Ratio, bda)) -> new_esEs5(xy301, xy4001, bda) 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Neg(Zero)) -> False 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Succ(xy40000))) -> False 15.26/5.88 new_esEs21(xy302, xy4002, ty_Bool) -> new_esEs11(xy302, xy4002) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Pos(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(ty_@2, beg), beh)) -> new_esEs13(xy300, xy4000, beg, beh) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Int, bh) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Double) -> new_esEs12(xy301, xy4001) 15.26/5.88 new_esEs21(xy302, xy4002, app(app(ty_Either, da), db)) -> new_esEs16(xy302, xy4002, da, db) 15.26/5.88 new_sr(Pos(xy3000), Neg(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_sr(Neg(xy3000), Pos(xy40010)) -> Neg(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs11(True, True) -> True 15.26/5.88 new_primEqInt(Pos(Succ(xy3000)), Neg(xy4000)) -> False 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Pos(xy4000)) -> False 15.26/5.88 new_esEs22(xy301, xy4001, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs18(xy301, xy4001, eg, eh, fa) 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_[], bfd)) -> new_esEs17(xy300, xy4000, bfd) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Char) -> new_esEs10(xy302, xy4002) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Ordering) -> new_esEs19(xy301, xy4001) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Integer, bh) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, app(ty_Ratio, dd)) -> new_esEs5(xy302, xy4002, dd) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(ty_@2, bcc), bcd)) -> new_esEs13(xy301, xy4001, bcc, bcd) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs8(xy30, xy400) -> new_primEqInt(xy30, xy400) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs11(False, True) -> False 15.26/5.88 new_esEs11(True, False) -> False 15.26/5.88 new_esEs23(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_Maybe, bbc)) -> new_esEs14(xy300, xy4000, bbc) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Double) -> new_esEs12(xy301, xy4001) 15.26/5.88 new_esEs19(LT, EQ) -> False 15.26/5.88 new_esEs19(EQ, LT) -> False 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Ordering) -> new_esEs19(xy30, xy400) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Float) -> new_esEs15(xy301, xy4001) 15.26/5.88 new_sr(Neg(xy3000), Neg(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, ty_Int) -> new_esEs8(xy30, xy400) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Float) -> new_esEs15(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs18(xy300, xy4000, bbh, bca, bcb) 15.26/5.88 new_esEs17([], [], ca) -> True 15.26/5.88 new_esEs22(xy301, xy4001, ty_Bool) -> new_esEs11(xy301, xy4001) 15.26/5.88 new_esEs24(xy301, xy4001, app(ty_[], bch)) -> new_esEs17(xy301, xy4001, bch) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(ty_Either, bfb), bfc)) -> new_esEs16(xy300, xy4000, bfb, bfc) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Succ(xy40000))) -> False 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Succ(xy40000))) -> False 15.26/5.88 new_esEs16(Left(xy300), Right(xy4000), bg, bh) -> False 15.26/5.88 new_esEs16(Right(xy300), Left(xy4000), bg, bh) -> False 15.26/5.88 new_primPlusNat0(Succ(xy2700), Succ(xy4001000)) -> Succ(Succ(new_primPlusNat0(xy2700, xy4001000))) 15.26/5.88 new_esEs19(LT, GT) -> False 15.26/5.88 new_esEs19(GT, LT) -> False 15.26/5.88 new_esEs22(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(ty_Either, gh), ha), bh) -> new_esEs16(xy300, xy4000, gh, ha) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Char, bh) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs4(xy30, xy400, app(ty_Ratio, bc)) -> new_esEs5(xy30, xy400, bc) 15.26/5.88 new_esEs23(xy300, xy4000, app(ty_Ratio, ga)) -> new_esEs5(xy300, xy4000, ga) 15.26/5.88 new_primEqInt(Neg(Succ(xy3000)), Neg(Succ(xy40000))) -> new_primEqNat0(xy3000, xy40000) 15.26/5.88 new_esEs4(xy30, xy400, ty_@0) -> new_esEs20(xy30, xy400) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs18(xy301, xy4001, bdb, bdc, bdd) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Float, bh) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs12(Double(xy300, xy301), Double(xy4000, xy4001)) -> new_esEs8(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.26/5.88 new_esEs22(xy301, xy4001, ty_Char) -> new_esEs10(xy301, xy4001) 15.26/5.88 new_esEs6(xy301, xy4001, ty_Int) -> new_esEs8(xy301, xy4001) 15.26/5.88 new_esEs22(xy301, xy4001, app(app(ty_@2, dh), ea)) -> new_esEs13(xy301, xy4001, dh, ea) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Double, bh) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Int) -> new_esEs8(xy302, xy4002) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Double) -> new_esEs12(xy300, xy4000) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Ordering) -> new_esEs19(xy302, xy4002) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_Bool, bh) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primMulNat0(Succ(xy30000), Zero) -> Zero 15.26/5.88 new_primMulNat0(Zero, Succ(xy400100)) -> Zero 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_[], ee)) -> new_esEs17(xy301, xy4001, ee) 15.26/5.88 new_esEs25(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_sr(Pos(xy3000), Pos(xy40010)) -> Pos(new_primMulNat0(xy3000, xy40010)) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Integer) -> new_esEs9(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_primPlusNat1(Succ(xy270), xy400100) -> Succ(Succ(new_primPlusNat0(xy270, xy400100))) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Char) -> new_esEs10(xy301, xy4001) 15.26/5.88 new_esEs19(EQ, EQ) -> True 15.26/5.88 new_primPlusNat0(Succ(xy2700), Zero) -> Succ(xy2700) 15.26/5.88 new_primPlusNat0(Zero, Succ(xy4001000)) -> Succ(xy4001000) 15.26/5.88 new_esEs26(xy300, xy4000, app(ty_Ratio, bfe)) -> new_esEs5(xy300, xy4000, bfe) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_Ratio, bae)) -> new_esEs5(xy300, xy4000, bae) 15.26/5.88 new_esEs26(xy300, xy4000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs18(xy300, xy4000, bff, bfg, bfh) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), ty_@0, bh) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_primPlusNat1(Zero, xy400100) -> Succ(xy400100) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_Ratio, hc), bh) -> new_esEs5(xy300, xy4000, hc) 15.26/5.88 new_esEs19(EQ, GT) -> False 15.26/5.88 new_esEs19(GT, EQ) -> False 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(ty_@2, bba), bbb)) -> new_esEs13(xy300, xy4000, bba, bbb) 15.26/5.88 new_esEs19(GT, GT) -> True 15.26/5.88 new_esEs14(Nothing, Just(xy4000), bf) -> False 15.26/5.88 new_esEs14(Just(xy300), Nothing, bf) -> False 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(ty_Either, ff), fg)) -> new_esEs16(xy300, xy4000, ff, fg) 15.26/5.88 new_esEs23(xy300, xy4000, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs14(Nothing, Nothing, bf) -> True 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(ty_Maybe, gg), bh) -> new_esEs14(xy300, xy4000, gg) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(ty_[], bbf)) -> new_esEs17(xy300, xy4000, bbf) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_esEs23(xy300, xy4000, ty_Char) -> new_esEs10(xy300, xy4000) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 15.26/5.88 new_esEs4(xy30, xy400, app(ty_Maybe, bf)) -> new_esEs14(xy30, xy400, bf) 15.26/5.88 new_esEs16(Left(xy300), Left(xy4000), app(app(ty_@2, ge), gf), bh) -> new_esEs13(xy300, xy4000, ge, gf) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), ty_Bool) -> new_esEs11(xy300, xy4000) 15.26/5.88 new_primEqNat0(Zero, Zero) -> True 15.26/5.88 new_esEs25(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs24(xy301, xy4001, ty_@0) -> new_esEs20(xy301, xy4001) 15.26/5.88 new_esEs14(Just(xy300), Just(xy4000), app(app(ty_Either, bbd), bbe)) -> new_esEs16(xy300, xy4000, bbd, bbe) 15.26/5.88 new_esEs24(xy301, xy4001, app(app(ty_Either, bcf), bcg)) -> new_esEs16(xy301, xy4001, bcf, bcg) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, ty_@0) -> new_esEs20(xy300, xy4000) 15.26/5.88 new_esEs26(xy300, xy4000, ty_Float) -> new_esEs15(xy300, xy4000) 15.26/5.88 new_esEs25(xy300, xy4000, ty_Ordering) -> new_esEs19(xy300, xy4000) 15.26/5.88 new_asAs(False, xy26) -> False 15.26/5.88 new_esEs17(:(xy300, xy301), [], ca) -> False 15.26/5.88 new_esEs17([], :(xy4000, xy4001), ca) -> False 15.26/5.88 new_esEs25(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs22(xy301, xy4001, app(ty_Maybe, eb)) -> new_esEs14(xy301, xy4001, eb) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(ty_Maybe, baa)) -> new_esEs14(xy300, xy4000, baa) 15.26/5.88 new_esEs25(xy300, xy4000, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs18(xy300, xy4000, bed, bee, bef) 15.26/5.88 new_esEs23(xy300, xy4000, app(app(ty_@2, fb), fc)) -> new_esEs13(xy300, xy4000, fb, fc) 15.26/5.88 new_esEs16(Right(xy300), Right(xy4000), bg, app(app(ty_@2, hg), hh)) -> new_esEs13(xy300, xy4000, hg, hh) 15.26/5.88 new_esEs24(xy301, xy4001, ty_Bool) -> new_esEs11(xy301, xy4001) 15.26/5.88 new_esEs11(False, False) -> True 15.26/5.88 new_esEs7(xy300, xy4000, ty_Int) -> new_esEs8(xy300, xy4000) 15.26/5.88 new_esEs7(xy300, xy4000, ty_Integer) -> new_esEs9(xy300, xy4000) 15.26/5.88 new_esEs15(Float(xy300, xy301), Float(xy4000, xy4001)) -> new_esEs8(new_sr(xy300, xy4001), new_sr(xy301, xy4000)) 15.26/5.88 new_esEs21(xy302, xy4002, ty_Float) -> new_esEs15(xy302, xy4002) 15.26/5.88 15.26/5.88 The set Q consists of the following terms: 15.26/5.88 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 15.26/5.88 new_esEs24(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs4(x0, x1, ty_Integer) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Bool, x2) 15.26/5.88 new_esEs7(x0, x1, ty_Int) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_[], x2), x3) 15.26/5.88 new_esEs24(x0, x1, ty_Bool) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Bool) 15.26/5.88 new_esEs18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 15.26/5.88 new_esEs21(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_@0) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_@0, x2) 15.26/5.88 new_sr(Pos(x0), Neg(x1)) 15.26/5.88 new_sr(Neg(x0), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_sr(Neg(x0), Neg(x1)) 15.26/5.88 new_esEs22(x0, x1, ty_Bool) 15.26/5.88 new_primMulNat0(Zero, Zero) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 15.26/5.88 new_esEs19(EQ, GT) 15.26/5.88 new_esEs19(GT, EQ) 15.26/5.88 new_asAs(False, x0) 15.26/5.88 new_esEs22(x0, x1, ty_Integer) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, ty_Char) 15.26/5.88 new_esEs19(EQ, EQ) 15.26/5.88 new_primMulNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs20(@0, @0) 15.26/5.88 new_esEs24(x0, x1, ty_Integer) 15.26/5.88 new_esEs21(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs26(x0, x1, ty_@0) 15.26/5.88 new_esEs14(Nothing, Just(x0), x1) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Zero)) 15.26/5.88 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, ty_Char) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 15.26/5.88 new_esEs26(x0, x1, ty_Int) 15.26/5.88 new_esEs24(x0, x1, ty_@0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 15.26/5.88 new_esEs5(:%(x0, x1), :%(x2, x3), x4) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Zero)) 15.26/5.88 new_esEs25(x0, x1, ty_Bool) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_[], x2)) 15.26/5.88 new_sr(Pos(x0), Pos(x1)) 15.26/5.88 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_primPlusNat0(Zero, Zero) 15.26/5.88 new_primMulNat0(Succ(x0), Zero) 15.26/5.88 new_esEs23(x0, x1, ty_@0) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 15.26/5.88 new_esEs12(Double(x0, x1), Double(x2, x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Int) 15.26/5.88 new_esEs14(Nothing, Nothing, x0) 15.26/5.88 new_esEs26(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_primEqNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs4(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs22(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs26(x0, x1, ty_Ordering) 15.26/5.88 new_esEs23(x0, x1, ty_Integer) 15.26/5.88 new_esEs23(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs11(True, True) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Char) 15.26/5.88 new_esEs21(x0, x1, ty_@0) 15.26/5.88 new_esEs6(x0, x1, ty_Int) 15.26/5.88 new_esEs23(x0, x1, ty_Char) 15.26/5.88 new_esEs22(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs26(x0, x1, ty_Bool) 15.26/5.88 new_esEs9(Integer(x0), Integer(x1)) 15.26/5.88 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs25(x0, x1, ty_Int) 15.26/5.88 new_esEs21(x0, x1, ty_Float) 15.26/5.88 new_esEs26(x0, x1, ty_Integer) 15.26/5.88 new_esEs11(False, True) 15.26/5.88 new_esEs11(True, False) 15.26/5.88 new_esEs4(x0, x1, ty_Bool) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Int) 15.26/5.88 new_esEs17([], :(x0, x1), x2) 15.26/5.88 new_esEs4(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Float) 15.26/5.88 new_esEs23(x0, x1, ty_Bool) 15.26/5.88 new_esEs22(x0, x1, ty_@0) 15.26/5.88 new_esEs22(x0, x1, ty_Char) 15.26/5.88 new_esEs25(x0, x1, ty_@0) 15.26/5.88 new_primEqInt(Pos(Zero), Neg(Zero)) 15.26/5.88 new_primEqInt(Neg(Zero), Pos(Zero)) 15.26/5.88 new_esEs4(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs22(x0, x1, ty_Double) 15.26/5.88 new_esEs14(Just(x0), Nothing, x1) 15.26/5.88 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Double) 15.26/5.88 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_@0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Char) 15.26/5.88 new_esEs23(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs10(Char(x0), Char(x1)) 15.26/5.88 new_esEs7(x0, x1, ty_Integer) 15.26/5.88 new_esEs25(x0, x1, ty_Float) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 15.26/5.88 new_esEs26(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Int) 15.26/5.88 new_esEs15(Float(x0, x1), Float(x2, x3)) 15.26/5.88 new_esEs22(x0, x1, ty_Int) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Float) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Integer, x2) 15.26/5.88 new_primPlusNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 15.26/5.88 new_esEs24(x0, x1, ty_Ordering) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Float, x2) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Double) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 15.26/5.88 new_esEs4(x0, x1, ty_Int) 15.26/5.88 new_esEs19(LT, GT) 15.26/5.88 new_esEs19(GT, LT) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Ordering, x2) 15.26/5.88 new_esEs24(x0, x1, ty_Float) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Ordering) 15.26/5.88 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Double, x2) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 15.26/5.88 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs24(x0, x1, ty_Double) 15.26/5.88 new_primPlusNat1(Succ(x0), x1) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Double) 15.26/5.88 new_esEs22(x0, x1, ty_Float) 15.26/5.88 new_asAs(True, x0) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Integer) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 15.26/5.88 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 15.26/5.88 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Bool) 15.26/5.88 new_esEs21(x0, x1, ty_Int) 15.26/5.88 new_esEs24(x0, x1, ty_Int) 15.26/5.88 new_esEs26(x0, x1, ty_Double) 15.26/5.88 new_esEs4(x0, x1, ty_Double) 15.26/5.88 new_esEs25(x0, x1, ty_Double) 15.26/5.88 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs23(x0, x1, ty_Float) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs25(x0, x1, app(ty_Maybe, x2)) 15.26/5.88 new_esEs4(x0, x1, ty_Ordering) 15.26/5.88 new_esEs24(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primPlusNat1(Zero, x0) 15.26/5.88 new_esEs21(x0, x1, ty_Char) 15.26/5.88 new_esEs4(x0, x1, ty_Char) 15.26/5.88 new_esEs21(x0, x1, app(ty_[], x2)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 15.26/5.88 new_esEs6(x0, x1, ty_Integer) 15.26/5.88 new_esEs23(x0, x1, ty_Ordering) 15.26/5.88 new_primEqNat0(Zero, Zero) 15.26/5.88 new_esEs21(x0, x1, ty_Ordering) 15.26/5.88 new_esEs17([], [], x0) 15.26/5.88 new_esEs17(:(x0, x1), [], x2) 15.26/5.88 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Char, x2) 15.26/5.88 new_esEs17(:(x0, x1), :(x2, x3), x4) 15.26/5.88 new_esEs19(GT, GT) 15.26/5.88 new_esEs21(x0, x1, ty_Double) 15.26/5.88 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs19(LT, EQ) 15.26/5.88 new_esEs19(EQ, LT) 15.26/5.88 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs4(x0, x1, ty_@0) 15.26/5.88 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs26(x0, x1, ty_Float) 15.26/5.88 new_primEqNat0(Succ(x0), Zero) 15.26/5.88 new_primPlusNat0(Succ(x0), Zero) 15.26/5.88 new_esEs23(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primPlusNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs11(False, False) 15.26/5.88 new_primMulNat0(Succ(x0), Succ(x1)) 15.26/5.88 new_esEs19(LT, LT) 15.26/5.88 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs4(x0, x1, ty_Float) 15.26/5.88 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 15.26/5.88 new_esEs21(x0, x1, ty_Bool) 15.26/5.88 new_esEs24(x0, x1, ty_Char) 15.26/5.88 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 15.26/5.88 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 15.26/5.88 new_esEs16(Left(x0), Left(x1), ty_Int, x2) 15.26/5.88 new_esEs22(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs21(x0, x1, ty_Integer) 15.26/5.88 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 15.26/5.88 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 15.26/5.88 new_esEs16(Right(x0), Right(x1), x2, ty_Ordering) 15.26/5.88 new_esEs8(x0, x1) 15.26/5.88 new_esEs25(x0, x1, ty_Ordering) 15.26/5.88 new_esEs25(x0, x1, ty_Integer) 15.26/5.88 new_esEs22(x0, x1, ty_Ordering) 15.26/5.88 new_esEs25(x0, x1, app(ty_[], x2)) 15.26/5.88 new_primEqNat0(Zero, Succ(x0)) 15.26/5.88 new_esEs24(x0, x1, app(ty_Ratio, x2)) 15.26/5.88 new_esEs14(Just(x0), Just(x1), ty_Integer) 15.26/5.88 new_esEs16(Left(x0), Right(x1), x2, x3) 15.26/5.88 new_esEs16(Right(x0), Left(x1), x2, x3) 15.26/5.88 15.26/5.88 We have to consider all minimal (P,Q,R)-chains. 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (19) QDPSizeChangeProof (EQUIVALENT) 15.26/5.88 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.26/5.88 15.26/5.88 From the DPs we obtained the following set of size-change graphs: 15.26/5.88 *new_deleteBy0(xy10, xy11, xy12, False, bb) -> new_deleteBy(Just(xy12), xy10, bb) 15.26/5.88 The graph contains the following edges 1 >= 2, 5 >= 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_deleteBy(Just(xy30), :(Nothing, xy41), ba) -> new_deleteBy(Just(xy30), xy41, ba) 15.26/5.88 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3 15.26/5.88 15.26/5.88 15.26/5.88 *new_deleteBy(Just(xy30), :(Just(xy400), xy41), ba) -> new_deleteBy0(xy41, xy400, xy30, new_esEs4(xy30, xy400, ba), ba) 15.26/5.88 The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 3 >= 5 15.26/5.88 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (20) 15.26/5.88 YES 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (21) 15.26/5.88 Obligation: 15.26/5.88 Q DP problem: 15.26/5.88 The TRS P consists of the following rules: 15.26/5.88 15.26/5.88 new_primMulNat(Succ(xy30000), Succ(xy400100)) -> new_primMulNat(xy30000, Succ(xy400100)) 15.26/5.88 15.26/5.88 R is empty. 15.26/5.88 Q is empty. 15.26/5.88 We have to consider all minimal (P,Q,R)-chains. 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (22) QDPSizeChangeProof (EQUIVALENT) 15.26/5.88 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.26/5.88 15.26/5.88 From the DPs we obtained the following set of size-change graphs: 15.26/5.88 *new_primMulNat(Succ(xy30000), Succ(xy400100)) -> new_primMulNat(xy30000, Succ(xy400100)) 15.26/5.88 The graph contains the following edges 1 > 1, 2 >= 2 15.26/5.88 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (23) 15.26/5.88 YES 15.26/5.88 15.26/5.88 ---------------------------------------- 15.26/5.88 15.26/5.88 (24) 15.26/5.88 Obligation: 15.26/5.88 Q DP problem: 15.26/5.88 The TRS P consists of the following rules: 15.26/5.88 15.26/5.88 new_primPlusNat(Succ(xy2700), Succ(xy4001000)) -> new_primPlusNat(xy2700, xy4001000) 15.26/5.89 15.26/5.89 R is empty. 15.26/5.89 Q is empty. 15.26/5.89 We have to consider all minimal (P,Q,R)-chains. 15.26/5.89 ---------------------------------------- 15.26/5.89 15.26/5.89 (25) QDPSizeChangeProof (EQUIVALENT) 15.26/5.89 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.26/5.89 15.26/5.89 From the DPs we obtained the following set of size-change graphs: 15.26/5.89 *new_primPlusNat(Succ(xy2700), Succ(xy4001000)) -> new_primPlusNat(xy2700, xy4001000) 15.26/5.89 The graph contains the following edges 1 > 1, 2 > 2 15.26/5.89 15.26/5.89 15.26/5.89 ---------------------------------------- 15.26/5.89 15.26/5.89 (26) 15.26/5.89 YES 15.26/5.89 15.26/5.89 ---------------------------------------- 15.26/5.89 15.26/5.89 (27) 15.26/5.89 Obligation: 15.26/5.89 Q DP problem: 15.26/5.89 The TRS P consists of the following rules: 15.26/5.89 15.26/5.89 new_primEqNat(Succ(xy3000), Succ(xy40000)) -> new_primEqNat(xy3000, xy40000) 15.26/5.89 15.26/5.89 R is empty. 15.26/5.89 Q is empty. 15.26/5.89 We have to consider all minimal (P,Q,R)-chains. 15.26/5.89 ---------------------------------------- 15.26/5.89 15.26/5.89 (28) QDPSizeChangeProof (EQUIVALENT) 15.26/5.89 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.26/5.89 15.26/5.89 From the DPs we obtained the following set of size-change graphs: 15.26/5.89 *new_primEqNat(Succ(xy3000), Succ(xy40000)) -> new_primEqNat(xy3000, xy40000) 15.26/5.89 The graph contains the following edges 1 > 1, 2 > 2 15.26/5.89 15.26/5.89 15.26/5.89 ---------------------------------------- 15.26/5.89 15.26/5.89 (29) 15.26/5.89 YES 15.53/9.10 EOF