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