/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 6 ms] (6) HASKELL (7) COR [EQUIVALENT, 0 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 49 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) DependencyGraphProof [EQUIVALENT, 0 ms] (26) AND (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES (33) QDP (34) QDPSizeChangeProof [EQUIVALENT, 0 ms] (35) YES (36) QDP (37) QDPSizeChangeProof [EQUIVALENT, 0 ms] (38) YES (39) QDP (40) QDPSizeChangeProof [EQUIVALENT, 0 ms] (41) YES ---------------------------------------- (0) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = case cmp x y of { GT-> y : insertBy cmp x ys'; _-> x : ys; } ; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case cmp x y of { GT -> y : insertBy cmp x ys'; _ -> x : ys} " is transformed to "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; " ---------------------------------------- (2) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. Binding Reductions: The bind variable of the following binding Pattern "ys@(vuu : vuv)" is replaced by the following term "vuu : vuv" ---------------------------------------- (6) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; " "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vvw vvx = gcd3 vvw vvx; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; ; gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; } ; " "gcd1 True vvw vvx = error []; gcd1 vvy vvz vwu = gcd0 vvz vwu; " "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; gcd2 vwv vww vwx = gcd0 vww vwx; " "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; gcd3 vwy vwz = gcd0 vwy vwz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; ; gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x vuw = x; gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; " "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vxu vxv x y True = error []; reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; " "reduce2D vxu vxv = gcd vxu vxv; " "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); " ---------------------------------------- (10) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];1831[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 1831[label="",style="solid", color="burlywood", weight=9]; 1831 -> 6[label="",style="solid", color="burlywood", weight=3]; 1832[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 1832[label="",style="solid", color="burlywood", weight=9]; 1832 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare vxw3 vxw40)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="vxw3 : []",fontsize=16,color="green",shape="box"];10[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare3 vxw3 vxw40)",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 11[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare2 vxw3 vxw40 (vxw3 == vxw40))",fontsize=16,color="burlywood",shape="box"];1833[label="vxw3/Left vxw30",fontsize=10,color="white",style="solid",shape="box"];11 -> 1833[label="",style="solid", color="burlywood", weight=9]; 1833 -> 12[label="",style="solid", color="burlywood", weight=3]; 1834[label="vxw3/Right vxw30",fontsize=10,color="white",style="solid",shape="box"];11 -> 1834[label="",style="solid", color="burlywood", weight=9]; 1834 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="List.insertBy0 vxw40 compare (Left vxw30) vxw41 (vxw40 : vxw41) (compare2 (Left vxw30) vxw40 (Left vxw30 == vxw40))",fontsize=16,color="burlywood",shape="box"];1835[label="vxw40/Left vxw400",fontsize=10,color="white",style="solid",shape="box"];12 -> 1835[label="",style="solid", color="burlywood", weight=9]; 1835 -> 14[label="",style="solid", color="burlywood", weight=3]; 1836[label="vxw40/Right vxw400",fontsize=10,color="white",style="solid",shape="box"];12 -> 1836[label="",style="solid", color="burlywood", weight=9]; 1836 -> 15[label="",style="solid", color="burlywood", weight=3]; 13[label="List.insertBy0 vxw40 compare (Right vxw30) vxw41 (vxw40 : vxw41) (compare2 (Right vxw30) vxw40 (Right vxw30 == vxw40))",fontsize=16,color="burlywood",shape="box"];1837[label="vxw40/Left vxw400",fontsize=10,color="white",style="solid",shape="box"];13 -> 1837[label="",style="solid", color="burlywood", weight=9]; 1837 -> 16[label="",style="solid", color="burlywood", weight=3]; 1838[label="vxw40/Right vxw400",fontsize=10,color="white",style="solid",shape="box"];13 -> 1838[label="",style="solid", color="burlywood", weight=9]; 1838 -> 17[label="",style="solid", color="burlywood", weight=3]; 14[label="List.insertBy0 (Left vxw400) compare (Left vxw30) vxw41 (Left vxw400 : vxw41) (compare2 (Left vxw30) (Left vxw400) (Left vxw30 == Left vxw400))",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 15[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) (compare2 (Left vxw30) (Right vxw400) (Left vxw30 == Right vxw400))",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 16[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare2 (Right vxw30) (Left vxw400) (Right vxw30 == Left vxw400))",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 17[label="List.insertBy0 (Right vxw400) compare (Right vxw30) vxw41 (Right vxw400 : vxw41) (compare2 (Right vxw30) (Right vxw400) (Right vxw30 == Right vxw400))",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 18 -> 22[label="",style="dashed", color="red", weight=0]; 18[label="List.insertBy0 (Left vxw400) compare (Left vxw30) vxw41 (Left vxw400 : vxw41) (compare2 (Left vxw30) (Left vxw400) (vxw30 == vxw400))",fontsize=16,color="magenta"];18 -> 23[label="",style="dashed", color="magenta", weight=3]; 18 -> 24[label="",style="dashed", color="magenta", weight=3]; 18 -> 25[label="",style="dashed", color="magenta", weight=3]; 18 -> 26[label="",style="dashed", color="magenta", weight=3]; 19[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) (compare2 (Left vxw30) (Right vxw400) False)",fontsize=16,color="black",shape="box"];19 -> 27[label="",style="solid", color="black", weight=3]; 20[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare2 (Right vxw30) (Left vxw400) False)",fontsize=16,color="black",shape="box"];20 -> 28[label="",style="solid", color="black", weight=3]; 21 -> 29[label="",style="dashed", color="red", weight=0]; 21[label="List.insertBy0 (Right vxw400) compare (Right vxw30) vxw41 (Right vxw400 : vxw41) (compare2 (Right vxw30) (Right vxw400) (vxw30 == vxw400))",fontsize=16,color="magenta"];21 -> 30[label="",style="dashed", color="magenta", weight=3]; 21 -> 31[label="",style="dashed", color="magenta", weight=3]; 21 -> 32[label="",style="dashed", color="magenta", weight=3]; 21 -> 33[label="",style="dashed", color="magenta", weight=3]; 23[label="vxw41",fontsize=16,color="green",shape="box"];24[label="vxw400",fontsize=16,color="green",shape="box"];25[label="vxw30",fontsize=16,color="green",shape="box"];26[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];1839[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1839[label="",style="solid", color="blue", weight=9]; 1839 -> 34[label="",style="solid", color="blue", weight=3]; 1840[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1840[label="",style="solid", color="blue", weight=9]; 1840 -> 35[label="",style="solid", color="blue", weight=3]; 1841[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1841[label="",style="solid", color="blue", weight=9]; 1841 -> 36[label="",style="solid", color="blue", weight=3]; 1842[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1842[label="",style="solid", color="blue", weight=9]; 1842 -> 37[label="",style="solid", color="blue", weight=3]; 1843[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1843[label="",style="solid", color="blue", weight=9]; 1843 -> 38[label="",style="solid", color="blue", weight=3]; 1844[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1844[label="",style="solid", color="blue", weight=9]; 1844 -> 39[label="",style="solid", color="blue", weight=3]; 1845[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1845[label="",style="solid", color="blue", weight=9]; 1845 -> 40[label="",style="solid", color="blue", weight=3]; 1846[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1846[label="",style="solid", color="blue", weight=9]; 1846 -> 41[label="",style="solid", color="blue", weight=3]; 1847[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1847[label="",style="solid", color="blue", weight=9]; 1847 -> 42[label="",style="solid", color="blue", weight=3]; 1848[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1848[label="",style="solid", color="blue", weight=9]; 1848 -> 43[label="",style="solid", color="blue", weight=3]; 1849[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1849[label="",style="solid", color="blue", weight=9]; 1849 -> 44[label="",style="solid", color="blue", weight=3]; 1850[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1850[label="",style="solid", color="blue", weight=9]; 1850 -> 45[label="",style="solid", color="blue", weight=3]; 1851[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1851[label="",style="solid", color="blue", weight=9]; 1851 -> 46[label="",style="solid", color="blue", weight=3]; 1852[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1852[label="",style="solid", color="blue", weight=9]; 1852 -> 47[label="",style="solid", color="blue", weight=3]; 22[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) (compare2 (Left vxw11) (Left vxw10) vxw13)",fontsize=16,color="burlywood",shape="triangle"];1853[label="vxw13/False",fontsize=10,color="white",style="solid",shape="box"];22 -> 1853[label="",style="solid", color="burlywood", weight=9]; 1853 -> 48[label="",style="solid", color="burlywood", weight=3]; 1854[label="vxw13/True",fontsize=10,color="white",style="solid",shape="box"];22 -> 1854[label="",style="solid", color="burlywood", weight=9]; 1854 -> 49[label="",style="solid", color="burlywood", weight=3]; 27[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) (compare1 (Left vxw30) (Right vxw400) (Left vxw30 <= Right vxw400))",fontsize=16,color="black",shape="box"];27 -> 50[label="",style="solid", color="black", weight=3]; 28[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare1 (Right vxw30) (Left vxw400) (Right vxw30 <= Left vxw400))",fontsize=16,color="black",shape="box"];28 -> 51[label="",style="solid", color="black", weight=3]; 30[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];1855[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1855[label="",style="solid", color="blue", weight=9]; 1855 -> 52[label="",style="solid", color="blue", weight=3]; 1856[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1856[label="",style="solid", color="blue", weight=9]; 1856 -> 53[label="",style="solid", color="blue", weight=3]; 1857[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1857[label="",style="solid", color="blue", weight=9]; 1857 -> 54[label="",style="solid", color="blue", weight=3]; 1858[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1858[label="",style="solid", color="blue", weight=9]; 1858 -> 55[label="",style="solid", color="blue", weight=3]; 1859[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1859[label="",style="solid", color="blue", weight=9]; 1859 -> 56[label="",style="solid", color="blue", weight=3]; 1860[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1860[label="",style="solid", color="blue", weight=9]; 1860 -> 57[label="",style="solid", color="blue", weight=3]; 1861[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1861[label="",style="solid", color="blue", weight=9]; 1861 -> 58[label="",style="solid", color="blue", weight=3]; 1862[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1862[label="",style="solid", color="blue", weight=9]; 1862 -> 59[label="",style="solid", color="blue", weight=3]; 1863[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1863[label="",style="solid", color="blue", weight=9]; 1863 -> 60[label="",style="solid", color="blue", weight=3]; 1864[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1864[label="",style="solid", color="blue", weight=9]; 1864 -> 61[label="",style="solid", color="blue", weight=3]; 1865[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1865[label="",style="solid", color="blue", weight=9]; 1865 -> 62[label="",style="solid", color="blue", weight=3]; 1866[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1866[label="",style="solid", color="blue", weight=9]; 1866 -> 63[label="",style="solid", color="blue", weight=3]; 1867[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1867[label="",style="solid", color="blue", weight=9]; 1867 -> 64[label="",style="solid", color="blue", weight=3]; 1868[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1868[label="",style="solid", color="blue", weight=9]; 1868 -> 65[label="",style="solid", color="blue", weight=3]; 31[label="vxw41",fontsize=16,color="green",shape="box"];32[label="vxw30",fontsize=16,color="green",shape="box"];33[label="vxw400",fontsize=16,color="green",shape="box"];29[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) (compare2 (Right vxw20) (Right vxw19) vxw22)",fontsize=16,color="burlywood",shape="triangle"];1869[label="vxw22/False",fontsize=10,color="white",style="solid",shape="box"];29 -> 1869[label="",style="solid", color="burlywood", weight=9]; 1869 -> 66[label="",style="solid", color="burlywood", weight=3]; 1870[label="vxw22/True",fontsize=10,color="white",style="solid",shape="box"];29 -> 1870[label="",style="solid", color="burlywood", weight=9]; 1870 -> 67[label="",style="solid", color="burlywood", weight=3]; 34[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];34 -> 68[label="",style="solid", color="black", weight=3]; 35[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1871[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];35 -> 1871[label="",style="solid", color="burlywood", weight=9]; 1871 -> 69[label="",style="solid", color="burlywood", weight=3]; 36[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1872[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];36 -> 1872[label="",style="solid", color="burlywood", weight=9]; 1872 -> 70[label="",style="solid", color="burlywood", weight=3]; 37[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1873[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];37 -> 1873[label="",style="solid", color="burlywood", weight=9]; 1873 -> 71[label="",style="solid", color="burlywood", weight=3]; 38[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];38 -> 72[label="",style="solid", color="black", weight=3]; 39[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1874[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];39 -> 1874[label="",style="solid", color="burlywood", weight=9]; 1874 -> 73[label="",style="solid", color="burlywood", weight=3]; 1875[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];39 -> 1875[label="",style="solid", color="burlywood", weight=9]; 1875 -> 74[label="",style="solid", color="burlywood", weight=3]; 40[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1876[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];40 -> 1876[label="",style="solid", color="burlywood", weight=9]; 1876 -> 75[label="",style="solid", color="burlywood", weight=3]; 1877[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];40 -> 1877[label="",style="solid", color="burlywood", weight=9]; 1877 -> 76[label="",style="solid", color="burlywood", weight=3]; 41[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1878[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];41 -> 1878[label="",style="solid", color="burlywood", weight=9]; 1878 -> 77[label="",style="solid", color="burlywood", weight=3]; 42[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1879[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];42 -> 1879[label="",style="solid", color="burlywood", weight=9]; 1879 -> 78[label="",style="solid", color="burlywood", weight=3]; 1880[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];42 -> 1880[label="",style="solid", color="burlywood", weight=9]; 1880 -> 79[label="",style="solid", color="burlywood", weight=3]; 43[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];43 -> 80[label="",style="solid", color="black", weight=3]; 44[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1881[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];44 -> 1881[label="",style="solid", color="burlywood", weight=9]; 1881 -> 81[label="",style="solid", color="burlywood", weight=3]; 45[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1882[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];45 -> 1882[label="",style="solid", color="burlywood", weight=9]; 1882 -> 82[label="",style="solid", color="burlywood", weight=3]; 1883[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];45 -> 1883[label="",style="solid", color="burlywood", weight=9]; 1883 -> 83[label="",style="solid", color="burlywood", weight=3]; 1884[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];45 -> 1884[label="",style="solid", color="burlywood", weight=9]; 1884 -> 84[label="",style="solid", color="burlywood", weight=3]; 46[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1885[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];46 -> 1885[label="",style="solid", color="burlywood", weight=9]; 1885 -> 85[label="",style="solid", color="burlywood", weight=3]; 1886[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];46 -> 1886[label="",style="solid", color="burlywood", weight=9]; 1886 -> 86[label="",style="solid", color="burlywood", weight=3]; 47[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];47 -> 87[label="",style="solid", color="black", weight=3]; 48[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) (compare2 (Left vxw11) (Left vxw10) False)",fontsize=16,color="black",shape="box"];48 -> 88[label="",style="solid", color="black", weight=3]; 49[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) (compare2 (Left vxw11) (Left vxw10) True)",fontsize=16,color="black",shape="box"];49 -> 89[label="",style="solid", color="black", weight=3]; 50[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) (compare1 (Left vxw30) (Right vxw400) True)",fontsize=16,color="black",shape="box"];50 -> 90[label="",style="solid", color="black", weight=3]; 51[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare1 (Right vxw30) (Left vxw400) False)",fontsize=16,color="black",shape="box"];51 -> 91[label="",style="solid", color="black", weight=3]; 52 -> 34[label="",style="dashed", color="red", weight=0]; 52[label="vxw30 == vxw400",fontsize=16,color="magenta"];52 -> 92[label="",style="dashed", color="magenta", weight=3]; 52 -> 93[label="",style="dashed", color="magenta", weight=3]; 53 -> 35[label="",style="dashed", color="red", weight=0]; 53[label="vxw30 == vxw400",fontsize=16,color="magenta"];53 -> 94[label="",style="dashed", color="magenta", weight=3]; 53 -> 95[label="",style="dashed", color="magenta", weight=3]; 54 -> 36[label="",style="dashed", color="red", weight=0]; 54[label="vxw30 == vxw400",fontsize=16,color="magenta"];54 -> 96[label="",style="dashed", color="magenta", weight=3]; 54 -> 97[label="",style="dashed", color="magenta", weight=3]; 55 -> 37[label="",style="dashed", color="red", weight=0]; 55[label="vxw30 == vxw400",fontsize=16,color="magenta"];55 -> 98[label="",style="dashed", color="magenta", weight=3]; 55 -> 99[label="",style="dashed", color="magenta", weight=3]; 56 -> 38[label="",style="dashed", color="red", weight=0]; 56[label="vxw30 == vxw400",fontsize=16,color="magenta"];56 -> 100[label="",style="dashed", color="magenta", weight=3]; 56 -> 101[label="",style="dashed", color="magenta", weight=3]; 57 -> 39[label="",style="dashed", color="red", weight=0]; 57[label="vxw30 == vxw400",fontsize=16,color="magenta"];57 -> 102[label="",style="dashed", color="magenta", weight=3]; 57 -> 103[label="",style="dashed", color="magenta", weight=3]; 58 -> 40[label="",style="dashed", color="red", weight=0]; 58[label="vxw30 == vxw400",fontsize=16,color="magenta"];58 -> 104[label="",style="dashed", color="magenta", weight=3]; 58 -> 105[label="",style="dashed", color="magenta", weight=3]; 59 -> 41[label="",style="dashed", color="red", weight=0]; 59[label="vxw30 == vxw400",fontsize=16,color="magenta"];59 -> 106[label="",style="dashed", color="magenta", weight=3]; 59 -> 107[label="",style="dashed", color="magenta", weight=3]; 60 -> 42[label="",style="dashed", color="red", weight=0]; 60[label="vxw30 == vxw400",fontsize=16,color="magenta"];60 -> 108[label="",style="dashed", color="magenta", weight=3]; 60 -> 109[label="",style="dashed", color="magenta", weight=3]; 61 -> 43[label="",style="dashed", color="red", weight=0]; 61[label="vxw30 == vxw400",fontsize=16,color="magenta"];61 -> 110[label="",style="dashed", color="magenta", weight=3]; 61 -> 111[label="",style="dashed", color="magenta", weight=3]; 62 -> 44[label="",style="dashed", color="red", weight=0]; 62[label="vxw30 == vxw400",fontsize=16,color="magenta"];62 -> 112[label="",style="dashed", color="magenta", weight=3]; 62 -> 113[label="",style="dashed", color="magenta", weight=3]; 63 -> 45[label="",style="dashed", color="red", weight=0]; 63[label="vxw30 == vxw400",fontsize=16,color="magenta"];63 -> 114[label="",style="dashed", color="magenta", weight=3]; 63 -> 115[label="",style="dashed", color="magenta", weight=3]; 64 -> 46[label="",style="dashed", color="red", weight=0]; 64[label="vxw30 == vxw400",fontsize=16,color="magenta"];64 -> 116[label="",style="dashed", color="magenta", weight=3]; 64 -> 117[label="",style="dashed", color="magenta", weight=3]; 65 -> 47[label="",style="dashed", color="red", weight=0]; 65[label="vxw30 == vxw400",fontsize=16,color="magenta"];65 -> 118[label="",style="dashed", color="magenta", weight=3]; 65 -> 119[label="",style="dashed", color="magenta", weight=3]; 66[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) (compare2 (Right vxw20) (Right vxw19) False)",fontsize=16,color="black",shape="box"];66 -> 120[label="",style="solid", color="black", weight=3]; 67[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) (compare2 (Right vxw20) (Right vxw19) True)",fontsize=16,color="black",shape="box"];67 -> 121[label="",style="solid", color="black", weight=3]; 68[label="primEqInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];1887[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];68 -> 1887[label="",style="solid", color="burlywood", weight=9]; 1887 -> 122[label="",style="solid", color="burlywood", weight=3]; 1888[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];68 -> 1888[label="",style="solid", color="burlywood", weight=9]; 1888 -> 123[label="",style="solid", color="burlywood", weight=3]; 69[label="(vxw300,vxw301,vxw302) == vxw400",fontsize=16,color="burlywood",shape="box"];1889[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];69 -> 1889[label="",style="solid", color="burlywood", weight=9]; 1889 -> 124[label="",style="solid", color="burlywood", weight=3]; 70[label="() == vxw400",fontsize=16,color="burlywood",shape="box"];1890[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];70 -> 1890[label="",style="solid", color="burlywood", weight=9]; 1890 -> 125[label="",style="solid", color="burlywood", weight=3]; 71[label="(vxw300,vxw301) == vxw400",fontsize=16,color="burlywood",shape="box"];1891[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];71 -> 1891[label="",style="solid", color="burlywood", weight=9]; 1891 -> 126[label="",style="solid", color="burlywood", weight=3]; 72[label="primEqFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1892[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];72 -> 1892[label="",style="solid", color="burlywood", weight=9]; 1892 -> 127[label="",style="solid", color="burlywood", weight=3]; 73[label="vxw300 : vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];1893[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];73 -> 1893[label="",style="solid", color="burlywood", weight=9]; 1893 -> 128[label="",style="solid", color="burlywood", weight=3]; 1894[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];73 -> 1894[label="",style="solid", color="burlywood", weight=9]; 1894 -> 129[label="",style="solid", color="burlywood", weight=3]; 74[label="[] == vxw400",fontsize=16,color="burlywood",shape="box"];1895[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];74 -> 1895[label="",style="solid", color="burlywood", weight=9]; 1895 -> 130[label="",style="solid", color="burlywood", weight=3]; 1896[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];74 -> 1896[label="",style="solid", color="burlywood", weight=9]; 1896 -> 131[label="",style="solid", color="burlywood", weight=3]; 75[label="False == vxw400",fontsize=16,color="burlywood",shape="box"];1897[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];75 -> 1897[label="",style="solid", color="burlywood", weight=9]; 1897 -> 132[label="",style="solid", color="burlywood", weight=3]; 1898[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];75 -> 1898[label="",style="solid", color="burlywood", weight=9]; 1898 -> 133[label="",style="solid", color="burlywood", weight=3]; 76[label="True == vxw400",fontsize=16,color="burlywood",shape="box"];1899[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];76 -> 1899[label="",style="solid", color="burlywood", weight=9]; 1899 -> 134[label="",style="solid", color="burlywood", weight=3]; 1900[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];76 -> 1900[label="",style="solid", color="burlywood", weight=9]; 1900 -> 135[label="",style="solid", color="burlywood", weight=3]; 77[label="Integer vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1901[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];77 -> 1901[label="",style="solid", color="burlywood", weight=9]; 1901 -> 136[label="",style="solid", color="burlywood", weight=3]; 78[label="Left vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1902[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];78 -> 1902[label="",style="solid", color="burlywood", weight=9]; 1902 -> 137[label="",style="solid", color="burlywood", weight=3]; 1903[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];78 -> 1903[label="",style="solid", color="burlywood", weight=9]; 1903 -> 138[label="",style="solid", color="burlywood", weight=3]; 79[label="Right vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1904[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];79 -> 1904[label="",style="solid", color="burlywood", weight=9]; 1904 -> 139[label="",style="solid", color="burlywood", weight=3]; 1905[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];79 -> 1905[label="",style="solid", color="burlywood", weight=9]; 1905 -> 140[label="",style="solid", color="burlywood", weight=3]; 80[label="primEqChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1906[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];80 -> 1906[label="",style="solid", color="burlywood", weight=9]; 1906 -> 141[label="",style="solid", color="burlywood", weight=3]; 81[label="vxw300 :% vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];1907[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];81 -> 1907[label="",style="solid", color="burlywood", weight=9]; 1907 -> 142[label="",style="solid", color="burlywood", weight=3]; 82[label="LT == vxw400",fontsize=16,color="burlywood",shape="box"];1908[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];82 -> 1908[label="",style="solid", color="burlywood", weight=9]; 1908 -> 143[label="",style="solid", color="burlywood", weight=3]; 1909[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];82 -> 1909[label="",style="solid", color="burlywood", weight=9]; 1909 -> 144[label="",style="solid", color="burlywood", weight=3]; 1910[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];82 -> 1910[label="",style="solid", color="burlywood", weight=9]; 1910 -> 145[label="",style="solid", color="burlywood", weight=3]; 83[label="EQ == vxw400",fontsize=16,color="burlywood",shape="box"];1911[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];83 -> 1911[label="",style="solid", color="burlywood", weight=9]; 1911 -> 146[label="",style="solid", color="burlywood", weight=3]; 1912[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];83 -> 1912[label="",style="solid", color="burlywood", weight=9]; 1912 -> 147[label="",style="solid", color="burlywood", weight=3]; 1913[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];83 -> 1913[label="",style="solid", color="burlywood", weight=9]; 1913 -> 148[label="",style="solid", color="burlywood", weight=3]; 84[label="GT == vxw400",fontsize=16,color="burlywood",shape="box"];1914[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];84 -> 1914[label="",style="solid", color="burlywood", weight=9]; 1914 -> 149[label="",style="solid", color="burlywood", weight=3]; 1915[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];84 -> 1915[label="",style="solid", color="burlywood", weight=9]; 1915 -> 150[label="",style="solid", color="burlywood", weight=3]; 1916[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];84 -> 1916[label="",style="solid", color="burlywood", weight=9]; 1916 -> 151[label="",style="solid", color="burlywood", weight=3]; 85[label="Nothing == vxw400",fontsize=16,color="burlywood",shape="box"];1917[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];85 -> 1917[label="",style="solid", color="burlywood", weight=9]; 1917 -> 152[label="",style="solid", color="burlywood", weight=3]; 1918[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];85 -> 1918[label="",style="solid", color="burlywood", weight=9]; 1918 -> 153[label="",style="solid", color="burlywood", weight=3]; 86[label="Just vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1919[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];86 -> 1919[label="",style="solid", color="burlywood", weight=9]; 1919 -> 154[label="",style="solid", color="burlywood", weight=3]; 1920[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];86 -> 1920[label="",style="solid", color="burlywood", weight=9]; 1920 -> 155[label="",style="solid", color="burlywood", weight=3]; 87[label="primEqDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1921[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];87 -> 1921[label="",style="solid", color="burlywood", weight=9]; 1921 -> 156[label="",style="solid", color="burlywood", weight=3]; 88 -> 200[label="",style="dashed", color="red", weight=0]; 88[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) (compare1 (Left vxw11) (Left vxw10) (Left vxw11 <= Left vxw10))",fontsize=16,color="magenta"];88 -> 201[label="",style="dashed", color="magenta", weight=3]; 88 -> 202[label="",style="dashed", color="magenta", weight=3]; 88 -> 203[label="",style="dashed", color="magenta", weight=3]; 88 -> 204[label="",style="dashed", color="magenta", weight=3]; 89[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) EQ",fontsize=16,color="black",shape="box"];89 -> 158[label="",style="solid", color="black", weight=3]; 90[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) LT",fontsize=16,color="black",shape="box"];90 -> 159[label="",style="solid", color="black", weight=3]; 91[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare0 (Right vxw30) (Left vxw400) otherwise)",fontsize=16,color="black",shape="box"];91 -> 160[label="",style="solid", color="black", weight=3]; 92[label="vxw400",fontsize=16,color="green",shape="box"];93[label="vxw30",fontsize=16,color="green",shape="box"];94[label="vxw400",fontsize=16,color="green",shape="box"];95[label="vxw30",fontsize=16,color="green",shape="box"];96[label="vxw400",fontsize=16,color="green",shape="box"];97[label="vxw30",fontsize=16,color="green",shape="box"];98[label="vxw400",fontsize=16,color="green",shape="box"];99[label="vxw30",fontsize=16,color="green",shape="box"];100[label="vxw400",fontsize=16,color="green",shape="box"];101[label="vxw30",fontsize=16,color="green",shape="box"];102[label="vxw400",fontsize=16,color="green",shape="box"];103[label="vxw30",fontsize=16,color="green",shape="box"];104[label="vxw400",fontsize=16,color="green",shape="box"];105[label="vxw30",fontsize=16,color="green",shape="box"];106[label="vxw400",fontsize=16,color="green",shape="box"];107[label="vxw30",fontsize=16,color="green",shape="box"];108[label="vxw400",fontsize=16,color="green",shape="box"];109[label="vxw30",fontsize=16,color="green",shape="box"];110[label="vxw400",fontsize=16,color="green",shape="box"];111[label="vxw30",fontsize=16,color="green",shape="box"];112[label="vxw400",fontsize=16,color="green",shape="box"];113[label="vxw30",fontsize=16,color="green",shape="box"];114[label="vxw400",fontsize=16,color="green",shape="box"];115[label="vxw30",fontsize=16,color="green",shape="box"];116[label="vxw400",fontsize=16,color="green",shape="box"];117[label="vxw30",fontsize=16,color="green",shape="box"];118[label="vxw400",fontsize=16,color="green",shape="box"];119[label="vxw30",fontsize=16,color="green",shape="box"];120 -> 213[label="",style="dashed", color="red", weight=0]; 120[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) (compare1 (Right vxw20) (Right vxw19) (Right vxw20 <= Right vxw19))",fontsize=16,color="magenta"];120 -> 214[label="",style="dashed", color="magenta", weight=3]; 120 -> 215[label="",style="dashed", color="magenta", weight=3]; 120 -> 216[label="",style="dashed", color="magenta", weight=3]; 120 -> 217[label="",style="dashed", color="magenta", weight=3]; 121[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) EQ",fontsize=16,color="black",shape="box"];121 -> 162[label="",style="solid", color="black", weight=3]; 122[label="primEqInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1922[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];122 -> 1922[label="",style="solid", color="burlywood", weight=9]; 1922 -> 163[label="",style="solid", color="burlywood", weight=3]; 1923[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];122 -> 1923[label="",style="solid", color="burlywood", weight=9]; 1923 -> 164[label="",style="solid", color="burlywood", weight=3]; 123[label="primEqInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1924[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];123 -> 1924[label="",style="solid", color="burlywood", weight=9]; 1924 -> 165[label="",style="solid", color="burlywood", weight=3]; 1925[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];123 -> 1925[label="",style="solid", color="burlywood", weight=9]; 1925 -> 166[label="",style="solid", color="burlywood", weight=3]; 124[label="(vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002)",fontsize=16,color="black",shape="box"];124 -> 167[label="",style="solid", color="black", weight=3]; 125[label="() == ()",fontsize=16,color="black",shape="box"];125 -> 168[label="",style="solid", color="black", weight=3]; 126[label="(vxw300,vxw301) == (vxw4000,vxw4001)",fontsize=16,color="black",shape="box"];126 -> 169[label="",style="solid", color="black", weight=3]; 127[label="primEqFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];1926[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];127 -> 1926[label="",style="solid", color="burlywood", weight=9]; 1926 -> 170[label="",style="solid", color="burlywood", weight=3]; 128[label="vxw300 : vxw301 == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];128 -> 171[label="",style="solid", color="black", weight=3]; 129[label="vxw300 : vxw301 == []",fontsize=16,color="black",shape="box"];129 -> 172[label="",style="solid", color="black", weight=3]; 130[label="[] == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];130 -> 173[label="",style="solid", color="black", weight=3]; 131[label="[] == []",fontsize=16,color="black",shape="box"];131 -> 174[label="",style="solid", color="black", weight=3]; 132[label="False == False",fontsize=16,color="black",shape="box"];132 -> 175[label="",style="solid", color="black", weight=3]; 133[label="False == True",fontsize=16,color="black",shape="box"];133 -> 176[label="",style="solid", color="black", weight=3]; 134[label="True == False",fontsize=16,color="black",shape="box"];134 -> 177[label="",style="solid", color="black", weight=3]; 135[label="True == True",fontsize=16,color="black",shape="box"];135 -> 178[label="",style="solid", color="black", weight=3]; 136[label="Integer vxw300 == Integer vxw4000",fontsize=16,color="black",shape="box"];136 -> 179[label="",style="solid", color="black", weight=3]; 137[label="Left vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];137 -> 180[label="",style="solid", color="black", weight=3]; 138[label="Left vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];138 -> 181[label="",style="solid", color="black", weight=3]; 139[label="Right vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];139 -> 182[label="",style="solid", color="black", weight=3]; 140[label="Right vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];140 -> 183[label="",style="solid", color="black", weight=3]; 141[label="primEqChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1927[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];141 -> 1927[label="",style="solid", color="burlywood", weight=9]; 1927 -> 184[label="",style="solid", color="burlywood", weight=3]; 142[label="vxw300 :% vxw301 == vxw4000 :% vxw4001",fontsize=16,color="black",shape="box"];142 -> 185[label="",style="solid", color="black", weight=3]; 143[label="LT == LT",fontsize=16,color="black",shape="box"];143 -> 186[label="",style="solid", color="black", weight=3]; 144[label="LT == EQ",fontsize=16,color="black",shape="box"];144 -> 187[label="",style="solid", color="black", weight=3]; 145[label="LT == GT",fontsize=16,color="black",shape="box"];145 -> 188[label="",style="solid", color="black", weight=3]; 146[label="EQ == LT",fontsize=16,color="black",shape="box"];146 -> 189[label="",style="solid", color="black", weight=3]; 147[label="EQ == EQ",fontsize=16,color="black",shape="box"];147 -> 190[label="",style="solid", color="black", weight=3]; 148[label="EQ == GT",fontsize=16,color="black",shape="box"];148 -> 191[label="",style="solid", color="black", weight=3]; 149[label="GT == LT",fontsize=16,color="black",shape="box"];149 -> 192[label="",style="solid", color="black", weight=3]; 150[label="GT == EQ",fontsize=16,color="black",shape="box"];150 -> 193[label="",style="solid", color="black", weight=3]; 151[label="GT == GT",fontsize=16,color="black",shape="box"];151 -> 194[label="",style="solid", color="black", weight=3]; 152[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];152 -> 195[label="",style="solid", color="black", weight=3]; 153[label="Nothing == Just vxw4000",fontsize=16,color="black",shape="box"];153 -> 196[label="",style="solid", color="black", weight=3]; 154[label="Just vxw300 == Nothing",fontsize=16,color="black",shape="box"];154 -> 197[label="",style="solid", color="black", weight=3]; 155[label="Just vxw300 == Just vxw4000",fontsize=16,color="black",shape="box"];155 -> 198[label="",style="solid", color="black", weight=3]; 156[label="primEqDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];1928[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];156 -> 1928[label="",style="solid", color="burlywood", weight=9]; 1928 -> 199[label="",style="solid", color="burlywood", weight=3]; 201[label="Left vxw11 <= Left vxw10",fontsize=16,color="black",shape="box"];201 -> 209[label="",style="solid", color="black", weight=3]; 202[label="vxw12",fontsize=16,color="green",shape="box"];203[label="vxw11",fontsize=16,color="green",shape="box"];204[label="vxw10",fontsize=16,color="green",shape="box"];200[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare1 (Left vxw29) (Left vxw28) vxw31)",fontsize=16,color="burlywood",shape="triangle"];1929[label="vxw31/False",fontsize=10,color="white",style="solid",shape="box"];200 -> 1929[label="",style="solid", color="burlywood", weight=9]; 1929 -> 210[label="",style="solid", color="burlywood", weight=3]; 1930[label="vxw31/True",fontsize=10,color="white",style="solid",shape="box"];200 -> 1930[label="",style="solid", color="burlywood", weight=9]; 1930 -> 211[label="",style="solid", color="burlywood", weight=3]; 158[label="Left vxw11 : Left vxw10 : vxw12",fontsize=16,color="green",shape="box"];159[label="Left vxw30 : Right vxw400 : vxw41",fontsize=16,color="green",shape="box"];160[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare0 (Right vxw30) (Left vxw400) True)",fontsize=16,color="black",shape="box"];160 -> 212[label="",style="solid", color="black", weight=3]; 214[label="vxw20",fontsize=16,color="green",shape="box"];215[label="vxw19",fontsize=16,color="green",shape="box"];216[label="Right vxw20 <= Right vxw19",fontsize=16,color="black",shape="box"];216 -> 222[label="",style="solid", color="black", weight=3]; 217[label="vxw21",fontsize=16,color="green",shape="box"];213[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare1 (Right vxw38) (Right vxw37) vxw40)",fontsize=16,color="burlywood",shape="triangle"];1931[label="vxw40/False",fontsize=10,color="white",style="solid",shape="box"];213 -> 1931[label="",style="solid", color="burlywood", weight=9]; 1931 -> 223[label="",style="solid", color="burlywood", weight=3]; 1932[label="vxw40/True",fontsize=10,color="white",style="solid",shape="box"];213 -> 1932[label="",style="solid", color="burlywood", weight=9]; 1932 -> 224[label="",style="solid", color="burlywood", weight=3]; 162[label="Right vxw20 : Right vxw19 : vxw21",fontsize=16,color="green",shape="box"];163[label="primEqInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];1933[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];163 -> 1933[label="",style="solid", color="burlywood", weight=9]; 1933 -> 225[label="",style="solid", color="burlywood", weight=3]; 1934[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];163 -> 1934[label="",style="solid", color="burlywood", weight=9]; 1934 -> 226[label="",style="solid", color="burlywood", weight=3]; 164[label="primEqInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];1935[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];164 -> 1935[label="",style="solid", color="burlywood", weight=9]; 1935 -> 227[label="",style="solid", color="burlywood", weight=3]; 1936[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];164 -> 1936[label="",style="solid", color="burlywood", weight=9]; 1936 -> 228[label="",style="solid", color="burlywood", weight=3]; 165[label="primEqInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];1937[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];165 -> 1937[label="",style="solid", color="burlywood", weight=9]; 1937 -> 229[label="",style="solid", color="burlywood", weight=3]; 1938[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];165 -> 1938[label="",style="solid", color="burlywood", weight=9]; 1938 -> 230[label="",style="solid", color="burlywood", weight=3]; 166[label="primEqInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];1939[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];166 -> 1939[label="",style="solid", color="burlywood", weight=9]; 1939 -> 231[label="",style="solid", color="burlywood", weight=3]; 1940[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];166 -> 1940[label="",style="solid", color="burlywood", weight=9]; 1940 -> 232[label="",style="solid", color="burlywood", weight=3]; 167 -> 357[label="",style="dashed", color="red", weight=0]; 167[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];167 -> 358[label="",style="dashed", color="magenta", weight=3]; 167 -> 359[label="",style="dashed", color="magenta", weight=3]; 168[label="True",fontsize=16,color="green",shape="box"];169 -> 357[label="",style="dashed", color="red", weight=0]; 169[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];169 -> 360[label="",style="dashed", color="magenta", weight=3]; 169 -> 361[label="",style="dashed", color="magenta", weight=3]; 170[label="primEqFloat (Float vxw300 vxw301) (Float vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];170 -> 249[label="",style="solid", color="black", weight=3]; 171 -> 357[label="",style="dashed", color="red", weight=0]; 171[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];171 -> 362[label="",style="dashed", color="magenta", weight=3]; 171 -> 363[label="",style="dashed", color="magenta", weight=3]; 172[label="False",fontsize=16,color="green",shape="box"];173[label="False",fontsize=16,color="green",shape="box"];174[label="True",fontsize=16,color="green",shape="box"];175[label="True",fontsize=16,color="green",shape="box"];176[label="False",fontsize=16,color="green",shape="box"];177[label="False",fontsize=16,color="green",shape="box"];178[label="True",fontsize=16,color="green",shape="box"];179 -> 68[label="",style="dashed", color="red", weight=0]; 179[label="primEqInt vxw300 vxw4000",fontsize=16,color="magenta"];179 -> 250[label="",style="dashed", color="magenta", weight=3]; 179 -> 251[label="",style="dashed", color="magenta", weight=3]; 180[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1941[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1941[label="",style="solid", color="blue", weight=9]; 1941 -> 252[label="",style="solid", color="blue", weight=3]; 1942[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1942[label="",style="solid", color="blue", weight=9]; 1942 -> 253[label="",style="solid", color="blue", weight=3]; 1943[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1943[label="",style="solid", color="blue", weight=9]; 1943 -> 254[label="",style="solid", color="blue", weight=3]; 1944[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1944[label="",style="solid", color="blue", weight=9]; 1944 -> 255[label="",style="solid", color="blue", weight=3]; 1945[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1945[label="",style="solid", color="blue", weight=9]; 1945 -> 256[label="",style="solid", color="blue", weight=3]; 1946[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1946[label="",style="solid", color="blue", weight=9]; 1946 -> 257[label="",style="solid", color="blue", weight=3]; 1947[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1947[label="",style="solid", color="blue", weight=9]; 1947 -> 258[label="",style="solid", color="blue", weight=3]; 1948[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1948[label="",style="solid", color="blue", weight=9]; 1948 -> 259[label="",style="solid", color="blue", weight=3]; 1949[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1949[label="",style="solid", color="blue", weight=9]; 1949 -> 260[label="",style="solid", color="blue", weight=3]; 1950[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1950[label="",style="solid", color="blue", weight=9]; 1950 -> 261[label="",style="solid", color="blue", weight=3]; 1951[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1951[label="",style="solid", color="blue", weight=9]; 1951 -> 262[label="",style="solid", color="blue", weight=3]; 1952[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1952[label="",style="solid", color="blue", weight=9]; 1952 -> 263[label="",style="solid", color="blue", weight=3]; 1953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1953[label="",style="solid", color="blue", weight=9]; 1953 -> 264[label="",style="solid", color="blue", weight=3]; 1954[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];180 -> 1954[label="",style="solid", color="blue", weight=9]; 1954 -> 265[label="",style="solid", color="blue", weight=3]; 181[label="False",fontsize=16,color="green",shape="box"];182[label="False",fontsize=16,color="green",shape="box"];183[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1955[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1955[label="",style="solid", color="blue", weight=9]; 1955 -> 266[label="",style="solid", color="blue", weight=3]; 1956[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1956[label="",style="solid", color="blue", weight=9]; 1956 -> 267[label="",style="solid", color="blue", weight=3]; 1957[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1957[label="",style="solid", color="blue", weight=9]; 1957 -> 268[label="",style="solid", color="blue", weight=3]; 1958[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1958[label="",style="solid", color="blue", weight=9]; 1958 -> 269[label="",style="solid", color="blue", weight=3]; 1959[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1959[label="",style="solid", color="blue", weight=9]; 1959 -> 270[label="",style="solid", color="blue", weight=3]; 1960[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1960[label="",style="solid", color="blue", weight=9]; 1960 -> 271[label="",style="solid", color="blue", weight=3]; 1961[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1961[label="",style="solid", color="blue", weight=9]; 1961 -> 272[label="",style="solid", color="blue", weight=3]; 1962[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1962[label="",style="solid", color="blue", weight=9]; 1962 -> 273[label="",style="solid", color="blue", weight=3]; 1963[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1963[label="",style="solid", color="blue", weight=9]; 1963 -> 274[label="",style="solid", color="blue", weight=3]; 1964[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1964[label="",style="solid", color="blue", weight=9]; 1964 -> 275[label="",style="solid", color="blue", weight=3]; 1965[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1965[label="",style="solid", color="blue", weight=9]; 1965 -> 276[label="",style="solid", color="blue", weight=3]; 1966[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1966[label="",style="solid", color="blue", weight=9]; 1966 -> 277[label="",style="solid", color="blue", weight=3]; 1967[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1967[label="",style="solid", color="blue", weight=9]; 1967 -> 278[label="",style="solid", color="blue", weight=3]; 1968[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];183 -> 1968[label="",style="solid", color="blue", weight=9]; 1968 -> 279[label="",style="solid", color="blue", weight=3]; 184[label="primEqChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];184 -> 280[label="",style="solid", color="black", weight=3]; 185 -> 357[label="",style="dashed", color="red", weight=0]; 185[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];185 -> 364[label="",style="dashed", color="magenta", weight=3]; 185 -> 365[label="",style="dashed", color="magenta", weight=3]; 186[label="True",fontsize=16,color="green",shape="box"];187[label="False",fontsize=16,color="green",shape="box"];188[label="False",fontsize=16,color="green",shape="box"];189[label="False",fontsize=16,color="green",shape="box"];190[label="True",fontsize=16,color="green",shape="box"];191[label="False",fontsize=16,color="green",shape="box"];192[label="False",fontsize=16,color="green",shape="box"];193[label="False",fontsize=16,color="green",shape="box"];194[label="True",fontsize=16,color="green",shape="box"];195[label="True",fontsize=16,color="green",shape="box"];196[label="False",fontsize=16,color="green",shape="box"];197[label="False",fontsize=16,color="green",shape="box"];198[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1969[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1969[label="",style="solid", color="blue", weight=9]; 1969 -> 281[label="",style="solid", color="blue", weight=3]; 1970[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1970[label="",style="solid", color="blue", weight=9]; 1970 -> 282[label="",style="solid", color="blue", weight=3]; 1971[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1971[label="",style="solid", color="blue", weight=9]; 1971 -> 283[label="",style="solid", color="blue", weight=3]; 1972[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1972[label="",style="solid", color="blue", weight=9]; 1972 -> 284[label="",style="solid", color="blue", weight=3]; 1973[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1973[label="",style="solid", color="blue", weight=9]; 1973 -> 285[label="",style="solid", color="blue", weight=3]; 1974[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1974[label="",style="solid", color="blue", weight=9]; 1974 -> 286[label="",style="solid", color="blue", weight=3]; 1975[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1975[label="",style="solid", color="blue", weight=9]; 1975 -> 287[label="",style="solid", color="blue", weight=3]; 1976[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1976[label="",style="solid", color="blue", weight=9]; 1976 -> 288[label="",style="solid", color="blue", weight=3]; 1977[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1977[label="",style="solid", color="blue", weight=9]; 1977 -> 289[label="",style="solid", color="blue", weight=3]; 1978[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1978[label="",style="solid", color="blue", weight=9]; 1978 -> 290[label="",style="solid", color="blue", weight=3]; 1979[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1979[label="",style="solid", color="blue", weight=9]; 1979 -> 291[label="",style="solid", color="blue", weight=3]; 1980[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1980[label="",style="solid", color="blue", weight=9]; 1980 -> 292[label="",style="solid", color="blue", weight=3]; 1981[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1981[label="",style="solid", color="blue", weight=9]; 1981 -> 293[label="",style="solid", color="blue", weight=3]; 1982[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];198 -> 1982[label="",style="solid", color="blue", weight=9]; 1982 -> 294[label="",style="solid", color="blue", weight=3]; 199[label="primEqDouble (Double vxw300 vxw301) (Double vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];199 -> 295[label="",style="solid", color="black", weight=3]; 209[label="vxw11 <= vxw10",fontsize=16,color="blue",shape="box"];1983[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1983[label="",style="solid", color="blue", weight=9]; 1983 -> 296[label="",style="solid", color="blue", weight=3]; 1984[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1984[label="",style="solid", color="blue", weight=9]; 1984 -> 297[label="",style="solid", color="blue", weight=3]; 1985[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1985[label="",style="solid", color="blue", weight=9]; 1985 -> 298[label="",style="solid", color="blue", weight=3]; 1986[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1986[label="",style="solid", color="blue", weight=9]; 1986 -> 299[label="",style="solid", color="blue", weight=3]; 1987[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1987[label="",style="solid", color="blue", weight=9]; 1987 -> 300[label="",style="solid", color="blue", weight=3]; 1988[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1988[label="",style="solid", color="blue", weight=9]; 1988 -> 301[label="",style="solid", color="blue", weight=3]; 1989[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1989[label="",style="solid", color="blue", weight=9]; 1989 -> 302[label="",style="solid", color="blue", weight=3]; 1990[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1990[label="",style="solid", color="blue", weight=9]; 1990 -> 303[label="",style="solid", color="blue", weight=3]; 1991[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1991[label="",style="solid", color="blue", weight=9]; 1991 -> 304[label="",style="solid", color="blue", weight=3]; 1992[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1992[label="",style="solid", color="blue", weight=9]; 1992 -> 305[label="",style="solid", color="blue", weight=3]; 1993[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1993[label="",style="solid", color="blue", weight=9]; 1993 -> 306[label="",style="solid", color="blue", weight=3]; 1994[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1994[label="",style="solid", color="blue", weight=9]; 1994 -> 307[label="",style="solid", color="blue", weight=3]; 1995[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1995[label="",style="solid", color="blue", weight=9]; 1995 -> 308[label="",style="solid", color="blue", weight=3]; 1996[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1996[label="",style="solid", color="blue", weight=9]; 1996 -> 309[label="",style="solid", color="blue", weight=3]; 210[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare1 (Left vxw29) (Left vxw28) False)",fontsize=16,color="black",shape="box"];210 -> 310[label="",style="solid", color="black", weight=3]; 211[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare1 (Left vxw29) (Left vxw28) True)",fontsize=16,color="black",shape="box"];211 -> 311[label="",style="solid", color="black", weight=3]; 212[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) GT",fontsize=16,color="black",shape="box"];212 -> 312[label="",style="solid", color="black", weight=3]; 222[label="vxw20 <= vxw19",fontsize=16,color="blue",shape="box"];1997[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 1997[label="",style="solid", color="blue", weight=9]; 1997 -> 313[label="",style="solid", color="blue", weight=3]; 1998[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 1998[label="",style="solid", color="blue", weight=9]; 1998 -> 314[label="",style="solid", color="blue", weight=3]; 1999[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 1999[label="",style="solid", color="blue", weight=9]; 1999 -> 315[label="",style="solid", color="blue", weight=3]; 2000[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2000[label="",style="solid", color="blue", weight=9]; 2000 -> 316[label="",style="solid", color="blue", weight=3]; 2001[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2001[label="",style="solid", color="blue", weight=9]; 2001 -> 317[label="",style="solid", color="blue", weight=3]; 2002[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2002[label="",style="solid", color="blue", weight=9]; 2002 -> 318[label="",style="solid", color="blue", weight=3]; 2003[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2003[label="",style="solid", color="blue", weight=9]; 2003 -> 319[label="",style="solid", color="blue", weight=3]; 2004[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2004[label="",style="solid", color="blue", weight=9]; 2004 -> 320[label="",style="solid", color="blue", weight=3]; 2005[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2005[label="",style="solid", color="blue", weight=9]; 2005 -> 321[label="",style="solid", color="blue", weight=3]; 2006[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2006[label="",style="solid", color="blue", weight=9]; 2006 -> 322[label="",style="solid", color="blue", weight=3]; 2007[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2007[label="",style="solid", color="blue", weight=9]; 2007 -> 323[label="",style="solid", color="blue", weight=3]; 2008[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2008[label="",style="solid", color="blue", weight=9]; 2008 -> 324[label="",style="solid", color="blue", weight=3]; 2009[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2009[label="",style="solid", color="blue", weight=9]; 2009 -> 325[label="",style="solid", color="blue", weight=3]; 2010[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2010[label="",style="solid", color="blue", weight=9]; 2010 -> 326[label="",style="solid", color="blue", weight=3]; 223[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare1 (Right vxw38) (Right vxw37) False)",fontsize=16,color="black",shape="box"];223 -> 327[label="",style="solid", color="black", weight=3]; 224[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare1 (Right vxw38) (Right vxw37) True)",fontsize=16,color="black",shape="box"];224 -> 328[label="",style="solid", color="black", weight=3]; 225[label="primEqInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2011[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];225 -> 2011[label="",style="solid", color="burlywood", weight=9]; 2011 -> 329[label="",style="solid", color="burlywood", weight=3]; 2012[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];225 -> 2012[label="",style="solid", color="burlywood", weight=9]; 2012 -> 330[label="",style="solid", color="burlywood", weight=3]; 226[label="primEqInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];226 -> 331[label="",style="solid", color="black", weight=3]; 227[label="primEqInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2013[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];227 -> 2013[label="",style="solid", color="burlywood", weight=9]; 2013 -> 332[label="",style="solid", color="burlywood", weight=3]; 2014[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];227 -> 2014[label="",style="solid", color="burlywood", weight=9]; 2014 -> 333[label="",style="solid", color="burlywood", weight=3]; 228[label="primEqInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2015[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2015[label="",style="solid", color="burlywood", weight=9]; 2015 -> 334[label="",style="solid", color="burlywood", weight=3]; 2016[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];228 -> 2016[label="",style="solid", color="burlywood", weight=9]; 2016 -> 335[label="",style="solid", color="burlywood", weight=3]; 229[label="primEqInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];229 -> 336[label="",style="solid", color="black", weight=3]; 230[label="primEqInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2017[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];230 -> 2017[label="",style="solid", color="burlywood", weight=9]; 2017 -> 337[label="",style="solid", color="burlywood", weight=3]; 2018[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];230 -> 2018[label="",style="solid", color="burlywood", weight=9]; 2018 -> 338[label="",style="solid", color="burlywood", weight=3]; 231[label="primEqInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2019[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];231 -> 2019[label="",style="solid", color="burlywood", weight=9]; 2019 -> 339[label="",style="solid", color="burlywood", weight=3]; 2020[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];231 -> 2020[label="",style="solid", color="burlywood", weight=9]; 2020 -> 340[label="",style="solid", color="burlywood", weight=3]; 232[label="primEqInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2021[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];232 -> 2021[label="",style="solid", color="burlywood", weight=9]; 2021 -> 341[label="",style="solid", color="burlywood", weight=3]; 2022[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];232 -> 2022[label="",style="solid", color="burlywood", weight=9]; 2022 -> 342[label="",style="solid", color="burlywood", weight=3]; 358[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2023[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2023[label="",style="solid", color="blue", weight=9]; 2023 -> 369[label="",style="solid", color="blue", weight=3]; 2024[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2024[label="",style="solid", color="blue", weight=9]; 2024 -> 370[label="",style="solid", color="blue", weight=3]; 2025[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2025[label="",style="solid", color="blue", weight=9]; 2025 -> 371[label="",style="solid", color="blue", weight=3]; 2026[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2026[label="",style="solid", color="blue", weight=9]; 2026 -> 372[label="",style="solid", color="blue", weight=3]; 2027[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2027[label="",style="solid", color="blue", weight=9]; 2027 -> 373[label="",style="solid", color="blue", weight=3]; 2028[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2028[label="",style="solid", color="blue", weight=9]; 2028 -> 374[label="",style="solid", color="blue", weight=3]; 2029[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2029[label="",style="solid", color="blue", weight=9]; 2029 -> 375[label="",style="solid", color="blue", weight=3]; 2030[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2030[label="",style="solid", color="blue", weight=9]; 2030 -> 376[label="",style="solid", color="blue", weight=3]; 2031[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2031[label="",style="solid", color="blue", weight=9]; 2031 -> 377[label="",style="solid", color="blue", weight=3]; 2032[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2032[label="",style="solid", color="blue", weight=9]; 2032 -> 378[label="",style="solid", color="blue", weight=3]; 2033[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2033[label="",style="solid", color="blue", weight=9]; 2033 -> 379[label="",style="solid", color="blue", weight=3]; 2034[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2034[label="",style="solid", color="blue", weight=9]; 2034 -> 380[label="",style="solid", color="blue", weight=3]; 2035[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2035[label="",style="solid", color="blue", weight=9]; 2035 -> 381[label="",style="solid", color="blue", weight=3]; 2036[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];358 -> 2036[label="",style="solid", color="blue", weight=9]; 2036 -> 382[label="",style="solid", color="blue", weight=3]; 359 -> 357[label="",style="dashed", color="red", weight=0]; 359[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];359 -> 383[label="",style="dashed", color="magenta", weight=3]; 359 -> 384[label="",style="dashed", color="magenta", weight=3]; 357[label="vxw47 && vxw59",fontsize=16,color="burlywood",shape="triangle"];2037[label="vxw47/False",fontsize=10,color="white",style="solid",shape="box"];357 -> 2037[label="",style="solid", color="burlywood", weight=9]; 2037 -> 385[label="",style="solid", color="burlywood", weight=3]; 2038[label="vxw47/True",fontsize=10,color="white",style="solid",shape="box"];357 -> 2038[label="",style="solid", color="burlywood", weight=9]; 2038 -> 386[label="",style="solid", color="burlywood", weight=3]; 360[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2039[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2039[label="",style="solid", color="blue", weight=9]; 2039 -> 387[label="",style="solid", color="blue", weight=3]; 2040[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2040[label="",style="solid", color="blue", weight=9]; 2040 -> 388[label="",style="solid", color="blue", weight=3]; 2041[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2041[label="",style="solid", color="blue", weight=9]; 2041 -> 389[label="",style="solid", color="blue", weight=3]; 2042[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2042[label="",style="solid", color="blue", weight=9]; 2042 -> 390[label="",style="solid", color="blue", weight=3]; 2043[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2043[label="",style="solid", color="blue", weight=9]; 2043 -> 391[label="",style="solid", color="blue", weight=3]; 2044[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2044[label="",style="solid", color="blue", weight=9]; 2044 -> 392[label="",style="solid", color="blue", weight=3]; 2045[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2045[label="",style="solid", color="blue", weight=9]; 2045 -> 393[label="",style="solid", color="blue", weight=3]; 2046[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2046[label="",style="solid", color="blue", weight=9]; 2046 -> 394[label="",style="solid", color="blue", weight=3]; 2047[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2047[label="",style="solid", color="blue", weight=9]; 2047 -> 395[label="",style="solid", color="blue", weight=3]; 2048[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2048[label="",style="solid", color="blue", weight=9]; 2048 -> 396[label="",style="solid", color="blue", weight=3]; 2049[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2049[label="",style="solid", color="blue", weight=9]; 2049 -> 397[label="",style="solid", color="blue", weight=3]; 2050[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2050[label="",style="solid", color="blue", weight=9]; 2050 -> 398[label="",style="solid", color="blue", weight=3]; 2051[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2051[label="",style="solid", color="blue", weight=9]; 2051 -> 399[label="",style="solid", color="blue", weight=3]; 2052[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2052[label="",style="solid", color="blue", weight=9]; 2052 -> 400[label="",style="solid", color="blue", weight=3]; 361[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2053[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2053[label="",style="solid", color="blue", weight=9]; 2053 -> 401[label="",style="solid", color="blue", weight=3]; 2054[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2054[label="",style="solid", color="blue", weight=9]; 2054 -> 402[label="",style="solid", color="blue", weight=3]; 2055[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2055[label="",style="solid", color="blue", weight=9]; 2055 -> 403[label="",style="solid", color="blue", weight=3]; 2056[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2056[label="",style="solid", color="blue", weight=9]; 2056 -> 404[label="",style="solid", color="blue", weight=3]; 2057[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2057[label="",style="solid", color="blue", weight=9]; 2057 -> 405[label="",style="solid", color="blue", weight=3]; 2058[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2058[label="",style="solid", color="blue", weight=9]; 2058 -> 406[label="",style="solid", color="blue", weight=3]; 2059[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2059[label="",style="solid", color="blue", weight=9]; 2059 -> 407[label="",style="solid", color="blue", weight=3]; 2060[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2060[label="",style="solid", color="blue", weight=9]; 2060 -> 408[label="",style="solid", color="blue", weight=3]; 2061[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2061[label="",style="solid", color="blue", weight=9]; 2061 -> 409[label="",style="solid", color="blue", weight=3]; 2062[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2062[label="",style="solid", color="blue", weight=9]; 2062 -> 410[label="",style="solid", color="blue", weight=3]; 2063[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2063[label="",style="solid", color="blue", weight=9]; 2063 -> 411[label="",style="solid", color="blue", weight=3]; 2064[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2064[label="",style="solid", color="blue", weight=9]; 2064 -> 412[label="",style="solid", color="blue", weight=3]; 2065[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2065[label="",style="solid", color="blue", weight=9]; 2065 -> 413[label="",style="solid", color="blue", weight=3]; 2066[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];361 -> 2066[label="",style="solid", color="blue", weight=9]; 2066 -> 414[label="",style="solid", color="blue", weight=3]; 249 -> 34[label="",style="dashed", color="red", weight=0]; 249[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];249 -> 415[label="",style="dashed", color="magenta", weight=3]; 249 -> 416[label="",style="dashed", color="magenta", weight=3]; 362[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2067[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2067[label="",style="solid", color="blue", weight=9]; 2067 -> 417[label="",style="solid", color="blue", weight=3]; 2068[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2068[label="",style="solid", color="blue", weight=9]; 2068 -> 418[label="",style="solid", color="blue", weight=3]; 2069[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2069[label="",style="solid", color="blue", weight=9]; 2069 -> 419[label="",style="solid", color="blue", weight=3]; 2070[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2070[label="",style="solid", color="blue", weight=9]; 2070 -> 420[label="",style="solid", color="blue", weight=3]; 2071[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2071[label="",style="solid", color="blue", weight=9]; 2071 -> 421[label="",style="solid", color="blue", weight=3]; 2072[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2072[label="",style="solid", color="blue", weight=9]; 2072 -> 422[label="",style="solid", color="blue", weight=3]; 2073[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2073[label="",style="solid", color="blue", weight=9]; 2073 -> 423[label="",style="solid", color="blue", weight=3]; 2074[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2074[label="",style="solid", color="blue", weight=9]; 2074 -> 424[label="",style="solid", color="blue", weight=3]; 2075[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2075[label="",style="solid", color="blue", weight=9]; 2075 -> 425[label="",style="solid", color="blue", weight=3]; 2076[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2076[label="",style="solid", color="blue", weight=9]; 2076 -> 426[label="",style="solid", color="blue", weight=3]; 2077[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2077[label="",style="solid", color="blue", weight=9]; 2077 -> 427[label="",style="solid", color="blue", weight=3]; 2078[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2078[label="",style="solid", color="blue", weight=9]; 2078 -> 428[label="",style="solid", color="blue", weight=3]; 2079[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2079[label="",style="solid", color="blue", weight=9]; 2079 -> 429[label="",style="solid", color="blue", weight=3]; 2080[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2080[label="",style="solid", color="blue", weight=9]; 2080 -> 430[label="",style="solid", color="blue", weight=3]; 363 -> 39[label="",style="dashed", color="red", weight=0]; 363[label="vxw301 == vxw4001",fontsize=16,color="magenta"];363 -> 431[label="",style="dashed", color="magenta", weight=3]; 363 -> 432[label="",style="dashed", color="magenta", weight=3]; 250[label="vxw4000",fontsize=16,color="green",shape="box"];251[label="vxw300",fontsize=16,color="green",shape="box"];252 -> 34[label="",style="dashed", color="red", weight=0]; 252[label="vxw300 == vxw4000",fontsize=16,color="magenta"];252 -> 433[label="",style="dashed", color="magenta", weight=3]; 252 -> 434[label="",style="dashed", color="magenta", weight=3]; 253 -> 35[label="",style="dashed", color="red", weight=0]; 253[label="vxw300 == vxw4000",fontsize=16,color="magenta"];253 -> 435[label="",style="dashed", color="magenta", weight=3]; 253 -> 436[label="",style="dashed", color="magenta", weight=3]; 254 -> 36[label="",style="dashed", color="red", weight=0]; 254[label="vxw300 == vxw4000",fontsize=16,color="magenta"];254 -> 437[label="",style="dashed", color="magenta", weight=3]; 254 -> 438[label="",style="dashed", color="magenta", weight=3]; 255 -> 37[label="",style="dashed", color="red", weight=0]; 255[label="vxw300 == vxw4000",fontsize=16,color="magenta"];255 -> 439[label="",style="dashed", color="magenta", weight=3]; 255 -> 440[label="",style="dashed", color="magenta", weight=3]; 256 -> 38[label="",style="dashed", color="red", weight=0]; 256[label="vxw300 == vxw4000",fontsize=16,color="magenta"];256 -> 441[label="",style="dashed", color="magenta", weight=3]; 256 -> 442[label="",style="dashed", color="magenta", weight=3]; 257 -> 39[label="",style="dashed", color="red", weight=0]; 257[label="vxw300 == vxw4000",fontsize=16,color="magenta"];257 -> 443[label="",style="dashed", color="magenta", weight=3]; 257 -> 444[label="",style="dashed", color="magenta", weight=3]; 258 -> 40[label="",style="dashed", color="red", weight=0]; 258[label="vxw300 == vxw4000",fontsize=16,color="magenta"];258 -> 445[label="",style="dashed", color="magenta", weight=3]; 258 -> 446[label="",style="dashed", color="magenta", weight=3]; 259 -> 41[label="",style="dashed", color="red", weight=0]; 259[label="vxw300 == vxw4000",fontsize=16,color="magenta"];259 -> 447[label="",style="dashed", color="magenta", weight=3]; 259 -> 448[label="",style="dashed", color="magenta", weight=3]; 260 -> 42[label="",style="dashed", color="red", weight=0]; 260[label="vxw300 == vxw4000",fontsize=16,color="magenta"];260 -> 449[label="",style="dashed", color="magenta", weight=3]; 260 -> 450[label="",style="dashed", color="magenta", weight=3]; 261 -> 43[label="",style="dashed", color="red", weight=0]; 261[label="vxw300 == vxw4000",fontsize=16,color="magenta"];261 -> 451[label="",style="dashed", color="magenta", weight=3]; 261 -> 452[label="",style="dashed", color="magenta", weight=3]; 262 -> 44[label="",style="dashed", color="red", weight=0]; 262[label="vxw300 == vxw4000",fontsize=16,color="magenta"];262 -> 453[label="",style="dashed", color="magenta", weight=3]; 262 -> 454[label="",style="dashed", color="magenta", weight=3]; 263 -> 45[label="",style="dashed", color="red", weight=0]; 263[label="vxw300 == vxw4000",fontsize=16,color="magenta"];263 -> 455[label="",style="dashed", color="magenta", weight=3]; 263 -> 456[label="",style="dashed", color="magenta", weight=3]; 264 -> 46[label="",style="dashed", color="red", weight=0]; 264[label="vxw300 == vxw4000",fontsize=16,color="magenta"];264 -> 457[label="",style="dashed", color="magenta", weight=3]; 264 -> 458[label="",style="dashed", color="magenta", weight=3]; 265 -> 47[label="",style="dashed", color="red", weight=0]; 265[label="vxw300 == vxw4000",fontsize=16,color="magenta"];265 -> 459[label="",style="dashed", color="magenta", weight=3]; 265 -> 460[label="",style="dashed", color="magenta", weight=3]; 266 -> 34[label="",style="dashed", color="red", weight=0]; 266[label="vxw300 == vxw4000",fontsize=16,color="magenta"];266 -> 461[label="",style="dashed", color="magenta", weight=3]; 266 -> 462[label="",style="dashed", color="magenta", weight=3]; 267 -> 35[label="",style="dashed", color="red", weight=0]; 267[label="vxw300 == vxw4000",fontsize=16,color="magenta"];267 -> 463[label="",style="dashed", color="magenta", weight=3]; 267 -> 464[label="",style="dashed", color="magenta", weight=3]; 268 -> 36[label="",style="dashed", color="red", weight=0]; 268[label="vxw300 == vxw4000",fontsize=16,color="magenta"];268 -> 465[label="",style="dashed", color="magenta", weight=3]; 268 -> 466[label="",style="dashed", color="magenta", weight=3]; 269 -> 37[label="",style="dashed", color="red", weight=0]; 269[label="vxw300 == vxw4000",fontsize=16,color="magenta"];269 -> 467[label="",style="dashed", color="magenta", weight=3]; 269 -> 468[label="",style="dashed", color="magenta", weight=3]; 270 -> 38[label="",style="dashed", color="red", weight=0]; 270[label="vxw300 == vxw4000",fontsize=16,color="magenta"];270 -> 469[label="",style="dashed", color="magenta", weight=3]; 270 -> 470[label="",style="dashed", color="magenta", weight=3]; 271 -> 39[label="",style="dashed", color="red", weight=0]; 271[label="vxw300 == vxw4000",fontsize=16,color="magenta"];271 -> 471[label="",style="dashed", color="magenta", weight=3]; 271 -> 472[label="",style="dashed", color="magenta", weight=3]; 272 -> 40[label="",style="dashed", color="red", weight=0]; 272[label="vxw300 == vxw4000",fontsize=16,color="magenta"];272 -> 473[label="",style="dashed", color="magenta", weight=3]; 272 -> 474[label="",style="dashed", color="magenta", weight=3]; 273 -> 41[label="",style="dashed", color="red", weight=0]; 273[label="vxw300 == vxw4000",fontsize=16,color="magenta"];273 -> 475[label="",style="dashed", color="magenta", weight=3]; 273 -> 476[label="",style="dashed", color="magenta", weight=3]; 274 -> 42[label="",style="dashed", color="red", weight=0]; 274[label="vxw300 == vxw4000",fontsize=16,color="magenta"];274 -> 477[label="",style="dashed", color="magenta", weight=3]; 274 -> 478[label="",style="dashed", color="magenta", weight=3]; 275 -> 43[label="",style="dashed", color="red", weight=0]; 275[label="vxw300 == vxw4000",fontsize=16,color="magenta"];275 -> 479[label="",style="dashed", color="magenta", weight=3]; 275 -> 480[label="",style="dashed", color="magenta", weight=3]; 276 -> 44[label="",style="dashed", color="red", weight=0]; 276[label="vxw300 == vxw4000",fontsize=16,color="magenta"];276 -> 481[label="",style="dashed", color="magenta", weight=3]; 276 -> 482[label="",style="dashed", color="magenta", weight=3]; 277 -> 45[label="",style="dashed", color="red", weight=0]; 277[label="vxw300 == vxw4000",fontsize=16,color="magenta"];277 -> 483[label="",style="dashed", color="magenta", weight=3]; 277 -> 484[label="",style="dashed", color="magenta", weight=3]; 278 -> 46[label="",style="dashed", color="red", weight=0]; 278[label="vxw300 == vxw4000",fontsize=16,color="magenta"];278 -> 485[label="",style="dashed", color="magenta", weight=3]; 278 -> 486[label="",style="dashed", color="magenta", weight=3]; 279 -> 47[label="",style="dashed", color="red", weight=0]; 279[label="vxw300 == vxw4000",fontsize=16,color="magenta"];279 -> 487[label="",style="dashed", color="magenta", weight=3]; 279 -> 488[label="",style="dashed", color="magenta", weight=3]; 280[label="primEqNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];2081[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];280 -> 2081[label="",style="solid", color="burlywood", weight=9]; 2081 -> 489[label="",style="solid", color="burlywood", weight=3]; 2082[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];280 -> 2082[label="",style="solid", color="burlywood", weight=9]; 2082 -> 490[label="",style="solid", color="burlywood", weight=3]; 364[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2083[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2083[label="",style="solid", color="blue", weight=9]; 2083 -> 491[label="",style="solid", color="blue", weight=3]; 2084[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2084[label="",style="solid", color="blue", weight=9]; 2084 -> 492[label="",style="solid", color="blue", weight=3]; 365[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2085[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2085[label="",style="solid", color="blue", weight=9]; 2085 -> 493[label="",style="solid", color="blue", weight=3]; 2086[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2086[label="",style="solid", color="blue", weight=9]; 2086 -> 494[label="",style="solid", color="blue", weight=3]; 281 -> 34[label="",style="dashed", color="red", weight=0]; 281[label="vxw300 == vxw4000",fontsize=16,color="magenta"];281 -> 495[label="",style="dashed", color="magenta", weight=3]; 281 -> 496[label="",style="dashed", color="magenta", weight=3]; 282 -> 35[label="",style="dashed", color="red", weight=0]; 282[label="vxw300 == vxw4000",fontsize=16,color="magenta"];282 -> 497[label="",style="dashed", color="magenta", weight=3]; 282 -> 498[label="",style="dashed", color="magenta", weight=3]; 283 -> 36[label="",style="dashed", color="red", weight=0]; 283[label="vxw300 == vxw4000",fontsize=16,color="magenta"];283 -> 499[label="",style="dashed", color="magenta", weight=3]; 283 -> 500[label="",style="dashed", color="magenta", weight=3]; 284 -> 37[label="",style="dashed", color="red", weight=0]; 284[label="vxw300 == vxw4000",fontsize=16,color="magenta"];284 -> 501[label="",style="dashed", color="magenta", weight=3]; 284 -> 502[label="",style="dashed", color="magenta", weight=3]; 285 -> 38[label="",style="dashed", color="red", weight=0]; 285[label="vxw300 == vxw4000",fontsize=16,color="magenta"];285 -> 503[label="",style="dashed", color="magenta", weight=3]; 285 -> 504[label="",style="dashed", color="magenta", weight=3]; 286 -> 39[label="",style="dashed", color="red", weight=0]; 286[label="vxw300 == vxw4000",fontsize=16,color="magenta"];286 -> 505[label="",style="dashed", color="magenta", weight=3]; 286 -> 506[label="",style="dashed", color="magenta", weight=3]; 287 -> 40[label="",style="dashed", color="red", weight=0]; 287[label="vxw300 == vxw4000",fontsize=16,color="magenta"];287 -> 507[label="",style="dashed", color="magenta", weight=3]; 287 -> 508[label="",style="dashed", color="magenta", weight=3]; 288 -> 41[label="",style="dashed", color="red", weight=0]; 288[label="vxw300 == vxw4000",fontsize=16,color="magenta"];288 -> 509[label="",style="dashed", color="magenta", weight=3]; 288 -> 510[label="",style="dashed", color="magenta", weight=3]; 289 -> 42[label="",style="dashed", color="red", weight=0]; 289[label="vxw300 == vxw4000",fontsize=16,color="magenta"];289 -> 511[label="",style="dashed", color="magenta", weight=3]; 289 -> 512[label="",style="dashed", color="magenta", weight=3]; 290 -> 43[label="",style="dashed", color="red", weight=0]; 290[label="vxw300 == vxw4000",fontsize=16,color="magenta"];290 -> 513[label="",style="dashed", color="magenta", weight=3]; 290 -> 514[label="",style="dashed", color="magenta", weight=3]; 291 -> 44[label="",style="dashed", color="red", weight=0]; 291[label="vxw300 == vxw4000",fontsize=16,color="magenta"];291 -> 515[label="",style="dashed", color="magenta", weight=3]; 291 -> 516[label="",style="dashed", color="magenta", weight=3]; 292 -> 45[label="",style="dashed", color="red", weight=0]; 292[label="vxw300 == vxw4000",fontsize=16,color="magenta"];292 -> 517[label="",style="dashed", color="magenta", weight=3]; 292 -> 518[label="",style="dashed", color="magenta", weight=3]; 293 -> 46[label="",style="dashed", color="red", weight=0]; 293[label="vxw300 == vxw4000",fontsize=16,color="magenta"];293 -> 519[label="",style="dashed", color="magenta", weight=3]; 293 -> 520[label="",style="dashed", color="magenta", weight=3]; 294 -> 47[label="",style="dashed", color="red", weight=0]; 294[label="vxw300 == vxw4000",fontsize=16,color="magenta"];294 -> 521[label="",style="dashed", color="magenta", weight=3]; 294 -> 522[label="",style="dashed", color="magenta", weight=3]; 295 -> 34[label="",style="dashed", color="red", weight=0]; 295[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];295 -> 523[label="",style="dashed", color="magenta", weight=3]; 295 -> 524[label="",style="dashed", color="magenta", weight=3]; 296[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];296 -> 525[label="",style="solid", color="black", weight=3]; 297[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2087[label="vxw11/LT",fontsize=10,color="white",style="solid",shape="box"];297 -> 2087[label="",style="solid", color="burlywood", weight=9]; 2087 -> 526[label="",style="solid", color="burlywood", weight=3]; 2088[label="vxw11/EQ",fontsize=10,color="white",style="solid",shape="box"];297 -> 2088[label="",style="solid", color="burlywood", weight=9]; 2088 -> 527[label="",style="solid", color="burlywood", weight=3]; 2089[label="vxw11/GT",fontsize=10,color="white",style="solid",shape="box"];297 -> 2089[label="",style="solid", color="burlywood", weight=9]; 2089 -> 528[label="",style="solid", color="burlywood", weight=3]; 298[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2090[label="vxw11/(vxw110,vxw111,vxw112)",fontsize=10,color="white",style="solid",shape="box"];298 -> 2090[label="",style="solid", color="burlywood", weight=9]; 2090 -> 529[label="",style="solid", color="burlywood", weight=3]; 299[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2091[label="vxw11/(vxw110,vxw111)",fontsize=10,color="white",style="solid",shape="box"];299 -> 2091[label="",style="solid", color="burlywood", weight=9]; 2091 -> 530[label="",style="solid", color="burlywood", weight=3]; 300[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];300 -> 531[label="",style="solid", color="black", weight=3]; 301[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];301 -> 532[label="",style="solid", color="black", weight=3]; 302[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];302 -> 533[label="",style="solid", color="black", weight=3]; 303[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2092[label="vxw11/False",fontsize=10,color="white",style="solid",shape="box"];303 -> 2092[label="",style="solid", color="burlywood", weight=9]; 2092 -> 534[label="",style="solid", color="burlywood", weight=3]; 2093[label="vxw11/True",fontsize=10,color="white",style="solid",shape="box"];303 -> 2093[label="",style="solid", color="burlywood", weight=9]; 2093 -> 535[label="",style="solid", color="burlywood", weight=3]; 304[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];304 -> 536[label="",style="solid", color="black", weight=3]; 305[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];305 -> 537[label="",style="solid", color="black", weight=3]; 306[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2094[label="vxw11/Left vxw110",fontsize=10,color="white",style="solid",shape="box"];306 -> 2094[label="",style="solid", color="burlywood", weight=9]; 2094 -> 538[label="",style="solid", color="burlywood", weight=3]; 2095[label="vxw11/Right vxw110",fontsize=10,color="white",style="solid",shape="box"];306 -> 2095[label="",style="solid", color="burlywood", weight=9]; 2095 -> 539[label="",style="solid", color="burlywood", weight=3]; 307[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];307 -> 540[label="",style="solid", color="black", weight=3]; 308[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2096[label="vxw11/Nothing",fontsize=10,color="white",style="solid",shape="box"];308 -> 2096[label="",style="solid", color="burlywood", weight=9]; 2096 -> 541[label="",style="solid", color="burlywood", weight=3]; 2097[label="vxw11/Just vxw110",fontsize=10,color="white",style="solid",shape="box"];308 -> 2097[label="",style="solid", color="burlywood", weight=9]; 2097 -> 542[label="",style="solid", color="burlywood", weight=3]; 309[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];309 -> 543[label="",style="solid", color="black", weight=3]; 310[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare0 (Left vxw29) (Left vxw28) otherwise)",fontsize=16,color="black",shape="box"];310 -> 544[label="",style="solid", color="black", weight=3]; 311[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) LT",fontsize=16,color="black",shape="box"];311 -> 545[label="",style="solid", color="black", weight=3]; 312[label="Left vxw400 : List.insertBy compare (Right vxw30) vxw41",fontsize=16,color="green",shape="box"];312 -> 546[label="",style="dashed", color="green", weight=3]; 313 -> 296[label="",style="dashed", color="red", weight=0]; 313[label="vxw20 <= vxw19",fontsize=16,color="magenta"];313 -> 547[label="",style="dashed", color="magenta", weight=3]; 313 -> 548[label="",style="dashed", color="magenta", weight=3]; 314 -> 297[label="",style="dashed", color="red", weight=0]; 314[label="vxw20 <= vxw19",fontsize=16,color="magenta"];314 -> 549[label="",style="dashed", color="magenta", weight=3]; 314 -> 550[label="",style="dashed", color="magenta", weight=3]; 315 -> 298[label="",style="dashed", color="red", weight=0]; 315[label="vxw20 <= vxw19",fontsize=16,color="magenta"];315 -> 551[label="",style="dashed", color="magenta", weight=3]; 315 -> 552[label="",style="dashed", color="magenta", weight=3]; 316 -> 299[label="",style="dashed", color="red", weight=0]; 316[label="vxw20 <= vxw19",fontsize=16,color="magenta"];316 -> 553[label="",style="dashed", color="magenta", weight=3]; 316 -> 554[label="",style="dashed", color="magenta", weight=3]; 317 -> 300[label="",style="dashed", color="red", weight=0]; 317[label="vxw20 <= vxw19",fontsize=16,color="magenta"];317 -> 555[label="",style="dashed", color="magenta", weight=3]; 317 -> 556[label="",style="dashed", color="magenta", weight=3]; 318 -> 301[label="",style="dashed", color="red", weight=0]; 318[label="vxw20 <= vxw19",fontsize=16,color="magenta"];318 -> 557[label="",style="dashed", color="magenta", weight=3]; 318 -> 558[label="",style="dashed", color="magenta", weight=3]; 319 -> 302[label="",style="dashed", color="red", weight=0]; 319[label="vxw20 <= vxw19",fontsize=16,color="magenta"];319 -> 559[label="",style="dashed", color="magenta", weight=3]; 319 -> 560[label="",style="dashed", color="magenta", weight=3]; 320 -> 303[label="",style="dashed", color="red", weight=0]; 320[label="vxw20 <= vxw19",fontsize=16,color="magenta"];320 -> 561[label="",style="dashed", color="magenta", weight=3]; 320 -> 562[label="",style="dashed", color="magenta", weight=3]; 321 -> 304[label="",style="dashed", color="red", weight=0]; 321[label="vxw20 <= vxw19",fontsize=16,color="magenta"];321 -> 563[label="",style="dashed", color="magenta", weight=3]; 321 -> 564[label="",style="dashed", color="magenta", weight=3]; 322 -> 305[label="",style="dashed", color="red", weight=0]; 322[label="vxw20 <= vxw19",fontsize=16,color="magenta"];322 -> 565[label="",style="dashed", color="magenta", weight=3]; 322 -> 566[label="",style="dashed", color="magenta", weight=3]; 323 -> 306[label="",style="dashed", color="red", weight=0]; 323[label="vxw20 <= vxw19",fontsize=16,color="magenta"];323 -> 567[label="",style="dashed", color="magenta", weight=3]; 323 -> 568[label="",style="dashed", color="magenta", weight=3]; 324 -> 307[label="",style="dashed", color="red", weight=0]; 324[label="vxw20 <= vxw19",fontsize=16,color="magenta"];324 -> 569[label="",style="dashed", color="magenta", weight=3]; 324 -> 570[label="",style="dashed", color="magenta", weight=3]; 325 -> 308[label="",style="dashed", color="red", weight=0]; 325[label="vxw20 <= vxw19",fontsize=16,color="magenta"];325 -> 571[label="",style="dashed", color="magenta", weight=3]; 325 -> 572[label="",style="dashed", color="magenta", weight=3]; 326 -> 309[label="",style="dashed", color="red", weight=0]; 326[label="vxw20 <= vxw19",fontsize=16,color="magenta"];326 -> 573[label="",style="dashed", color="magenta", weight=3]; 326 -> 574[label="",style="dashed", color="magenta", weight=3]; 327[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare0 (Right vxw38) (Right vxw37) otherwise)",fontsize=16,color="black",shape="box"];327 -> 575[label="",style="solid", color="black", weight=3]; 328[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) LT",fontsize=16,color="black",shape="box"];328 -> 576[label="",style="solid", color="black", weight=3]; 329[label="primEqInt (Pos (Succ vxw3000)) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];329 -> 577[label="",style="solid", color="black", weight=3]; 330[label="primEqInt (Pos (Succ vxw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];330 -> 578[label="",style="solid", color="black", weight=3]; 331[label="False",fontsize=16,color="green",shape="box"];332[label="primEqInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];332 -> 579[label="",style="solid", color="black", weight=3]; 333[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];333 -> 580[label="",style="solid", color="black", weight=3]; 334[label="primEqInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];334 -> 581[label="",style="solid", color="black", weight=3]; 335[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];335 -> 582[label="",style="solid", color="black", weight=3]; 336[label="False",fontsize=16,color="green",shape="box"];337[label="primEqInt (Neg (Succ vxw3000)) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];337 -> 583[label="",style="solid", color="black", weight=3]; 338[label="primEqInt (Neg (Succ vxw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];338 -> 584[label="",style="solid", color="black", weight=3]; 339[label="primEqInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];339 -> 585[label="",style="solid", color="black", weight=3]; 340[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];340 -> 586[label="",style="solid", color="black", weight=3]; 341[label="primEqInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];341 -> 587[label="",style="solid", color="black", weight=3]; 342[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];342 -> 588[label="",style="solid", color="black", weight=3]; 369 -> 34[label="",style="dashed", color="red", weight=0]; 369[label="vxw300 == vxw4000",fontsize=16,color="magenta"];369 -> 589[label="",style="dashed", color="magenta", weight=3]; 369 -> 590[label="",style="dashed", color="magenta", weight=3]; 370 -> 35[label="",style="dashed", color="red", weight=0]; 370[label="vxw300 == vxw4000",fontsize=16,color="magenta"];370 -> 591[label="",style="dashed", color="magenta", weight=3]; 370 -> 592[label="",style="dashed", color="magenta", weight=3]; 371 -> 36[label="",style="dashed", color="red", weight=0]; 371[label="vxw300 == vxw4000",fontsize=16,color="magenta"];371 -> 593[label="",style="dashed", color="magenta", weight=3]; 371 -> 594[label="",style="dashed", color="magenta", weight=3]; 372 -> 37[label="",style="dashed", color="red", weight=0]; 372[label="vxw300 == vxw4000",fontsize=16,color="magenta"];372 -> 595[label="",style="dashed", color="magenta", weight=3]; 372 -> 596[label="",style="dashed", color="magenta", weight=3]; 373 -> 38[label="",style="dashed", color="red", weight=0]; 373[label="vxw300 == vxw4000",fontsize=16,color="magenta"];373 -> 597[label="",style="dashed", color="magenta", weight=3]; 373 -> 598[label="",style="dashed", color="magenta", weight=3]; 374 -> 39[label="",style="dashed", color="red", weight=0]; 374[label="vxw300 == vxw4000",fontsize=16,color="magenta"];374 -> 599[label="",style="dashed", color="magenta", weight=3]; 374 -> 600[label="",style="dashed", color="magenta", weight=3]; 375 -> 40[label="",style="dashed", color="red", weight=0]; 375[label="vxw300 == vxw4000",fontsize=16,color="magenta"];375 -> 601[label="",style="dashed", color="magenta", weight=3]; 375 -> 602[label="",style="dashed", color="magenta", weight=3]; 376 -> 41[label="",style="dashed", color="red", weight=0]; 376[label="vxw300 == vxw4000",fontsize=16,color="magenta"];376 -> 603[label="",style="dashed", color="magenta", weight=3]; 376 -> 604[label="",style="dashed", color="magenta", weight=3]; 377 -> 42[label="",style="dashed", color="red", weight=0]; 377[label="vxw300 == vxw4000",fontsize=16,color="magenta"];377 -> 605[label="",style="dashed", color="magenta", weight=3]; 377 -> 606[label="",style="dashed", color="magenta", weight=3]; 378 -> 43[label="",style="dashed", color="red", weight=0]; 378[label="vxw300 == vxw4000",fontsize=16,color="magenta"];378 -> 607[label="",style="dashed", color="magenta", weight=3]; 378 -> 608[label="",style="dashed", color="magenta", weight=3]; 379 -> 44[label="",style="dashed", color="red", weight=0]; 379[label="vxw300 == vxw4000",fontsize=16,color="magenta"];379 -> 609[label="",style="dashed", color="magenta", weight=3]; 379 -> 610[label="",style="dashed", color="magenta", weight=3]; 380 -> 45[label="",style="dashed", color="red", weight=0]; 380[label="vxw300 == vxw4000",fontsize=16,color="magenta"];380 -> 611[label="",style="dashed", color="magenta", weight=3]; 380 -> 612[label="",style="dashed", color="magenta", weight=3]; 381 -> 46[label="",style="dashed", color="red", weight=0]; 381[label="vxw300 == vxw4000",fontsize=16,color="magenta"];381 -> 613[label="",style="dashed", color="magenta", weight=3]; 381 -> 614[label="",style="dashed", color="magenta", weight=3]; 382 -> 47[label="",style="dashed", color="red", weight=0]; 382[label="vxw300 == vxw4000",fontsize=16,color="magenta"];382 -> 615[label="",style="dashed", color="magenta", weight=3]; 382 -> 616[label="",style="dashed", color="magenta", weight=3]; 383[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2098[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2098[label="",style="solid", color="blue", weight=9]; 2098 -> 617[label="",style="solid", color="blue", weight=3]; 2099[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2099[label="",style="solid", color="blue", weight=9]; 2099 -> 618[label="",style="solid", color="blue", weight=3]; 2100[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2100[label="",style="solid", color="blue", weight=9]; 2100 -> 619[label="",style="solid", color="blue", weight=3]; 2101[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2101[label="",style="solid", color="blue", weight=9]; 2101 -> 620[label="",style="solid", color="blue", weight=3]; 2102[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2102[label="",style="solid", color="blue", weight=9]; 2102 -> 621[label="",style="solid", color="blue", weight=3]; 2103[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2103[label="",style="solid", color="blue", weight=9]; 2103 -> 622[label="",style="solid", color="blue", weight=3]; 2104[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2104[label="",style="solid", color="blue", weight=9]; 2104 -> 623[label="",style="solid", color="blue", weight=3]; 2105[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2105[label="",style="solid", color="blue", weight=9]; 2105 -> 624[label="",style="solid", color="blue", weight=3]; 2106[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2106[label="",style="solid", color="blue", weight=9]; 2106 -> 625[label="",style="solid", color="blue", weight=3]; 2107[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2107[label="",style="solid", color="blue", weight=9]; 2107 -> 626[label="",style="solid", color="blue", weight=3]; 2108[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2108[label="",style="solid", color="blue", weight=9]; 2108 -> 627[label="",style="solid", color="blue", weight=3]; 2109[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2109[label="",style="solid", color="blue", weight=9]; 2109 -> 628[label="",style="solid", color="blue", weight=3]; 2110[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2110[label="",style="solid", color="blue", weight=9]; 2110 -> 629[label="",style="solid", color="blue", weight=3]; 2111[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2111[label="",style="solid", color="blue", weight=9]; 2111 -> 630[label="",style="solid", color="blue", weight=3]; 384[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];2112[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2112[label="",style="solid", color="blue", weight=9]; 2112 -> 631[label="",style="solid", color="blue", weight=3]; 2113[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2113[label="",style="solid", color="blue", weight=9]; 2113 -> 632[label="",style="solid", color="blue", weight=3]; 2114[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2114[label="",style="solid", color="blue", weight=9]; 2114 -> 633[label="",style="solid", color="blue", weight=3]; 2115[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2115[label="",style="solid", color="blue", weight=9]; 2115 -> 634[label="",style="solid", color="blue", weight=3]; 2116[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2116[label="",style="solid", color="blue", weight=9]; 2116 -> 635[label="",style="solid", color="blue", weight=3]; 2117[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2117[label="",style="solid", color="blue", weight=9]; 2117 -> 636[label="",style="solid", color="blue", weight=3]; 2118[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2118[label="",style="solid", color="blue", weight=9]; 2118 -> 637[label="",style="solid", color="blue", weight=3]; 2119[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2119[label="",style="solid", color="blue", weight=9]; 2119 -> 638[label="",style="solid", color="blue", weight=3]; 2120[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2120[label="",style="solid", color="blue", weight=9]; 2120 -> 639[label="",style="solid", color="blue", weight=3]; 2121[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2121[label="",style="solid", color="blue", weight=9]; 2121 -> 640[label="",style="solid", color="blue", weight=3]; 2122[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2122[label="",style="solid", color="blue", weight=9]; 2122 -> 641[label="",style="solid", color="blue", weight=3]; 2123[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2123[label="",style="solid", color="blue", weight=9]; 2123 -> 642[label="",style="solid", color="blue", weight=3]; 2124[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2124[label="",style="solid", color="blue", weight=9]; 2124 -> 643[label="",style="solid", color="blue", weight=3]; 2125[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 2125[label="",style="solid", color="blue", weight=9]; 2125 -> 644[label="",style="solid", color="blue", weight=3]; 385[label="False && vxw59",fontsize=16,color="black",shape="box"];385 -> 645[label="",style="solid", color="black", weight=3]; 386[label="True && vxw59",fontsize=16,color="black",shape="box"];386 -> 646[label="",style="solid", color="black", weight=3]; 387 -> 34[label="",style="dashed", color="red", weight=0]; 387[label="vxw300 == vxw4000",fontsize=16,color="magenta"];387 -> 647[label="",style="dashed", color="magenta", weight=3]; 387 -> 648[label="",style="dashed", color="magenta", weight=3]; 388 -> 35[label="",style="dashed", color="red", weight=0]; 388[label="vxw300 == vxw4000",fontsize=16,color="magenta"];388 -> 649[label="",style="dashed", color="magenta", weight=3]; 388 -> 650[label="",style="dashed", color="magenta", weight=3]; 389 -> 36[label="",style="dashed", color="red", weight=0]; 389[label="vxw300 == vxw4000",fontsize=16,color="magenta"];389 -> 651[label="",style="dashed", color="magenta", weight=3]; 389 -> 652[label="",style="dashed", color="magenta", weight=3]; 390 -> 37[label="",style="dashed", color="red", weight=0]; 390[label="vxw300 == vxw4000",fontsize=16,color="magenta"];390 -> 653[label="",style="dashed", color="magenta", weight=3]; 390 -> 654[label="",style="dashed", color="magenta", weight=3]; 391 -> 38[label="",style="dashed", color="red", weight=0]; 391[label="vxw300 == vxw4000",fontsize=16,color="magenta"];391 -> 655[label="",style="dashed", color="magenta", weight=3]; 391 -> 656[label="",style="dashed", color="magenta", weight=3]; 392 -> 39[label="",style="dashed", color="red", weight=0]; 392[label="vxw300 == vxw4000",fontsize=16,color="magenta"];392 -> 657[label="",style="dashed", color="magenta", weight=3]; 392 -> 658[label="",style="dashed", color="magenta", weight=3]; 393 -> 40[label="",style="dashed", color="red", weight=0]; 393[label="vxw300 == vxw4000",fontsize=16,color="magenta"];393 -> 659[label="",style="dashed", color="magenta", weight=3]; 393 -> 660[label="",style="dashed", color="magenta", weight=3]; 394 -> 41[label="",style="dashed", color="red", weight=0]; 394[label="vxw300 == vxw4000",fontsize=16,color="magenta"];394 -> 661[label="",style="dashed", color="magenta", weight=3]; 394 -> 662[label="",style="dashed", color="magenta", weight=3]; 395 -> 42[label="",style="dashed", color="red", weight=0]; 395[label="vxw300 == vxw4000",fontsize=16,color="magenta"];395 -> 663[label="",style="dashed", color="magenta", weight=3]; 395 -> 664[label="",style="dashed", color="magenta", weight=3]; 396 -> 43[label="",style="dashed", color="red", weight=0]; 396[label="vxw300 == vxw4000",fontsize=16,color="magenta"];396 -> 665[label="",style="dashed", color="magenta", weight=3]; 396 -> 666[label="",style="dashed", color="magenta", weight=3]; 397 -> 44[label="",style="dashed", color="red", weight=0]; 397[label="vxw300 == vxw4000",fontsize=16,color="magenta"];397 -> 667[label="",style="dashed", color="magenta", weight=3]; 397 -> 668[label="",style="dashed", color="magenta", weight=3]; 398 -> 45[label="",style="dashed", color="red", weight=0]; 398[label="vxw300 == vxw4000",fontsize=16,color="magenta"];398 -> 669[label="",style="dashed", color="magenta", weight=3]; 398 -> 670[label="",style="dashed", color="magenta", weight=3]; 399 -> 46[label="",style="dashed", color="red", weight=0]; 399[label="vxw300 == vxw4000",fontsize=16,color="magenta"];399 -> 671[label="",style="dashed", color="magenta", weight=3]; 399 -> 672[label="",style="dashed", color="magenta", weight=3]; 400 -> 47[label="",style="dashed", color="red", weight=0]; 400[label="vxw300 == vxw4000",fontsize=16,color="magenta"];400 -> 673[label="",style="dashed", color="magenta", weight=3]; 400 -> 674[label="",style="dashed", color="magenta", weight=3]; 401 -> 34[label="",style="dashed", color="red", weight=0]; 401[label="vxw301 == vxw4001",fontsize=16,color="magenta"];401 -> 675[label="",style="dashed", color="magenta", weight=3]; 401 -> 676[label="",style="dashed", color="magenta", weight=3]; 402 -> 35[label="",style="dashed", color="red", weight=0]; 402[label="vxw301 == vxw4001",fontsize=16,color="magenta"];402 -> 677[label="",style="dashed", color="magenta", weight=3]; 402 -> 678[label="",style="dashed", color="magenta", weight=3]; 403 -> 36[label="",style="dashed", color="red", weight=0]; 403[label="vxw301 == vxw4001",fontsize=16,color="magenta"];403 -> 679[label="",style="dashed", color="magenta", weight=3]; 403 -> 680[label="",style="dashed", color="magenta", weight=3]; 404 -> 37[label="",style="dashed", color="red", weight=0]; 404[label="vxw301 == vxw4001",fontsize=16,color="magenta"];404 -> 681[label="",style="dashed", color="magenta", weight=3]; 404 -> 682[label="",style="dashed", color="magenta", weight=3]; 405 -> 38[label="",style="dashed", color="red", weight=0]; 405[label="vxw301 == vxw4001",fontsize=16,color="magenta"];405 -> 683[label="",style="dashed", color="magenta", weight=3]; 405 -> 684[label="",style="dashed", color="magenta", weight=3]; 406 -> 39[label="",style="dashed", color="red", weight=0]; 406[label="vxw301 == vxw4001",fontsize=16,color="magenta"];406 -> 685[label="",style="dashed", color="magenta", weight=3]; 406 -> 686[label="",style="dashed", color="magenta", weight=3]; 407 -> 40[label="",style="dashed", color="red", weight=0]; 407[label="vxw301 == vxw4001",fontsize=16,color="magenta"];407 -> 687[label="",style="dashed", color="magenta", weight=3]; 407 -> 688[label="",style="dashed", color="magenta", weight=3]; 408 -> 41[label="",style="dashed", color="red", weight=0]; 408[label="vxw301 == vxw4001",fontsize=16,color="magenta"];408 -> 689[label="",style="dashed", color="magenta", weight=3]; 408 -> 690[label="",style="dashed", color="magenta", weight=3]; 409 -> 42[label="",style="dashed", color="red", weight=0]; 409[label="vxw301 == vxw4001",fontsize=16,color="magenta"];409 -> 691[label="",style="dashed", color="magenta", weight=3]; 409 -> 692[label="",style="dashed", color="magenta", weight=3]; 410 -> 43[label="",style="dashed", color="red", weight=0]; 410[label="vxw301 == vxw4001",fontsize=16,color="magenta"];410 -> 693[label="",style="dashed", color="magenta", weight=3]; 410 -> 694[label="",style="dashed", color="magenta", weight=3]; 411 -> 44[label="",style="dashed", color="red", weight=0]; 411[label="vxw301 == vxw4001",fontsize=16,color="magenta"];411 -> 695[label="",style="dashed", color="magenta", weight=3]; 411 -> 696[label="",style="dashed", color="magenta", weight=3]; 412 -> 45[label="",style="dashed", color="red", weight=0]; 412[label="vxw301 == vxw4001",fontsize=16,color="magenta"];412 -> 697[label="",style="dashed", color="magenta", weight=3]; 412 -> 698[label="",style="dashed", color="magenta", weight=3]; 413 -> 46[label="",style="dashed", color="red", weight=0]; 413[label="vxw301 == vxw4001",fontsize=16,color="magenta"];413 -> 699[label="",style="dashed", color="magenta", weight=3]; 413 -> 700[label="",style="dashed", color="magenta", weight=3]; 414 -> 47[label="",style="dashed", color="red", weight=0]; 414[label="vxw301 == vxw4001",fontsize=16,color="magenta"];414 -> 701[label="",style="dashed", color="magenta", weight=3]; 414 -> 702[label="",style="dashed", color="magenta", weight=3]; 415[label="vxw301 * vxw4000",fontsize=16,color="black",shape="triangle"];415 -> 703[label="",style="solid", color="black", weight=3]; 416 -> 415[label="",style="dashed", color="red", weight=0]; 416[label="vxw300 * vxw4001",fontsize=16,color="magenta"];416 -> 704[label="",style="dashed", color="magenta", weight=3]; 416 -> 705[label="",style="dashed", color="magenta", weight=3]; 417 -> 34[label="",style="dashed", color="red", weight=0]; 417[label="vxw300 == vxw4000",fontsize=16,color="magenta"];417 -> 706[label="",style="dashed", color="magenta", weight=3]; 417 -> 707[label="",style="dashed", color="magenta", weight=3]; 418 -> 35[label="",style="dashed", color="red", weight=0]; 418[label="vxw300 == vxw4000",fontsize=16,color="magenta"];418 -> 708[label="",style="dashed", color="magenta", weight=3]; 418 -> 709[label="",style="dashed", color="magenta", weight=3]; 419 -> 36[label="",style="dashed", color="red", weight=0]; 419[label="vxw300 == vxw4000",fontsize=16,color="magenta"];419 -> 710[label="",style="dashed", color="magenta", weight=3]; 419 -> 711[label="",style="dashed", color="magenta", weight=3]; 420 -> 37[label="",style="dashed", color="red", weight=0]; 420[label="vxw300 == vxw4000",fontsize=16,color="magenta"];420 -> 712[label="",style="dashed", color="magenta", weight=3]; 420 -> 713[label="",style="dashed", color="magenta", weight=3]; 421 -> 38[label="",style="dashed", color="red", weight=0]; 421[label="vxw300 == vxw4000",fontsize=16,color="magenta"];421 -> 714[label="",style="dashed", color="magenta", weight=3]; 421 -> 715[label="",style="dashed", color="magenta", weight=3]; 422 -> 39[label="",style="dashed", color="red", weight=0]; 422[label="vxw300 == vxw4000",fontsize=16,color="magenta"];422 -> 716[label="",style="dashed", color="magenta", weight=3]; 422 -> 717[label="",style="dashed", color="magenta", weight=3]; 423 -> 40[label="",style="dashed", color="red", weight=0]; 423[label="vxw300 == vxw4000",fontsize=16,color="magenta"];423 -> 718[label="",style="dashed", color="magenta", weight=3]; 423 -> 719[label="",style="dashed", color="magenta", weight=3]; 424 -> 41[label="",style="dashed", color="red", weight=0]; 424[label="vxw300 == vxw4000",fontsize=16,color="magenta"];424 -> 720[label="",style="dashed", color="magenta", weight=3]; 424 -> 721[label="",style="dashed", color="magenta", weight=3]; 425 -> 42[label="",style="dashed", color="red", weight=0]; 425[label="vxw300 == vxw4000",fontsize=16,color="magenta"];425 -> 722[label="",style="dashed", color="magenta", weight=3]; 425 -> 723[label="",style="dashed", color="magenta", weight=3]; 426 -> 43[label="",style="dashed", color="red", weight=0]; 426[label="vxw300 == vxw4000",fontsize=16,color="magenta"];426 -> 724[label="",style="dashed", color="magenta", weight=3]; 426 -> 725[label="",style="dashed", color="magenta", weight=3]; 427 -> 44[label="",style="dashed", color="red", weight=0]; 427[label="vxw300 == vxw4000",fontsize=16,color="magenta"];427 -> 726[label="",style="dashed", color="magenta", weight=3]; 427 -> 727[label="",style="dashed", color="magenta", weight=3]; 428 -> 45[label="",style="dashed", color="red", weight=0]; 428[label="vxw300 == vxw4000",fontsize=16,color="magenta"];428 -> 728[label="",style="dashed", color="magenta", weight=3]; 428 -> 729[label="",style="dashed", color="magenta", weight=3]; 429 -> 46[label="",style="dashed", color="red", weight=0]; 429[label="vxw300 == vxw4000",fontsize=16,color="magenta"];429 -> 730[label="",style="dashed", color="magenta", weight=3]; 429 -> 731[label="",style="dashed", color="magenta", weight=3]; 430 -> 47[label="",style="dashed", color="red", weight=0]; 430[label="vxw300 == vxw4000",fontsize=16,color="magenta"];430 -> 732[label="",style="dashed", color="magenta", weight=3]; 430 -> 733[label="",style="dashed", color="magenta", weight=3]; 431[label="vxw4001",fontsize=16,color="green",shape="box"];432[label="vxw301",fontsize=16,color="green",shape="box"];433[label="vxw4000",fontsize=16,color="green",shape="box"];434[label="vxw300",fontsize=16,color="green",shape="box"];435[label="vxw4000",fontsize=16,color="green",shape="box"];436[label="vxw300",fontsize=16,color="green",shape="box"];437[label="vxw4000",fontsize=16,color="green",shape="box"];438[label="vxw300",fontsize=16,color="green",shape="box"];439[label="vxw4000",fontsize=16,color="green",shape="box"];440[label="vxw300",fontsize=16,color="green",shape="box"];441[label="vxw4000",fontsize=16,color="green",shape="box"];442[label="vxw300",fontsize=16,color="green",shape="box"];443[label="vxw4000",fontsize=16,color="green",shape="box"];444[label="vxw300",fontsize=16,color="green",shape="box"];445[label="vxw4000",fontsize=16,color="green",shape="box"];446[label="vxw300",fontsize=16,color="green",shape="box"];447[label="vxw4000",fontsize=16,color="green",shape="box"];448[label="vxw300",fontsize=16,color="green",shape="box"];449[label="vxw4000",fontsize=16,color="green",shape="box"];450[label="vxw300",fontsize=16,color="green",shape="box"];451[label="vxw4000",fontsize=16,color="green",shape="box"];452[label="vxw300",fontsize=16,color="green",shape="box"];453[label="vxw4000",fontsize=16,color="green",shape="box"];454[label="vxw300",fontsize=16,color="green",shape="box"];455[label="vxw4000",fontsize=16,color="green",shape="box"];456[label="vxw300",fontsize=16,color="green",shape="box"];457[label="vxw4000",fontsize=16,color="green",shape="box"];458[label="vxw300",fontsize=16,color="green",shape="box"];459[label="vxw4000",fontsize=16,color="green",shape="box"];460[label="vxw300",fontsize=16,color="green",shape="box"];461[label="vxw4000",fontsize=16,color="green",shape="box"];462[label="vxw300",fontsize=16,color="green",shape="box"];463[label="vxw4000",fontsize=16,color="green",shape="box"];464[label="vxw300",fontsize=16,color="green",shape="box"];465[label="vxw4000",fontsize=16,color="green",shape="box"];466[label="vxw300",fontsize=16,color="green",shape="box"];467[label="vxw4000",fontsize=16,color="green",shape="box"];468[label="vxw300",fontsize=16,color="green",shape="box"];469[label="vxw4000",fontsize=16,color="green",shape="box"];470[label="vxw300",fontsize=16,color="green",shape="box"];471[label="vxw4000",fontsize=16,color="green",shape="box"];472[label="vxw300",fontsize=16,color="green",shape="box"];473[label="vxw4000",fontsize=16,color="green",shape="box"];474[label="vxw300",fontsize=16,color="green",shape="box"];475[label="vxw4000",fontsize=16,color="green",shape="box"];476[label="vxw300",fontsize=16,color="green",shape="box"];477[label="vxw4000",fontsize=16,color="green",shape="box"];478[label="vxw300",fontsize=16,color="green",shape="box"];479[label="vxw4000",fontsize=16,color="green",shape="box"];480[label="vxw300",fontsize=16,color="green",shape="box"];481[label="vxw4000",fontsize=16,color="green",shape="box"];482[label="vxw300",fontsize=16,color="green",shape="box"];483[label="vxw4000",fontsize=16,color="green",shape="box"];484[label="vxw300",fontsize=16,color="green",shape="box"];485[label="vxw4000",fontsize=16,color="green",shape="box"];486[label="vxw300",fontsize=16,color="green",shape="box"];487[label="vxw4000",fontsize=16,color="green",shape="box"];488[label="vxw300",fontsize=16,color="green",shape="box"];489[label="primEqNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];2126[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];489 -> 2126[label="",style="solid", color="burlywood", weight=9]; 2126 -> 734[label="",style="solid", color="burlywood", weight=3]; 2127[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];489 -> 2127[label="",style="solid", color="burlywood", weight=9]; 2127 -> 735[label="",style="solid", color="burlywood", weight=3]; 490[label="primEqNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];2128[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];490 -> 2128[label="",style="solid", color="burlywood", weight=9]; 2128 -> 736[label="",style="solid", color="burlywood", weight=3]; 2129[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];490 -> 2129[label="",style="solid", color="burlywood", weight=9]; 2129 -> 737[label="",style="solid", color="burlywood", weight=3]; 491 -> 34[label="",style="dashed", color="red", weight=0]; 491[label="vxw300 == vxw4000",fontsize=16,color="magenta"];491 -> 738[label="",style="dashed", color="magenta", weight=3]; 491 -> 739[label="",style="dashed", color="magenta", weight=3]; 492 -> 41[label="",style="dashed", color="red", weight=0]; 492[label="vxw300 == vxw4000",fontsize=16,color="magenta"];492 -> 740[label="",style="dashed", color="magenta", weight=3]; 492 -> 741[label="",style="dashed", color="magenta", weight=3]; 493 -> 34[label="",style="dashed", color="red", weight=0]; 493[label="vxw301 == vxw4001",fontsize=16,color="magenta"];493 -> 742[label="",style="dashed", color="magenta", weight=3]; 493 -> 743[label="",style="dashed", color="magenta", weight=3]; 494 -> 41[label="",style="dashed", color="red", weight=0]; 494[label="vxw301 == vxw4001",fontsize=16,color="magenta"];494 -> 744[label="",style="dashed", color="magenta", weight=3]; 494 -> 745[label="",style="dashed", color="magenta", weight=3]; 495[label="vxw4000",fontsize=16,color="green",shape="box"];496[label="vxw300",fontsize=16,color="green",shape="box"];497[label="vxw4000",fontsize=16,color="green",shape="box"];498[label="vxw300",fontsize=16,color="green",shape="box"];499[label="vxw4000",fontsize=16,color="green",shape="box"];500[label="vxw300",fontsize=16,color="green",shape="box"];501[label="vxw4000",fontsize=16,color="green",shape="box"];502[label="vxw300",fontsize=16,color="green",shape="box"];503[label="vxw4000",fontsize=16,color="green",shape="box"];504[label="vxw300",fontsize=16,color="green",shape="box"];505[label="vxw4000",fontsize=16,color="green",shape="box"];506[label="vxw300",fontsize=16,color="green",shape="box"];507[label="vxw4000",fontsize=16,color="green",shape="box"];508[label="vxw300",fontsize=16,color="green",shape="box"];509[label="vxw4000",fontsize=16,color="green",shape="box"];510[label="vxw300",fontsize=16,color="green",shape="box"];511[label="vxw4000",fontsize=16,color="green",shape="box"];512[label="vxw300",fontsize=16,color="green",shape="box"];513[label="vxw4000",fontsize=16,color="green",shape="box"];514[label="vxw300",fontsize=16,color="green",shape="box"];515[label="vxw4000",fontsize=16,color="green",shape="box"];516[label="vxw300",fontsize=16,color="green",shape="box"];517[label="vxw4000",fontsize=16,color="green",shape="box"];518[label="vxw300",fontsize=16,color="green",shape="box"];519[label="vxw4000",fontsize=16,color="green",shape="box"];520[label="vxw300",fontsize=16,color="green",shape="box"];521[label="vxw4000",fontsize=16,color="green",shape="box"];522[label="vxw300",fontsize=16,color="green",shape="box"];523 -> 415[label="",style="dashed", color="red", weight=0]; 523[label="vxw301 * vxw4000",fontsize=16,color="magenta"];523 -> 746[label="",style="dashed", color="magenta", weight=3]; 523 -> 747[label="",style="dashed", color="magenta", weight=3]; 524 -> 415[label="",style="dashed", color="red", weight=0]; 524[label="vxw300 * vxw4001",fontsize=16,color="magenta"];524 -> 748[label="",style="dashed", color="magenta", weight=3]; 524 -> 749[label="",style="dashed", color="magenta", weight=3]; 525[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];525 -> 750[label="",style="solid", color="black", weight=3]; 526[label="LT <= vxw10",fontsize=16,color="burlywood",shape="box"];2130[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];526 -> 2130[label="",style="solid", color="burlywood", weight=9]; 2130 -> 751[label="",style="solid", color="burlywood", weight=3]; 2131[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];526 -> 2131[label="",style="solid", color="burlywood", weight=9]; 2131 -> 752[label="",style="solid", color="burlywood", weight=3]; 2132[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];526 -> 2132[label="",style="solid", color="burlywood", weight=9]; 2132 -> 753[label="",style="solid", color="burlywood", weight=3]; 527[label="EQ <= vxw10",fontsize=16,color="burlywood",shape="box"];2133[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];527 -> 2133[label="",style="solid", color="burlywood", weight=9]; 2133 -> 754[label="",style="solid", color="burlywood", weight=3]; 2134[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];527 -> 2134[label="",style="solid", color="burlywood", weight=9]; 2134 -> 755[label="",style="solid", color="burlywood", weight=3]; 2135[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];527 -> 2135[label="",style="solid", color="burlywood", weight=9]; 2135 -> 756[label="",style="solid", color="burlywood", weight=3]; 528[label="GT <= vxw10",fontsize=16,color="burlywood",shape="box"];2136[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];528 -> 2136[label="",style="solid", color="burlywood", weight=9]; 2136 -> 757[label="",style="solid", color="burlywood", weight=3]; 2137[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];528 -> 2137[label="",style="solid", color="burlywood", weight=9]; 2137 -> 758[label="",style="solid", color="burlywood", weight=3]; 2138[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];528 -> 2138[label="",style="solid", color="burlywood", weight=9]; 2138 -> 759[label="",style="solid", color="burlywood", weight=3]; 529[label="(vxw110,vxw111,vxw112) <= vxw10",fontsize=16,color="burlywood",shape="box"];2139[label="vxw10/(vxw100,vxw101,vxw102)",fontsize=10,color="white",style="solid",shape="box"];529 -> 2139[label="",style="solid", color="burlywood", weight=9]; 2139 -> 760[label="",style="solid", color="burlywood", weight=3]; 530[label="(vxw110,vxw111) <= vxw10",fontsize=16,color="burlywood",shape="box"];2140[label="vxw10/(vxw100,vxw101)",fontsize=10,color="white",style="solid",shape="box"];530 -> 2140[label="",style="solid", color="burlywood", weight=9]; 2140 -> 761[label="",style="solid", color="burlywood", weight=3]; 531[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];531 -> 762[label="",style="solid", color="black", weight=3]; 532[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];532 -> 763[label="",style="solid", color="black", weight=3]; 533[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];533 -> 764[label="",style="solid", color="black", weight=3]; 534[label="False <= vxw10",fontsize=16,color="burlywood",shape="box"];2141[label="vxw10/False",fontsize=10,color="white",style="solid",shape="box"];534 -> 2141[label="",style="solid", color="burlywood", weight=9]; 2141 -> 765[label="",style="solid", color="burlywood", weight=3]; 2142[label="vxw10/True",fontsize=10,color="white",style="solid",shape="box"];534 -> 2142[label="",style="solid", color="burlywood", weight=9]; 2142 -> 766[label="",style="solid", color="burlywood", weight=3]; 535[label="True <= vxw10",fontsize=16,color="burlywood",shape="box"];2143[label="vxw10/False",fontsize=10,color="white",style="solid",shape="box"];535 -> 2143[label="",style="solid", color="burlywood", weight=9]; 2143 -> 767[label="",style="solid", color="burlywood", weight=3]; 2144[label="vxw10/True",fontsize=10,color="white",style="solid",shape="box"];535 -> 2144[label="",style="solid", color="burlywood", weight=9]; 2144 -> 768[label="",style="solid", color="burlywood", weight=3]; 536[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];536 -> 769[label="",style="solid", color="black", weight=3]; 537[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];537 -> 770[label="",style="solid", color="black", weight=3]; 538[label="Left vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];2145[label="vxw10/Left vxw100",fontsize=10,color="white",style="solid",shape="box"];538 -> 2145[label="",style="solid", color="burlywood", weight=9]; 2145 -> 771[label="",style="solid", color="burlywood", weight=3]; 2146[label="vxw10/Right vxw100",fontsize=10,color="white",style="solid",shape="box"];538 -> 2146[label="",style="solid", color="burlywood", weight=9]; 2146 -> 772[label="",style="solid", color="burlywood", weight=3]; 539[label="Right vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];2147[label="vxw10/Left vxw100",fontsize=10,color="white",style="solid",shape="box"];539 -> 2147[label="",style="solid", color="burlywood", weight=9]; 2147 -> 773[label="",style="solid", color="burlywood", weight=3]; 2148[label="vxw10/Right vxw100",fontsize=10,color="white",style="solid",shape="box"];539 -> 2148[label="",style="solid", color="burlywood", weight=9]; 2148 -> 774[label="",style="solid", color="burlywood", weight=3]; 540[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];540 -> 775[label="",style="solid", color="black", weight=3]; 541[label="Nothing <= vxw10",fontsize=16,color="burlywood",shape="box"];2149[label="vxw10/Nothing",fontsize=10,color="white",style="solid",shape="box"];541 -> 2149[label="",style="solid", color="burlywood", weight=9]; 2149 -> 776[label="",style="solid", color="burlywood", weight=3]; 2150[label="vxw10/Just vxw100",fontsize=10,color="white",style="solid",shape="box"];541 -> 2150[label="",style="solid", color="burlywood", weight=9]; 2150 -> 777[label="",style="solid", color="burlywood", weight=3]; 542[label="Just vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];2151[label="vxw10/Nothing",fontsize=10,color="white",style="solid",shape="box"];542 -> 2151[label="",style="solid", color="burlywood", weight=9]; 2151 -> 778[label="",style="solid", color="burlywood", weight=3]; 2152[label="vxw10/Just vxw100",fontsize=10,color="white",style="solid",shape="box"];542 -> 2152[label="",style="solid", color="burlywood", weight=9]; 2152 -> 779[label="",style="solid", color="burlywood", weight=3]; 543[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];543 -> 780[label="",style="solid", color="black", weight=3]; 544[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare0 (Left vxw29) (Left vxw28) True)",fontsize=16,color="black",shape="box"];544 -> 781[label="",style="solid", color="black", weight=3]; 545[label="Left vxw29 : Left vxw28 : vxw30",fontsize=16,color="green",shape="box"];546 -> 5[label="",style="dashed", color="red", weight=0]; 546[label="List.insertBy compare (Right vxw30) vxw41",fontsize=16,color="magenta"];546 -> 782[label="",style="dashed", color="magenta", weight=3]; 546 -> 783[label="",style="dashed", color="magenta", weight=3]; 547[label="vxw20",fontsize=16,color="green",shape="box"];548[label="vxw19",fontsize=16,color="green",shape="box"];549[label="vxw20",fontsize=16,color="green",shape="box"];550[label="vxw19",fontsize=16,color="green",shape="box"];551[label="vxw20",fontsize=16,color="green",shape="box"];552[label="vxw19",fontsize=16,color="green",shape="box"];553[label="vxw20",fontsize=16,color="green",shape="box"];554[label="vxw19",fontsize=16,color="green",shape="box"];555[label="vxw20",fontsize=16,color="green",shape="box"];556[label="vxw19",fontsize=16,color="green",shape="box"];557[label="vxw20",fontsize=16,color="green",shape="box"];558[label="vxw19",fontsize=16,color="green",shape="box"];559[label="vxw20",fontsize=16,color="green",shape="box"];560[label="vxw19",fontsize=16,color="green",shape="box"];561[label="vxw20",fontsize=16,color="green",shape="box"];562[label="vxw19",fontsize=16,color="green",shape="box"];563[label="vxw20",fontsize=16,color="green",shape="box"];564[label="vxw19",fontsize=16,color="green",shape="box"];565[label="vxw20",fontsize=16,color="green",shape="box"];566[label="vxw19",fontsize=16,color="green",shape="box"];567[label="vxw20",fontsize=16,color="green",shape="box"];568[label="vxw19",fontsize=16,color="green",shape="box"];569[label="vxw20",fontsize=16,color="green",shape="box"];570[label="vxw19",fontsize=16,color="green",shape="box"];571[label="vxw20",fontsize=16,color="green",shape="box"];572[label="vxw19",fontsize=16,color="green",shape="box"];573[label="vxw20",fontsize=16,color="green",shape="box"];574[label="vxw19",fontsize=16,color="green",shape="box"];575[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare0 (Right vxw38) (Right vxw37) True)",fontsize=16,color="black",shape="box"];575 -> 784[label="",style="solid", color="black", weight=3]; 576[label="Right vxw38 : Right vxw37 : vxw39",fontsize=16,color="green",shape="box"];577 -> 280[label="",style="dashed", color="red", weight=0]; 577[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];577 -> 785[label="",style="dashed", color="magenta", weight=3]; 577 -> 786[label="",style="dashed", color="magenta", weight=3]; 578[label="False",fontsize=16,color="green",shape="box"];579[label="False",fontsize=16,color="green",shape="box"];580[label="True",fontsize=16,color="green",shape="box"];581[label="False",fontsize=16,color="green",shape="box"];582[label="True",fontsize=16,color="green",shape="box"];583 -> 280[label="",style="dashed", color="red", weight=0]; 583[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];583 -> 787[label="",style="dashed", color="magenta", weight=3]; 583 -> 788[label="",style="dashed", color="magenta", weight=3]; 584[label="False",fontsize=16,color="green",shape="box"];585[label="False",fontsize=16,color="green",shape="box"];586[label="True",fontsize=16,color="green",shape="box"];587[label="False",fontsize=16,color="green",shape="box"];588[label="True",fontsize=16,color="green",shape="box"];589[label="vxw4000",fontsize=16,color="green",shape="box"];590[label="vxw300",fontsize=16,color="green",shape="box"];591[label="vxw4000",fontsize=16,color="green",shape="box"];592[label="vxw300",fontsize=16,color="green",shape="box"];593[label="vxw4000",fontsize=16,color="green",shape="box"];594[label="vxw300",fontsize=16,color="green",shape="box"];595[label="vxw4000",fontsize=16,color="green",shape="box"];596[label="vxw300",fontsize=16,color="green",shape="box"];597[label="vxw4000",fontsize=16,color="green",shape="box"];598[label="vxw300",fontsize=16,color="green",shape="box"];599[label="vxw4000",fontsize=16,color="green",shape="box"];600[label="vxw300",fontsize=16,color="green",shape="box"];601[label="vxw4000",fontsize=16,color="green",shape="box"];602[label="vxw300",fontsize=16,color="green",shape="box"];603[label="vxw4000",fontsize=16,color="green",shape="box"];604[label="vxw300",fontsize=16,color="green",shape="box"];605[label="vxw4000",fontsize=16,color="green",shape="box"];606[label="vxw300",fontsize=16,color="green",shape="box"];607[label="vxw4000",fontsize=16,color="green",shape="box"];608[label="vxw300",fontsize=16,color="green",shape="box"];609[label="vxw4000",fontsize=16,color="green",shape="box"];610[label="vxw300",fontsize=16,color="green",shape="box"];611[label="vxw4000",fontsize=16,color="green",shape="box"];612[label="vxw300",fontsize=16,color="green",shape="box"];613[label="vxw4000",fontsize=16,color="green",shape="box"];614[label="vxw300",fontsize=16,color="green",shape="box"];615[label="vxw4000",fontsize=16,color="green",shape="box"];616[label="vxw300",fontsize=16,color="green",shape="box"];617 -> 34[label="",style="dashed", color="red", weight=0]; 617[label="vxw301 == vxw4001",fontsize=16,color="magenta"];617 -> 789[label="",style="dashed", color="magenta", weight=3]; 617 -> 790[label="",style="dashed", color="magenta", weight=3]; 618 -> 35[label="",style="dashed", color="red", weight=0]; 618[label="vxw301 == vxw4001",fontsize=16,color="magenta"];618 -> 791[label="",style="dashed", color="magenta", weight=3]; 618 -> 792[label="",style="dashed", color="magenta", weight=3]; 619 -> 36[label="",style="dashed", color="red", weight=0]; 619[label="vxw301 == vxw4001",fontsize=16,color="magenta"];619 -> 793[label="",style="dashed", color="magenta", weight=3]; 619 -> 794[label="",style="dashed", color="magenta", weight=3]; 620 -> 37[label="",style="dashed", color="red", weight=0]; 620[label="vxw301 == vxw4001",fontsize=16,color="magenta"];620 -> 795[label="",style="dashed", color="magenta", weight=3]; 620 -> 796[label="",style="dashed", color="magenta", weight=3]; 621 -> 38[label="",style="dashed", color="red", weight=0]; 621[label="vxw301 == vxw4001",fontsize=16,color="magenta"];621 -> 797[label="",style="dashed", color="magenta", weight=3]; 621 -> 798[label="",style="dashed", color="magenta", weight=3]; 622 -> 39[label="",style="dashed", color="red", weight=0]; 622[label="vxw301 == vxw4001",fontsize=16,color="magenta"];622 -> 799[label="",style="dashed", color="magenta", weight=3]; 622 -> 800[label="",style="dashed", color="magenta", weight=3]; 623 -> 40[label="",style="dashed", color="red", weight=0]; 623[label="vxw301 == vxw4001",fontsize=16,color="magenta"];623 -> 801[label="",style="dashed", color="magenta", weight=3]; 623 -> 802[label="",style="dashed", color="magenta", weight=3]; 624 -> 41[label="",style="dashed", color="red", weight=0]; 624[label="vxw301 == vxw4001",fontsize=16,color="magenta"];624 -> 803[label="",style="dashed", color="magenta", weight=3]; 624 -> 804[label="",style="dashed", color="magenta", weight=3]; 625 -> 42[label="",style="dashed", color="red", weight=0]; 625[label="vxw301 == vxw4001",fontsize=16,color="magenta"];625 -> 805[label="",style="dashed", color="magenta", weight=3]; 625 -> 806[label="",style="dashed", color="magenta", weight=3]; 626 -> 43[label="",style="dashed", color="red", weight=0]; 626[label="vxw301 == vxw4001",fontsize=16,color="magenta"];626 -> 807[label="",style="dashed", color="magenta", weight=3]; 626 -> 808[label="",style="dashed", color="magenta", weight=3]; 627 -> 44[label="",style="dashed", color="red", weight=0]; 627[label="vxw301 == vxw4001",fontsize=16,color="magenta"];627 -> 809[label="",style="dashed", color="magenta", weight=3]; 627 -> 810[label="",style="dashed", color="magenta", weight=3]; 628 -> 45[label="",style="dashed", color="red", weight=0]; 628[label="vxw301 == vxw4001",fontsize=16,color="magenta"];628 -> 811[label="",style="dashed", color="magenta", weight=3]; 628 -> 812[label="",style="dashed", color="magenta", weight=3]; 629 -> 46[label="",style="dashed", color="red", weight=0]; 629[label="vxw301 == vxw4001",fontsize=16,color="magenta"];629 -> 813[label="",style="dashed", color="magenta", weight=3]; 629 -> 814[label="",style="dashed", color="magenta", weight=3]; 630 -> 47[label="",style="dashed", color="red", weight=0]; 630[label="vxw301 == vxw4001",fontsize=16,color="magenta"];630 -> 815[label="",style="dashed", color="magenta", weight=3]; 630 -> 816[label="",style="dashed", color="magenta", weight=3]; 631 -> 34[label="",style="dashed", color="red", weight=0]; 631[label="vxw302 == vxw4002",fontsize=16,color="magenta"];631 -> 817[label="",style="dashed", color="magenta", weight=3]; 631 -> 818[label="",style="dashed", color="magenta", weight=3]; 632 -> 35[label="",style="dashed", color="red", weight=0]; 632[label="vxw302 == vxw4002",fontsize=16,color="magenta"];632 -> 819[label="",style="dashed", color="magenta", weight=3]; 632 -> 820[label="",style="dashed", color="magenta", weight=3]; 633 -> 36[label="",style="dashed", color="red", weight=0]; 633[label="vxw302 == vxw4002",fontsize=16,color="magenta"];633 -> 821[label="",style="dashed", color="magenta", weight=3]; 633 -> 822[label="",style="dashed", color="magenta", weight=3]; 634 -> 37[label="",style="dashed", color="red", weight=0]; 634[label="vxw302 == vxw4002",fontsize=16,color="magenta"];634 -> 823[label="",style="dashed", color="magenta", weight=3]; 634 -> 824[label="",style="dashed", color="magenta", weight=3]; 635 -> 38[label="",style="dashed", color="red", weight=0]; 635[label="vxw302 == vxw4002",fontsize=16,color="magenta"];635 -> 825[label="",style="dashed", color="magenta", weight=3]; 635 -> 826[label="",style="dashed", color="magenta", weight=3]; 636 -> 39[label="",style="dashed", color="red", weight=0]; 636[label="vxw302 == vxw4002",fontsize=16,color="magenta"];636 -> 827[label="",style="dashed", color="magenta", weight=3]; 636 -> 828[label="",style="dashed", color="magenta", weight=3]; 637 -> 40[label="",style="dashed", color="red", weight=0]; 637[label="vxw302 == vxw4002",fontsize=16,color="magenta"];637 -> 829[label="",style="dashed", color="magenta", weight=3]; 637 -> 830[label="",style="dashed", color="magenta", weight=3]; 638 -> 41[label="",style="dashed", color="red", weight=0]; 638[label="vxw302 == vxw4002",fontsize=16,color="magenta"];638 -> 831[label="",style="dashed", color="magenta", weight=3]; 638 -> 832[label="",style="dashed", color="magenta", weight=3]; 639 -> 42[label="",style="dashed", color="red", weight=0]; 639[label="vxw302 == vxw4002",fontsize=16,color="magenta"];639 -> 833[label="",style="dashed", color="magenta", weight=3]; 639 -> 834[label="",style="dashed", color="magenta", weight=3]; 640 -> 43[label="",style="dashed", color="red", weight=0]; 640[label="vxw302 == vxw4002",fontsize=16,color="magenta"];640 -> 835[label="",style="dashed", color="magenta", weight=3]; 640 -> 836[label="",style="dashed", color="magenta", weight=3]; 641 -> 44[label="",style="dashed", color="red", weight=0]; 641[label="vxw302 == vxw4002",fontsize=16,color="magenta"];641 -> 837[label="",style="dashed", color="magenta", weight=3]; 641 -> 838[label="",style="dashed", color="magenta", weight=3]; 642 -> 45[label="",style="dashed", color="red", weight=0]; 642[label="vxw302 == vxw4002",fontsize=16,color="magenta"];642 -> 839[label="",style="dashed", color="magenta", weight=3]; 642 -> 840[label="",style="dashed", color="magenta", weight=3]; 643 -> 46[label="",style="dashed", color="red", weight=0]; 643[label="vxw302 == vxw4002",fontsize=16,color="magenta"];643 -> 841[label="",style="dashed", color="magenta", weight=3]; 643 -> 842[label="",style="dashed", color="magenta", weight=3]; 644 -> 47[label="",style="dashed", color="red", weight=0]; 644[label="vxw302 == vxw4002",fontsize=16,color="magenta"];644 -> 843[label="",style="dashed", color="magenta", weight=3]; 644 -> 844[label="",style="dashed", color="magenta", weight=3]; 645[label="False",fontsize=16,color="green",shape="box"];646[label="vxw59",fontsize=16,color="green",shape="box"];647[label="vxw4000",fontsize=16,color="green",shape="box"];648[label="vxw300",fontsize=16,color="green",shape="box"];649[label="vxw4000",fontsize=16,color="green",shape="box"];650[label="vxw300",fontsize=16,color="green",shape="box"];651[label="vxw4000",fontsize=16,color="green",shape="box"];652[label="vxw300",fontsize=16,color="green",shape="box"];653[label="vxw4000",fontsize=16,color="green",shape="box"];654[label="vxw300",fontsize=16,color="green",shape="box"];655[label="vxw4000",fontsize=16,color="green",shape="box"];656[label="vxw300",fontsize=16,color="green",shape="box"];657[label="vxw4000",fontsize=16,color="green",shape="box"];658[label="vxw300",fontsize=16,color="green",shape="box"];659[label="vxw4000",fontsize=16,color="green",shape="box"];660[label="vxw300",fontsize=16,color="green",shape="box"];661[label="vxw4000",fontsize=16,color="green",shape="box"];662[label="vxw300",fontsize=16,color="green",shape="box"];663[label="vxw4000",fontsize=16,color="green",shape="box"];664[label="vxw300",fontsize=16,color="green",shape="box"];665[label="vxw4000",fontsize=16,color="green",shape="box"];666[label="vxw300",fontsize=16,color="green",shape="box"];667[label="vxw4000",fontsize=16,color="green",shape="box"];668[label="vxw300",fontsize=16,color="green",shape="box"];669[label="vxw4000",fontsize=16,color="green",shape="box"];670[label="vxw300",fontsize=16,color="green",shape="box"];671[label="vxw4000",fontsize=16,color="green",shape="box"];672[label="vxw300",fontsize=16,color="green",shape="box"];673[label="vxw4000",fontsize=16,color="green",shape="box"];674[label="vxw300",fontsize=16,color="green",shape="box"];675[label="vxw4001",fontsize=16,color="green",shape="box"];676[label="vxw301",fontsize=16,color="green",shape="box"];677[label="vxw4001",fontsize=16,color="green",shape="box"];678[label="vxw301",fontsize=16,color="green",shape="box"];679[label="vxw4001",fontsize=16,color="green",shape="box"];680[label="vxw301",fontsize=16,color="green",shape="box"];681[label="vxw4001",fontsize=16,color="green",shape="box"];682[label="vxw301",fontsize=16,color="green",shape="box"];683[label="vxw4001",fontsize=16,color="green",shape="box"];684[label="vxw301",fontsize=16,color="green",shape="box"];685[label="vxw4001",fontsize=16,color="green",shape="box"];686[label="vxw301",fontsize=16,color="green",shape="box"];687[label="vxw4001",fontsize=16,color="green",shape="box"];688[label="vxw301",fontsize=16,color="green",shape="box"];689[label="vxw4001",fontsize=16,color="green",shape="box"];690[label="vxw301",fontsize=16,color="green",shape="box"];691[label="vxw4001",fontsize=16,color="green",shape="box"];692[label="vxw301",fontsize=16,color="green",shape="box"];693[label="vxw4001",fontsize=16,color="green",shape="box"];694[label="vxw301",fontsize=16,color="green",shape="box"];695[label="vxw4001",fontsize=16,color="green",shape="box"];696[label="vxw301",fontsize=16,color="green",shape="box"];697[label="vxw4001",fontsize=16,color="green",shape="box"];698[label="vxw301",fontsize=16,color="green",shape="box"];699[label="vxw4001",fontsize=16,color="green",shape="box"];700[label="vxw301",fontsize=16,color="green",shape="box"];701[label="vxw4001",fontsize=16,color="green",shape="box"];702[label="vxw301",fontsize=16,color="green",shape="box"];703[label="primMulInt vxw301 vxw4000",fontsize=16,color="burlywood",shape="triangle"];2153[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];703 -> 2153[label="",style="solid", color="burlywood", weight=9]; 2153 -> 845[label="",style="solid", color="burlywood", weight=3]; 2154[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];703 -> 2154[label="",style="solid", color="burlywood", weight=9]; 2154 -> 846[label="",style="solid", color="burlywood", weight=3]; 704[label="vxw300",fontsize=16,color="green",shape="box"];705[label="vxw4001",fontsize=16,color="green",shape="box"];706[label="vxw4000",fontsize=16,color="green",shape="box"];707[label="vxw300",fontsize=16,color="green",shape="box"];708[label="vxw4000",fontsize=16,color="green",shape="box"];709[label="vxw300",fontsize=16,color="green",shape="box"];710[label="vxw4000",fontsize=16,color="green",shape="box"];711[label="vxw300",fontsize=16,color="green",shape="box"];712[label="vxw4000",fontsize=16,color="green",shape="box"];713[label="vxw300",fontsize=16,color="green",shape="box"];714[label="vxw4000",fontsize=16,color="green",shape="box"];715[label="vxw300",fontsize=16,color="green",shape="box"];716[label="vxw4000",fontsize=16,color="green",shape="box"];717[label="vxw300",fontsize=16,color="green",shape="box"];718[label="vxw4000",fontsize=16,color="green",shape="box"];719[label="vxw300",fontsize=16,color="green",shape="box"];720[label="vxw4000",fontsize=16,color="green",shape="box"];721[label="vxw300",fontsize=16,color="green",shape="box"];722[label="vxw4000",fontsize=16,color="green",shape="box"];723[label="vxw300",fontsize=16,color="green",shape="box"];724[label="vxw4000",fontsize=16,color="green",shape="box"];725[label="vxw300",fontsize=16,color="green",shape="box"];726[label="vxw4000",fontsize=16,color="green",shape="box"];727[label="vxw300",fontsize=16,color="green",shape="box"];728[label="vxw4000",fontsize=16,color="green",shape="box"];729[label="vxw300",fontsize=16,color="green",shape="box"];730[label="vxw4000",fontsize=16,color="green",shape="box"];731[label="vxw300",fontsize=16,color="green",shape="box"];732[label="vxw4000",fontsize=16,color="green",shape="box"];733[label="vxw300",fontsize=16,color="green",shape="box"];734[label="primEqNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];734 -> 847[label="",style="solid", color="black", weight=3]; 735[label="primEqNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];735 -> 848[label="",style="solid", color="black", weight=3]; 736[label="primEqNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];736 -> 849[label="",style="solid", color="black", weight=3]; 737[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];737 -> 850[label="",style="solid", color="black", weight=3]; 738[label="vxw4000",fontsize=16,color="green",shape="box"];739[label="vxw300",fontsize=16,color="green",shape="box"];740[label="vxw4000",fontsize=16,color="green",shape="box"];741[label="vxw300",fontsize=16,color="green",shape="box"];742[label="vxw4001",fontsize=16,color="green",shape="box"];743[label="vxw301",fontsize=16,color="green",shape="box"];744[label="vxw4001",fontsize=16,color="green",shape="box"];745[label="vxw301",fontsize=16,color="green",shape="box"];746[label="vxw301",fontsize=16,color="green",shape="box"];747[label="vxw4000",fontsize=16,color="green",shape="box"];748[label="vxw300",fontsize=16,color="green",shape="box"];749[label="vxw4001",fontsize=16,color="green",shape="box"];750 -> 851[label="",style="dashed", color="red", weight=0]; 750[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];750 -> 852[label="",style="dashed", color="magenta", weight=3]; 751[label="LT <= LT",fontsize=16,color="black",shape="box"];751 -> 860[label="",style="solid", color="black", weight=3]; 752[label="LT <= EQ",fontsize=16,color="black",shape="box"];752 -> 861[label="",style="solid", color="black", weight=3]; 753[label="LT <= GT",fontsize=16,color="black",shape="box"];753 -> 862[label="",style="solid", color="black", weight=3]; 754[label="EQ <= LT",fontsize=16,color="black",shape="box"];754 -> 863[label="",style="solid", color="black", weight=3]; 755[label="EQ <= EQ",fontsize=16,color="black",shape="box"];755 -> 864[label="",style="solid", color="black", weight=3]; 756[label="EQ <= GT",fontsize=16,color="black",shape="box"];756 -> 865[label="",style="solid", color="black", weight=3]; 757[label="GT <= LT",fontsize=16,color="black",shape="box"];757 -> 866[label="",style="solid", color="black", weight=3]; 758[label="GT <= EQ",fontsize=16,color="black",shape="box"];758 -> 867[label="",style="solid", color="black", weight=3]; 759[label="GT <= GT",fontsize=16,color="black",shape="box"];759 -> 868[label="",style="solid", color="black", weight=3]; 760[label="(vxw110,vxw111,vxw112) <= (vxw100,vxw101,vxw102)",fontsize=16,color="black",shape="box"];760 -> 869[label="",style="solid", color="black", weight=3]; 761[label="(vxw110,vxw111) <= (vxw100,vxw101)",fontsize=16,color="black",shape="box"];761 -> 870[label="",style="solid", color="black", weight=3]; 762 -> 851[label="",style="dashed", color="red", weight=0]; 762[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];762 -> 853[label="",style="dashed", color="magenta", weight=3]; 763 -> 851[label="",style="dashed", color="red", weight=0]; 763[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];763 -> 854[label="",style="dashed", color="magenta", weight=3]; 764 -> 851[label="",style="dashed", color="red", weight=0]; 764[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];764 -> 855[label="",style="dashed", color="magenta", weight=3]; 765[label="False <= False",fontsize=16,color="black",shape="box"];765 -> 871[label="",style="solid", color="black", weight=3]; 766[label="False <= True",fontsize=16,color="black",shape="box"];766 -> 872[label="",style="solid", color="black", weight=3]; 767[label="True <= False",fontsize=16,color="black",shape="box"];767 -> 873[label="",style="solid", color="black", weight=3]; 768[label="True <= True",fontsize=16,color="black",shape="box"];768 -> 874[label="",style="solid", color="black", weight=3]; 769 -> 851[label="",style="dashed", color="red", weight=0]; 769[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];769 -> 856[label="",style="dashed", color="magenta", weight=3]; 770 -> 851[label="",style="dashed", color="red", weight=0]; 770[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];770 -> 857[label="",style="dashed", color="magenta", weight=3]; 771[label="Left vxw110 <= Left vxw100",fontsize=16,color="black",shape="box"];771 -> 875[label="",style="solid", color="black", weight=3]; 772[label="Left vxw110 <= Right vxw100",fontsize=16,color="black",shape="box"];772 -> 876[label="",style="solid", color="black", weight=3]; 773[label="Right vxw110 <= Left vxw100",fontsize=16,color="black",shape="box"];773 -> 877[label="",style="solid", color="black", weight=3]; 774[label="Right vxw110 <= Right vxw100",fontsize=16,color="black",shape="box"];774 -> 878[label="",style="solid", color="black", weight=3]; 775 -> 851[label="",style="dashed", color="red", weight=0]; 775[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];775 -> 858[label="",style="dashed", color="magenta", weight=3]; 776[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];776 -> 879[label="",style="solid", color="black", weight=3]; 777[label="Nothing <= Just vxw100",fontsize=16,color="black",shape="box"];777 -> 880[label="",style="solid", color="black", weight=3]; 778[label="Just vxw110 <= Nothing",fontsize=16,color="black",shape="box"];778 -> 881[label="",style="solid", color="black", weight=3]; 779[label="Just vxw110 <= Just vxw100",fontsize=16,color="black",shape="box"];779 -> 882[label="",style="solid", color="black", weight=3]; 780 -> 851[label="",style="dashed", color="red", weight=0]; 780[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];780 -> 859[label="",style="dashed", color="magenta", weight=3]; 781[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) GT",fontsize=16,color="black",shape="box"];781 -> 883[label="",style="solid", color="black", weight=3]; 782[label="Right vxw30",fontsize=16,color="green",shape="box"];783[label="vxw41",fontsize=16,color="green",shape="box"];784[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) GT",fontsize=16,color="black",shape="box"];784 -> 884[label="",style="solid", color="black", weight=3]; 785[label="vxw40000",fontsize=16,color="green",shape="box"];786[label="vxw3000",fontsize=16,color="green",shape="box"];787[label="vxw40000",fontsize=16,color="green",shape="box"];788[label="vxw3000",fontsize=16,color="green",shape="box"];789[label="vxw4001",fontsize=16,color="green",shape="box"];790[label="vxw301",fontsize=16,color="green",shape="box"];791[label="vxw4001",fontsize=16,color="green",shape="box"];792[label="vxw301",fontsize=16,color="green",shape="box"];793[label="vxw4001",fontsize=16,color="green",shape="box"];794[label="vxw301",fontsize=16,color="green",shape="box"];795[label="vxw4001",fontsize=16,color="green",shape="box"];796[label="vxw301",fontsize=16,color="green",shape="box"];797[label="vxw4001",fontsize=16,color="green",shape="box"];798[label="vxw301",fontsize=16,color="green",shape="box"];799[label="vxw4001",fontsize=16,color="green",shape="box"];800[label="vxw301",fontsize=16,color="green",shape="box"];801[label="vxw4001",fontsize=16,color="green",shape="box"];802[label="vxw301",fontsize=16,color="green",shape="box"];803[label="vxw4001",fontsize=16,color="green",shape="box"];804[label="vxw301",fontsize=16,color="green",shape="box"];805[label="vxw4001",fontsize=16,color="green",shape="box"];806[label="vxw301",fontsize=16,color="green",shape="box"];807[label="vxw4001",fontsize=16,color="green",shape="box"];808[label="vxw301",fontsize=16,color="green",shape="box"];809[label="vxw4001",fontsize=16,color="green",shape="box"];810[label="vxw301",fontsize=16,color="green",shape="box"];811[label="vxw4001",fontsize=16,color="green",shape="box"];812[label="vxw301",fontsize=16,color="green",shape="box"];813[label="vxw4001",fontsize=16,color="green",shape="box"];814[label="vxw301",fontsize=16,color="green",shape="box"];815[label="vxw4001",fontsize=16,color="green",shape="box"];816[label="vxw301",fontsize=16,color="green",shape="box"];817[label="vxw4002",fontsize=16,color="green",shape="box"];818[label="vxw302",fontsize=16,color="green",shape="box"];819[label="vxw4002",fontsize=16,color="green",shape="box"];820[label="vxw302",fontsize=16,color="green",shape="box"];821[label="vxw4002",fontsize=16,color="green",shape="box"];822[label="vxw302",fontsize=16,color="green",shape="box"];823[label="vxw4002",fontsize=16,color="green",shape="box"];824[label="vxw302",fontsize=16,color="green",shape="box"];825[label="vxw4002",fontsize=16,color="green",shape="box"];826[label="vxw302",fontsize=16,color="green",shape="box"];827[label="vxw4002",fontsize=16,color="green",shape="box"];828[label="vxw302",fontsize=16,color="green",shape="box"];829[label="vxw4002",fontsize=16,color="green",shape="box"];830[label="vxw302",fontsize=16,color="green",shape="box"];831[label="vxw4002",fontsize=16,color="green",shape="box"];832[label="vxw302",fontsize=16,color="green",shape="box"];833[label="vxw4002",fontsize=16,color="green",shape="box"];834[label="vxw302",fontsize=16,color="green",shape="box"];835[label="vxw4002",fontsize=16,color="green",shape="box"];836[label="vxw302",fontsize=16,color="green",shape="box"];837[label="vxw4002",fontsize=16,color="green",shape="box"];838[label="vxw302",fontsize=16,color="green",shape="box"];839[label="vxw4002",fontsize=16,color="green",shape="box"];840[label="vxw302",fontsize=16,color="green",shape="box"];841[label="vxw4002",fontsize=16,color="green",shape="box"];842[label="vxw302",fontsize=16,color="green",shape="box"];843[label="vxw4002",fontsize=16,color="green",shape="box"];844[label="vxw302",fontsize=16,color="green",shape="box"];845[label="primMulInt (Pos vxw3010) vxw4000",fontsize=16,color="burlywood",shape="box"];2155[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];845 -> 2155[label="",style="solid", color="burlywood", weight=9]; 2155 -> 885[label="",style="solid", color="burlywood", weight=3]; 2156[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];845 -> 2156[label="",style="solid", color="burlywood", weight=9]; 2156 -> 886[label="",style="solid", color="burlywood", weight=3]; 846[label="primMulInt (Neg vxw3010) vxw4000",fontsize=16,color="burlywood",shape="box"];2157[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];846 -> 2157[label="",style="solid", color="burlywood", weight=9]; 2157 -> 887[label="",style="solid", color="burlywood", weight=3]; 2158[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];846 -> 2158[label="",style="solid", color="burlywood", weight=9]; 2158 -> 888[label="",style="solid", color="burlywood", weight=3]; 847 -> 280[label="",style="dashed", color="red", weight=0]; 847[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];847 -> 889[label="",style="dashed", color="magenta", weight=3]; 847 -> 890[label="",style="dashed", color="magenta", weight=3]; 848[label="False",fontsize=16,color="green",shape="box"];849[label="False",fontsize=16,color="green",shape="box"];850[label="True",fontsize=16,color="green",shape="box"];852 -> 45[label="",style="dashed", color="red", weight=0]; 852[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];852 -> 891[label="",style="dashed", color="magenta", weight=3]; 852 -> 892[label="",style="dashed", color="magenta", weight=3]; 851[label="not vxw60",fontsize=16,color="burlywood",shape="triangle"];2159[label="vxw60/False",fontsize=10,color="white",style="solid",shape="box"];851 -> 2159[label="",style="solid", color="burlywood", weight=9]; 2159 -> 893[label="",style="solid", color="burlywood", weight=3]; 2160[label="vxw60/True",fontsize=10,color="white",style="solid",shape="box"];851 -> 2160[label="",style="solid", color="burlywood", weight=9]; 2160 -> 894[label="",style="solid", color="burlywood", weight=3]; 860[label="True",fontsize=16,color="green",shape="box"];861[label="True",fontsize=16,color="green",shape="box"];862[label="True",fontsize=16,color="green",shape="box"];863[label="False",fontsize=16,color="green",shape="box"];864[label="True",fontsize=16,color="green",shape="box"];865[label="True",fontsize=16,color="green",shape="box"];866[label="False",fontsize=16,color="green",shape="box"];867[label="False",fontsize=16,color="green",shape="box"];868[label="True",fontsize=16,color="green",shape="box"];869 -> 967[label="",style="dashed", color="red", weight=0]; 869[label="vxw110 < vxw100 || vxw110 == vxw100 && (vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102)",fontsize=16,color="magenta"];869 -> 968[label="",style="dashed", color="magenta", weight=3]; 869 -> 969[label="",style="dashed", color="magenta", weight=3]; 870 -> 967[label="",style="dashed", color="red", weight=0]; 870[label="vxw110 < vxw100 || vxw110 == vxw100 && vxw111 <= vxw101",fontsize=16,color="magenta"];870 -> 970[label="",style="dashed", color="magenta", weight=3]; 870 -> 971[label="",style="dashed", color="magenta", weight=3]; 853 -> 45[label="",style="dashed", color="red", weight=0]; 853[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];853 -> 895[label="",style="dashed", color="magenta", weight=3]; 853 -> 896[label="",style="dashed", color="magenta", weight=3]; 854 -> 45[label="",style="dashed", color="red", weight=0]; 854[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];854 -> 897[label="",style="dashed", color="magenta", weight=3]; 854 -> 898[label="",style="dashed", color="magenta", weight=3]; 855 -> 45[label="",style="dashed", color="red", weight=0]; 855[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];855 -> 899[label="",style="dashed", color="magenta", weight=3]; 855 -> 900[label="",style="dashed", color="magenta", weight=3]; 871[label="True",fontsize=16,color="green",shape="box"];872[label="True",fontsize=16,color="green",shape="box"];873[label="False",fontsize=16,color="green",shape="box"];874[label="True",fontsize=16,color="green",shape="box"];856 -> 45[label="",style="dashed", color="red", weight=0]; 856[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];856 -> 901[label="",style="dashed", color="magenta", weight=3]; 856 -> 902[label="",style="dashed", color="magenta", weight=3]; 857 -> 45[label="",style="dashed", color="red", weight=0]; 857[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];857 -> 903[label="",style="dashed", color="magenta", weight=3]; 857 -> 904[label="",style="dashed", color="magenta", weight=3]; 875[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2161[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2161[label="",style="solid", color="blue", weight=9]; 2161 -> 914[label="",style="solid", color="blue", weight=3]; 2162[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2162[label="",style="solid", color="blue", weight=9]; 2162 -> 915[label="",style="solid", color="blue", weight=3]; 2163[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2163[label="",style="solid", color="blue", weight=9]; 2163 -> 916[label="",style="solid", color="blue", weight=3]; 2164[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2164[label="",style="solid", color="blue", weight=9]; 2164 -> 917[label="",style="solid", color="blue", weight=3]; 2165[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2165[label="",style="solid", color="blue", weight=9]; 2165 -> 918[label="",style="solid", color="blue", weight=3]; 2166[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2166[label="",style="solid", color="blue", weight=9]; 2166 -> 919[label="",style="solid", color="blue", weight=3]; 2167[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2167[label="",style="solid", color="blue", weight=9]; 2167 -> 920[label="",style="solid", color="blue", weight=3]; 2168[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2168[label="",style="solid", color="blue", weight=9]; 2168 -> 921[label="",style="solid", color="blue", weight=3]; 2169[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2169[label="",style="solid", color="blue", weight=9]; 2169 -> 922[label="",style="solid", color="blue", weight=3]; 2170[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2170[label="",style="solid", color="blue", weight=9]; 2170 -> 923[label="",style="solid", color="blue", weight=3]; 2171[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2171[label="",style="solid", color="blue", weight=9]; 2171 -> 924[label="",style="solid", color="blue", weight=3]; 2172[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2172[label="",style="solid", color="blue", weight=9]; 2172 -> 925[label="",style="solid", color="blue", weight=3]; 2173[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2173[label="",style="solid", color="blue", weight=9]; 2173 -> 926[label="",style="solid", color="blue", weight=3]; 2174[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];875 -> 2174[label="",style="solid", color="blue", weight=9]; 2174 -> 927[label="",style="solid", color="blue", weight=3]; 876[label="True",fontsize=16,color="green",shape="box"];877[label="False",fontsize=16,color="green",shape="box"];878[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2175[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2175[label="",style="solid", color="blue", weight=9]; 2175 -> 928[label="",style="solid", color="blue", weight=3]; 2176[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2176[label="",style="solid", color="blue", weight=9]; 2176 -> 929[label="",style="solid", color="blue", weight=3]; 2177[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2177[label="",style="solid", color="blue", weight=9]; 2177 -> 930[label="",style="solid", color="blue", weight=3]; 2178[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2178[label="",style="solid", color="blue", weight=9]; 2178 -> 931[label="",style="solid", color="blue", weight=3]; 2179[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2179[label="",style="solid", color="blue", weight=9]; 2179 -> 932[label="",style="solid", color="blue", weight=3]; 2180[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2180[label="",style="solid", color="blue", weight=9]; 2180 -> 933[label="",style="solid", color="blue", weight=3]; 2181[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2181[label="",style="solid", color="blue", weight=9]; 2181 -> 934[label="",style="solid", color="blue", weight=3]; 2182[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2182[label="",style="solid", color="blue", weight=9]; 2182 -> 935[label="",style="solid", color="blue", weight=3]; 2183[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2183[label="",style="solid", color="blue", weight=9]; 2183 -> 936[label="",style="solid", color="blue", weight=3]; 2184[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2184[label="",style="solid", color="blue", weight=9]; 2184 -> 937[label="",style="solid", color="blue", weight=3]; 2185[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2185[label="",style="solid", color="blue", weight=9]; 2185 -> 938[label="",style="solid", color="blue", weight=3]; 2186[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2186[label="",style="solid", color="blue", weight=9]; 2186 -> 939[label="",style="solid", color="blue", weight=3]; 2187[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2187[label="",style="solid", color="blue", weight=9]; 2187 -> 940[label="",style="solid", color="blue", weight=3]; 2188[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 2188[label="",style="solid", color="blue", weight=9]; 2188 -> 941[label="",style="solid", color="blue", weight=3]; 858 -> 45[label="",style="dashed", color="red", weight=0]; 858[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];858 -> 905[label="",style="dashed", color="magenta", weight=3]; 858 -> 906[label="",style="dashed", color="magenta", weight=3]; 879[label="True",fontsize=16,color="green",shape="box"];880[label="True",fontsize=16,color="green",shape="box"];881[label="False",fontsize=16,color="green",shape="box"];882[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2189[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2189[label="",style="solid", color="blue", weight=9]; 2189 -> 942[label="",style="solid", color="blue", weight=3]; 2190[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2190[label="",style="solid", color="blue", weight=9]; 2190 -> 943[label="",style="solid", color="blue", weight=3]; 2191[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2191[label="",style="solid", color="blue", weight=9]; 2191 -> 944[label="",style="solid", color="blue", weight=3]; 2192[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2192[label="",style="solid", color="blue", weight=9]; 2192 -> 945[label="",style="solid", color="blue", weight=3]; 2193[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2193[label="",style="solid", color="blue", weight=9]; 2193 -> 946[label="",style="solid", color="blue", weight=3]; 2194[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2194[label="",style="solid", color="blue", weight=9]; 2194 -> 947[label="",style="solid", color="blue", weight=3]; 2195[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2195[label="",style="solid", color="blue", weight=9]; 2195 -> 948[label="",style="solid", color="blue", weight=3]; 2196[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2196[label="",style="solid", color="blue", weight=9]; 2196 -> 949[label="",style="solid", color="blue", weight=3]; 2197[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2197[label="",style="solid", color="blue", weight=9]; 2197 -> 950[label="",style="solid", color="blue", weight=3]; 2198[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2198[label="",style="solid", color="blue", weight=9]; 2198 -> 951[label="",style="solid", color="blue", weight=3]; 2199[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2199[label="",style="solid", color="blue", weight=9]; 2199 -> 952[label="",style="solid", color="blue", weight=3]; 2200[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2200[label="",style="solid", color="blue", weight=9]; 2200 -> 953[label="",style="solid", color="blue", weight=3]; 2201[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2201[label="",style="solid", color="blue", weight=9]; 2201 -> 954[label="",style="solid", color="blue", weight=3]; 2202[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];882 -> 2202[label="",style="solid", color="blue", weight=9]; 2202 -> 955[label="",style="solid", color="blue", weight=3]; 859 -> 45[label="",style="dashed", color="red", weight=0]; 859[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];859 -> 907[label="",style="dashed", color="magenta", weight=3]; 859 -> 908[label="",style="dashed", color="magenta", weight=3]; 883[label="Left vxw28 : List.insertBy compare (Left vxw29) vxw30",fontsize=16,color="green",shape="box"];883 -> 956[label="",style="dashed", color="green", weight=3]; 884[label="Right vxw37 : List.insertBy compare (Right vxw38) vxw39",fontsize=16,color="green",shape="box"];884 -> 957[label="",style="dashed", color="green", weight=3]; 885[label="primMulInt (Pos vxw3010) (Pos vxw40000)",fontsize=16,color="black",shape="box"];885 -> 958[label="",style="solid", color="black", weight=3]; 886[label="primMulInt (Pos vxw3010) (Neg vxw40000)",fontsize=16,color="black",shape="box"];886 -> 959[label="",style="solid", color="black", weight=3]; 887[label="primMulInt (Neg vxw3010) (Pos vxw40000)",fontsize=16,color="black",shape="box"];887 -> 960[label="",style="solid", color="black", weight=3]; 888[label="primMulInt (Neg vxw3010) (Neg vxw40000)",fontsize=16,color="black",shape="box"];888 -> 961[label="",style="solid", color="black", weight=3]; 889[label="vxw40000",fontsize=16,color="green",shape="box"];890[label="vxw3000",fontsize=16,color="green",shape="box"];891[label="GT",fontsize=16,color="green",shape="box"];892[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];892 -> 962[label="",style="solid", color="black", weight=3]; 893[label="not False",fontsize=16,color="black",shape="box"];893 -> 963[label="",style="solid", color="black", weight=3]; 894[label="not True",fontsize=16,color="black",shape="box"];894 -> 964[label="",style="solid", color="black", weight=3]; 968[label="vxw110 < vxw100",fontsize=16,color="blue",shape="box"];2203[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2203[label="",style="solid", color="blue", weight=9]; 2203 -> 976[label="",style="solid", color="blue", weight=3]; 2204[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2204[label="",style="solid", color="blue", weight=9]; 2204 -> 977[label="",style="solid", color="blue", weight=3]; 2205[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2205[label="",style="solid", color="blue", weight=9]; 2205 -> 978[label="",style="solid", color="blue", weight=3]; 2206[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2206[label="",style="solid", color="blue", weight=9]; 2206 -> 979[label="",style="solid", color="blue", weight=3]; 2207[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2207[label="",style="solid", color="blue", weight=9]; 2207 -> 980[label="",style="solid", color="blue", weight=3]; 2208[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2208[label="",style="solid", color="blue", weight=9]; 2208 -> 981[label="",style="solid", color="blue", weight=3]; 2209[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2209[label="",style="solid", color="blue", weight=9]; 2209 -> 982[label="",style="solid", color="blue", weight=3]; 2210[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2210[label="",style="solid", color="blue", weight=9]; 2210 -> 983[label="",style="solid", color="blue", weight=3]; 2211[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2211[label="",style="solid", color="blue", weight=9]; 2211 -> 984[label="",style="solid", color="blue", weight=3]; 2212[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2212[label="",style="solid", color="blue", weight=9]; 2212 -> 985[label="",style="solid", color="blue", weight=3]; 2213[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2213[label="",style="solid", color="blue", weight=9]; 2213 -> 986[label="",style="solid", color="blue", weight=3]; 2214[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2214[label="",style="solid", color="blue", weight=9]; 2214 -> 987[label="",style="solid", color="blue", weight=3]; 2215[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2215[label="",style="solid", color="blue", weight=9]; 2215 -> 988[label="",style="solid", color="blue", weight=3]; 2216[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];968 -> 2216[label="",style="solid", color="blue", weight=9]; 2216 -> 989[label="",style="solid", color="blue", weight=3]; 969 -> 357[label="",style="dashed", color="red", weight=0]; 969[label="vxw110 == vxw100 && (vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102)",fontsize=16,color="magenta"];969 -> 990[label="",style="dashed", color="magenta", weight=3]; 969 -> 991[label="",style="dashed", color="magenta", weight=3]; 967[label="vxw66 || vxw67",fontsize=16,color="burlywood",shape="triangle"];2217[label="vxw66/False",fontsize=10,color="white",style="solid",shape="box"];967 -> 2217[label="",style="solid", color="burlywood", weight=9]; 2217 -> 992[label="",style="solid", color="burlywood", weight=3]; 2218[label="vxw66/True",fontsize=10,color="white",style="solid",shape="box"];967 -> 2218[label="",style="solid", color="burlywood", weight=9]; 2218 -> 993[label="",style="solid", color="burlywood", weight=3]; 970[label="vxw110 < vxw100",fontsize=16,color="blue",shape="box"];2219[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2219[label="",style="solid", color="blue", weight=9]; 2219 -> 994[label="",style="solid", color="blue", weight=3]; 2220[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2220[label="",style="solid", color="blue", weight=9]; 2220 -> 995[label="",style="solid", color="blue", weight=3]; 2221[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2221[label="",style="solid", color="blue", weight=9]; 2221 -> 996[label="",style="solid", color="blue", weight=3]; 2222[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2222[label="",style="solid", color="blue", weight=9]; 2222 -> 997[label="",style="solid", color="blue", weight=3]; 2223[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2223[label="",style="solid", color="blue", weight=9]; 2223 -> 998[label="",style="solid", color="blue", weight=3]; 2224[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2224[label="",style="solid", color="blue", weight=9]; 2224 -> 999[label="",style="solid", color="blue", weight=3]; 2225[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2225[label="",style="solid", color="blue", weight=9]; 2225 -> 1000[label="",style="solid", color="blue", weight=3]; 2226[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2226[label="",style="solid", color="blue", weight=9]; 2226 -> 1001[label="",style="solid", color="blue", weight=3]; 2227[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2227[label="",style="solid", color="blue", weight=9]; 2227 -> 1002[label="",style="solid", color="blue", weight=3]; 2228[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2228[label="",style="solid", color="blue", weight=9]; 2228 -> 1003[label="",style="solid", color="blue", weight=3]; 2229[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2229[label="",style="solid", color="blue", weight=9]; 2229 -> 1004[label="",style="solid", color="blue", weight=3]; 2230[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2230[label="",style="solid", color="blue", weight=9]; 2230 -> 1005[label="",style="solid", color="blue", weight=3]; 2231[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2231[label="",style="solid", color="blue", weight=9]; 2231 -> 1006[label="",style="solid", color="blue", weight=3]; 2232[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 2232[label="",style="solid", color="blue", weight=9]; 2232 -> 1007[label="",style="solid", color="blue", weight=3]; 971 -> 357[label="",style="dashed", color="red", weight=0]; 971[label="vxw110 == vxw100 && vxw111 <= vxw101",fontsize=16,color="magenta"];971 -> 1008[label="",style="dashed", color="magenta", weight=3]; 971 -> 1009[label="",style="dashed", color="magenta", weight=3]; 895[label="GT",fontsize=16,color="green",shape="box"];896[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];896 -> 1010[label="",style="solid", color="black", weight=3]; 897[label="GT",fontsize=16,color="green",shape="box"];898[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2233[label="vxw11/vxw110 :% vxw111",fontsize=10,color="white",style="solid",shape="box"];898 -> 2233[label="",style="solid", color="burlywood", weight=9]; 2233 -> 1011[label="",style="solid", color="burlywood", weight=3]; 899[label="GT",fontsize=16,color="green",shape="box"];900[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2234[label="vxw11/Integer vxw110",fontsize=10,color="white",style="solid",shape="box"];900 -> 2234[label="",style="solid", color="burlywood", weight=9]; 2234 -> 1012[label="",style="solid", color="burlywood", weight=3]; 901[label="GT",fontsize=16,color="green",shape="box"];902[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2235[label="vxw11/()",fontsize=10,color="white",style="solid",shape="box"];902 -> 2235[label="",style="solid", color="burlywood", weight=9]; 2235 -> 1013[label="",style="solid", color="burlywood", weight=3]; 903[label="GT",fontsize=16,color="green",shape="box"];904[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];904 -> 1014[label="",style="solid", color="black", weight=3]; 914 -> 296[label="",style="dashed", color="red", weight=0]; 914[label="vxw110 <= vxw100",fontsize=16,color="magenta"];914 -> 1015[label="",style="dashed", color="magenta", weight=3]; 914 -> 1016[label="",style="dashed", color="magenta", weight=3]; 915 -> 297[label="",style="dashed", color="red", weight=0]; 915[label="vxw110 <= vxw100",fontsize=16,color="magenta"];915 -> 1017[label="",style="dashed", color="magenta", weight=3]; 915 -> 1018[label="",style="dashed", color="magenta", weight=3]; 916 -> 298[label="",style="dashed", color="red", weight=0]; 916[label="vxw110 <= vxw100",fontsize=16,color="magenta"];916 -> 1019[label="",style="dashed", color="magenta", weight=3]; 916 -> 1020[label="",style="dashed", color="magenta", weight=3]; 917 -> 299[label="",style="dashed", color="red", weight=0]; 917[label="vxw110 <= vxw100",fontsize=16,color="magenta"];917 -> 1021[label="",style="dashed", color="magenta", weight=3]; 917 -> 1022[label="",style="dashed", color="magenta", weight=3]; 918 -> 300[label="",style="dashed", color="red", weight=0]; 918[label="vxw110 <= vxw100",fontsize=16,color="magenta"];918 -> 1023[label="",style="dashed", color="magenta", weight=3]; 918 -> 1024[label="",style="dashed", color="magenta", weight=3]; 919 -> 301[label="",style="dashed", color="red", weight=0]; 919[label="vxw110 <= vxw100",fontsize=16,color="magenta"];919 -> 1025[label="",style="dashed", color="magenta", weight=3]; 919 -> 1026[label="",style="dashed", color="magenta", weight=3]; 920 -> 302[label="",style="dashed", color="red", weight=0]; 920[label="vxw110 <= vxw100",fontsize=16,color="magenta"];920 -> 1027[label="",style="dashed", color="magenta", weight=3]; 920 -> 1028[label="",style="dashed", color="magenta", weight=3]; 921 -> 303[label="",style="dashed", color="red", weight=0]; 921[label="vxw110 <= vxw100",fontsize=16,color="magenta"];921 -> 1029[label="",style="dashed", color="magenta", weight=3]; 921 -> 1030[label="",style="dashed", color="magenta", weight=3]; 922 -> 304[label="",style="dashed", color="red", weight=0]; 922[label="vxw110 <= vxw100",fontsize=16,color="magenta"];922 -> 1031[label="",style="dashed", color="magenta", weight=3]; 922 -> 1032[label="",style="dashed", color="magenta", weight=3]; 923 -> 305[label="",style="dashed", color="red", weight=0]; 923[label="vxw110 <= vxw100",fontsize=16,color="magenta"];923 -> 1033[label="",style="dashed", color="magenta", weight=3]; 923 -> 1034[label="",style="dashed", color="magenta", weight=3]; 924 -> 306[label="",style="dashed", color="red", weight=0]; 924[label="vxw110 <= vxw100",fontsize=16,color="magenta"];924 -> 1035[label="",style="dashed", color="magenta", weight=3]; 924 -> 1036[label="",style="dashed", color="magenta", weight=3]; 925 -> 307[label="",style="dashed", color="red", weight=0]; 925[label="vxw110 <= vxw100",fontsize=16,color="magenta"];925 -> 1037[label="",style="dashed", color="magenta", weight=3]; 925 -> 1038[label="",style="dashed", color="magenta", weight=3]; 926 -> 308[label="",style="dashed", color="red", weight=0]; 926[label="vxw110 <= vxw100",fontsize=16,color="magenta"];926 -> 1039[label="",style="dashed", color="magenta", weight=3]; 926 -> 1040[label="",style="dashed", color="magenta", weight=3]; 927 -> 309[label="",style="dashed", color="red", weight=0]; 927[label="vxw110 <= vxw100",fontsize=16,color="magenta"];927 -> 1041[label="",style="dashed", color="magenta", weight=3]; 927 -> 1042[label="",style="dashed", color="magenta", weight=3]; 928 -> 296[label="",style="dashed", color="red", weight=0]; 928[label="vxw110 <= vxw100",fontsize=16,color="magenta"];928 -> 1043[label="",style="dashed", color="magenta", weight=3]; 928 -> 1044[label="",style="dashed", color="magenta", weight=3]; 929 -> 297[label="",style="dashed", color="red", weight=0]; 929[label="vxw110 <= vxw100",fontsize=16,color="magenta"];929 -> 1045[label="",style="dashed", color="magenta", weight=3]; 929 -> 1046[label="",style="dashed", color="magenta", weight=3]; 930 -> 298[label="",style="dashed", color="red", weight=0]; 930[label="vxw110 <= vxw100",fontsize=16,color="magenta"];930 -> 1047[label="",style="dashed", color="magenta", weight=3]; 930 -> 1048[label="",style="dashed", color="magenta", weight=3]; 931 -> 299[label="",style="dashed", color="red", weight=0]; 931[label="vxw110 <= vxw100",fontsize=16,color="magenta"];931 -> 1049[label="",style="dashed", color="magenta", weight=3]; 931 -> 1050[label="",style="dashed", color="magenta", weight=3]; 932 -> 300[label="",style="dashed", color="red", weight=0]; 932[label="vxw110 <= vxw100",fontsize=16,color="magenta"];932 -> 1051[label="",style="dashed", color="magenta", weight=3]; 932 -> 1052[label="",style="dashed", color="magenta", weight=3]; 933 -> 301[label="",style="dashed", color="red", weight=0]; 933[label="vxw110 <= vxw100",fontsize=16,color="magenta"];933 -> 1053[label="",style="dashed", color="magenta", weight=3]; 933 -> 1054[label="",style="dashed", color="magenta", weight=3]; 934 -> 302[label="",style="dashed", color="red", weight=0]; 934[label="vxw110 <= vxw100",fontsize=16,color="magenta"];934 -> 1055[label="",style="dashed", color="magenta", weight=3]; 934 -> 1056[label="",style="dashed", color="magenta", weight=3]; 935 -> 303[label="",style="dashed", color="red", weight=0]; 935[label="vxw110 <= vxw100",fontsize=16,color="magenta"];935 -> 1057[label="",style="dashed", color="magenta", weight=3]; 935 -> 1058[label="",style="dashed", color="magenta", weight=3]; 936 -> 304[label="",style="dashed", color="red", weight=0]; 936[label="vxw110 <= vxw100",fontsize=16,color="magenta"];936 -> 1059[label="",style="dashed", color="magenta", weight=3]; 936 -> 1060[label="",style="dashed", color="magenta", weight=3]; 937 -> 305[label="",style="dashed", color="red", weight=0]; 937[label="vxw110 <= vxw100",fontsize=16,color="magenta"];937 -> 1061[label="",style="dashed", color="magenta", weight=3]; 937 -> 1062[label="",style="dashed", color="magenta", weight=3]; 938 -> 306[label="",style="dashed", color="red", weight=0]; 938[label="vxw110 <= vxw100",fontsize=16,color="magenta"];938 -> 1063[label="",style="dashed", color="magenta", weight=3]; 938 -> 1064[label="",style="dashed", color="magenta", weight=3]; 939 -> 307[label="",style="dashed", color="red", weight=0]; 939[label="vxw110 <= vxw100",fontsize=16,color="magenta"];939 -> 1065[label="",style="dashed", color="magenta", weight=3]; 939 -> 1066[label="",style="dashed", color="magenta", weight=3]; 940 -> 308[label="",style="dashed", color="red", weight=0]; 940[label="vxw110 <= vxw100",fontsize=16,color="magenta"];940 -> 1067[label="",style="dashed", color="magenta", weight=3]; 940 -> 1068[label="",style="dashed", color="magenta", weight=3]; 941 -> 309[label="",style="dashed", color="red", weight=0]; 941[label="vxw110 <= vxw100",fontsize=16,color="magenta"];941 -> 1069[label="",style="dashed", color="magenta", weight=3]; 941 -> 1070[label="",style="dashed", color="magenta", weight=3]; 905[label="GT",fontsize=16,color="green",shape="box"];906[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];906 -> 1071[label="",style="solid", color="black", weight=3]; 942 -> 296[label="",style="dashed", color="red", weight=0]; 942[label="vxw110 <= vxw100",fontsize=16,color="magenta"];942 -> 1072[label="",style="dashed", color="magenta", weight=3]; 942 -> 1073[label="",style="dashed", color="magenta", weight=3]; 943 -> 297[label="",style="dashed", color="red", weight=0]; 943[label="vxw110 <= vxw100",fontsize=16,color="magenta"];943 -> 1074[label="",style="dashed", color="magenta", weight=3]; 943 -> 1075[label="",style="dashed", color="magenta", weight=3]; 944 -> 298[label="",style="dashed", color="red", weight=0]; 944[label="vxw110 <= vxw100",fontsize=16,color="magenta"];944 -> 1076[label="",style="dashed", color="magenta", weight=3]; 944 -> 1077[label="",style="dashed", color="magenta", weight=3]; 945 -> 299[label="",style="dashed", color="red", weight=0]; 945[label="vxw110 <= vxw100",fontsize=16,color="magenta"];945 -> 1078[label="",style="dashed", color="magenta", weight=3]; 945 -> 1079[label="",style="dashed", color="magenta", weight=3]; 946 -> 300[label="",style="dashed", color="red", weight=0]; 946[label="vxw110 <= vxw100",fontsize=16,color="magenta"];946 -> 1080[label="",style="dashed", color="magenta", weight=3]; 946 -> 1081[label="",style="dashed", color="magenta", weight=3]; 947 -> 301[label="",style="dashed", color="red", weight=0]; 947[label="vxw110 <= vxw100",fontsize=16,color="magenta"];947 -> 1082[label="",style="dashed", color="magenta", weight=3]; 947 -> 1083[label="",style="dashed", color="magenta", weight=3]; 948 -> 302[label="",style="dashed", color="red", weight=0]; 948[label="vxw110 <= vxw100",fontsize=16,color="magenta"];948 -> 1084[label="",style="dashed", color="magenta", weight=3]; 948 -> 1085[label="",style="dashed", color="magenta", weight=3]; 949 -> 303[label="",style="dashed", color="red", weight=0]; 949[label="vxw110 <= vxw100",fontsize=16,color="magenta"];949 -> 1086[label="",style="dashed", color="magenta", weight=3]; 949 -> 1087[label="",style="dashed", color="magenta", weight=3]; 950 -> 304[label="",style="dashed", color="red", weight=0]; 950[label="vxw110 <= vxw100",fontsize=16,color="magenta"];950 -> 1088[label="",style="dashed", color="magenta", weight=3]; 950 -> 1089[label="",style="dashed", color="magenta", weight=3]; 951 -> 305[label="",style="dashed", color="red", weight=0]; 951[label="vxw110 <= vxw100",fontsize=16,color="magenta"];951 -> 1090[label="",style="dashed", color="magenta", weight=3]; 951 -> 1091[label="",style="dashed", color="magenta", weight=3]; 952 -> 306[label="",style="dashed", color="red", weight=0]; 952[label="vxw110 <= vxw100",fontsize=16,color="magenta"];952 -> 1092[label="",style="dashed", color="magenta", weight=3]; 952 -> 1093[label="",style="dashed", color="magenta", weight=3]; 953 -> 307[label="",style="dashed", color="red", weight=0]; 953[label="vxw110 <= vxw100",fontsize=16,color="magenta"];953 -> 1094[label="",style="dashed", color="magenta", weight=3]; 953 -> 1095[label="",style="dashed", color="magenta", weight=3]; 954 -> 308[label="",style="dashed", color="red", weight=0]; 954[label="vxw110 <= vxw100",fontsize=16,color="magenta"];954 -> 1096[label="",style="dashed", color="magenta", weight=3]; 954 -> 1097[label="",style="dashed", color="magenta", weight=3]; 955 -> 309[label="",style="dashed", color="red", weight=0]; 955[label="vxw110 <= vxw100",fontsize=16,color="magenta"];955 -> 1098[label="",style="dashed", color="magenta", weight=3]; 955 -> 1099[label="",style="dashed", color="magenta", weight=3]; 907[label="GT",fontsize=16,color="green",shape="box"];908[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2236[label="vxw11/vxw110 : vxw111",fontsize=10,color="white",style="solid",shape="box"];908 -> 2236[label="",style="solid", color="burlywood", weight=9]; 2236 -> 1100[label="",style="solid", color="burlywood", weight=3]; 2237[label="vxw11/[]",fontsize=10,color="white",style="solid",shape="box"];908 -> 2237[label="",style="solid", color="burlywood", weight=9]; 2237 -> 1101[label="",style="solid", color="burlywood", weight=3]; 956 -> 5[label="",style="dashed", color="red", weight=0]; 956[label="List.insertBy compare (Left vxw29) vxw30",fontsize=16,color="magenta"];956 -> 1102[label="",style="dashed", color="magenta", weight=3]; 956 -> 1103[label="",style="dashed", color="magenta", weight=3]; 957 -> 5[label="",style="dashed", color="red", weight=0]; 957[label="List.insertBy compare (Right vxw38) vxw39",fontsize=16,color="magenta"];957 -> 1104[label="",style="dashed", color="magenta", weight=3]; 957 -> 1105[label="",style="dashed", color="magenta", weight=3]; 958[label="Pos (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];958 -> 1106[label="",style="dashed", color="green", weight=3]; 959[label="Neg (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];959 -> 1107[label="",style="dashed", color="green", weight=3]; 960[label="Neg (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];960 -> 1108[label="",style="dashed", color="green", weight=3]; 961[label="Pos (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];961 -> 1109[label="",style="dashed", color="green", weight=3]; 962[label="primCmpChar vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2238[label="vxw11/Char vxw110",fontsize=10,color="white",style="solid",shape="box"];962 -> 2238[label="",style="solid", color="burlywood", weight=9]; 2238 -> 1110[label="",style="solid", color="burlywood", weight=3]; 963[label="True",fontsize=16,color="green",shape="box"];964[label="False",fontsize=16,color="green",shape="box"];976[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];976 -> 1111[label="",style="solid", color="black", weight=3]; 977[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];977 -> 1112[label="",style="solid", color="black", weight=3]; 978[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];978 -> 1113[label="",style="solid", color="black", weight=3]; 979[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];979 -> 1114[label="",style="solid", color="black", weight=3]; 980[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];980 -> 1115[label="",style="solid", color="black", weight=3]; 981[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];981 -> 1116[label="",style="solid", color="black", weight=3]; 982[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];982 -> 1117[label="",style="solid", color="black", weight=3]; 983[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];983 -> 1118[label="",style="solid", color="black", weight=3]; 984[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];984 -> 1119[label="",style="solid", color="black", weight=3]; 985[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];985 -> 1120[label="",style="solid", color="black", weight=3]; 986[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];986 -> 1121[label="",style="solid", color="black", weight=3]; 987[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];987 -> 1122[label="",style="solid", color="black", weight=3]; 988[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];988 -> 1123[label="",style="solid", color="black", weight=3]; 989[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];989 -> 1124[label="",style="solid", color="black", weight=3]; 990[label="vxw110 == vxw100",fontsize=16,color="blue",shape="box"];2239[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2239[label="",style="solid", color="blue", weight=9]; 2239 -> 1125[label="",style="solid", color="blue", weight=3]; 2240[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2240[label="",style="solid", color="blue", weight=9]; 2240 -> 1126[label="",style="solid", color="blue", weight=3]; 2241[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2241[label="",style="solid", color="blue", weight=9]; 2241 -> 1127[label="",style="solid", color="blue", weight=3]; 2242[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2242[label="",style="solid", color="blue", weight=9]; 2242 -> 1128[label="",style="solid", color="blue", weight=3]; 2243[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2243[label="",style="solid", color="blue", weight=9]; 2243 -> 1129[label="",style="solid", color="blue", weight=3]; 2244[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2244[label="",style="solid", color="blue", weight=9]; 2244 -> 1130[label="",style="solid", color="blue", weight=3]; 2245[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2245[label="",style="solid", color="blue", weight=9]; 2245 -> 1131[label="",style="solid", color="blue", weight=3]; 2246[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2246[label="",style="solid", color="blue", weight=9]; 2246 -> 1132[label="",style="solid", color="blue", weight=3]; 2247[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2247[label="",style="solid", color="blue", weight=9]; 2247 -> 1133[label="",style="solid", color="blue", weight=3]; 2248[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2248[label="",style="solid", color="blue", weight=9]; 2248 -> 1134[label="",style="solid", color="blue", weight=3]; 2249[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2249[label="",style="solid", color="blue", weight=9]; 2249 -> 1135[label="",style="solid", color="blue", weight=3]; 2250[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2250[label="",style="solid", color="blue", weight=9]; 2250 -> 1136[label="",style="solid", color="blue", weight=3]; 2251[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2251[label="",style="solid", color="blue", weight=9]; 2251 -> 1137[label="",style="solid", color="blue", weight=3]; 2252[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 2252[label="",style="solid", color="blue", weight=9]; 2252 -> 1138[label="",style="solid", color="blue", weight=3]; 991 -> 967[label="",style="dashed", color="red", weight=0]; 991[label="vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102",fontsize=16,color="magenta"];991 -> 1139[label="",style="dashed", color="magenta", weight=3]; 991 -> 1140[label="",style="dashed", color="magenta", weight=3]; 992[label="False || vxw67",fontsize=16,color="black",shape="box"];992 -> 1141[label="",style="solid", color="black", weight=3]; 993[label="True || vxw67",fontsize=16,color="black",shape="box"];993 -> 1142[label="",style="solid", color="black", weight=3]; 994 -> 976[label="",style="dashed", color="red", weight=0]; 994[label="vxw110 < vxw100",fontsize=16,color="magenta"];994 -> 1143[label="",style="dashed", color="magenta", weight=3]; 994 -> 1144[label="",style="dashed", color="magenta", weight=3]; 995 -> 977[label="",style="dashed", color="red", weight=0]; 995[label="vxw110 < vxw100",fontsize=16,color="magenta"];995 -> 1145[label="",style="dashed", color="magenta", weight=3]; 995 -> 1146[label="",style="dashed", color="magenta", weight=3]; 996 -> 978[label="",style="dashed", color="red", weight=0]; 996[label="vxw110 < vxw100",fontsize=16,color="magenta"];996 -> 1147[label="",style="dashed", color="magenta", weight=3]; 996 -> 1148[label="",style="dashed", color="magenta", weight=3]; 997 -> 979[label="",style="dashed", color="red", weight=0]; 997[label="vxw110 < vxw100",fontsize=16,color="magenta"];997 -> 1149[label="",style="dashed", color="magenta", weight=3]; 997 -> 1150[label="",style="dashed", color="magenta", weight=3]; 998 -> 980[label="",style="dashed", color="red", weight=0]; 998[label="vxw110 < vxw100",fontsize=16,color="magenta"];998 -> 1151[label="",style="dashed", color="magenta", weight=3]; 998 -> 1152[label="",style="dashed", color="magenta", weight=3]; 999 -> 981[label="",style="dashed", color="red", weight=0]; 999[label="vxw110 < vxw100",fontsize=16,color="magenta"];999 -> 1153[label="",style="dashed", color="magenta", weight=3]; 999 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1000 -> 982[label="",style="dashed", color="red", weight=0]; 1000[label="vxw110 < vxw100",fontsize=16,color="magenta"];1000 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1000 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1001 -> 983[label="",style="dashed", color="red", weight=0]; 1001[label="vxw110 < vxw100",fontsize=16,color="magenta"];1001 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1001 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1002 -> 984[label="",style="dashed", color="red", weight=0]; 1002[label="vxw110 < vxw100",fontsize=16,color="magenta"];1002 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1002 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1003 -> 985[label="",style="dashed", color="red", weight=0]; 1003[label="vxw110 < vxw100",fontsize=16,color="magenta"];1003 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1003 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1004 -> 986[label="",style="dashed", color="red", weight=0]; 1004[label="vxw110 < vxw100",fontsize=16,color="magenta"];1004 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1005 -> 987[label="",style="dashed", color="red", weight=0]; 1005[label="vxw110 < vxw100",fontsize=16,color="magenta"];1005 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1006 -> 988[label="",style="dashed", color="red", weight=0]; 1006[label="vxw110 < vxw100",fontsize=16,color="magenta"];1006 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1007 -> 989[label="",style="dashed", color="red", weight=0]; 1007[label="vxw110 < vxw100",fontsize=16,color="magenta"];1007 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1008[label="vxw110 == vxw100",fontsize=16,color="blue",shape="box"];2253[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2253[label="",style="solid", color="blue", weight=9]; 2253 -> 1171[label="",style="solid", color="blue", weight=3]; 2254[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2254[label="",style="solid", color="blue", weight=9]; 2254 -> 1172[label="",style="solid", color="blue", weight=3]; 2255[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2255[label="",style="solid", color="blue", weight=9]; 2255 -> 1173[label="",style="solid", color="blue", weight=3]; 2256[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2256[label="",style="solid", color="blue", weight=9]; 2256 -> 1174[label="",style="solid", color="blue", weight=3]; 2257[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2257[label="",style="solid", color="blue", weight=9]; 2257 -> 1175[label="",style="solid", color="blue", weight=3]; 2258[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2258[label="",style="solid", color="blue", weight=9]; 2258 -> 1176[label="",style="solid", color="blue", weight=3]; 2259[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2259[label="",style="solid", color="blue", weight=9]; 2259 -> 1177[label="",style="solid", color="blue", weight=3]; 2260[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2260[label="",style="solid", color="blue", weight=9]; 2260 -> 1178[label="",style="solid", color="blue", weight=3]; 2261[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2261[label="",style="solid", color="blue", weight=9]; 2261 -> 1179[label="",style="solid", color="blue", weight=3]; 2262[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2262[label="",style="solid", color="blue", weight=9]; 2262 -> 1180[label="",style="solid", color="blue", weight=3]; 2263[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2263[label="",style="solid", color="blue", weight=9]; 2263 -> 1181[label="",style="solid", color="blue", weight=3]; 2264[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2264[label="",style="solid", color="blue", weight=9]; 2264 -> 1182[label="",style="solid", color="blue", weight=3]; 2265[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2265[label="",style="solid", color="blue", weight=9]; 2265 -> 1183[label="",style="solid", color="blue", weight=3]; 2266[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2266[label="",style="solid", color="blue", weight=9]; 2266 -> 1184[label="",style="solid", color="blue", weight=3]; 1009[label="vxw111 <= vxw101",fontsize=16,color="blue",shape="box"];2267[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2267[label="",style="solid", color="blue", weight=9]; 2267 -> 1185[label="",style="solid", color="blue", weight=3]; 2268[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2268[label="",style="solid", color="blue", weight=9]; 2268 -> 1186[label="",style="solid", color="blue", weight=3]; 2269[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2269[label="",style="solid", color="blue", weight=9]; 2269 -> 1187[label="",style="solid", color="blue", weight=3]; 2270[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2270[label="",style="solid", color="blue", weight=9]; 2270 -> 1188[label="",style="solid", color="blue", weight=3]; 2271[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2271[label="",style="solid", color="blue", weight=9]; 2271 -> 1189[label="",style="solid", color="blue", weight=3]; 2272[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2272[label="",style="solid", color="blue", weight=9]; 2272 -> 1190[label="",style="solid", color="blue", weight=3]; 2273[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2273[label="",style="solid", color="blue", weight=9]; 2273 -> 1191[label="",style="solid", color="blue", weight=3]; 2274[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2274[label="",style="solid", color="blue", weight=9]; 2274 -> 1192[label="",style="solid", color="blue", weight=3]; 2275[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2275[label="",style="solid", color="blue", weight=9]; 2275 -> 1193[label="",style="solid", color="blue", weight=3]; 2276[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2276[label="",style="solid", color="blue", weight=9]; 2276 -> 1194[label="",style="solid", color="blue", weight=3]; 2277[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2277[label="",style="solid", color="blue", weight=9]; 2277 -> 1195[label="",style="solid", color="blue", weight=3]; 2278[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2278[label="",style="solid", color="blue", weight=9]; 2278 -> 1196[label="",style="solid", color="blue", weight=3]; 2279[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2279[label="",style="solid", color="blue", weight=9]; 2279 -> 1197[label="",style="solid", color="blue", weight=3]; 2280[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1009 -> 2280[label="",style="solid", color="blue", weight=9]; 2280 -> 1198[label="",style="solid", color="blue", weight=3]; 1010[label="primCmpInt vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2281[label="vxw11/Pos vxw110",fontsize=10,color="white",style="solid",shape="box"];1010 -> 2281[label="",style="solid", color="burlywood", weight=9]; 2281 -> 1199[label="",style="solid", color="burlywood", weight=3]; 2282[label="vxw11/Neg vxw110",fontsize=10,color="white",style="solid",shape="box"];1010 -> 2282[label="",style="solid", color="burlywood", weight=9]; 2282 -> 1200[label="",style="solid", color="burlywood", weight=3]; 1011[label="compare (vxw110 :% vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2283[label="vxw10/vxw100 :% vxw101",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2283[label="",style="solid", color="burlywood", weight=9]; 2283 -> 1201[label="",style="solid", color="burlywood", weight=3]; 1012[label="compare (Integer vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2284[label="vxw10/Integer vxw100",fontsize=10,color="white",style="solid",shape="box"];1012 -> 2284[label="",style="solid", color="burlywood", weight=9]; 2284 -> 1202[label="",style="solid", color="burlywood", weight=3]; 1013[label="compare () vxw10",fontsize=16,color="burlywood",shape="box"];2285[label="vxw10/()",fontsize=10,color="white",style="solid",shape="box"];1013 -> 2285[label="",style="solid", color="burlywood", weight=9]; 2285 -> 1203[label="",style="solid", color="burlywood", weight=3]; 1014[label="primCmpDouble vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2286[label="vxw11/Double vxw110 vxw111",fontsize=10,color="white",style="solid",shape="box"];1014 -> 2286[label="",style="solid", color="burlywood", weight=9]; 2286 -> 1204[label="",style="solid", color="burlywood", weight=3]; 1015[label="vxw110",fontsize=16,color="green",shape="box"];1016[label="vxw100",fontsize=16,color="green",shape="box"];1017[label="vxw110",fontsize=16,color="green",shape="box"];1018[label="vxw100",fontsize=16,color="green",shape="box"];1019[label="vxw110",fontsize=16,color="green",shape="box"];1020[label="vxw100",fontsize=16,color="green",shape="box"];1021[label="vxw110",fontsize=16,color="green",shape="box"];1022[label="vxw100",fontsize=16,color="green",shape="box"];1023[label="vxw110",fontsize=16,color="green",shape="box"];1024[label="vxw100",fontsize=16,color="green",shape="box"];1025[label="vxw110",fontsize=16,color="green",shape="box"];1026[label="vxw100",fontsize=16,color="green",shape="box"];1027[label="vxw110",fontsize=16,color="green",shape="box"];1028[label="vxw100",fontsize=16,color="green",shape="box"];1029[label="vxw110",fontsize=16,color="green",shape="box"];1030[label="vxw100",fontsize=16,color="green",shape="box"];1031[label="vxw110",fontsize=16,color="green",shape="box"];1032[label="vxw100",fontsize=16,color="green",shape="box"];1033[label="vxw110",fontsize=16,color="green",shape="box"];1034[label="vxw100",fontsize=16,color="green",shape="box"];1035[label="vxw110",fontsize=16,color="green",shape="box"];1036[label="vxw100",fontsize=16,color="green",shape="box"];1037[label="vxw110",fontsize=16,color="green",shape="box"];1038[label="vxw100",fontsize=16,color="green",shape="box"];1039[label="vxw110",fontsize=16,color="green",shape="box"];1040[label="vxw100",fontsize=16,color="green",shape="box"];1041[label="vxw110",fontsize=16,color="green",shape="box"];1042[label="vxw100",fontsize=16,color="green",shape="box"];1043[label="vxw110",fontsize=16,color="green",shape="box"];1044[label="vxw100",fontsize=16,color="green",shape="box"];1045[label="vxw110",fontsize=16,color="green",shape="box"];1046[label="vxw100",fontsize=16,color="green",shape="box"];1047[label="vxw110",fontsize=16,color="green",shape="box"];1048[label="vxw100",fontsize=16,color="green",shape="box"];1049[label="vxw110",fontsize=16,color="green",shape="box"];1050[label="vxw100",fontsize=16,color="green",shape="box"];1051[label="vxw110",fontsize=16,color="green",shape="box"];1052[label="vxw100",fontsize=16,color="green",shape="box"];1053[label="vxw110",fontsize=16,color="green",shape="box"];1054[label="vxw100",fontsize=16,color="green",shape="box"];1055[label="vxw110",fontsize=16,color="green",shape="box"];1056[label="vxw100",fontsize=16,color="green",shape="box"];1057[label="vxw110",fontsize=16,color="green",shape="box"];1058[label="vxw100",fontsize=16,color="green",shape="box"];1059[label="vxw110",fontsize=16,color="green",shape="box"];1060[label="vxw100",fontsize=16,color="green",shape="box"];1061[label="vxw110",fontsize=16,color="green",shape="box"];1062[label="vxw100",fontsize=16,color="green",shape="box"];1063[label="vxw110",fontsize=16,color="green",shape="box"];1064[label="vxw100",fontsize=16,color="green",shape="box"];1065[label="vxw110",fontsize=16,color="green",shape="box"];1066[label="vxw100",fontsize=16,color="green",shape="box"];1067[label="vxw110",fontsize=16,color="green",shape="box"];1068[label="vxw100",fontsize=16,color="green",shape="box"];1069[label="vxw110",fontsize=16,color="green",shape="box"];1070[label="vxw100",fontsize=16,color="green",shape="box"];1071[label="primCmpFloat vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2287[label="vxw11/Float vxw110 vxw111",fontsize=10,color="white",style="solid",shape="box"];1071 -> 2287[label="",style="solid", color="burlywood", weight=9]; 2287 -> 1205[label="",style="solid", color="burlywood", weight=3]; 1072[label="vxw110",fontsize=16,color="green",shape="box"];1073[label="vxw100",fontsize=16,color="green",shape="box"];1074[label="vxw110",fontsize=16,color="green",shape="box"];1075[label="vxw100",fontsize=16,color="green",shape="box"];1076[label="vxw110",fontsize=16,color="green",shape="box"];1077[label="vxw100",fontsize=16,color="green",shape="box"];1078[label="vxw110",fontsize=16,color="green",shape="box"];1079[label="vxw100",fontsize=16,color="green",shape="box"];1080[label="vxw110",fontsize=16,color="green",shape="box"];1081[label="vxw100",fontsize=16,color="green",shape="box"];1082[label="vxw110",fontsize=16,color="green",shape="box"];1083[label="vxw100",fontsize=16,color="green",shape="box"];1084[label="vxw110",fontsize=16,color="green",shape="box"];1085[label="vxw100",fontsize=16,color="green",shape="box"];1086[label="vxw110",fontsize=16,color="green",shape="box"];1087[label="vxw100",fontsize=16,color="green",shape="box"];1088[label="vxw110",fontsize=16,color="green",shape="box"];1089[label="vxw100",fontsize=16,color="green",shape="box"];1090[label="vxw110",fontsize=16,color="green",shape="box"];1091[label="vxw100",fontsize=16,color="green",shape="box"];1092[label="vxw110",fontsize=16,color="green",shape="box"];1093[label="vxw100",fontsize=16,color="green",shape="box"];1094[label="vxw110",fontsize=16,color="green",shape="box"];1095[label="vxw100",fontsize=16,color="green",shape="box"];1096[label="vxw110",fontsize=16,color="green",shape="box"];1097[label="vxw100",fontsize=16,color="green",shape="box"];1098[label="vxw110",fontsize=16,color="green",shape="box"];1099[label="vxw100",fontsize=16,color="green",shape="box"];1100[label="compare (vxw110 : vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2288[label="vxw10/vxw100 : vxw101",fontsize=10,color="white",style="solid",shape="box"];1100 -> 2288[label="",style="solid", color="burlywood", weight=9]; 2288 -> 1206[label="",style="solid", color="burlywood", weight=3]; 2289[label="vxw10/[]",fontsize=10,color="white",style="solid",shape="box"];1100 -> 2289[label="",style="solid", color="burlywood", weight=9]; 2289 -> 1207[label="",style="solid", color="burlywood", weight=3]; 1101[label="compare [] vxw10",fontsize=16,color="burlywood",shape="box"];2290[label="vxw10/vxw100 : vxw101",fontsize=10,color="white",style="solid",shape="box"];1101 -> 2290[label="",style="solid", color="burlywood", weight=9]; 2290 -> 1208[label="",style="solid", color="burlywood", weight=3]; 2291[label="vxw10/[]",fontsize=10,color="white",style="solid",shape="box"];1101 -> 2291[label="",style="solid", color="burlywood", weight=9]; 2291 -> 1209[label="",style="solid", color="burlywood", weight=3]; 1102[label="Left vxw29",fontsize=16,color="green",shape="box"];1103[label="vxw30",fontsize=16,color="green",shape="box"];1104[label="Right vxw38",fontsize=16,color="green",shape="box"];1105[label="vxw39",fontsize=16,color="green",shape="box"];1106[label="primMulNat vxw3010 vxw40000",fontsize=16,color="burlywood",shape="triangle"];2292[label="vxw3010/Succ vxw30100",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2292[label="",style="solid", color="burlywood", weight=9]; 2292 -> 1210[label="",style="solid", color="burlywood", weight=3]; 2293[label="vxw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2293[label="",style="solid", color="burlywood", weight=9]; 2293 -> 1211[label="",style="solid", color="burlywood", weight=3]; 1107 -> 1106[label="",style="dashed", color="red", weight=0]; 1107[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1107 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1106[label="",style="dashed", color="red", weight=0]; 1108[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1108 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1109 -> 1106[label="",style="dashed", color="red", weight=0]; 1109[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1109 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1109 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1110[label="primCmpChar (Char vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2294[label="vxw10/Char vxw100",fontsize=10,color="white",style="solid",shape="box"];1110 -> 2294[label="",style="solid", color="burlywood", weight=9]; 2294 -> 1216[label="",style="solid", color="burlywood", weight=3]; 1111 -> 45[label="",style="dashed", color="red", weight=0]; 1111[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1111 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1111 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1112 -> 45[label="",style="dashed", color="red", weight=0]; 1112[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1112 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1112 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1113 -> 45[label="",style="dashed", color="red", weight=0]; 1113[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1113 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1114 -> 45[label="",style="dashed", color="red", weight=0]; 1114[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1114 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1115 -> 45[label="",style="dashed", color="red", weight=0]; 1115[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1115 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1116 -> 45[label="",style="dashed", color="red", weight=0]; 1116[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1116 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1117 -> 45[label="",style="dashed", color="red", weight=0]; 1117[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1117 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1117 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1118 -> 45[label="",style="dashed", color="red", weight=0]; 1118[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1118 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1118 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1119 -> 45[label="",style="dashed", color="red", weight=0]; 1119[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1119 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1120 -> 45[label="",style="dashed", color="red", weight=0]; 1120[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1120 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1121 -> 45[label="",style="dashed", color="red", weight=0]; 1121[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1121 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1122 -> 45[label="",style="dashed", color="red", weight=0]; 1122[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1122 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1123 -> 45[label="",style="dashed", color="red", weight=0]; 1123[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1123 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1124 -> 45[label="",style="dashed", color="red", weight=0]; 1124[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1124 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1125 -> 43[label="",style="dashed", color="red", weight=0]; 1125[label="vxw110 == vxw100",fontsize=16,color="magenta"];1125 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1126 -> 45[label="",style="dashed", color="red", weight=0]; 1126[label="vxw110 == vxw100",fontsize=16,color="magenta"];1126 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1127 -> 35[label="",style="dashed", color="red", weight=0]; 1127[label="vxw110 == vxw100",fontsize=16,color="magenta"];1127 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1128 -> 37[label="",style="dashed", color="red", weight=0]; 1128[label="vxw110 == vxw100",fontsize=16,color="magenta"];1128 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1129 -> 34[label="",style="dashed", color="red", weight=0]; 1129[label="vxw110 == vxw100",fontsize=16,color="magenta"];1129 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1130 -> 44[label="",style="dashed", color="red", weight=0]; 1130[label="vxw110 == vxw100",fontsize=16,color="magenta"];1130 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1131 -> 41[label="",style="dashed", color="red", weight=0]; 1131[label="vxw110 == vxw100",fontsize=16,color="magenta"];1131 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1132 -> 40[label="",style="dashed", color="red", weight=0]; 1132[label="vxw110 == vxw100",fontsize=16,color="magenta"];1132 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1133 -> 36[label="",style="dashed", color="red", weight=0]; 1133[label="vxw110 == vxw100",fontsize=16,color="magenta"];1133 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1134 -> 47[label="",style="dashed", color="red", weight=0]; 1134[label="vxw110 == vxw100",fontsize=16,color="magenta"];1134 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1135 -> 42[label="",style="dashed", color="red", weight=0]; 1135[label="vxw110 == vxw100",fontsize=16,color="magenta"];1135 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1136 -> 38[label="",style="dashed", color="red", weight=0]; 1136[label="vxw110 == vxw100",fontsize=16,color="magenta"];1136 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1137 -> 46[label="",style="dashed", color="red", weight=0]; 1137[label="vxw110 == vxw100",fontsize=16,color="magenta"];1137 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1138 -> 39[label="",style="dashed", color="red", weight=0]; 1138[label="vxw110 == vxw100",fontsize=16,color="magenta"];1138 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1139[label="vxw111 < vxw101",fontsize=16,color="blue",shape="box"];2295[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2295[label="",style="solid", color="blue", weight=9]; 2295 -> 1273[label="",style="solid", color="blue", weight=3]; 2296[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2296[label="",style="solid", color="blue", weight=9]; 2296 -> 1274[label="",style="solid", color="blue", weight=3]; 2297[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2297[label="",style="solid", color="blue", weight=9]; 2297 -> 1275[label="",style="solid", color="blue", weight=3]; 2298[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2298[label="",style="solid", color="blue", weight=9]; 2298 -> 1276[label="",style="solid", color="blue", weight=3]; 2299[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2299[label="",style="solid", color="blue", weight=9]; 2299 -> 1277[label="",style="solid", color="blue", weight=3]; 2300[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2300[label="",style="solid", color="blue", weight=9]; 2300 -> 1278[label="",style="solid", color="blue", weight=3]; 2301[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2301[label="",style="solid", color="blue", weight=9]; 2301 -> 1279[label="",style="solid", color="blue", weight=3]; 2302[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2302[label="",style="solid", color="blue", weight=9]; 2302 -> 1280[label="",style="solid", color="blue", weight=3]; 2303[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2303[label="",style="solid", color="blue", weight=9]; 2303 -> 1281[label="",style="solid", color="blue", weight=3]; 2304[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2304[label="",style="solid", color="blue", weight=9]; 2304 -> 1282[label="",style="solid", color="blue", weight=3]; 2305[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2305[label="",style="solid", color="blue", weight=9]; 2305 -> 1283[label="",style="solid", color="blue", weight=3]; 2306[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2306[label="",style="solid", color="blue", weight=9]; 2306 -> 1284[label="",style="solid", color="blue", weight=3]; 2307[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2307[label="",style="solid", color="blue", weight=9]; 2307 -> 1285[label="",style="solid", color="blue", weight=3]; 2308[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2308[label="",style="solid", color="blue", weight=9]; 2308 -> 1286[label="",style="solid", color="blue", weight=3]; 1140 -> 357[label="",style="dashed", color="red", weight=0]; 1140[label="vxw111 == vxw101 && vxw112 <= vxw102",fontsize=16,color="magenta"];1140 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1141[label="vxw67",fontsize=16,color="green",shape="box"];1142[label="True",fontsize=16,color="green",shape="box"];1143[label="vxw110",fontsize=16,color="green",shape="box"];1144[label="vxw100",fontsize=16,color="green",shape="box"];1145[label="vxw110",fontsize=16,color="green",shape="box"];1146[label="vxw100",fontsize=16,color="green",shape="box"];1147[label="vxw110",fontsize=16,color="green",shape="box"];1148[label="vxw100",fontsize=16,color="green",shape="box"];1149[label="vxw110",fontsize=16,color="green",shape="box"];1150[label="vxw100",fontsize=16,color="green",shape="box"];1151[label="vxw110",fontsize=16,color="green",shape="box"];1152[label="vxw100",fontsize=16,color="green",shape="box"];1153[label="vxw110",fontsize=16,color="green",shape="box"];1154[label="vxw100",fontsize=16,color="green",shape="box"];1155[label="vxw110",fontsize=16,color="green",shape="box"];1156[label="vxw100",fontsize=16,color="green",shape="box"];1157[label="vxw110",fontsize=16,color="green",shape="box"];1158[label="vxw100",fontsize=16,color="green",shape="box"];1159[label="vxw110",fontsize=16,color="green",shape="box"];1160[label="vxw100",fontsize=16,color="green",shape="box"];1161[label="vxw110",fontsize=16,color="green",shape="box"];1162[label="vxw100",fontsize=16,color="green",shape="box"];1163[label="vxw110",fontsize=16,color="green",shape="box"];1164[label="vxw100",fontsize=16,color="green",shape="box"];1165[label="vxw110",fontsize=16,color="green",shape="box"];1166[label="vxw100",fontsize=16,color="green",shape="box"];1167[label="vxw110",fontsize=16,color="green",shape="box"];1168[label="vxw100",fontsize=16,color="green",shape="box"];1169[label="vxw110",fontsize=16,color="green",shape="box"];1170[label="vxw100",fontsize=16,color="green",shape="box"];1171 -> 43[label="",style="dashed", color="red", weight=0]; 1171[label="vxw110 == vxw100",fontsize=16,color="magenta"];1171 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1172 -> 45[label="",style="dashed", color="red", weight=0]; 1172[label="vxw110 == vxw100",fontsize=16,color="magenta"];1172 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1173 -> 35[label="",style="dashed", color="red", weight=0]; 1173[label="vxw110 == vxw100",fontsize=16,color="magenta"];1173 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1173 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1174 -> 37[label="",style="dashed", color="red", weight=0]; 1174[label="vxw110 == vxw100",fontsize=16,color="magenta"];1174 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1174 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1175 -> 34[label="",style="dashed", color="red", weight=0]; 1175[label="vxw110 == vxw100",fontsize=16,color="magenta"];1175 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1175 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1176 -> 44[label="",style="dashed", color="red", weight=0]; 1176[label="vxw110 == vxw100",fontsize=16,color="magenta"];1176 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1177 -> 41[label="",style="dashed", color="red", weight=0]; 1177[label="vxw110 == vxw100",fontsize=16,color="magenta"];1177 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1178 -> 40[label="",style="dashed", color="red", weight=0]; 1178[label="vxw110 == vxw100",fontsize=16,color="magenta"];1178 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1179 -> 36[label="",style="dashed", color="red", weight=0]; 1179[label="vxw110 == vxw100",fontsize=16,color="magenta"];1179 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1180 -> 47[label="",style="dashed", color="red", weight=0]; 1180[label="vxw110 == vxw100",fontsize=16,color="magenta"];1180 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1181 -> 42[label="",style="dashed", color="red", weight=0]; 1181[label="vxw110 == vxw100",fontsize=16,color="magenta"];1181 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1182 -> 38[label="",style="dashed", color="red", weight=0]; 1182[label="vxw110 == vxw100",fontsize=16,color="magenta"];1182 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1183 -> 46[label="",style="dashed", color="red", weight=0]; 1183[label="vxw110 == vxw100",fontsize=16,color="magenta"];1183 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1184 -> 39[label="",style="dashed", color="red", weight=0]; 1184[label="vxw110 == vxw100",fontsize=16,color="magenta"];1184 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1185 -> 296[label="",style="dashed", color="red", weight=0]; 1185[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1185 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1186 -> 297[label="",style="dashed", color="red", weight=0]; 1186[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1186 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1320[label="",style="dashed", color="magenta", weight=3]; 1187 -> 298[label="",style="dashed", color="red", weight=0]; 1187[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1187 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1188 -> 299[label="",style="dashed", color="red", weight=0]; 1188[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1188 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1189 -> 300[label="",style="dashed", color="red", weight=0]; 1189[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1189 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1190 -> 301[label="",style="dashed", color="red", weight=0]; 1190[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1190 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1191 -> 302[label="",style="dashed", color="red", weight=0]; 1191[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1191 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1192 -> 303[label="",style="dashed", color="red", weight=0]; 1192[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1192 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1193 -> 304[label="",style="dashed", color="red", weight=0]; 1193[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1193 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1194 -> 305[label="",style="dashed", color="red", weight=0]; 1194[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1194 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1195 -> 306[label="",style="dashed", color="red", weight=0]; 1195[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1195 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1196 -> 307[label="",style="dashed", color="red", weight=0]; 1196[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1196 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1197 -> 308[label="",style="dashed", color="red", weight=0]; 1197[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1197 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1198 -> 309[label="",style="dashed", color="red", weight=0]; 1198[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1198 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1199[label="primCmpInt (Pos vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2309[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1199 -> 2309[label="",style="solid", color="burlywood", weight=9]; 2309 -> 1345[label="",style="solid", color="burlywood", weight=3]; 2310[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1199 -> 2310[label="",style="solid", color="burlywood", weight=9]; 2310 -> 1346[label="",style="solid", color="burlywood", weight=3]; 1200[label="primCmpInt (Neg vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2311[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1200 -> 2311[label="",style="solid", color="burlywood", weight=9]; 2311 -> 1347[label="",style="solid", color="burlywood", weight=3]; 2312[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1200 -> 2312[label="",style="solid", color="burlywood", weight=9]; 2312 -> 1348[label="",style="solid", color="burlywood", weight=3]; 1201[label="compare (vxw110 :% vxw111) (vxw100 :% vxw101)",fontsize=16,color="black",shape="box"];1201 -> 1349[label="",style="solid", color="black", weight=3]; 1202[label="compare (Integer vxw110) (Integer vxw100)",fontsize=16,color="black",shape="box"];1202 -> 1350[label="",style="solid", color="black", weight=3]; 1203[label="compare () ()",fontsize=16,color="black",shape="box"];1203 -> 1351[label="",style="solid", color="black", weight=3]; 1204[label="primCmpDouble (Double vxw110 vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2313[label="vxw111/Pos vxw1110",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2313[label="",style="solid", color="burlywood", weight=9]; 2313 -> 1352[label="",style="solid", color="burlywood", weight=3]; 2314[label="vxw111/Neg vxw1110",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2314[label="",style="solid", color="burlywood", weight=9]; 2314 -> 1353[label="",style="solid", color="burlywood", weight=3]; 1205[label="primCmpFloat (Float vxw110 vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2315[label="vxw111/Pos vxw1110",fontsize=10,color="white",style="solid",shape="box"];1205 -> 2315[label="",style="solid", color="burlywood", weight=9]; 2315 -> 1354[label="",style="solid", color="burlywood", weight=3]; 2316[label="vxw111/Neg vxw1110",fontsize=10,color="white",style="solid",shape="box"];1205 -> 2316[label="",style="solid", color="burlywood", weight=9]; 2316 -> 1355[label="",style="solid", color="burlywood", weight=3]; 1206[label="compare (vxw110 : vxw111) (vxw100 : vxw101)",fontsize=16,color="black",shape="box"];1206 -> 1356[label="",style="solid", color="black", weight=3]; 1207[label="compare (vxw110 : vxw111) []",fontsize=16,color="black",shape="box"];1207 -> 1357[label="",style="solid", color="black", weight=3]; 1208[label="compare [] (vxw100 : vxw101)",fontsize=16,color="black",shape="box"];1208 -> 1358[label="",style="solid", color="black", weight=3]; 1209[label="compare [] []",fontsize=16,color="black",shape="box"];1209 -> 1359[label="",style="solid", color="black", weight=3]; 1210[label="primMulNat (Succ vxw30100) vxw40000",fontsize=16,color="burlywood",shape="box"];2317[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1210 -> 2317[label="",style="solid", color="burlywood", weight=9]; 2317 -> 1360[label="",style="solid", color="burlywood", weight=3]; 2318[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1210 -> 2318[label="",style="solid", color="burlywood", weight=9]; 2318 -> 1361[label="",style="solid", color="burlywood", weight=3]; 1211[label="primMulNat Zero vxw40000",fontsize=16,color="burlywood",shape="box"];2319[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2319[label="",style="solid", color="burlywood", weight=9]; 2319 -> 1362[label="",style="solid", color="burlywood", weight=3]; 2320[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2320[label="",style="solid", color="burlywood", weight=9]; 2320 -> 1363[label="",style="solid", color="burlywood", weight=3]; 1212[label="vxw40000",fontsize=16,color="green",shape="box"];1213[label="vxw3010",fontsize=16,color="green",shape="box"];1214[label="vxw3010",fontsize=16,color="green",shape="box"];1215[label="vxw40000",fontsize=16,color="green",shape="box"];1216[label="primCmpChar (Char vxw110) (Char vxw100)",fontsize=16,color="black",shape="box"];1216 -> 1364[label="",style="solid", color="black", weight=3]; 1217[label="LT",fontsize=16,color="green",shape="box"];1218 -> 892[label="",style="dashed", color="red", weight=0]; 1218[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1218 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1219[label="LT",fontsize=16,color="green",shape="box"];1220[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1220 -> 1367[label="",style="solid", color="black", weight=3]; 1221[label="LT",fontsize=16,color="green",shape="box"];1222[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1222 -> 1368[label="",style="solid", color="black", weight=3]; 1223[label="LT",fontsize=16,color="green",shape="box"];1224[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1224 -> 1369[label="",style="solid", color="black", weight=3]; 1225[label="LT",fontsize=16,color="green",shape="box"];1226 -> 896[label="",style="dashed", color="red", weight=0]; 1226[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1226 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1227[label="LT",fontsize=16,color="green",shape="box"];1228 -> 898[label="",style="dashed", color="red", weight=0]; 1228[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1228 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1229[label="LT",fontsize=16,color="green",shape="box"];1230 -> 900[label="",style="dashed", color="red", weight=0]; 1230[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1230 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1231[label="LT",fontsize=16,color="green",shape="box"];1232[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1232 -> 1376[label="",style="solid", color="black", weight=3]; 1233[label="LT",fontsize=16,color="green",shape="box"];1234 -> 902[label="",style="dashed", color="red", weight=0]; 1234[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1234 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1235[label="LT",fontsize=16,color="green",shape="box"];1236 -> 904[label="",style="dashed", color="red", weight=0]; 1236[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1236 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1237[label="LT",fontsize=16,color="green",shape="box"];1238[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1238 -> 1381[label="",style="solid", color="black", weight=3]; 1239[label="LT",fontsize=16,color="green",shape="box"];1240 -> 906[label="",style="dashed", color="red", weight=0]; 1240[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1240 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1241[label="LT",fontsize=16,color="green",shape="box"];1242[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1242 -> 1384[label="",style="solid", color="black", weight=3]; 1243[label="LT",fontsize=16,color="green",shape="box"];1244 -> 908[label="",style="dashed", color="red", weight=0]; 1244[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1244 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1245[label="vxw100",fontsize=16,color="green",shape="box"];1246[label="vxw110",fontsize=16,color="green",shape="box"];1247[label="vxw100",fontsize=16,color="green",shape="box"];1248[label="vxw110",fontsize=16,color="green",shape="box"];1249[label="vxw100",fontsize=16,color="green",shape="box"];1250[label="vxw110",fontsize=16,color="green",shape="box"];1251[label="vxw100",fontsize=16,color="green",shape="box"];1252[label="vxw110",fontsize=16,color="green",shape="box"];1253[label="vxw100",fontsize=16,color="green",shape="box"];1254[label="vxw110",fontsize=16,color="green",shape="box"];1255[label="vxw100",fontsize=16,color="green",shape="box"];1256[label="vxw110",fontsize=16,color="green",shape="box"];1257[label="vxw100",fontsize=16,color="green",shape="box"];1258[label="vxw110",fontsize=16,color="green",shape="box"];1259[label="vxw100",fontsize=16,color="green",shape="box"];1260[label="vxw110",fontsize=16,color="green",shape="box"];1261[label="vxw100",fontsize=16,color="green",shape="box"];1262[label="vxw110",fontsize=16,color="green",shape="box"];1263[label="vxw100",fontsize=16,color="green",shape="box"];1264[label="vxw110",fontsize=16,color="green",shape="box"];1265[label="vxw100",fontsize=16,color="green",shape="box"];1266[label="vxw110",fontsize=16,color="green",shape="box"];1267[label="vxw100",fontsize=16,color="green",shape="box"];1268[label="vxw110",fontsize=16,color="green",shape="box"];1269[label="vxw100",fontsize=16,color="green",shape="box"];1270[label="vxw110",fontsize=16,color="green",shape="box"];1271[label="vxw100",fontsize=16,color="green",shape="box"];1272[label="vxw110",fontsize=16,color="green",shape="box"];1273 -> 976[label="",style="dashed", color="red", weight=0]; 1273[label="vxw111 < vxw101",fontsize=16,color="magenta"];1273 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1274 -> 977[label="",style="dashed", color="red", weight=0]; 1274[label="vxw111 < vxw101",fontsize=16,color="magenta"];1274 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1275 -> 978[label="",style="dashed", color="red", weight=0]; 1275[label="vxw111 < vxw101",fontsize=16,color="magenta"];1275 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1276 -> 979[label="",style="dashed", color="red", weight=0]; 1276[label="vxw111 < vxw101",fontsize=16,color="magenta"];1276 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1277 -> 980[label="",style="dashed", color="red", weight=0]; 1277[label="vxw111 < vxw101",fontsize=16,color="magenta"];1277 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1278 -> 981[label="",style="dashed", color="red", weight=0]; 1278[label="vxw111 < vxw101",fontsize=16,color="magenta"];1278 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1279 -> 982[label="",style="dashed", color="red", weight=0]; 1279[label="vxw111 < vxw101",fontsize=16,color="magenta"];1279 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1279 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1280 -> 983[label="",style="dashed", color="red", weight=0]; 1280[label="vxw111 < vxw101",fontsize=16,color="magenta"];1280 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1281 -> 984[label="",style="dashed", color="red", weight=0]; 1281[label="vxw111 < vxw101",fontsize=16,color="magenta"];1281 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1281 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1282 -> 985[label="",style="dashed", color="red", weight=0]; 1282[label="vxw111 < vxw101",fontsize=16,color="magenta"];1282 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1282 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1283 -> 986[label="",style="dashed", color="red", weight=0]; 1283[label="vxw111 < vxw101",fontsize=16,color="magenta"];1283 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1283 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1284 -> 987[label="",style="dashed", color="red", weight=0]; 1284[label="vxw111 < vxw101",fontsize=16,color="magenta"];1284 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1284 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1285 -> 988[label="",style="dashed", color="red", weight=0]; 1285[label="vxw111 < vxw101",fontsize=16,color="magenta"];1285 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1285 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1286 -> 989[label="",style="dashed", color="red", weight=0]; 1286[label="vxw111 < vxw101",fontsize=16,color="magenta"];1286 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1286 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1287[label="vxw111 == vxw101",fontsize=16,color="blue",shape="box"];2321[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2321[label="",style="solid", color="blue", weight=9]; 2321 -> 1415[label="",style="solid", color="blue", weight=3]; 2322[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2322[label="",style="solid", color="blue", weight=9]; 2322 -> 1416[label="",style="solid", color="blue", weight=3]; 2323[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2323[label="",style="solid", color="blue", weight=9]; 2323 -> 1417[label="",style="solid", color="blue", weight=3]; 2324[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2324[label="",style="solid", color="blue", weight=9]; 2324 -> 1418[label="",style="solid", color="blue", weight=3]; 2325[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2325[label="",style="solid", color="blue", weight=9]; 2325 -> 1419[label="",style="solid", color="blue", weight=3]; 2326[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2326[label="",style="solid", color="blue", weight=9]; 2326 -> 1420[label="",style="solid", color="blue", weight=3]; 2327[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2327[label="",style="solid", color="blue", weight=9]; 2327 -> 1421[label="",style="solid", color="blue", weight=3]; 2328[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2328[label="",style="solid", color="blue", weight=9]; 2328 -> 1422[label="",style="solid", color="blue", weight=3]; 2329[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2329[label="",style="solid", color="blue", weight=9]; 2329 -> 1423[label="",style="solid", color="blue", weight=3]; 2330[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2330[label="",style="solid", color="blue", weight=9]; 2330 -> 1424[label="",style="solid", color="blue", weight=3]; 2331[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2331[label="",style="solid", color="blue", weight=9]; 2331 -> 1425[label="",style="solid", color="blue", weight=3]; 2332[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2332[label="",style="solid", color="blue", weight=9]; 2332 -> 1426[label="",style="solid", color="blue", weight=3]; 2333[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2333[label="",style="solid", color="blue", weight=9]; 2333 -> 1427[label="",style="solid", color="blue", weight=3]; 2334[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2334[label="",style="solid", color="blue", weight=9]; 2334 -> 1428[label="",style="solid", color="blue", weight=3]; 1288[label="vxw112 <= vxw102",fontsize=16,color="blue",shape="box"];2335[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2335[label="",style="solid", color="blue", weight=9]; 2335 -> 1429[label="",style="solid", color="blue", weight=3]; 2336[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2336[label="",style="solid", color="blue", weight=9]; 2336 -> 1430[label="",style="solid", color="blue", weight=3]; 2337[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2337[label="",style="solid", color="blue", weight=9]; 2337 -> 1431[label="",style="solid", color="blue", weight=3]; 2338[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2338[label="",style="solid", color="blue", weight=9]; 2338 -> 1432[label="",style="solid", color="blue", weight=3]; 2339[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2339[label="",style="solid", color="blue", weight=9]; 2339 -> 1433[label="",style="solid", color="blue", weight=3]; 2340[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2340[label="",style="solid", color="blue", weight=9]; 2340 -> 1434[label="",style="solid", color="blue", weight=3]; 2341[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2341[label="",style="solid", color="blue", weight=9]; 2341 -> 1435[label="",style="solid", color="blue", weight=3]; 2342[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2342[label="",style="solid", color="blue", weight=9]; 2342 -> 1436[label="",style="solid", color="blue", weight=3]; 2343[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2343[label="",style="solid", color="blue", weight=9]; 2343 -> 1437[label="",style="solid", color="blue", weight=3]; 2344[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2344[label="",style="solid", color="blue", weight=9]; 2344 -> 1438[label="",style="solid", color="blue", weight=3]; 2345[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2345[label="",style="solid", color="blue", weight=9]; 2345 -> 1439[label="",style="solid", color="blue", weight=3]; 2346[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2346[label="",style="solid", color="blue", weight=9]; 2346 -> 1440[label="",style="solid", color="blue", weight=3]; 2347[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2347[label="",style="solid", color="blue", weight=9]; 2347 -> 1441[label="",style="solid", color="blue", weight=3]; 2348[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2348[label="",style="solid", color="blue", weight=9]; 2348 -> 1442[label="",style="solid", color="blue", weight=3]; 1289[label="vxw100",fontsize=16,color="green",shape="box"];1290[label="vxw110",fontsize=16,color="green",shape="box"];1291[label="vxw100",fontsize=16,color="green",shape="box"];1292[label="vxw110",fontsize=16,color="green",shape="box"];1293[label="vxw100",fontsize=16,color="green",shape="box"];1294[label="vxw110",fontsize=16,color="green",shape="box"];1295[label="vxw100",fontsize=16,color="green",shape="box"];1296[label="vxw110",fontsize=16,color="green",shape="box"];1297[label="vxw100",fontsize=16,color="green",shape="box"];1298[label="vxw110",fontsize=16,color="green",shape="box"];1299[label="vxw100",fontsize=16,color="green",shape="box"];1300[label="vxw110",fontsize=16,color="green",shape="box"];1301[label="vxw100",fontsize=16,color="green",shape="box"];1302[label="vxw110",fontsize=16,color="green",shape="box"];1303[label="vxw100",fontsize=16,color="green",shape="box"];1304[label="vxw110",fontsize=16,color="green",shape="box"];1305[label="vxw100",fontsize=16,color="green",shape="box"];1306[label="vxw110",fontsize=16,color="green",shape="box"];1307[label="vxw100",fontsize=16,color="green",shape="box"];1308[label="vxw110",fontsize=16,color="green",shape="box"];1309[label="vxw100",fontsize=16,color="green",shape="box"];1310[label="vxw110",fontsize=16,color="green",shape="box"];1311[label="vxw100",fontsize=16,color="green",shape="box"];1312[label="vxw110",fontsize=16,color="green",shape="box"];1313[label="vxw100",fontsize=16,color="green",shape="box"];1314[label="vxw110",fontsize=16,color="green",shape="box"];1315[label="vxw100",fontsize=16,color="green",shape="box"];1316[label="vxw110",fontsize=16,color="green",shape="box"];1317[label="vxw111",fontsize=16,color="green",shape="box"];1318[label="vxw101",fontsize=16,color="green",shape="box"];1319[label="vxw111",fontsize=16,color="green",shape="box"];1320[label="vxw101",fontsize=16,color="green",shape="box"];1321[label="vxw111",fontsize=16,color="green",shape="box"];1322[label="vxw101",fontsize=16,color="green",shape="box"];1323[label="vxw111",fontsize=16,color="green",shape="box"];1324[label="vxw101",fontsize=16,color="green",shape="box"];1325[label="vxw111",fontsize=16,color="green",shape="box"];1326[label="vxw101",fontsize=16,color="green",shape="box"];1327[label="vxw111",fontsize=16,color="green",shape="box"];1328[label="vxw101",fontsize=16,color="green",shape="box"];1329[label="vxw111",fontsize=16,color="green",shape="box"];1330[label="vxw101",fontsize=16,color="green",shape="box"];1331[label="vxw111",fontsize=16,color="green",shape="box"];1332[label="vxw101",fontsize=16,color="green",shape="box"];1333[label="vxw111",fontsize=16,color="green",shape="box"];1334[label="vxw101",fontsize=16,color="green",shape="box"];1335[label="vxw111",fontsize=16,color="green",shape="box"];1336[label="vxw101",fontsize=16,color="green",shape="box"];1337[label="vxw111",fontsize=16,color="green",shape="box"];1338[label="vxw101",fontsize=16,color="green",shape="box"];1339[label="vxw111",fontsize=16,color="green",shape="box"];1340[label="vxw101",fontsize=16,color="green",shape="box"];1341[label="vxw111",fontsize=16,color="green",shape="box"];1342[label="vxw101",fontsize=16,color="green",shape="box"];1343[label="vxw111",fontsize=16,color="green",shape="box"];1344[label="vxw101",fontsize=16,color="green",shape="box"];1345[label="primCmpInt (Pos (Succ vxw1100)) vxw10",fontsize=16,color="burlywood",shape="box"];2349[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1345 -> 2349[label="",style="solid", color="burlywood", weight=9]; 2349 -> 1443[label="",style="solid", color="burlywood", weight=3]; 2350[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1345 -> 2350[label="",style="solid", color="burlywood", weight=9]; 2350 -> 1444[label="",style="solid", color="burlywood", weight=3]; 1346[label="primCmpInt (Pos Zero) vxw10",fontsize=16,color="burlywood",shape="box"];2351[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2351[label="",style="solid", color="burlywood", weight=9]; 2351 -> 1445[label="",style="solid", color="burlywood", weight=3]; 2352[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2352[label="",style="solid", color="burlywood", weight=9]; 2352 -> 1446[label="",style="solid", color="burlywood", weight=3]; 1347[label="primCmpInt (Neg (Succ vxw1100)) vxw10",fontsize=16,color="burlywood",shape="box"];2353[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1347 -> 2353[label="",style="solid", color="burlywood", weight=9]; 2353 -> 1447[label="",style="solid", color="burlywood", weight=3]; 2354[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1347 -> 2354[label="",style="solid", color="burlywood", weight=9]; 2354 -> 1448[label="",style="solid", color="burlywood", weight=3]; 1348[label="primCmpInt (Neg Zero) vxw10",fontsize=16,color="burlywood",shape="box"];2355[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1348 -> 2355[label="",style="solid", color="burlywood", weight=9]; 2355 -> 1449[label="",style="solid", color="burlywood", weight=3]; 2356[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1348 -> 2356[label="",style="solid", color="burlywood", weight=9]; 2356 -> 1450[label="",style="solid", color="burlywood", weight=3]; 1349[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="blue",shape="box"];2357[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1349 -> 2357[label="",style="solid", color="blue", weight=9]; 2357 -> 1451[label="",style="solid", color="blue", weight=3]; 2358[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1349 -> 2358[label="",style="solid", color="blue", weight=9]; 2358 -> 1452[label="",style="solid", color="blue", weight=3]; 1350 -> 1010[label="",style="dashed", color="red", weight=0]; 1350[label="primCmpInt vxw110 vxw100",fontsize=16,color="magenta"];1350 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1351[label="EQ",fontsize=16,color="green",shape="box"];1352[label="primCmpDouble (Double vxw110 (Pos vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2359[label="vxw10/Double vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1352 -> 2359[label="",style="solid", color="burlywood", weight=9]; 2359 -> 1455[label="",style="solid", color="burlywood", weight=3]; 1353[label="primCmpDouble (Double vxw110 (Neg vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2360[label="vxw10/Double vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2360[label="",style="solid", color="burlywood", weight=9]; 2360 -> 1456[label="",style="solid", color="burlywood", weight=3]; 1354[label="primCmpFloat (Float vxw110 (Pos vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2361[label="vxw10/Float vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2361[label="",style="solid", color="burlywood", weight=9]; 2361 -> 1457[label="",style="solid", color="burlywood", weight=3]; 1355[label="primCmpFloat (Float vxw110 (Neg vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2362[label="vxw10/Float vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1355 -> 2362[label="",style="solid", color="burlywood", weight=9]; 2362 -> 1458[label="",style="solid", color="burlywood", weight=3]; 1356 -> 1459[label="",style="dashed", color="red", weight=0]; 1356[label="primCompAux vxw110 vxw100 (compare vxw111 vxw101)",fontsize=16,color="magenta"];1356 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1357[label="GT",fontsize=16,color="green",shape="box"];1358[label="LT",fontsize=16,color="green",shape="box"];1359[label="EQ",fontsize=16,color="green",shape="box"];1360[label="primMulNat (Succ vxw30100) (Succ vxw400000)",fontsize=16,color="black",shape="box"];1360 -> 1461[label="",style="solid", color="black", weight=3]; 1361[label="primMulNat (Succ vxw30100) Zero",fontsize=16,color="black",shape="box"];1361 -> 1462[label="",style="solid", color="black", weight=3]; 1362[label="primMulNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];1362 -> 1463[label="",style="solid", color="black", weight=3]; 1363[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1363 -> 1464[label="",style="solid", color="black", weight=3]; 1364[label="primCmpNat vxw110 vxw100",fontsize=16,color="burlywood",shape="triangle"];2363[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1364 -> 2363[label="",style="solid", color="burlywood", weight=9]; 2363 -> 1465[label="",style="solid", color="burlywood", weight=3]; 2364[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1364 -> 2364[label="",style="solid", color="burlywood", weight=9]; 2364 -> 1466[label="",style="solid", color="burlywood", weight=3]; 1365[label="vxw110",fontsize=16,color="green",shape="box"];1366[label="vxw100",fontsize=16,color="green",shape="box"];1367[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1367 -> 1467[label="",style="solid", color="black", weight=3]; 1368[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1368 -> 1468[label="",style="solid", color="black", weight=3]; 1369[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1369 -> 1469[label="",style="solid", color="black", weight=3]; 1370[label="vxw110",fontsize=16,color="green",shape="box"];1371[label="vxw100",fontsize=16,color="green",shape="box"];1372[label="vxw110",fontsize=16,color="green",shape="box"];1373[label="vxw100",fontsize=16,color="green",shape="box"];1374[label="vxw110",fontsize=16,color="green",shape="box"];1375[label="vxw100",fontsize=16,color="green",shape="box"];1376[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1376 -> 1470[label="",style="solid", color="black", weight=3]; 1377[label="vxw110",fontsize=16,color="green",shape="box"];1378[label="vxw100",fontsize=16,color="green",shape="box"];1379[label="vxw110",fontsize=16,color="green",shape="box"];1380[label="vxw100",fontsize=16,color="green",shape="box"];1381[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1381 -> 1471[label="",style="solid", color="black", weight=3]; 1382[label="vxw110",fontsize=16,color="green",shape="box"];1383[label="vxw100",fontsize=16,color="green",shape="box"];1384[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1384 -> 1472[label="",style="solid", color="black", weight=3]; 1385[label="vxw110",fontsize=16,color="green",shape="box"];1386[label="vxw100",fontsize=16,color="green",shape="box"];1387[label="vxw111",fontsize=16,color="green",shape="box"];1388[label="vxw101",fontsize=16,color="green",shape="box"];1389[label="vxw111",fontsize=16,color="green",shape="box"];1390[label="vxw101",fontsize=16,color="green",shape="box"];1391[label="vxw111",fontsize=16,color="green",shape="box"];1392[label="vxw101",fontsize=16,color="green",shape="box"];1393[label="vxw111",fontsize=16,color="green",shape="box"];1394[label="vxw101",fontsize=16,color="green",shape="box"];1395[label="vxw111",fontsize=16,color="green",shape="box"];1396[label="vxw101",fontsize=16,color="green",shape="box"];1397[label="vxw111",fontsize=16,color="green",shape="box"];1398[label="vxw101",fontsize=16,color="green",shape="box"];1399[label="vxw111",fontsize=16,color="green",shape="box"];1400[label="vxw101",fontsize=16,color="green",shape="box"];1401[label="vxw111",fontsize=16,color="green",shape="box"];1402[label="vxw101",fontsize=16,color="green",shape="box"];1403[label="vxw111",fontsize=16,color="green",shape="box"];1404[label="vxw101",fontsize=16,color="green",shape="box"];1405[label="vxw111",fontsize=16,color="green",shape="box"];1406[label="vxw101",fontsize=16,color="green",shape="box"];1407[label="vxw111",fontsize=16,color="green",shape="box"];1408[label="vxw101",fontsize=16,color="green",shape="box"];1409[label="vxw111",fontsize=16,color="green",shape="box"];1410[label="vxw101",fontsize=16,color="green",shape="box"];1411[label="vxw111",fontsize=16,color="green",shape="box"];1412[label="vxw101",fontsize=16,color="green",shape="box"];1413[label="vxw111",fontsize=16,color="green",shape="box"];1414[label="vxw101",fontsize=16,color="green",shape="box"];1415 -> 43[label="",style="dashed", color="red", weight=0]; 1415[label="vxw111 == vxw101",fontsize=16,color="magenta"];1415 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1416 -> 45[label="",style="dashed", color="red", weight=0]; 1416[label="vxw111 == vxw101",fontsize=16,color="magenta"];1416 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1417 -> 35[label="",style="dashed", color="red", weight=0]; 1417[label="vxw111 == vxw101",fontsize=16,color="magenta"];1417 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1418 -> 37[label="",style="dashed", color="red", weight=0]; 1418[label="vxw111 == vxw101",fontsize=16,color="magenta"];1418 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1419 -> 34[label="",style="dashed", color="red", weight=0]; 1419[label="vxw111 == vxw101",fontsize=16,color="magenta"];1419 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1420 -> 44[label="",style="dashed", color="red", weight=0]; 1420[label="vxw111 == vxw101",fontsize=16,color="magenta"];1420 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1421 -> 41[label="",style="dashed", color="red", weight=0]; 1421[label="vxw111 == vxw101",fontsize=16,color="magenta"];1421 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1422 -> 40[label="",style="dashed", color="red", weight=0]; 1422[label="vxw111 == vxw101",fontsize=16,color="magenta"];1422 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1423 -> 36[label="",style="dashed", color="red", weight=0]; 1423[label="vxw111 == vxw101",fontsize=16,color="magenta"];1423 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1424 -> 47[label="",style="dashed", color="red", weight=0]; 1424[label="vxw111 == vxw101",fontsize=16,color="magenta"];1424 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1425 -> 42[label="",style="dashed", color="red", weight=0]; 1425[label="vxw111 == vxw101",fontsize=16,color="magenta"];1425 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1426 -> 38[label="",style="dashed", color="red", weight=0]; 1426[label="vxw111 == vxw101",fontsize=16,color="magenta"];1426 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1427 -> 46[label="",style="dashed", color="red", weight=0]; 1427[label="vxw111 == vxw101",fontsize=16,color="magenta"];1427 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1428 -> 39[label="",style="dashed", color="red", weight=0]; 1428[label="vxw111 == vxw101",fontsize=16,color="magenta"];1428 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1429 -> 296[label="",style="dashed", color="red", weight=0]; 1429[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1429 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1430 -> 297[label="",style="dashed", color="red", weight=0]; 1430[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1430 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1431 -> 298[label="",style="dashed", color="red", weight=0]; 1431[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1431 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1432 -> 299[label="",style="dashed", color="red", weight=0]; 1432[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1432 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1433 -> 300[label="",style="dashed", color="red", weight=0]; 1433[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1433 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1434 -> 301[label="",style="dashed", color="red", weight=0]; 1434[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1434 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1435 -> 302[label="",style="dashed", color="red", weight=0]; 1435[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1435 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1436 -> 303[label="",style="dashed", color="red", weight=0]; 1436[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1436 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1437 -> 304[label="",style="dashed", color="red", weight=0]; 1437[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1437 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1438 -> 305[label="",style="dashed", color="red", weight=0]; 1438[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1438 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1439 -> 306[label="",style="dashed", color="red", weight=0]; 1439[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1439 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1440 -> 307[label="",style="dashed", color="red", weight=0]; 1440[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1440 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1441 -> 308[label="",style="dashed", color="red", weight=0]; 1441[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1441 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1442 -> 309[label="",style="dashed", color="red", weight=0]; 1442[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1442 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1443[label="primCmpInt (Pos (Succ vxw1100)) (Pos vxw100)",fontsize=16,color="black",shape="box"];1443 -> 1529[label="",style="solid", color="black", weight=3]; 1444[label="primCmpInt (Pos (Succ vxw1100)) (Neg vxw100)",fontsize=16,color="black",shape="box"];1444 -> 1530[label="",style="solid", color="black", weight=3]; 1445[label="primCmpInt (Pos Zero) (Pos vxw100)",fontsize=16,color="burlywood",shape="box"];2365[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1445 -> 2365[label="",style="solid", color="burlywood", weight=9]; 2365 -> 1531[label="",style="solid", color="burlywood", weight=3]; 2366[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1445 -> 2366[label="",style="solid", color="burlywood", weight=9]; 2366 -> 1532[label="",style="solid", color="burlywood", weight=3]; 1446[label="primCmpInt (Pos Zero) (Neg vxw100)",fontsize=16,color="burlywood",shape="box"];2367[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1446 -> 2367[label="",style="solid", color="burlywood", weight=9]; 2367 -> 1533[label="",style="solid", color="burlywood", weight=3]; 2368[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1446 -> 2368[label="",style="solid", color="burlywood", weight=9]; 2368 -> 1534[label="",style="solid", color="burlywood", weight=3]; 1447[label="primCmpInt (Neg (Succ vxw1100)) (Pos vxw100)",fontsize=16,color="black",shape="box"];1447 -> 1535[label="",style="solid", color="black", weight=3]; 1448[label="primCmpInt (Neg (Succ vxw1100)) (Neg vxw100)",fontsize=16,color="black",shape="box"];1448 -> 1536[label="",style="solid", color="black", weight=3]; 1449[label="primCmpInt (Neg Zero) (Pos vxw100)",fontsize=16,color="burlywood",shape="box"];2369[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1449 -> 2369[label="",style="solid", color="burlywood", weight=9]; 2369 -> 1537[label="",style="solid", color="burlywood", weight=3]; 2370[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1449 -> 2370[label="",style="solid", color="burlywood", weight=9]; 2370 -> 1538[label="",style="solid", color="burlywood", weight=3]; 1450[label="primCmpInt (Neg Zero) (Neg vxw100)",fontsize=16,color="burlywood",shape="box"];2371[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1450 -> 2371[label="",style="solid", color="burlywood", weight=9]; 2371 -> 1539[label="",style="solid", color="burlywood", weight=3]; 2372[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1450 -> 2372[label="",style="solid", color="burlywood", weight=9]; 2372 -> 1540[label="",style="solid", color="burlywood", weight=3]; 1451 -> 896[label="",style="dashed", color="red", weight=0]; 1451[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="magenta"];1451 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1452 -> 900[label="",style="dashed", color="red", weight=0]; 1452[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="magenta"];1452 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1453[label="vxw110",fontsize=16,color="green",shape="box"];1454[label="vxw100",fontsize=16,color="green",shape="box"];1455[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2373[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2373[label="",style="solid", color="burlywood", weight=9]; 2373 -> 1545[label="",style="solid", color="burlywood", weight=3]; 2374[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2374[label="",style="solid", color="burlywood", weight=9]; 2374 -> 1546[label="",style="solid", color="burlywood", weight=3]; 1456[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2375[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2375[label="",style="solid", color="burlywood", weight=9]; 2375 -> 1547[label="",style="solid", color="burlywood", weight=3]; 2376[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2376[label="",style="solid", color="burlywood", weight=9]; 2376 -> 1548[label="",style="solid", color="burlywood", weight=3]; 1457[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2377[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1457 -> 2377[label="",style="solid", color="burlywood", weight=9]; 2377 -> 1549[label="",style="solid", color="burlywood", weight=3]; 2378[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1457 -> 2378[label="",style="solid", color="burlywood", weight=9]; 2378 -> 1550[label="",style="solid", color="burlywood", weight=3]; 1458[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2379[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2379[label="",style="solid", color="burlywood", weight=9]; 2379 -> 1551[label="",style="solid", color="burlywood", weight=3]; 2380[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2380[label="",style="solid", color="burlywood", weight=9]; 2380 -> 1552[label="",style="solid", color="burlywood", weight=3]; 1460 -> 908[label="",style="dashed", color="red", weight=0]; 1460[label="compare vxw111 vxw101",fontsize=16,color="magenta"];1460 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1459[label="primCompAux vxw110 vxw100 vxw68",fontsize=16,color="black",shape="triangle"];1459 -> 1555[label="",style="solid", color="black", weight=3]; 1461 -> 1556[label="",style="dashed", color="red", weight=0]; 1461[label="primPlusNat (primMulNat vxw30100 (Succ vxw400000)) (Succ vxw400000)",fontsize=16,color="magenta"];1461 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1462[label="Zero",fontsize=16,color="green",shape="box"];1463[label="Zero",fontsize=16,color="green",shape="box"];1464[label="Zero",fontsize=16,color="green",shape="box"];1465[label="primCmpNat (Succ vxw1100) vxw100",fontsize=16,color="burlywood",shape="box"];2381[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1465 -> 2381[label="",style="solid", color="burlywood", weight=9]; 2381 -> 1558[label="",style="solid", color="burlywood", weight=3]; 2382[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1465 -> 2382[label="",style="solid", color="burlywood", weight=9]; 2382 -> 1559[label="",style="solid", color="burlywood", weight=3]; 1466[label="primCmpNat Zero vxw100",fontsize=16,color="burlywood",shape="box"];2383[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1466 -> 2383[label="",style="solid", color="burlywood", weight=9]; 2383 -> 1560[label="",style="solid", color="burlywood", weight=3]; 2384[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1466 -> 2384[label="",style="solid", color="burlywood", weight=9]; 2384 -> 1561[label="",style="solid", color="burlywood", weight=3]; 1467 -> 1562[label="",style="dashed", color="red", weight=0]; 1467[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1467 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1564[label="",style="dashed", color="red", weight=0]; 1468[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1468 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1566[label="",style="dashed", color="red", weight=0]; 1469[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1469 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1568[label="",style="dashed", color="red", weight=0]; 1470[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1470 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1570[label="",style="dashed", color="red", weight=0]; 1471[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1471 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1572[label="",style="dashed", color="red", weight=0]; 1472[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1472 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1473[label="vxw101",fontsize=16,color="green",shape="box"];1474[label="vxw111",fontsize=16,color="green",shape="box"];1475[label="vxw101",fontsize=16,color="green",shape="box"];1476[label="vxw111",fontsize=16,color="green",shape="box"];1477[label="vxw101",fontsize=16,color="green",shape="box"];1478[label="vxw111",fontsize=16,color="green",shape="box"];1479[label="vxw101",fontsize=16,color="green",shape="box"];1480[label="vxw111",fontsize=16,color="green",shape="box"];1481[label="vxw101",fontsize=16,color="green",shape="box"];1482[label="vxw111",fontsize=16,color="green",shape="box"];1483[label="vxw101",fontsize=16,color="green",shape="box"];1484[label="vxw111",fontsize=16,color="green",shape="box"];1485[label="vxw101",fontsize=16,color="green",shape="box"];1486[label="vxw111",fontsize=16,color="green",shape="box"];1487[label="vxw101",fontsize=16,color="green",shape="box"];1488[label="vxw111",fontsize=16,color="green",shape="box"];1489[label="vxw101",fontsize=16,color="green",shape="box"];1490[label="vxw111",fontsize=16,color="green",shape="box"];1491[label="vxw101",fontsize=16,color="green",shape="box"];1492[label="vxw111",fontsize=16,color="green",shape="box"];1493[label="vxw101",fontsize=16,color="green",shape="box"];1494[label="vxw111",fontsize=16,color="green",shape="box"];1495[label="vxw101",fontsize=16,color="green",shape="box"];1496[label="vxw111",fontsize=16,color="green",shape="box"];1497[label="vxw101",fontsize=16,color="green",shape="box"];1498[label="vxw111",fontsize=16,color="green",shape="box"];1499[label="vxw101",fontsize=16,color="green",shape="box"];1500[label="vxw111",fontsize=16,color="green",shape="box"];1501[label="vxw112",fontsize=16,color="green",shape="box"];1502[label="vxw102",fontsize=16,color="green",shape="box"];1503[label="vxw112",fontsize=16,color="green",shape="box"];1504[label="vxw102",fontsize=16,color="green",shape="box"];1505[label="vxw112",fontsize=16,color="green",shape="box"];1506[label="vxw102",fontsize=16,color="green",shape="box"];1507[label="vxw112",fontsize=16,color="green",shape="box"];1508[label="vxw102",fontsize=16,color="green",shape="box"];1509[label="vxw112",fontsize=16,color="green",shape="box"];1510[label="vxw102",fontsize=16,color="green",shape="box"];1511[label="vxw112",fontsize=16,color="green",shape="box"];1512[label="vxw102",fontsize=16,color="green",shape="box"];1513[label="vxw112",fontsize=16,color="green",shape="box"];1514[label="vxw102",fontsize=16,color="green",shape="box"];1515[label="vxw112",fontsize=16,color="green",shape="box"];1516[label="vxw102",fontsize=16,color="green",shape="box"];1517[label="vxw112",fontsize=16,color="green",shape="box"];1518[label="vxw102",fontsize=16,color="green",shape="box"];1519[label="vxw112",fontsize=16,color="green",shape="box"];1520[label="vxw102",fontsize=16,color="green",shape="box"];1521[label="vxw112",fontsize=16,color="green",shape="box"];1522[label="vxw102",fontsize=16,color="green",shape="box"];1523[label="vxw112",fontsize=16,color="green",shape="box"];1524[label="vxw102",fontsize=16,color="green",shape="box"];1525[label="vxw112",fontsize=16,color="green",shape="box"];1526[label="vxw102",fontsize=16,color="green",shape="box"];1527[label="vxw112",fontsize=16,color="green",shape="box"];1528[label="vxw102",fontsize=16,color="green",shape="box"];1529 -> 1364[label="",style="dashed", color="red", weight=0]; 1529[label="primCmpNat (Succ vxw1100) vxw100",fontsize=16,color="magenta"];1529 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1530[label="GT",fontsize=16,color="green",shape="box"];1531[label="primCmpInt (Pos Zero) (Pos (Succ vxw1000))",fontsize=16,color="black",shape="box"];1531 -> 1576[label="",style="solid", color="black", weight=3]; 1532[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1532 -> 1577[label="",style="solid", color="black", weight=3]; 1533[label="primCmpInt (Pos Zero) (Neg (Succ vxw1000))",fontsize=16,color="black",shape="box"];1533 -> 1578[label="",style="solid", color="black", weight=3]; 1534[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1534 -> 1579[label="",style="solid", color="black", weight=3]; 1535[label="LT",fontsize=16,color="green",shape="box"];1536 -> 1364[label="",style="dashed", color="red", weight=0]; 1536[label="primCmpNat vxw100 (Succ vxw1100)",fontsize=16,color="magenta"];1536 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1537[label="primCmpInt (Neg Zero) (Pos (Succ vxw1000))",fontsize=16,color="black",shape="box"];1537 -> 1582[label="",style="solid", color="black", weight=3]; 1538[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1538 -> 1583[label="",style="solid", color="black", weight=3]; 1539[label="primCmpInt (Neg Zero) (Neg (Succ vxw1000))",fontsize=16,color="black",shape="box"];1539 -> 1584[label="",style="solid", color="black", weight=3]; 1540[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1540 -> 1585[label="",style="solid", color="black", weight=3]; 1541 -> 415[label="",style="dashed", color="red", weight=0]; 1541[label="vxw110 * vxw101",fontsize=16,color="magenta"];1541 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1542 -> 415[label="",style="dashed", color="red", weight=0]; 1542[label="vxw100 * vxw111",fontsize=16,color="magenta"];1542 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1543[label="vxw110 * vxw101",fontsize=16,color="burlywood",shape="triangle"];2385[label="vxw110/Integer vxw1100",fontsize=10,color="white",style="solid",shape="box"];1543 -> 2385[label="",style="solid", color="burlywood", weight=9]; 2385 -> 1590[label="",style="solid", color="burlywood", weight=3]; 1544 -> 1543[label="",style="dashed", color="red", weight=0]; 1544[label="vxw100 * vxw111",fontsize=16,color="magenta"];1544 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1545[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1545 -> 1593[label="",style="solid", color="black", weight=3]; 1546[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1546 -> 1594[label="",style="solid", color="black", weight=3]; 1547[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1547 -> 1595[label="",style="solid", color="black", weight=3]; 1548[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1548 -> 1596[label="",style="solid", color="black", weight=3]; 1549[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1549 -> 1597[label="",style="solid", color="black", weight=3]; 1550[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1550 -> 1598[label="",style="solid", color="black", weight=3]; 1551[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1551 -> 1599[label="",style="solid", color="black", weight=3]; 1552[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1552 -> 1600[label="",style="solid", color="black", weight=3]; 1553[label="vxw111",fontsize=16,color="green",shape="box"];1554[label="vxw101",fontsize=16,color="green",shape="box"];1555 -> 1601[label="",style="dashed", color="red", weight=0]; 1555[label="primCompAux0 vxw68 (compare vxw110 vxw100)",fontsize=16,color="magenta"];1555 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1106[label="",style="dashed", color="red", weight=0]; 1557[label="primMulNat vxw30100 (Succ vxw400000)",fontsize=16,color="magenta"];1557 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1556[label="primPlusNat vxw69 (Succ vxw400000)",fontsize=16,color="burlywood",shape="triangle"];2386[label="vxw69/Succ vxw690",fontsize=10,color="white",style="solid",shape="box"];1556 -> 2386[label="",style="solid", color="burlywood", weight=9]; 2386 -> 1606[label="",style="solid", color="burlywood", weight=3]; 2387[label="vxw69/Zero",fontsize=10,color="white",style="solid",shape="box"];1556 -> 2387[label="",style="solid", color="burlywood", weight=9]; 2387 -> 1607[label="",style="solid", color="burlywood", weight=3]; 1558[label="primCmpNat (Succ vxw1100) (Succ vxw1000)",fontsize=16,color="black",shape="box"];1558 -> 1608[label="",style="solid", color="black", weight=3]; 1559[label="primCmpNat (Succ vxw1100) Zero",fontsize=16,color="black",shape="box"];1559 -> 1609[label="",style="solid", color="black", weight=3]; 1560[label="primCmpNat Zero (Succ vxw1000)",fontsize=16,color="black",shape="box"];1560 -> 1610[label="",style="solid", color="black", weight=3]; 1561[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1561 -> 1611[label="",style="solid", color="black", weight=3]; 1563 -> 45[label="",style="dashed", color="red", weight=0]; 1563[label="vxw110 == vxw100",fontsize=16,color="magenta"];1563 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1562[label="compare2 vxw110 vxw100 vxw70",fontsize=16,color="burlywood",shape="triangle"];2388[label="vxw70/False",fontsize=10,color="white",style="solid",shape="box"];1562 -> 2388[label="",style="solid", color="burlywood", weight=9]; 2388 -> 1614[label="",style="solid", color="burlywood", weight=3]; 2389[label="vxw70/True",fontsize=10,color="white",style="solid",shape="box"];1562 -> 2389[label="",style="solid", color="burlywood", weight=9]; 2389 -> 1615[label="",style="solid", color="burlywood", weight=3]; 1565 -> 35[label="",style="dashed", color="red", weight=0]; 1565[label="vxw110 == vxw100",fontsize=16,color="magenta"];1565 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1564[label="compare2 vxw110 vxw100 vxw71",fontsize=16,color="burlywood",shape="triangle"];2390[label="vxw71/False",fontsize=10,color="white",style="solid",shape="box"];1564 -> 2390[label="",style="solid", color="burlywood", weight=9]; 2390 -> 1618[label="",style="solid", color="burlywood", weight=3]; 2391[label="vxw71/True",fontsize=10,color="white",style="solid",shape="box"];1564 -> 2391[label="",style="solid", color="burlywood", weight=9]; 2391 -> 1619[label="",style="solid", color="burlywood", weight=3]; 1567 -> 37[label="",style="dashed", color="red", weight=0]; 1567[label="vxw110 == vxw100",fontsize=16,color="magenta"];1567 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1566[label="compare2 vxw110 vxw100 vxw72",fontsize=16,color="burlywood",shape="triangle"];2392[label="vxw72/False",fontsize=10,color="white",style="solid",shape="box"];1566 -> 2392[label="",style="solid", color="burlywood", weight=9]; 2392 -> 1622[label="",style="solid", color="burlywood", weight=3]; 2393[label="vxw72/True",fontsize=10,color="white",style="solid",shape="box"];1566 -> 2393[label="",style="solid", color="burlywood", weight=9]; 2393 -> 1623[label="",style="solid", color="burlywood", weight=3]; 1569 -> 40[label="",style="dashed", color="red", weight=0]; 1569[label="vxw110 == vxw100",fontsize=16,color="magenta"];1569 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1568[label="compare2 vxw110 vxw100 vxw73",fontsize=16,color="burlywood",shape="triangle"];2394[label="vxw73/False",fontsize=10,color="white",style="solid",shape="box"];1568 -> 2394[label="",style="solid", color="burlywood", weight=9]; 2394 -> 1626[label="",style="solid", color="burlywood", weight=3]; 2395[label="vxw73/True",fontsize=10,color="white",style="solid",shape="box"];1568 -> 2395[label="",style="solid", color="burlywood", weight=9]; 2395 -> 1627[label="",style="solid", color="burlywood", weight=3]; 1571 -> 42[label="",style="dashed", color="red", weight=0]; 1571[label="vxw110 == vxw100",fontsize=16,color="magenta"];1571 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1570[label="compare2 vxw110 vxw100 vxw74",fontsize=16,color="burlywood",shape="triangle"];2396[label="vxw74/False",fontsize=10,color="white",style="solid",shape="box"];1570 -> 2396[label="",style="solid", color="burlywood", weight=9]; 2396 -> 1630[label="",style="solid", color="burlywood", weight=3]; 2397[label="vxw74/True",fontsize=10,color="white",style="solid",shape="box"];1570 -> 2397[label="",style="solid", color="burlywood", weight=9]; 2397 -> 1631[label="",style="solid", color="burlywood", weight=3]; 1573 -> 46[label="",style="dashed", color="red", weight=0]; 1573[label="vxw110 == vxw100",fontsize=16,color="magenta"];1573 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1572[label="compare2 vxw110 vxw100 vxw75",fontsize=16,color="burlywood",shape="triangle"];2398[label="vxw75/False",fontsize=10,color="white",style="solid",shape="box"];1572 -> 2398[label="",style="solid", color="burlywood", weight=9]; 2398 -> 1634[label="",style="solid", color="burlywood", weight=3]; 2399[label="vxw75/True",fontsize=10,color="white",style="solid",shape="box"];1572 -> 2399[label="",style="solid", color="burlywood", weight=9]; 2399 -> 1635[label="",style="solid", color="burlywood", weight=3]; 1574[label="Succ vxw1100",fontsize=16,color="green",shape="box"];1575[label="vxw100",fontsize=16,color="green",shape="box"];1576 -> 1364[label="",style="dashed", color="red", weight=0]; 1576[label="primCmpNat Zero (Succ vxw1000)",fontsize=16,color="magenta"];1576 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1577[label="EQ",fontsize=16,color="green",shape="box"];1578[label="GT",fontsize=16,color="green",shape="box"];1579[label="EQ",fontsize=16,color="green",shape="box"];1580[label="vxw100",fontsize=16,color="green",shape="box"];1581[label="Succ vxw1100",fontsize=16,color="green",shape="box"];1582[label="LT",fontsize=16,color="green",shape="box"];1583[label="EQ",fontsize=16,color="green",shape="box"];1584 -> 1364[label="",style="dashed", color="red", weight=0]; 1584[label="primCmpNat (Succ vxw1000) Zero",fontsize=16,color="magenta"];1584 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1585[label="EQ",fontsize=16,color="green",shape="box"];1586[label="vxw110",fontsize=16,color="green",shape="box"];1587[label="vxw101",fontsize=16,color="green",shape="box"];1588[label="vxw100",fontsize=16,color="green",shape="box"];1589[label="vxw111",fontsize=16,color="green",shape="box"];1590[label="Integer vxw1100 * vxw101",fontsize=16,color="burlywood",shape="box"];2400[label="vxw101/Integer vxw1010",fontsize=10,color="white",style="solid",shape="box"];1590 -> 2400[label="",style="solid", color="burlywood", weight=9]; 2400 -> 1640[label="",style="solid", color="burlywood", weight=3]; 1591[label="vxw111",fontsize=16,color="green",shape="box"];1592[label="vxw100",fontsize=16,color="green",shape="box"];1593 -> 896[label="",style="dashed", color="red", weight=0]; 1593[label="compare (vxw110 * Pos vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1593 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1594 -> 896[label="",style="dashed", color="red", weight=0]; 1594[label="compare (vxw110 * Pos vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1594 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1595 -> 896[label="",style="dashed", color="red", weight=0]; 1595[label="compare (vxw110 * Neg vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1595 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1596 -> 896[label="",style="dashed", color="red", weight=0]; 1596[label="compare (vxw110 * Neg vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1596 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1597 -> 896[label="",style="dashed", color="red", weight=0]; 1597[label="compare (vxw110 * Pos vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1597 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1598 -> 896[label="",style="dashed", color="red", weight=0]; 1598[label="compare (vxw110 * Pos vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1598 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1599 -> 896[label="",style="dashed", color="red", weight=0]; 1599[label="compare (vxw110 * Neg vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1599 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1600 -> 896[label="",style="dashed", color="red", weight=0]; 1600[label="compare (vxw110 * Neg vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1600 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1602[label="vxw68",fontsize=16,color="green",shape="box"];1603[label="compare vxw110 vxw100",fontsize=16,color="blue",shape="box"];2401[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2401[label="",style="solid", color="blue", weight=9]; 2401 -> 1657[label="",style="solid", color="blue", weight=3]; 2402[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2402[label="",style="solid", color="blue", weight=9]; 2402 -> 1658[label="",style="solid", color="blue", weight=3]; 2403[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2403[label="",style="solid", color="blue", weight=9]; 2403 -> 1659[label="",style="solid", color="blue", weight=3]; 2404[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2404[label="",style="solid", color="blue", weight=9]; 2404 -> 1660[label="",style="solid", color="blue", weight=3]; 2405[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2405[label="",style="solid", color="blue", weight=9]; 2405 -> 1661[label="",style="solid", color="blue", weight=3]; 2406[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2406[label="",style="solid", color="blue", weight=9]; 2406 -> 1662[label="",style="solid", color="blue", weight=3]; 2407[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2407[label="",style="solid", color="blue", weight=9]; 2407 -> 1663[label="",style="solid", color="blue", weight=3]; 2408[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2408[label="",style="solid", color="blue", weight=9]; 2408 -> 1664[label="",style="solid", color="blue", weight=3]; 2409[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2409[label="",style="solid", color="blue", weight=9]; 2409 -> 1665[label="",style="solid", color="blue", weight=3]; 2410[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2410[label="",style="solid", color="blue", weight=9]; 2410 -> 1666[label="",style="solid", color="blue", weight=3]; 2411[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2411[label="",style="solid", color="blue", weight=9]; 2411 -> 1667[label="",style="solid", color="blue", weight=3]; 2412[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2412[label="",style="solid", color="blue", weight=9]; 2412 -> 1668[label="",style="solid", color="blue", weight=3]; 2413[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2413[label="",style="solid", color="blue", weight=9]; 2413 -> 1669[label="",style="solid", color="blue", weight=3]; 2414[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2414[label="",style="solid", color="blue", weight=9]; 2414 -> 1670[label="",style="solid", color="blue", weight=3]; 1601[label="primCompAux0 vxw79 vxw80",fontsize=16,color="burlywood",shape="triangle"];2415[label="vxw80/LT",fontsize=10,color="white",style="solid",shape="box"];1601 -> 2415[label="",style="solid", color="burlywood", weight=9]; 2415 -> 1671[label="",style="solid", color="burlywood", weight=3]; 2416[label="vxw80/EQ",fontsize=10,color="white",style="solid",shape="box"];1601 -> 2416[label="",style="solid", color="burlywood", weight=9]; 2416 -> 1672[label="",style="solid", color="burlywood", weight=3]; 2417[label="vxw80/GT",fontsize=10,color="white",style="solid",shape="box"];1601 -> 2417[label="",style="solid", color="burlywood", weight=9]; 2417 -> 1673[label="",style="solid", color="burlywood", weight=3]; 1604[label="vxw30100",fontsize=16,color="green",shape="box"];1605[label="Succ vxw400000",fontsize=16,color="green",shape="box"];1606[label="primPlusNat (Succ vxw690) (Succ vxw400000)",fontsize=16,color="black",shape="box"];1606 -> 1674[label="",style="solid", color="black", weight=3]; 1607[label="primPlusNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];1607 -> 1675[label="",style="solid", color="black", weight=3]; 1608 -> 1364[label="",style="dashed", color="red", weight=0]; 1608[label="primCmpNat vxw1100 vxw1000",fontsize=16,color="magenta"];1608 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1609[label="GT",fontsize=16,color="green",shape="box"];1610[label="LT",fontsize=16,color="green",shape="box"];1611[label="EQ",fontsize=16,color="green",shape="box"];1612[label="vxw100",fontsize=16,color="green",shape="box"];1613[label="vxw110",fontsize=16,color="green",shape="box"];1614[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1614 -> 1678[label="",style="solid", color="black", weight=3]; 1615[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1615 -> 1679[label="",style="solid", color="black", weight=3]; 1616[label="vxw100",fontsize=16,color="green",shape="box"];1617[label="vxw110",fontsize=16,color="green",shape="box"];1618[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1618 -> 1680[label="",style="solid", color="black", weight=3]; 1619[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1619 -> 1681[label="",style="solid", color="black", weight=3]; 1620[label="vxw100",fontsize=16,color="green",shape="box"];1621[label="vxw110",fontsize=16,color="green",shape="box"];1622[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1622 -> 1682[label="",style="solid", color="black", weight=3]; 1623[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1623 -> 1683[label="",style="solid", color="black", weight=3]; 1624[label="vxw100",fontsize=16,color="green",shape="box"];1625[label="vxw110",fontsize=16,color="green",shape="box"];1626[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1626 -> 1684[label="",style="solid", color="black", weight=3]; 1627[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1627 -> 1685[label="",style="solid", color="black", weight=3]; 1628[label="vxw100",fontsize=16,color="green",shape="box"];1629[label="vxw110",fontsize=16,color="green",shape="box"];1630[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1630 -> 1686[label="",style="solid", color="black", weight=3]; 1631[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1631 -> 1687[label="",style="solid", color="black", weight=3]; 1632[label="vxw100",fontsize=16,color="green",shape="box"];1633[label="vxw110",fontsize=16,color="green",shape="box"];1634[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1634 -> 1688[label="",style="solid", color="black", weight=3]; 1635[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1635 -> 1689[label="",style="solid", color="black", weight=3]; 1636[label="Zero",fontsize=16,color="green",shape="box"];1637[label="Succ vxw1000",fontsize=16,color="green",shape="box"];1638[label="Succ vxw1000",fontsize=16,color="green",shape="box"];1639[label="Zero",fontsize=16,color="green",shape="box"];1640[label="Integer vxw1100 * Integer vxw1010",fontsize=16,color="black",shape="box"];1640 -> 1690[label="",style="solid", color="black", weight=3]; 1641 -> 415[label="",style="dashed", color="red", weight=0]; 1641[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1641 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1642 -> 415[label="",style="dashed", color="red", weight=0]; 1642[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1642 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1643 -> 415[label="",style="dashed", color="red", weight=0]; 1643[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1643 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1644 -> 415[label="",style="dashed", color="red", weight=0]; 1644[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1644 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1645 -> 415[label="",style="dashed", color="red", weight=0]; 1645[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1645 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1646 -> 415[label="",style="dashed", color="red", weight=0]; 1646[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1646 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1646 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1647 -> 415[label="",style="dashed", color="red", weight=0]; 1647[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1647 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1648 -> 415[label="",style="dashed", color="red", weight=0]; 1648[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1648 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1649 -> 415[label="",style="dashed", color="red", weight=0]; 1649[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1649 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1650 -> 415[label="",style="dashed", color="red", weight=0]; 1650[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1650 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1651 -> 415[label="",style="dashed", color="red", weight=0]; 1651[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1651 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1652 -> 415[label="",style="dashed", color="red", weight=0]; 1652[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1652 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1653 -> 415[label="",style="dashed", color="red", weight=0]; 1653[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1653 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1654 -> 415[label="",style="dashed", color="red", weight=0]; 1654[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1654 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1655 -> 415[label="",style="dashed", color="red", weight=0]; 1655[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1655 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1656 -> 415[label="",style="dashed", color="red", weight=0]; 1656[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1656 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1657 -> 892[label="",style="dashed", color="red", weight=0]; 1657[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1657 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1220[label="",style="dashed", color="red", weight=0]; 1658[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1658 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1222[label="",style="dashed", color="red", weight=0]; 1659[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1659 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1224[label="",style="dashed", color="red", weight=0]; 1660[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1660 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1661 -> 896[label="",style="dashed", color="red", weight=0]; 1661[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1661 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1662 -> 898[label="",style="dashed", color="red", weight=0]; 1662[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1662 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1663 -> 900[label="",style="dashed", color="red", weight=0]; 1663[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1663 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1232[label="",style="dashed", color="red", weight=0]; 1664[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1664 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1665 -> 902[label="",style="dashed", color="red", weight=0]; 1665[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1665 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1665 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1666 -> 904[label="",style="dashed", color="red", weight=0]; 1666[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1666 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1666 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1238[label="",style="dashed", color="red", weight=0]; 1667[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1667 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1668 -> 906[label="",style="dashed", color="red", weight=0]; 1668[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1668 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1668 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1669 -> 1242[label="",style="dashed", color="red", weight=0]; 1669[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1669 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1669 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1670 -> 908[label="",style="dashed", color="red", weight=0]; 1670[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1670 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1670 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1671[label="primCompAux0 vxw79 LT",fontsize=16,color="black",shape="box"];1671 -> 1751[label="",style="solid", color="black", weight=3]; 1672[label="primCompAux0 vxw79 EQ",fontsize=16,color="black",shape="box"];1672 -> 1752[label="",style="solid", color="black", weight=3]; 1673[label="primCompAux0 vxw79 GT",fontsize=16,color="black",shape="box"];1673 -> 1753[label="",style="solid", color="black", weight=3]; 1674[label="Succ (Succ (primPlusNat vxw690 vxw400000))",fontsize=16,color="green",shape="box"];1674 -> 1754[label="",style="dashed", color="green", weight=3]; 1675[label="Succ vxw400000",fontsize=16,color="green",shape="box"];1676[label="vxw1100",fontsize=16,color="green",shape="box"];1677[label="vxw1000",fontsize=16,color="green",shape="box"];1678 -> 1755[label="",style="dashed", color="red", weight=0]; 1678[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1678 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1679[label="EQ",fontsize=16,color="green",shape="box"];1680 -> 1757[label="",style="dashed", color="red", weight=0]; 1680[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1680 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1681[label="EQ",fontsize=16,color="green",shape="box"];1682 -> 1759[label="",style="dashed", color="red", weight=0]; 1682[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1682 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1683[label="EQ",fontsize=16,color="green",shape="box"];1684 -> 1761[label="",style="dashed", color="red", weight=0]; 1684[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1684 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1685[label="EQ",fontsize=16,color="green",shape="box"];1686 -> 1763[label="",style="dashed", color="red", weight=0]; 1686[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1686 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1687[label="EQ",fontsize=16,color="green",shape="box"];1688 -> 1765[label="",style="dashed", color="red", weight=0]; 1688[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1688 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1689[label="EQ",fontsize=16,color="green",shape="box"];1690[label="Integer (primMulInt vxw1100 vxw1010)",fontsize=16,color="green",shape="box"];1690 -> 1767[label="",style="dashed", color="green", weight=3]; 1691[label="vxw110",fontsize=16,color="green",shape="box"];1692[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1693[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1694[label="vxw100",fontsize=16,color="green",shape="box"];1695[label="vxw110",fontsize=16,color="green",shape="box"];1696[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1697[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1698[label="vxw100",fontsize=16,color="green",shape="box"];1699[label="vxw110",fontsize=16,color="green",shape="box"];1700[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1701[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1702[label="vxw100",fontsize=16,color="green",shape="box"];1703[label="vxw110",fontsize=16,color="green",shape="box"];1704[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1705[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1706[label="vxw100",fontsize=16,color="green",shape="box"];1707[label="vxw110",fontsize=16,color="green",shape="box"];1708[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1709[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1710[label="vxw100",fontsize=16,color="green",shape="box"];1711[label="vxw110",fontsize=16,color="green",shape="box"];1712[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1713[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1714[label="vxw100",fontsize=16,color="green",shape="box"];1715[label="vxw110",fontsize=16,color="green",shape="box"];1716[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1717[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1718[label="vxw100",fontsize=16,color="green",shape="box"];1719[label="vxw110",fontsize=16,color="green",shape="box"];1720[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1721[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1722[label="vxw100",fontsize=16,color="green",shape="box"];1723[label="vxw110",fontsize=16,color="green",shape="box"];1724[label="vxw100",fontsize=16,color="green",shape="box"];1725[label="vxw110",fontsize=16,color="green",shape="box"];1726[label="vxw100",fontsize=16,color="green",shape="box"];1727[label="vxw110",fontsize=16,color="green",shape="box"];1728[label="vxw100",fontsize=16,color="green",shape="box"];1729[label="vxw110",fontsize=16,color="green",shape="box"];1730[label="vxw100",fontsize=16,color="green",shape="box"];1731[label="vxw110",fontsize=16,color="green",shape="box"];1732[label="vxw100",fontsize=16,color="green",shape="box"];1733[label="vxw110",fontsize=16,color="green",shape="box"];1734[label="vxw100",fontsize=16,color="green",shape="box"];1735[label="vxw110",fontsize=16,color="green",shape="box"];1736[label="vxw100",fontsize=16,color="green",shape="box"];1737[label="vxw110",fontsize=16,color="green",shape="box"];1738[label="vxw100",fontsize=16,color="green",shape="box"];1739[label="vxw110",fontsize=16,color="green",shape="box"];1740[label="vxw100",fontsize=16,color="green",shape="box"];1741[label="vxw110",fontsize=16,color="green",shape="box"];1742[label="vxw100",fontsize=16,color="green",shape="box"];1743[label="vxw110",fontsize=16,color="green",shape="box"];1744[label="vxw100",fontsize=16,color="green",shape="box"];1745[label="vxw110",fontsize=16,color="green",shape="box"];1746[label="vxw100",fontsize=16,color="green",shape="box"];1747[label="vxw110",fontsize=16,color="green",shape="box"];1748[label="vxw100",fontsize=16,color="green",shape="box"];1749[label="vxw110",fontsize=16,color="green",shape="box"];1750[label="vxw100",fontsize=16,color="green",shape="box"];1751[label="LT",fontsize=16,color="green",shape="box"];1752[label="vxw79",fontsize=16,color="green",shape="box"];1753[label="GT",fontsize=16,color="green",shape="box"];1754[label="primPlusNat vxw690 vxw400000",fontsize=16,color="burlywood",shape="triangle"];2418[label="vxw690/Succ vxw6900",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2418[label="",style="solid", color="burlywood", weight=9]; 2418 -> 1768[label="",style="solid", color="burlywood", weight=3]; 2419[label="vxw690/Zero",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2419[label="",style="solid", color="burlywood", weight=9]; 2419 -> 1769[label="",style="solid", color="burlywood", weight=3]; 1756 -> 297[label="",style="dashed", color="red", weight=0]; 1756[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1756 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1755[label="compare1 vxw110 vxw100 vxw81",fontsize=16,color="burlywood",shape="triangle"];2420[label="vxw81/False",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2420[label="",style="solid", color="burlywood", weight=9]; 2420 -> 1772[label="",style="solid", color="burlywood", weight=3]; 2421[label="vxw81/True",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2421[label="",style="solid", color="burlywood", weight=9]; 2421 -> 1773[label="",style="solid", color="burlywood", weight=3]; 1758 -> 298[label="",style="dashed", color="red", weight=0]; 1758[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1758 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1757[label="compare1 vxw110 vxw100 vxw82",fontsize=16,color="burlywood",shape="triangle"];2422[label="vxw82/False",fontsize=10,color="white",style="solid",shape="box"];1757 -> 2422[label="",style="solid", color="burlywood", weight=9]; 2422 -> 1776[label="",style="solid", color="burlywood", weight=3]; 2423[label="vxw82/True",fontsize=10,color="white",style="solid",shape="box"];1757 -> 2423[label="",style="solid", color="burlywood", weight=9]; 2423 -> 1777[label="",style="solid", color="burlywood", weight=3]; 1760 -> 299[label="",style="dashed", color="red", weight=0]; 1760[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1760 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1759[label="compare1 vxw110 vxw100 vxw83",fontsize=16,color="burlywood",shape="triangle"];2424[label="vxw83/False",fontsize=10,color="white",style="solid",shape="box"];1759 -> 2424[label="",style="solid", color="burlywood", weight=9]; 2424 -> 1780[label="",style="solid", color="burlywood", weight=3]; 2425[label="vxw83/True",fontsize=10,color="white",style="solid",shape="box"];1759 -> 2425[label="",style="solid", color="burlywood", weight=9]; 2425 -> 1781[label="",style="solid", color="burlywood", weight=3]; 1762 -> 303[label="",style="dashed", color="red", weight=0]; 1762[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1762 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1761[label="compare1 vxw110 vxw100 vxw84",fontsize=16,color="burlywood",shape="triangle"];2426[label="vxw84/False",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2426[label="",style="solid", color="burlywood", weight=9]; 2426 -> 1784[label="",style="solid", color="burlywood", weight=3]; 2427[label="vxw84/True",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2427[label="",style="solid", color="burlywood", weight=9]; 2427 -> 1785[label="",style="solid", color="burlywood", weight=3]; 1764 -> 306[label="",style="dashed", color="red", weight=0]; 1764[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1764 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1763[label="compare1 vxw110 vxw100 vxw85",fontsize=16,color="burlywood",shape="triangle"];2428[label="vxw85/False",fontsize=10,color="white",style="solid",shape="box"];1763 -> 2428[label="",style="solid", color="burlywood", weight=9]; 2428 -> 1788[label="",style="solid", color="burlywood", weight=3]; 2429[label="vxw85/True",fontsize=10,color="white",style="solid",shape="box"];1763 -> 2429[label="",style="solid", color="burlywood", weight=9]; 2429 -> 1789[label="",style="solid", color="burlywood", weight=3]; 1766 -> 308[label="",style="dashed", color="red", weight=0]; 1766[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1766 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1765[label="compare1 vxw110 vxw100 vxw86",fontsize=16,color="burlywood",shape="triangle"];2430[label="vxw86/False",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2430[label="",style="solid", color="burlywood", weight=9]; 2430 -> 1792[label="",style="solid", color="burlywood", weight=3]; 2431[label="vxw86/True",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2431[label="",style="solid", color="burlywood", weight=9]; 2431 -> 1793[label="",style="solid", color="burlywood", weight=3]; 1767 -> 703[label="",style="dashed", color="red", weight=0]; 1767[label="primMulInt vxw1100 vxw1010",fontsize=16,color="magenta"];1767 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1768[label="primPlusNat (Succ vxw6900) vxw400000",fontsize=16,color="burlywood",shape="box"];2432[label="vxw400000/Succ vxw4000000",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2432[label="",style="solid", color="burlywood", weight=9]; 2432 -> 1796[label="",style="solid", color="burlywood", weight=3]; 2433[label="vxw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2433[label="",style="solid", color="burlywood", weight=9]; 2433 -> 1797[label="",style="solid", color="burlywood", weight=3]; 1769[label="primPlusNat Zero vxw400000",fontsize=16,color="burlywood",shape="box"];2434[label="vxw400000/Succ vxw4000000",fontsize=10,color="white",style="solid",shape="box"];1769 -> 2434[label="",style="solid", color="burlywood", weight=9]; 2434 -> 1798[label="",style="solid", color="burlywood", weight=3]; 2435[label="vxw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1769 -> 2435[label="",style="solid", color="burlywood", weight=9]; 2435 -> 1799[label="",style="solid", color="burlywood", weight=3]; 1770[label="vxw110",fontsize=16,color="green",shape="box"];1771[label="vxw100",fontsize=16,color="green",shape="box"];1772[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1772 -> 1800[label="",style="solid", color="black", weight=3]; 1773[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1773 -> 1801[label="",style="solid", color="black", weight=3]; 1774[label="vxw110",fontsize=16,color="green",shape="box"];1775[label="vxw100",fontsize=16,color="green",shape="box"];1776[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1776 -> 1802[label="",style="solid", color="black", weight=3]; 1777[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1777 -> 1803[label="",style="solid", color="black", weight=3]; 1778[label="vxw110",fontsize=16,color="green",shape="box"];1779[label="vxw100",fontsize=16,color="green",shape="box"];1780[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1780 -> 1804[label="",style="solid", color="black", weight=3]; 1781[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1781 -> 1805[label="",style="solid", color="black", weight=3]; 1782[label="vxw110",fontsize=16,color="green",shape="box"];1783[label="vxw100",fontsize=16,color="green",shape="box"];1784[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1784 -> 1806[label="",style="solid", color="black", weight=3]; 1785[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1785 -> 1807[label="",style="solid", color="black", weight=3]; 1786[label="vxw110",fontsize=16,color="green",shape="box"];1787[label="vxw100",fontsize=16,color="green",shape="box"];1788[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1788 -> 1808[label="",style="solid", color="black", weight=3]; 1789[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1789 -> 1809[label="",style="solid", color="black", weight=3]; 1790[label="vxw110",fontsize=16,color="green",shape="box"];1791[label="vxw100",fontsize=16,color="green",shape="box"];1792[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1792 -> 1810[label="",style="solid", color="black", weight=3]; 1793[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1793 -> 1811[label="",style="solid", color="black", weight=3]; 1794[label="vxw1100",fontsize=16,color="green",shape="box"];1795[label="vxw1010",fontsize=16,color="green",shape="box"];1796[label="primPlusNat (Succ vxw6900) (Succ vxw4000000)",fontsize=16,color="black",shape="box"];1796 -> 1812[label="",style="solid", color="black", weight=3]; 1797[label="primPlusNat (Succ vxw6900) Zero",fontsize=16,color="black",shape="box"];1797 -> 1813[label="",style="solid", color="black", weight=3]; 1798[label="primPlusNat Zero (Succ vxw4000000)",fontsize=16,color="black",shape="box"];1798 -> 1814[label="",style="solid", color="black", weight=3]; 1799[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1799 -> 1815[label="",style="solid", color="black", weight=3]; 1800[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1800 -> 1816[label="",style="solid", color="black", weight=3]; 1801[label="LT",fontsize=16,color="green",shape="box"];1802[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1802 -> 1817[label="",style="solid", color="black", weight=3]; 1803[label="LT",fontsize=16,color="green",shape="box"];1804[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1804 -> 1818[label="",style="solid", color="black", weight=3]; 1805[label="LT",fontsize=16,color="green",shape="box"];1806[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1806 -> 1819[label="",style="solid", color="black", weight=3]; 1807[label="LT",fontsize=16,color="green",shape="box"];1808[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1808 -> 1820[label="",style="solid", color="black", weight=3]; 1809[label="LT",fontsize=16,color="green",shape="box"];1810[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1810 -> 1821[label="",style="solid", color="black", weight=3]; 1811[label="LT",fontsize=16,color="green",shape="box"];1812[label="Succ (Succ (primPlusNat vxw6900 vxw4000000))",fontsize=16,color="green",shape="box"];1812 -> 1822[label="",style="dashed", color="green", weight=3]; 1813[label="Succ vxw6900",fontsize=16,color="green",shape="box"];1814[label="Succ vxw4000000",fontsize=16,color="green",shape="box"];1815[label="Zero",fontsize=16,color="green",shape="box"];1816[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1816 -> 1823[label="",style="solid", color="black", weight=3]; 1817[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1817 -> 1824[label="",style="solid", color="black", weight=3]; 1818[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1818 -> 1825[label="",style="solid", color="black", weight=3]; 1819[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1819 -> 1826[label="",style="solid", color="black", weight=3]; 1820[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1820 -> 1827[label="",style="solid", color="black", weight=3]; 1821[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1821 -> 1828[label="",style="solid", color="black", weight=3]; 1822 -> 1754[label="",style="dashed", color="red", weight=0]; 1822[label="primPlusNat vxw6900 vxw4000000",fontsize=16,color="magenta"];1822 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1822 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1823[label="GT",fontsize=16,color="green",shape="box"];1824[label="GT",fontsize=16,color="green",shape="box"];1825[label="GT",fontsize=16,color="green",shape="box"];1826[label="GT",fontsize=16,color="green",shape="box"];1827[label="GT",fontsize=16,color="green",shape="box"];1828[label="GT",fontsize=16,color="green",shape="box"];1829[label="vxw6900",fontsize=16,color="green",shape="box"];1830[label="vxw4000000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat(vxw1100, vxw1000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat(vxw1100, vxw1000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_[], gb), fc) -> new_lt3(vxw110, vxw100, gb) new_compare0(vxw110, vxw100, ba, bb, bc) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, ba, bb, bc), ba, bb, bc) new_lt2(vxw110, vxw100, cb) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, cb), cb) new_primCompAux(vxw110, vxw100, vxw68, app(ty_Maybe, beb)) -> new_compare5(vxw110, vxw100, beb) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(ty_Maybe, hc)) -> new_ltEs2(vxw111, vxw101, hc) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(app(ty_@3, ba), bb), bc), bd, be) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, ba, bb, bc), ba, bb, bc) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_Either, bh), ca), bd, be) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, bh, ca), bh, ca) new_compare21(vxw110, vxw100, False, bh, ca) -> new_ltEs1(vxw110, vxw100, bh, ca) new_ltEs2(Just(vxw110), Just(vxw100), app(ty_[], bda)) -> new_ltEs3(vxw110, vxw100, bda) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs(vxw111, vxw101, gd, ge, gf) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(app(ty_Either, dc), dd), be) -> new_lt1(vxw111, vxw101, dc, dd) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_Maybe, cb), bd, be) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, cb), cb) new_ltEs1(Left(vxw110), Left(vxw100), app(app(ty_@2, baa), bab), hh) -> new_ltEs0(vxw110, vxw100, baa, bab) new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_@2, bcd), bce)) -> new_ltEs0(vxw110, vxw100, bcd, bce) new_ltEs1(Right(vxw110), Right(vxw100), bag, app(app(ty_@2, bbc), bbd)) -> new_ltEs0(vxw110, vxw100, bbc, bbd) new_compare3(vxw110, vxw100, bh, ca) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, bh, ca), bh, ca) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_[], cc), bd, be) -> new_compare(vxw110, vxw100, cc) new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare4(vxw111, vxw101, bdb), bdb) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(app(ty_@2, gg), gh)) -> new_ltEs0(vxw111, vxw101, gg, gh) new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(app(ty_@2, eb), ec)) -> new_ltEs0(vxw112, vxw102, eb, ec) new_ltEs1(Left(vxw110), Left(vxw100), app(ty_Maybe, bae), hh) -> new_ltEs2(vxw110, vxw100, bae) new_ltEs1(Left(vxw110), Left(vxw100), app(app(app(ty_@3, he), hf), hg), hh) -> new_ltEs(vxw110, vxw100, he, hf, hg) new_ltEs1(Right(vxw110), Right(vxw100), bag, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs(vxw110, vxw100, bah, bba, bbb) new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_Either, bcf), bcg)) -> new_ltEs1(vxw110, vxw100, bcf, bcg) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(app(ty_@3, eh), fa), fb), fc) -> new_lt(vxw110, vxw100, eh, fa, fb) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(ty_[], hd)) -> new_ltEs3(vxw111, vxw101, hd) new_lt3(vxw110, vxw100, cc) -> new_compare(vxw110, vxw100, cc) new_ltEs1(Right(vxw110), Right(vxw100), bag, app(app(ty_Either, bbe), bbf)) -> new_ltEs1(vxw110, vxw100, bbe, bbf) new_primCompAux(vxw110, vxw100, vxw68, app(app(app(ty_@3, bdc), bdd), bde)) -> new_compare0(vxw110, vxw100, bdc, bdd, bde) new_ltEs1(Right(vxw110), Right(vxw100), bag, app(ty_[], bbh)) -> new_ltEs3(vxw110, vxw100, bbh) new_compare2(vxw110, vxw100, False, ba, bb, bc) -> new_ltEs(vxw110, vxw100, ba, bb, bc) new_lt(vxw110, vxw100, ba, bb, bc) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, ba, bb, bc), ba, bb, bc) new_ltEs1(Left(vxw110), Left(vxw100), app(app(ty_Either, bac), bad), hh) -> new_ltEs1(vxw110, vxw100, bac, bad) new_primCompAux(vxw110, vxw100, vxw68, app(ty_[], bec)) -> new_compare(vxw110, vxw100, bec) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(app(app(ty_@3, ce), cf), cg), be) -> new_lt(vxw111, vxw101, ce, cf, cg) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(app(ty_Either, ed), ee)) -> new_ltEs1(vxw112, vxw102, ed, ee) new_ltEs1(Right(vxw110), Right(vxw100), bag, app(ty_Maybe, bbg)) -> new_ltEs2(vxw110, vxw100, bbg) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(app(ty_Either, ha), hb)) -> new_ltEs1(vxw111, vxw101, ha, hb) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(ty_[], eg)) -> new_ltEs3(vxw112, vxw102, eg) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_@2, fd), ff), fc) -> new_lt0(vxw110, vxw100, fd, ff) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(app(ty_@2, da), db), be) -> new_lt0(vxw111, vxw101, da, db) new_ltEs1(Left(vxw110), Left(vxw100), app(ty_[], baf), hh) -> new_ltEs3(vxw110, vxw100, baf) new_compare22(vxw110, vxw100, False, cb) -> new_ltEs2(vxw110, vxw100, cb) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_Either, fg), fh), fc) -> new_lt1(vxw110, vxw100, fg, fh) new_ltEs2(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(vxw110, vxw100, bca, bcb, bcc) new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(ty_[], df), be) -> new_lt3(vxw111, vxw101, df) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs(vxw112, vxw102, dg, dh, ea) new_primCompAux(vxw110, vxw100, vxw68, app(app(ty_Either, bdh), bea)) -> new_compare3(vxw110, vxw100, bdh, bea) new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_Maybe, ga), fc) -> new_lt2(vxw110, vxw100, ga) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(ty_Maybe, ef)) -> new_ltEs2(vxw112, vxw102, ef) new_compare5(vxw110, vxw100, cb) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, cb), cb) new_primCompAux(vxw110, vxw100, vxw68, app(app(ty_@2, bdf), bdg)) -> new_compare1(vxw110, vxw100, bdf, bdg) new_ltEs2(Just(vxw110), Just(vxw100), app(ty_Maybe, bch)) -> new_ltEs2(vxw110, vxw100, bch) new_compare20(vxw110, vxw100, False, bf, bg) -> new_ltEs0(vxw110, vxw100, bf, bg) new_lt0(vxw110, vxw100, bf, bg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, bf, bg), bf, bg) new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare4(vxw111, vxw101, bdb), bdb) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(ty_Maybe, de), be) -> new_lt2(vxw111, vxw101, de) new_lt1(vxw110, vxw100, bh, ca) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, bh, ca), bh, ca) new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_@2, bf), bg), bd, be) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, bf, bg), bf, bg) new_compare1(vxw110, vxw100, bf, bg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, bf, bg), bf, bg) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs6(Right(vxw300), Right(vxw4000), dag, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs4(vxw300, vxw4000, dah, dba, dbb) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT new_ltEs12(vxw11, vxw10) -> new_not(new_esEs16(new_compare19(vxw11, vxw10), GT)) new_compare10(vxw110, vxw100, True, ba, bb, bc) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vxw67) -> True new_esEs5(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cdc, cdd) -> new_asAs(new_esEs26(vxw300, vxw4000, cdc), new_esEs27(vxw301, vxw4001, cdd)) new_compare23(vxw110, vxw100, False, bf, bg) -> new_compare15(vxw110, vxw100, new_ltEs9(vxw110, vxw100, bf, bg), bf, bg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs6(GT, GT) -> True new_compare29(@0, @0) -> EQ new_compare31(vxw110, vxw100, app(ty_Ratio, dcb)) -> new_compare16(vxw110, vxw100, dcb) new_esEs24(vxw110, vxw100, app(ty_[], cc)) -> new_esEs11(vxw110, vxw100, cc) new_esEs7(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bee), bef), beg)) -> new_esEs4(vxw300, vxw4000, bee, bef, beg) new_lt20(vxw111, vxw101, ty_Bool) -> new_lt15(vxw111, vxw101) new_esEs6(Left(vxw300), Left(vxw4000), app(ty_Ratio, dae), chd) -> new_esEs15(vxw300, vxw4000, dae) new_lt19(vxw110, vxw100, ty_Ordering) -> new_lt10(vxw110, vxw100) new_ltEs18(Nothing, Just(vxw100), ccf) -> True new_compare31(vxw110, vxw100, ty_@0) -> new_compare29(vxw110, vxw100) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare24(vxw110, vxw100, False, bh, ca) -> new_compare110(vxw110, vxw100, new_ltEs16(vxw110, vxw100, bh, ca), bh, ca) new_compare31(vxw110, vxw100, app(ty_[], bec)) -> new_compare4(vxw110, vxw100, bec) new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT new_esEs6(Right(vxw300), Right(vxw4000), dag, app(ty_Maybe, dca)) -> new_esEs7(vxw300, vxw4000, dca) new_esEs7(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs12(vxw300, vxw4000) new_esEs6(Right(vxw300), Right(vxw4000), dag, ty_@0) -> new_esEs9(vxw300, vxw4000) new_ltEs18(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs5(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Maybe, bff)) -> new_esEs7(vxw300, vxw4000, bff) new_esEs14(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs10(vxw301, vxw4001) new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) new_esEs28(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_esEs22(vxw302, vxw4002, ty_Int) -> new_esEs8(vxw302, vxw4002) new_esEs6(Right(vxw300), Right(vxw4000), dag, app(ty_Ratio, dbh)) -> new_esEs15(vxw300, vxw4000, dbh) new_compare31(vxw110, vxw100, app(app(ty_Either, bdh), bea)) -> new_compare7(vxw110, vxw100, bdh, bea) new_esEs28(vxw300, vxw4000, app(ty_Maybe, chc)) -> new_esEs7(vxw300, vxw4000, chc) new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) new_ltEs6(EQ, GT) -> True new_esEs23(vxw110, vxw100, ty_@0) -> new_esEs9(vxw110, vxw100) new_lt14(vxw110, vxw100) -> new_esEs16(new_compare28(vxw110, vxw100), LT) new_lt20(vxw111, vxw101, ty_Ordering) -> new_lt10(vxw111, vxw101) new_esEs25(vxw111, vxw101, app(app(ty_@2, da), db)) -> new_esEs5(vxw111, vxw101, da, db) new_ltEs16(Right(vxw110), Right(vxw100), bag, ty_Integer) -> new_ltEs14(vxw110, vxw100) new_esEs28(vxw300, vxw4000, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs4(vxw300, vxw4000, cgb, cgc, cgd) new_lt8(vxw110, vxw100, ty_Ordering) -> new_lt10(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), app(app(app(ty_@3, he), hf), hg), hh) -> new_ltEs4(vxw110, vxw100, he, hf, hg) new_ltEs16(Left(vxw110), Left(vxw100), ty_Char, hh) -> new_ltEs11(vxw110, vxw100) new_ltEs19(vxw112, vxw102, ty_Char) -> new_ltEs11(vxw112, vxw102) new_primCompAux0(vxw79, GT) -> GT new_compare31(vxw110, vxw100, ty_Int) -> new_compare19(vxw110, vxw100) new_esEs26(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), ty_Integer, chd) -> new_esEs13(vxw300, vxw4000) new_compare26(vxw110, vxw100, True) -> EQ new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False new_esEs20(vxw300, vxw4000, app(app(ty_@2, bgf), bgg)) -> new_esEs5(vxw300, vxw4000, bgf, bgg) new_esEs24(vxw110, vxw100, ty_Double) -> new_esEs17(vxw110, vxw100) new_esEs6(Left(vxw300), Left(vxw4000), app(ty_[], dab), chd) -> new_esEs11(vxw300, vxw4000, dab) new_ltEs16(Right(vxw110), Right(vxw100), bag, ty_Double) -> new_ltEs7(vxw110, vxw100) new_esEs24(vxw110, vxw100, app(ty_Ratio, cch)) -> new_esEs15(vxw110, vxw100, cch) new_ltEs19(vxw112, vxw102, ty_Int) -> new_ltEs12(vxw112, vxw102) new_esEs28(vxw300, vxw4000, app(ty_[], cgg)) -> new_esEs11(vxw300, vxw4000, cgg) new_ltEs19(vxw112, vxw102, app(app(ty_Either, ed), ee)) -> new_ltEs16(vxw112, vxw102, ed, ee) new_compare16(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare28(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) new_ltEs16(Right(vxw110), Right(vxw100), bag, app(ty_Ratio, cce)) -> new_ltEs13(vxw110, vxw100, cce) new_compare12(vxw110, vxw100, False) -> GT new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Ratio, bfe)) -> new_esEs15(vxw300, vxw4000, bfe) new_ltEs14(vxw11, vxw10) -> new_not(new_esEs16(new_compare28(vxw11, vxw10), GT)) new_compare6(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare6(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_primCompAux0(vxw79, LT) -> LT new_ltEs16(Left(vxw110), Left(vxw100), app(app(ty_Either, bac), bad), hh) -> new_ltEs16(vxw110, vxw100, bac, bad) new_esEs16(EQ, GT) -> False new_esEs16(GT, EQ) -> False new_not(True) -> False new_esEs6(Left(vxw300), Left(vxw4000), app(ty_Maybe, daf), chd) -> new_esEs7(vxw300, vxw4000, daf) new_compare30(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs24(vxw110, vxw100, ty_Ordering) -> new_esEs16(vxw110, vxw100) new_esEs6(Left(vxw300), Left(vxw4000), ty_Ordering, chd) -> new_esEs16(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), ty_Bool, hh) -> new_ltEs5(vxw110, vxw100) new_primCmpNat0(Zero, Zero) -> EQ new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_ltEs16(Right(vxw110), Right(vxw100), bag, ty_Float) -> new_ltEs17(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bag, app(app(ty_Either, bbe), bbf)) -> new_ltEs16(vxw110, vxw100, bbe, bbf) new_esEs25(vxw111, vxw101, ty_Integer) -> new_esEs13(vxw111, vxw101) new_esEs19(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_ltEs6(LT, GT) -> True new_esEs20(vxw300, vxw4000, app(ty_[], bgh)) -> new_esEs11(vxw300, vxw4000, bgh) new_esEs23(vxw110, vxw100, ty_Bool) -> new_esEs12(vxw110, vxw100) new_compare25(vxw110, vxw100, False, ba, bb, bc) -> new_compare10(vxw110, vxw100, new_ltEs4(vxw110, vxw100, ba, bb, bc), ba, bb, bc) new_ltEs16(Left(vxw110), Right(vxw100), bag, hh) -> True new_lt19(vxw110, vxw100, ty_Integer) -> new_lt14(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bag, ty_@0) -> new_ltEs15(vxw110, vxw100) new_primEqNat0(Succ(vxw3000), Zero) -> False new_primEqNat0(Zero, Succ(vxw40000)) -> False new_esEs6(Right(vxw300), Right(vxw4000), dag, ty_Float) -> new_esEs10(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), ty_Char, chd) -> new_esEs14(vxw300, vxw4000) new_lt20(vxw111, vxw101, ty_Integer) -> new_lt14(vxw111, vxw101) new_esEs16(LT, EQ) -> False new_esEs16(EQ, LT) -> False new_lt19(vxw110, vxw100, ty_Bool) -> new_lt15(vxw110, vxw100) new_compare31(vxw110, vxw100, ty_Integer) -> new_compare28(vxw110, vxw100) new_lt20(vxw111, vxw101, ty_Int) -> new_lt12(vxw111, vxw101) new_compare15(vxw110, vxw100, True, bf, bg) -> LT new_lt12(vxw110, vxw100) -> new_esEs16(new_compare19(vxw110, vxw100), LT) new_esEs24(vxw110, vxw100, app(app(app(ty_@3, ba), bb), bc)) -> new_esEs4(vxw110, vxw100, ba, bb, bc) new_esEs23(vxw110, vxw100, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs4(vxw110, vxw100, eh, fa, fb) new_ltEs18(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs4(vxw110, vxw100, bca, bcb, bcc) new_lt20(vxw111, vxw101, ty_Char) -> new_lt9(vxw111, vxw101) new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT new_ltEs10(vxw111, vxw101, ty_Int) -> new_ltEs12(vxw111, vxw101) new_esEs28(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, app(ty_Ratio, bhc)) -> new_esEs15(vxw300, vxw4000, bhc) new_ltEs5(False, True) -> True new_compare110(vxw110, vxw100, True, bh, ca) -> LT new_esEs23(vxw110, vxw100, ty_Double) -> new_esEs17(vxw110, vxw100) new_lt13(vxw110, vxw100, cch) -> new_esEs16(new_compare16(vxw110, vxw100, cch), LT) new_lt8(vxw110, vxw100, app(ty_Maybe, ga)) -> new_lt6(vxw110, vxw100, ga) new_esEs7(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs9(vxw300, vxw4000) new_compare28(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) new_ltEs7(vxw11, vxw10) -> new_not(new_esEs16(new_compare6(vxw11, vxw10), GT)) new_primCmpNat0(Zero, Succ(vxw1000)) -> LT new_lt8(vxw110, vxw100, ty_Double) -> new_lt4(vxw110, vxw100) new_esEs21(vxw301, vxw4001, app(app(ty_@2, bhh), caa)) -> new_esEs5(vxw301, vxw4001, bhh, caa) new_ltEs17(vxw11, vxw10) -> new_not(new_esEs16(new_compare30(vxw11, vxw10), GT)) new_esEs25(vxw111, vxw101, ty_Ordering) -> new_esEs16(vxw111, vxw101) new_primCompAux1(vxw110, vxw100, vxw68, bdb) -> new_primCompAux0(vxw68, new_compare31(vxw110, vxw100, bdb)) new_primCmpNat0(Succ(vxw1100), Zero) -> GT new_pePe(False, vxw67) -> vxw67 new_esEs7(Nothing, Just(vxw4000), bed) -> False new_esEs7(Just(vxw300), Nothing, bed) -> False new_compare7(vxw110, vxw100, bh, ca) -> new_compare24(vxw110, vxw100, new_esEs6(vxw110, vxw100, bh, ca), bh, ca) new_lt20(vxw111, vxw101, ty_Float) -> new_lt17(vxw111, vxw101) new_lt19(vxw110, vxw100, ty_Int) -> new_lt12(vxw110, vxw100) new_esEs12(False, False) -> True new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs12(vxw301, vxw4001) new_compare210(vxw110, vxw100, True, cb) -> EQ new_esEs28(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs4(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, be) -> new_pePe(new_lt19(vxw110, vxw100, cd), new_asAs(new_esEs24(vxw110, vxw100, cd), new_pePe(new_lt20(vxw111, vxw101, bd), new_asAs(new_esEs25(vxw111, vxw101, bd), new_ltEs19(vxw112, vxw102, be))))) new_esEs22(vxw302, vxw4002, app(app(ty_Either, cbe), cbf)) -> new_esEs6(vxw302, vxw4002, cbe, cbf) new_esEs11(:(vxw300, vxw301), [], cga) -> False new_esEs11([], :(vxw4000, vxw4001), cga) -> False new_esEs24(vxw110, vxw100, ty_@0) -> new_esEs9(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs16(Right(vxw110), Right(vxw100), bag, ty_Ordering) -> new_ltEs6(vxw110, vxw100) new_lt4(vxw110, vxw100) -> new_esEs16(new_compare6(vxw110, vxw100), LT) new_esEs26(vxw300, vxw4000, app(app(ty_@2, cdh), cea)) -> new_esEs5(vxw300, vxw4000, cdh, cea) new_esEs26(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_ltEs6(LT, LT) -> True new_compare23(vxw110, vxw100, True, bf, bg) -> EQ new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False new_ltEs18(Just(vxw110), Just(vxw100), app(ty_Ratio, ccg)) -> new_ltEs13(vxw110, vxw100, ccg) new_esEs7(Nothing, Nothing, bed) -> True new_lt19(vxw110, vxw100, ty_Char) -> new_lt9(vxw110, vxw100) new_esEs23(vxw110, vxw100, app(ty_[], gb)) -> new_esEs11(vxw110, vxw100, gb) new_esEs6(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, che), chf), chg), chd) -> new_esEs4(vxw300, vxw4000, che, chf, chg) new_ltEs18(Just(vxw110), Just(vxw100), app(app(ty_@2, bcd), bce)) -> new_ltEs9(vxw110, vxw100, bcd, bce) new_ltEs18(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs15(vxw110, vxw100) new_ltEs18(Just(vxw110), Just(vxw100), app(app(ty_Either, bcf), bcg)) -> new_ltEs16(vxw110, vxw100, bcf, bcg) new_esEs25(vxw111, vxw101, ty_Char) -> new_esEs14(vxw111, vxw101) new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs6(Right(vxw300), Right(vxw4000), dag, app(app(ty_@2, dbc), dbd)) -> new_esEs5(vxw300, vxw4000, dbc, dbd) new_ltEs16(Left(vxw110), Left(vxw100), app(app(ty_@2, baa), bab), hh) -> new_ltEs9(vxw110, vxw100, baa, bab) new_compare25(vxw110, vxw100, True, ba, bb, bc) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT new_esEs26(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) new_esEs25(vxw111, vxw101, app(ty_Maybe, de)) -> new_esEs7(vxw111, vxw101, de) new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_esEs24(vxw110, vxw100, app(app(ty_Either, bh), ca)) -> new_esEs6(vxw110, vxw100, bh, ca) new_esEs26(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), app(app(ty_Either, dac), dad), chd) -> new_esEs6(vxw300, vxw4000, dac, dad) new_ltEs16(Left(vxw110), Left(vxw100), ty_Int, hh) -> new_ltEs12(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_lt19(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_primMulNat0(Succ(vxw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw400000)) -> Zero new_ltEs18(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs12(vxw110, vxw100) new_esEs25(vxw111, vxw101, app(ty_[], df)) -> new_esEs11(vxw111, vxw101, df) new_ltEs6(LT, EQ) -> True new_esEs22(vxw302, vxw4002, app(ty_Maybe, cbh)) -> new_esEs7(vxw302, vxw4002, cbh) new_primPlusNat1(Succ(vxw690), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw690, vxw400000))) new_ltEs5(True, False) -> False new_esEs23(vxw110, vxw100, app(ty_Maybe, ga)) -> new_esEs7(vxw110, vxw100, ga) new_lt20(vxw111, vxw101, app(app(app(ty_@3, ce), cf), cg)) -> new_lt11(vxw111, vxw101, ce, cf, cg) new_primPlusNat0(Succ(vxw6900), Zero) -> Succ(vxw6900) new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_Either, bfc), bfd)) -> new_esEs6(vxw300, vxw4000, bfc, bfd) new_ltEs19(vxw112, vxw102, ty_Double) -> new_ltEs7(vxw112, vxw102) new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs4(vxw301, vxw4001, bhe, bhf, bhg) new_compare4(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux1(vxw110, vxw100, new_compare4(vxw111, vxw101, bdb), bdb) new_ltEs19(vxw112, vxw102, ty_Integer) -> new_ltEs14(vxw112, vxw102) new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) new_lt8(vxw110, vxw100, ty_Bool) -> new_lt15(vxw110, vxw100) new_esEs16(LT, GT) -> False new_esEs16(GT, LT) -> False new_esEs22(vxw302, vxw4002, app(ty_Ratio, cbg)) -> new_esEs15(vxw302, vxw4002, cbg) new_compare11(vxw110, vxw100) -> new_compare26(vxw110, vxw100, new_esEs12(vxw110, vxw100)) new_esEs19(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_esEs20(vxw300, vxw4000, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs4(vxw300, vxw4000, bgc, bgd, bge) new_esEs24(vxw110, vxw100, ty_Bool) -> new_esEs12(vxw110, vxw100) new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) new_esEs6(Right(vxw300), Right(vxw4000), dag, app(ty_[], dbe)) -> new_esEs11(vxw300, vxw4000, dbe) new_esEs23(vxw110, vxw100, app(app(ty_@2, fd), ff)) -> new_esEs5(vxw110, vxw100, fd, ff) new_esEs23(vxw110, vxw100, app(ty_Ratio, cca)) -> new_esEs15(vxw110, vxw100, cca) new_esEs6(Left(vxw300), Left(vxw4000), app(app(ty_@2, chh), daa), chd) -> new_esEs5(vxw300, vxw4000, chh, daa) new_lt6(vxw110, vxw100, cb) -> new_esEs16(new_compare9(vxw110, vxw100, cb), LT) new_lt17(vxw110, vxw100) -> new_esEs16(new_compare30(vxw110, vxw100), LT) new_esEs24(vxw110, vxw100, app(ty_Maybe, cb)) -> new_esEs7(vxw110, vxw100, cb) new_ltEs8(vxw11, vxw10, bdb) -> new_not(new_esEs16(new_compare4(vxw11, vxw10, bdb), GT)) new_ltEs10(vxw111, vxw101, app(app(ty_Either, ha), hb)) -> new_ltEs16(vxw111, vxw101, ha, hb) new_lt5(vxw110, vxw100, bh, ca) -> new_esEs16(new_compare7(vxw110, vxw100, bh, ca), LT) new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs25(vxw111, vxw101, ty_Bool) -> new_esEs12(vxw111, vxw101) new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs9(vxw301, vxw4001) new_lt8(vxw110, vxw100, ty_Integer) -> new_lt14(vxw110, vxw100) new_ltEs10(vxw111, vxw101, app(ty_Maybe, hc)) -> new_ltEs18(vxw111, vxw101, hc) new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bfh, bga, bgb) -> new_asAs(new_esEs20(vxw300, vxw4000, bfh), new_asAs(new_esEs21(vxw301, vxw4001, bga), new_esEs22(vxw302, vxw4002, bgb))) new_esEs20(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_lt7(vxw110, vxw100, bf, bg) -> new_esEs16(new_compare8(vxw110, vxw100, bf, bg), LT) new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_@2, beh), bfa)) -> new_esEs5(vxw300, vxw4000, beh, bfa) new_esEs6(Right(vxw300), Right(vxw4000), dag, ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs24(vxw110, vxw100, app(app(ty_@2, bf), bg)) -> new_esEs5(vxw110, vxw100, bf, bg) new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs14(vxw301, vxw4001) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_[], bfb)) -> new_esEs11(vxw300, vxw4000, bfb) new_compare4([], :(vxw100, vxw101), bdb) -> LT new_esEs6(Left(vxw300), Left(vxw4000), ty_Bool, chd) -> new_esEs12(vxw300, vxw4000) new_compare31(vxw110, vxw100, ty_Ordering) -> new_compare14(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_[], baf), hh) -> new_ltEs8(vxw110, vxw100, baf) new_esEs6(Right(vxw300), Right(vxw4000), dag, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs23(vxw110, vxw100, app(app(ty_Either, fg), fh)) -> new_esEs6(vxw110, vxw100, fg, fh) new_ltEs16(Right(vxw110), Right(vxw100), bag, app(ty_Maybe, bbg)) -> new_ltEs18(vxw110, vxw100, bbg) new_esEs20(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs21(vxw301, vxw4001, app(app(ty_Either, cac), cad)) -> new_esEs6(vxw301, vxw4001, cac, cad) new_lt8(vxw110, vxw100, app(ty_[], gb)) -> new_lt18(vxw110, vxw100, gb) new_esEs28(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_ltEs10(vxw111, vxw101, ty_@0) -> new_ltEs15(vxw111, vxw101) new_ltEs10(vxw111, vxw101, app(app(ty_@2, gg), gh)) -> new_ltEs9(vxw111, vxw101, gg, gh) new_ltEs16(Left(vxw110), Left(vxw100), ty_Double, hh) -> new_ltEs7(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(app(ty_@2, cfb), cfc)) -> new_esEs5(vxw301, vxw4001, cfb, cfc) new_esEs26(vxw300, vxw4000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs4(vxw300, vxw4000, cde, cdf, cdg) new_lt8(vxw110, vxw100, app(app(app(ty_@3, eh), fa), fb)) -> new_lt11(vxw110, vxw100, eh, fa, fb) new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) new_ltEs16(Left(vxw110), Left(vxw100), ty_Integer, hh) -> new_ltEs14(vxw110, vxw100) new_esEs20(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_ltEs18(Nothing, Nothing, ccf) -> True new_esEs6(Right(vxw300), Right(vxw4000), dag, app(app(ty_Either, dbf), dbg)) -> new_esEs6(vxw300, vxw4000, dbf, dbg) new_esEs26(vxw300, vxw4000, app(ty_Ratio, cee)) -> new_esEs15(vxw300, vxw4000, cee) new_compare18(vxw110, vxw100, ba, bb, bc) -> new_compare25(vxw110, vxw100, new_esEs4(vxw110, vxw100, ba, bb, bc), ba, bb, bc) new_ltEs6(GT, EQ) -> False new_compare10(vxw110, vxw100, False, ba, bb, bc) -> GT new_ltEs10(vxw111, vxw101, ty_Float) -> new_ltEs17(vxw111, vxw101) new_sr0(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) new_ltEs5(False, False) -> True new_esEs16(GT, GT) -> True new_lt19(vxw110, vxw100, app(app(app(ty_@3, ba), bb), bc)) -> new_lt11(vxw110, vxw100, ba, bb, bc) new_ltEs18(Just(vxw110), Just(vxw100), app(ty_Maybe, bch)) -> new_ltEs18(vxw110, vxw100, bch) new_ltEs16(Right(vxw110), Right(vxw100), bag, app(app(ty_@2, bbc), bbd)) -> new_ltEs9(vxw110, vxw100, bbc, bbd) new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs16(vxw301, vxw4001) new_compare26(vxw110, vxw100, False) -> new_compare12(vxw110, vxw100, new_ltEs5(vxw110, vxw100)) new_esEs28(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_asAs(True, vxw59) -> vxw59 new_compare30(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare30(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_compare31(vxw110, vxw100, ty_Double) -> new_compare6(vxw110, vxw100) new_lt20(vxw111, vxw101, app(app(ty_@2, da), db)) -> new_lt7(vxw111, vxw101, da, db) new_ltEs16(Right(vxw110), Left(vxw100), bag, hh) -> False new_esEs23(vxw110, vxw100, ty_Integer) -> new_esEs13(vxw110, vxw100) new_esEs6(Left(vxw300), Right(vxw4000), dag, chd) -> False new_esEs6(Right(vxw300), Left(vxw4000), dag, chd) -> False new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs12(vxw301, vxw4001) new_esEs22(vxw302, vxw4002, app(ty_[], cbd)) -> new_esEs11(vxw302, vxw4002, cbd) new_ltEs18(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs7(vxw110, vxw100) new_esEs21(vxw301, vxw4001, app(ty_Ratio, cae)) -> new_esEs15(vxw301, vxw4001, cae) new_lt19(vxw110, vxw100, app(app(ty_@2, bf), bg)) -> new_lt7(vxw110, vxw100, bf, bg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_ltEs18(Just(vxw110), Nothing, ccf) -> False new_esEs22(vxw302, vxw4002, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs4(vxw302, vxw4002, cag, cah, cba) new_compare24(vxw110, vxw100, True, bh, ca) -> EQ new_ltEs19(vxw112, vxw102, app(app(ty_@2, eb), ec)) -> new_ltEs9(vxw112, vxw102, eb, ec) new_ltEs19(vxw112, vxw102, ty_@0) -> new_ltEs15(vxw112, vxw102) new_ltEs19(vxw112, vxw102, ty_Ordering) -> new_ltEs6(vxw112, vxw102) new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) new_esEs6(Left(vxw300), Left(vxw4000), ty_@0, chd) -> new_esEs9(vxw300, vxw4000) new_esEs24(vxw110, vxw100, ty_Int) -> new_esEs8(vxw110, vxw100) new_esEs25(vxw111, vxw101, ty_@0) -> new_esEs9(vxw111, vxw101) new_esEs9(@0, @0) -> True new_esEs18(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) new_lt16(vxw110, vxw100) -> new_esEs16(new_compare29(vxw110, vxw100), LT) new_esEs22(vxw302, vxw4002, ty_Double) -> new_esEs17(vxw302, vxw4002) new_esEs6(Left(vxw300), Left(vxw4000), ty_Float, chd) -> new_esEs10(vxw300, vxw4000) new_primMulNat0(Zero, Zero) -> Zero new_compare4(:(vxw110, vxw111), [], bdb) -> GT new_esEs7(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs12(True, True) -> True new_esEs23(vxw110, vxw100, ty_Char) -> new_esEs14(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), ty_@0, hh) -> new_ltEs15(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bag, ty_Char) -> new_ltEs11(vxw110, vxw100) new_ltEs19(vxw112, vxw102, app(ty_[], eg)) -> new_ltEs8(vxw112, vxw102, eg) new_esEs22(vxw302, vxw4002, app(app(ty_@2, cbb), cbc)) -> new_esEs5(vxw302, vxw4002, cbb, cbc) new_esEs26(vxw300, vxw4000, app(app(ty_Either, cec), ced)) -> new_esEs6(vxw300, vxw4000, cec, ced) new_ltEs10(vxw111, vxw101, app(ty_Ratio, ccb)) -> new_ltEs13(vxw111, vxw101, ccb) new_ltEs10(vxw111, vxw101, ty_Integer) -> new_ltEs14(vxw111, vxw101) new_esEs24(vxw110, vxw100, ty_Float) -> new_esEs10(vxw110, vxw100) new_ltEs6(EQ, LT) -> False new_ltEs19(vxw112, vxw102, app(ty_Ratio, cdb)) -> new_ltEs13(vxw112, vxw102, cdb) new_ltEs18(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs14(vxw110, vxw100) new_lt15(vxw110, vxw100) -> new_esEs16(new_compare11(vxw110, vxw100), LT) new_esEs6(Right(vxw300), Right(vxw4000), dag, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs11(vxw11, vxw10) -> new_not(new_esEs16(new_compare17(vxw11, vxw10), GT)) new_lt20(vxw111, vxw101, app(ty_Ratio, cda)) -> new_lt13(vxw111, vxw101, cda) new_compare31(vxw110, vxw100, ty_Float) -> new_compare30(vxw110, vxw100) new_compare6(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs25(vxw111, vxw101, app(app(ty_Either, dc), dd)) -> new_esEs6(vxw111, vxw101, dc, dd) new_primCompAux0(vxw79, EQ) -> vxw79 new_lt10(vxw110, vxw100) -> new_esEs16(new_compare14(vxw110, vxw100), LT) new_esEs27(vxw301, vxw4001, app(ty_[], cfd)) -> new_esEs11(vxw301, vxw4001, cfd) new_esEs11(:(vxw300, vxw301), :(vxw4000, vxw4001), cga) -> new_asAs(new_esEs28(vxw300, vxw4000, cga), new_esEs11(vxw301, vxw4001, cga)) new_ltEs16(Right(vxw110), Right(vxw100), bag, ty_Bool) -> new_ltEs5(vxw110, vxw100) new_lt19(vxw110, vxw100, app(ty_Ratio, cch)) -> new_lt13(vxw110, vxw100, cch) new_lt8(vxw110, vxw100, app(app(ty_Either, fg), fh)) -> new_lt5(vxw110, vxw100, fg, fh) new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False new_esEs26(vxw300, vxw4000, app(ty_[], ceb)) -> new_esEs11(vxw300, vxw4000, ceb) new_compare31(vxw110, vxw100, ty_Bool) -> new_compare11(vxw110, vxw100) new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_ltEs19(vxw112, vxw102, app(ty_Maybe, ef)) -> new_ltEs18(vxw112, vxw102, ef) new_esEs21(vxw301, vxw4001, app(ty_Maybe, caf)) -> new_esEs7(vxw301, vxw4001, caf) new_ltEs16(Left(vxw110), Left(vxw100), ty_Float, hh) -> new_ltEs17(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs14(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, app(app(ty_Either, bha), bhb)) -> new_esEs6(vxw300, vxw4000, bha, bhb) new_compare19(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) new_esEs24(vxw110, vxw100, ty_Char) -> new_esEs14(vxw110, vxw100) new_ltEs18(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs17(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False new_esEs25(vxw111, vxw101, app(ty_Ratio, cda)) -> new_esEs15(vxw111, vxw101, cda) new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) new_compare27(vxw110, vxw100, False) -> new_compare13(vxw110, vxw100, new_ltEs6(vxw110, vxw100)) new_esEs18(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs16(EQ, EQ) -> True new_compare4([], [], bdb) -> EQ new_ltEs10(vxw111, vxw101, ty_Double) -> new_ltEs7(vxw111, vxw101) new_esEs25(vxw111, vxw101, ty_Float) -> new_esEs10(vxw111, vxw101) new_esEs24(vxw110, vxw100, ty_Integer) -> new_esEs13(vxw110, vxw100) new_esEs22(vxw302, vxw4002, ty_Bool) -> new_esEs12(vxw302, vxw4002) new_esEs26(vxw300, vxw4000, app(ty_Maybe, cef)) -> new_esEs7(vxw300, vxw4000, cef) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(vxw301, vxw4001, app(ty_[], cab)) -> new_esEs11(vxw301, vxw4001, cab) new_lt8(vxw110, vxw100, ty_@0) -> new_lt16(vxw110, vxw100) new_compare111(vxw110, vxw100, False, cb) -> GT new_ltEs19(vxw112, vxw102, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs4(vxw112, vxw102, dg, dh, ea) new_ltEs19(vxw112, vxw102, ty_Bool) -> new_ltEs5(vxw112, vxw102) new_esEs8(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) new_lt19(vxw110, vxw100, ty_Double) -> new_lt4(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(ty_Maybe, cfh)) -> new_esEs7(vxw301, vxw4001, cfh) new_esEs23(vxw110, vxw100, ty_Int) -> new_esEs8(vxw110, vxw100) new_ltEs10(vxw111, vxw101, ty_Bool) -> new_ltEs5(vxw111, vxw101) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_Maybe, bae), hh) -> new_ltEs18(vxw110, vxw100, bae) new_ltEs18(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs6(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(vxw301, vxw4001, ceg, ceh, cfa) new_esEs22(vxw302, vxw4002, ty_Integer) -> new_esEs13(vxw302, vxw4002) new_not(False) -> True new_esEs6(Left(vxw300), Left(vxw4000), ty_Int, chd) -> new_esEs8(vxw300, vxw4000) new_compare31(vxw110, vxw100, ty_Char) -> new_compare17(vxw110, vxw100) new_esEs20(vxw300, vxw4000, app(ty_Maybe, bhd)) -> new_esEs7(vxw300, vxw4000, bhd) new_lt8(vxw110, vxw100, ty_Int) -> new_lt12(vxw110, vxw100) new_esEs16(LT, LT) -> True new_lt19(vxw110, vxw100, app(app(ty_Either, bh), ca)) -> new_lt5(vxw110, vxw100, bh, ca) new_esEs6(Right(vxw300), Right(vxw4000), dag, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_primPlusNat0(Succ(vxw6900), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw6900, vxw4000000))) new_esEs27(vxw301, vxw4001, app(ty_Ratio, cfg)) -> new_esEs15(vxw301, vxw4001, cfg) new_esEs25(vxw111, vxw101, ty_Double) -> new_esEs17(vxw111, vxw101) new_esEs20(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_lt11(vxw110, vxw100, ba, bb, bc) -> new_esEs16(new_compare18(vxw110, vxw100, ba, bb, bc), LT) new_lt19(vxw110, vxw100, app(ty_Maybe, cb)) -> new_lt6(vxw110, vxw100, cb) new_lt19(vxw110, vxw100, ty_@0) -> new_lt16(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_compare13(vxw110, vxw100, True) -> LT new_esEs7(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), ty_Ordering, hh) -> new_ltEs6(vxw110, vxw100) new_lt9(vxw110, vxw100) -> new_esEs16(new_compare17(vxw110, vxw100), LT) new_esEs22(vxw302, vxw4002, ty_@0) -> new_esEs9(vxw302, vxw4002) new_esEs20(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(vxw111, vxw101, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs4(vxw111, vxw101, ce, cf, cg) new_esEs20(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_ltEs5(True, True) -> True new_esEs28(vxw300, vxw4000, app(app(ty_@2, cge), cgf)) -> new_esEs5(vxw300, vxw4000, cge, cgf) new_compare111(vxw110, vxw100, True, cb) -> LT new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs16(vxw301, vxw4001) new_ltEs10(vxw111, vxw101, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs4(vxw111, vxw101, gd, ge, gf) new_esEs6(Right(vxw300), Right(vxw4000), dag, ty_Char) -> new_esEs14(vxw300, vxw4000) new_lt8(vxw110, vxw100, app(ty_Ratio, cca)) -> new_lt13(vxw110, vxw100, cca) new_esEs27(vxw301, vxw4001, app(app(ty_Either, cfe), cff)) -> new_esEs6(vxw301, vxw4001, cfe, cff) new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) new_compare31(vxw110, vxw100, app(app(app(ty_@3, bdc), bdd), bde)) -> new_compare18(vxw110, vxw100, bdc, bdd, bde) new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs10(vxw301, vxw4001) new_esEs17(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs8(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_esEs20(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_esEs13(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) new_lt8(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare9(vxw110, vxw100, cb) -> new_compare210(vxw110, vxw100, new_esEs7(vxw110, vxw100, cb), cb) new_ltEs10(vxw111, vxw101, app(ty_[], hd)) -> new_ltEs8(vxw111, vxw101, hd) new_compare8(vxw110, vxw100, bf, bg) -> new_compare23(vxw110, vxw100, new_esEs5(vxw110, vxw100, bf, bg), bf, bg) new_lt20(vxw111, vxw101, app(ty_[], df)) -> new_lt18(vxw111, vxw101, df) new_esEs6(Right(vxw300), Right(vxw4000), dag, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_lt18(vxw110, vxw100, cc) -> new_esEs16(new_compare4(vxw110, vxw100, cc), LT) new_ltEs13(vxw11, vxw10, ccc) -> new_not(new_esEs16(new_compare16(vxw11, vxw10, ccc), GT)) new_ltEs18(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs11(vxw110, vxw100) new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) new_compare30(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare6(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare14(vxw110, vxw100) -> new_compare27(vxw110, vxw100, new_esEs16(vxw110, vxw100)) new_lt20(vxw111, vxw101, ty_@0) -> new_lt16(vxw111, vxw101) new_esEs23(vxw110, vxw100, ty_Ordering) -> new_esEs16(vxw110, vxw100) new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_ltEs10(vxw111, vxw101, ty_Ordering) -> new_ltEs6(vxw111, vxw101) new_compare12(vxw110, vxw100, True) -> LT new_compare31(vxw110, vxw100, app(ty_Maybe, beb)) -> new_compare9(vxw110, vxw100, beb) new_esEs22(vxw302, vxw4002, ty_Char) -> new_esEs14(vxw302, vxw4002) new_compare15(vxw110, vxw100, False, bf, bg) -> GT new_esEs15(:%(vxw300, vxw301), :%(vxw4000, vxw4001), bfg) -> new_asAs(new_esEs18(vxw300, vxw4000, bfg), new_esEs19(vxw301, vxw4001, bfg)) new_ltEs16(Right(vxw110), Right(vxw100), bag, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs4(vxw110, vxw100, bah, bba, bbb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs16(Right(vxw110), Right(vxw100), bag, app(ty_[], bbh)) -> new_ltEs8(vxw110, vxw100, bbh) new_lt20(vxw111, vxw101, ty_Double) -> new_lt4(vxw111, vxw101) new_lt20(vxw111, vxw101, app(ty_Maybe, de)) -> new_lt6(vxw111, vxw101, de) new_esEs6(Left(vxw300), Left(vxw4000), ty_Double, chd) -> new_esEs17(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_Ratio, ccd), hh) -> new_ltEs13(vxw110, vxw100, ccd) new_ltEs15(vxw11, vxw10) -> new_not(new_esEs16(new_compare29(vxw11, vxw10), GT)) new_esEs23(vxw110, vxw100, ty_Float) -> new_esEs10(vxw110, vxw100) new_compare110(vxw110, vxw100, False, bh, ca) -> GT new_esEs28(vxw300, vxw4000, app(app(ty_Either, cgh), cha)) -> new_esEs6(vxw300, vxw4000, cgh, cha) new_compare17(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) new_primEqNat0(Zero, Zero) -> True new_esEs25(vxw111, vxw101, ty_Int) -> new_esEs8(vxw111, vxw101) new_compare13(vxw110, vxw100, False) -> GT new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs14(vxw301, vxw4001) new_ltEs16(Right(vxw110), Right(vxw100), bag, ty_Int) -> new_ltEs12(vxw110, vxw100) new_esEs11([], [], cga) -> True new_esEs10(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs8(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_compare16(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare19(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) new_lt20(vxw111, vxw101, app(app(ty_Either, dc), dd)) -> new_lt5(vxw111, vxw101, dc, dd) new_lt8(vxw110, vxw100, ty_Char) -> new_lt9(vxw110, vxw100) new_esEs22(vxw302, vxw4002, ty_Ordering) -> new_esEs16(vxw302, vxw4002) new_asAs(False, vxw59) -> False new_compare31(vxw110, vxw100, app(app(ty_@2, bdf), bdg)) -> new_compare8(vxw110, vxw100, bdf, bdg) new_ltEs9(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, fc) -> new_pePe(new_lt8(vxw110, vxw100, gc), new_asAs(new_esEs23(vxw110, vxw100, gc), new_ltEs10(vxw111, vxw101, fc))) new_lt8(vxw110, vxw100, app(app(ty_@2, fd), ff)) -> new_lt7(vxw110, vxw100, fd, ff) new_esEs22(vxw302, vxw4002, ty_Float) -> new_esEs10(vxw302, vxw4002) new_esEs28(vxw300, vxw4000, app(ty_Ratio, chb)) -> new_esEs15(vxw300, vxw4000, chb) new_lt19(vxw110, vxw100, app(ty_[], cc)) -> new_lt18(vxw110, vxw100, cc) new_compare27(vxw110, vxw100, True) -> EQ new_compare210(vxw110, vxw100, False, cb) -> new_compare111(vxw110, vxw100, new_ltEs18(vxw110, vxw100, cb), cb) new_ltEs6(GT, LT) -> False new_ltEs18(Just(vxw110), Just(vxw100), app(ty_[], bda)) -> new_ltEs8(vxw110, vxw100, bda) new_ltEs19(vxw112, vxw102, ty_Float) -> new_ltEs17(vxw112, vxw102) new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs9(vxw301, vxw4001) new_ltEs10(vxw111, vxw101, ty_Char) -> new_ltEs11(vxw111, vxw101) The set Q consists of the following terms: new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(x0, x1, x2) new_compare26(x0, x1, True) new_compare31(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_ltEs18(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Float) new_esEs11([], [], x0) new_compare31(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Just(x0), Just(x1), ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(LT, LT) new_compare24(x0, x1, True, x2, x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare11(x0, x1) new_esEs23(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare29(@0, @0) new_sr0(Integer(x0), Integer(x1)) new_ltEs18(Just(x0), Just(x1), ty_Ordering) new_compare12(x0, x1, True) new_compare8(x0, x1, x2, x3) new_primPlusNat0(Zero, Succ(x0)) new_ltEs5(False, True) new_ltEs5(True, False) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(EQ, EQ) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare31(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_lt19(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Int) new_esEs12(False, True) new_esEs12(True, False) new_lt8(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), Zero) new_compare10(x0, x1, False, x2, x3, x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare4(:(x0, x1), [], x2) new_compare31(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(x0, x1, app(ty_[], x2)) new_lt12(x0, x1) new_esEs24(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs11([], :(x0, x1), x2) new_esEs11(:(x0, x1), :(x2, x3), x4) new_ltEs13(x0, x1, x2) new_lt8(x0, x1, ty_Char) new_lt8(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(Char(x0), Char(x1)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs14(x0, x1) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt6(x0, x1, x2) new_primEqNat0(Succ(x0), Zero) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), x1) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(x0, x1) new_esEs19(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_pePe(False, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(@0, @0) new_esEs22(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(Nothing, Just(x0), x1) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCompAux0(x0, GT) new_esEs14(Char(x0), Char(x1)) new_esEs28(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs16(LT, GT) new_esEs16(GT, LT) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, True, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_lt10(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Double) new_lt9(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Nothing, x1) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs25(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_esEs28(x0, x1, ty_Integer) new_ltEs18(Nothing, Nothing, x0) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_compare4(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(Just(x0), Just(x1), ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs27(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_ltEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(LT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs6(GT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Ordering) new_compare111(x0, x1, True, x2) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Char) new_ltEs5(True, True) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_@0) new_compare10(x0, x1, True, x2, x3, x4) new_esEs16(EQ, GT) new_esEs16(GT, EQ) new_esEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs23(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_compare4([], [], x0) new_ltEs10(x0, x1, ty_Float) new_ltEs10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_lt13(x0, x1, x2) new_ltEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_compare13(x0, x1, True) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs22(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(Just(x0), Just(x1), ty_Bool) new_lt4(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_lt16(x0, x1) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1) new_esEs27(x0, x1, ty_Char) new_compare7(x0, x1, x2, x3) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Char) new_compare210(x0, x1, False, x2) new_esEs26(x0, x1, ty_Ordering) new_compare25(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_@0) new_compare27(x0, x1, True) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_@0) new_ltEs15(x0, x1) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, True, x2, x3) new_ltEs17(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Double) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(Integer(x0), Integer(x1)) new_esEs25(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs6(EQ, EQ) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs10(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Char) new_ltEs10(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(x0, x1) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs18(Just(x0), Just(x1), ty_Float) new_primPlusNat0(Zero, Zero) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs20(x0, x1, ty_@0) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_lt17(x0, x1) new_compare110(x0, x1, False, x2, x3) new_esEs20(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs12(False, False) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs22(x0, x1, ty_Char) new_compare31(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt15(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare12(x0, x1, False) new_esEs25(x0, x1, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare110(x0, x1, True, x2, x3) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Int) new_compare18(x0, x1, x2, x3, x4) new_lt8(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(False, False) new_esEs18(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_compare111(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_primCompAux0(x0, LT) new_ltEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Ordering) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Integer) new_lt8(x0, x1, ty_@0) new_esEs17(Double(x0, x1), Double(x2, x3)) new_ltEs11(x0, x1) new_lt20(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Integer) new_ltEs10(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs7(Just(x0), Just(x1), ty_Bool) new_compare23(x0, x1, True, x2, x3) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs26(x0, x1, ty_Int) new_lt19(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, False) new_compare4([], :(x0, x1), x2) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs10(Float(x0, x1), Float(x2, x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs7(Just(x0), Nothing, x1) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs6(GT, GT) new_compare210(x0, x1, True, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare26(x0, x1, False) new_lt5(x0, x1, x2, x3) new_esEs25(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Bool) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_ltEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primCompAux1(x0, x1, x2, x3) new_lt18(x0, x1, x2) new_lt19(x0, x1, ty_Int) new_compare15(x0, x1, False, x2, x3) new_esEs23(x0, x1, ty_Double) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt8(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2, x3) new_lt20(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare24(x0, x1, False, x2, x3) new_lt14(x0, x1) new_compare31(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_ltEs10(x0, x1, ty_Double) new_esEs7(Nothing, Nothing, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs28(x0, x1, ty_@0) new_compare13(x0, x1, False) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare9(x0, x1, x2) new_esEs13(Integer(x0), Integer(x1)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt19(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs20(x0, x1, ty_Bool) new_primCompAux0(x0, EQ) new_esEs23(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs7(Nothing, Just(x0), x1) new_esEs19(x0, x1, ty_Int) new_esEs12(True, True) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs27(x0, x1, ty_Float) new_not(False) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(LT, LT) new_esEs27(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, False, x2, x3) new_ltEs18(Just(x0), Just(x1), ty_@0) new_ltEs18(Just(x0), Just(x1), ty_Double) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, app(ty_Maybe, x2)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs12(x0, x1) new_esEs21(x0, x1, ty_Int) new_esEs11(:(x0, x1), [], x2) new_lt8(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_primMulNat0(Zero, Succ(x0)) new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_lt20(x0, x1, ty_@0) new_ltEs10(x0, x1, ty_@0) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_primPlusNat1(Zero, x0) new_esEs20(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Integer) new_esEs16(LT, EQ) new_esEs16(EQ, LT) new_compare31(x0, x1, ty_Float) new_asAs(True, x0) new_esEs23(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Zero) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs16(GT, GT) new_esEs21(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_lt3(vxw110, vxw100, cc) -> new_compare(vxw110, vxw100, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare2(vxw110, vxw100, False, ba, bb, bc) -> new_ltEs(vxw110, vxw100, ba, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_primCompAux(vxw110, vxw100, vxw68, app(app(app(ty_@3, bdc), bdd), bde)) -> new_compare0(vxw110, vxw100, bdc, bdd, bde) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(vxw110, vxw100, False, cb) -> new_ltEs2(vxw110, vxw100, cb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_compare5(vxw110, vxw100, cb) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, cb), cb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_@2, bcd), bce)) -> new_ltEs0(vxw110, vxw100, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(vxw110, vxw100, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare21(vxw110, vxw100, False, bh, ca) -> new_ltEs1(vxw110, vxw100, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare4(vxw111, vxw101, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare4(vxw111, vxw101, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs2(Just(vxw110), Just(vxw100), app(ty_Maybe, bch)) -> new_ltEs2(vxw110, vxw100, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(app(ty_@2, eb), ec)) -> new_ltEs0(vxw112, vxw102, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(ty_Maybe, de), be) -> new_lt2(vxw111, vxw101, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_Maybe, ga), fc) -> new_lt2(vxw110, vxw100, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs(vxw112, vxw102, dg, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs(vxw111, vxw101, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_Either, bh), ca), bd, be) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, bh, ca), bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(ty_Maybe, ef)) -> new_ltEs2(vxw112, vxw102, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(ty_Maybe, hc)) -> new_ltEs2(vxw111, vxw101, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_lt1(vxw110, vxw100, bh, ca) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, bh, ca), bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare3(vxw110, vxw100, bh, ca) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, bh, ca), bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(app(ty_@2, gg), gh)) -> new_ltEs0(vxw111, vxw101, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(vxw110, vxw100, False, bf, bg) -> new_ltEs0(vxw110, vxw100, bf, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_Either, bcf), bcg)) -> new_ltEs1(vxw110, vxw100, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(vxw110), Just(vxw100), app(ty_[], bda)) -> new_ltEs3(vxw110, vxw100, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(app(ty_Either, ed), ee)) -> new_ltEs1(vxw112, vxw102, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(app(ty_Either, ha), hb)) -> new_ltEs1(vxw111, vxw101, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_primCompAux(vxw110, vxw100, vxw68, app(app(ty_Either, bdh), bea)) -> new_compare3(vxw110, vxw100, bdh, bea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, bd, app(ty_[], eg)) -> new_ltEs3(vxw112, vxw102, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), gc, app(ty_[], hd)) -> new_ltEs3(vxw111, vxw101, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_lt(vxw110, vxw100, ba, bb, bc) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, ba, bb, bc), ba, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(ty_[], df), be) -> new_lt3(vxw111, vxw101, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_[], gb), fc) -> new_lt3(vxw110, vxw100, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare0(vxw110, vxw100, ba, bb, bc) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, ba, bb, bc), ba, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(app(ty_@3, ba), bb), bc), bd, be) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, ba, bb, bc), ba, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(app(app(ty_@3, ce), cf), cg), be) -> new_lt(vxw111, vxw101, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(app(ty_@3, eh), fa), fb), fc) -> new_lt(vxw110, vxw100, eh, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(vxw110, vxw100, bf, bg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, bf, bg), bf, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_Maybe, cb), bd, be) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, cb), cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_lt2(vxw110, vxw100, cb) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, cb), cb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare1(vxw110, vxw100, bf, bg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, bf, bg), bf, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_[], cc), bd, be) -> new_compare(vxw110, vxw100, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vxw110, vxw100, vxw68, app(ty_[], bec)) -> new_compare(vxw110, vxw100, bec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vxw110, vxw100, vxw68, app(ty_Maybe, beb)) -> new_compare5(vxw110, vxw100, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vxw110, vxw100, vxw68, app(app(ty_@2, bdf), bdg)) -> new_compare1(vxw110, vxw100, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_@2, bf), bg), bd, be) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, bf, bg), bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(app(ty_@2, da), db), be) -> new_lt0(vxw111, vxw101, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), cd, app(app(ty_Either, dc), dd), be) -> new_lt1(vxw111, vxw101, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_@2, fd), ff), fc) -> new_lt0(vxw110, vxw100, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_Either, fg), fh), fc) -> new_lt1(vxw110, vxw100, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Left(vxw110), Left(vxw100), app(app(ty_@2, baa), bab), hh) -> new_ltEs0(vxw110, vxw100, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(vxw110), Right(vxw100), bag, app(app(ty_@2, bbc), bbd)) -> new_ltEs0(vxw110, vxw100, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vxw110), Left(vxw100), app(app(app(ty_@3, he), hf), hg), hh) -> new_ltEs(vxw110, vxw100, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(vxw110), Right(vxw100), bag, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs(vxw110, vxw100, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Left(vxw110), Left(vxw100), app(ty_Maybe, bae), hh) -> new_ltEs2(vxw110, vxw100, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(vxw110), Right(vxw100), bag, app(ty_Maybe, bbg)) -> new_ltEs2(vxw110, vxw100, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Right(vxw110), Right(vxw100), bag, app(app(ty_Either, bbe), bbf)) -> new_ltEs1(vxw110, vxw100, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vxw110), Left(vxw100), app(app(ty_Either, bac), bad), hh) -> new_ltEs1(vxw110, vxw100, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(vxw110), Right(vxw100), bag, app(ty_[], bbh)) -> new_ltEs3(vxw110, vxw100, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vxw110), Left(vxw100), app(ty_[], baf), hh) -> new_ltEs3(vxw110, vxw100, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vxw30100), Succ(vxw400000)) -> new_primMulNat(vxw30100, Succ(vxw400000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vxw30100), Succ(vxw400000)) -> new_primMulNat(vxw30100, Succ(vxw400000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_insertBy00(vxw28, vxw29, vxw30, False, bc, bd) -> new_insertBy(Left(vxw29), vxw30, bc, bd) new_insertBy(Left(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, be), be, bf) new_insertBy(Right(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy(Right(vxw30), vxw41, be, bf) new_insertBy0(vxw10, vxw11, vxw12, False, ba, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, ba), ba, bb) new_insertBy01(vxw19, vxw20, vxw21, False, bg, bh) -> new_insertBy02(vxw19, vxw20, vxw21, new_ltEs21(vxw20, vxw19, bh), bg, bh) new_insertBy(Right(vxw30), :(Right(vxw400), vxw41), be, bf) -> new_insertBy01(vxw400, vxw30, vxw41, new_esEs30(vxw30, vxw400, bf), be, bf) new_insertBy02(vxw37, vxw38, vxw39, False, ca, cb) -> new_insertBy(Right(vxw38), vxw39, ca, cb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs4(vxw300, vxw4000, dde, ddf, ddg) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT new_ltEs12(vxw11, vxw10) -> new_not(new_esEs16(new_compare19(vxw11, vxw10), GT)) new_compare10(vxw110, vxw100, True, bbh, bca, bcb) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vxw67) -> True new_esEs5(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cca, ccb) -> new_asAs(new_esEs26(vxw300, vxw4000, cca), new_esEs27(vxw301, vxw4001, ccb)) new_compare23(vxw110, vxw100, False, bbf, bbg) -> new_compare15(vxw110, vxw100, new_ltEs9(vxw110, vxw100, bbf, bbg), bbf, bbg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs6(GT, GT) -> True new_compare29(@0, @0) -> EQ new_compare31(vxw110, vxw100, app(ty_Ratio, dfd)) -> new_compare16(vxw110, vxw100, dfd) new_esEs24(vxw110, vxw100, app(ty_[], cbh)) -> new_esEs11(vxw110, vxw100, cbh) new_esEs7(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, cd), ce), cf)) -> new_esEs4(vxw300, vxw4000, cd, ce, cf) new_lt20(vxw111, vxw101, ty_Bool) -> new_lt15(vxw111, vxw101) new_esEs6(Left(vxw300), Left(vxw4000), app(ty_Ratio, ddc), cce) -> new_esEs15(vxw300, vxw4000, ddc) new_lt19(vxw110, vxw100, ty_Ordering) -> new_lt10(vxw110, vxw100) new_ltEs18(Nothing, Just(vxw100), bga) -> True new_compare31(vxw110, vxw100, ty_@0) -> new_compare29(vxw110, vxw100) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare24(vxw110, vxw100, False, fb, fc) -> new_compare110(vxw110, vxw100, new_ltEs16(vxw110, vxw100, fb, fc), fb, fc) new_compare31(vxw110, vxw100, app(ty_[], dfh)) -> new_compare4(vxw110, vxw100, dfh) new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_Maybe, def)) -> new_esEs7(vxw300, vxw4000, def) new_esEs7(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs12(vxw300, vxw4000) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_@0) -> new_esEs9(vxw300, vxw4000) new_ltEs18(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs5(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Maybe, df)) -> new_esEs7(vxw300, vxw4000, df) new_esEs14(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs10(vxw301, vxw4001) new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) new_esEs28(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_esEs22(vxw302, vxw4002, ty_Int) -> new_esEs8(vxw302, vxw4002) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_Ratio, dee)) -> new_esEs15(vxw300, vxw4000, dee) new_compare31(vxw110, vxw100, app(app(ty_Either, dfe), dff)) -> new_compare7(vxw110, vxw100, dfe, dff) new_esEs28(vxw300, vxw4000, app(ty_Maybe, dcb)) -> new_esEs7(vxw300, vxw4000, dcb) new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) new_ltEs6(EQ, GT) -> True new_esEs23(vxw110, vxw100, ty_@0) -> new_esEs9(vxw110, vxw100) new_lt14(vxw110, vxw100) -> new_esEs16(new_compare28(vxw110, vxw100), LT) new_lt20(vxw111, vxw101, ty_Ordering) -> new_lt10(vxw111, vxw101) new_esEs25(vxw111, vxw101, app(app(ty_@2, ced), cee)) -> new_esEs5(vxw111, vxw101, ced, cee) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Integer) -> new_ltEs14(vxw110, vxw100) new_esEs28(vxw300, vxw4000, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs4(vxw300, vxw4000, dba, dbb, dbc) new_lt8(vxw110, vxw100, ty_Ordering) -> new_lt10(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), app(app(app(ty_@3, bgb), bgc), bgd), bfh) -> new_ltEs4(vxw110, vxw100, bgb, bgc, bgd) new_ltEs16(Left(vxw110), Left(vxw100), ty_Char, bfh) -> new_ltEs11(vxw110, vxw100) new_ltEs19(vxw112, vxw102, ty_Char) -> new_ltEs11(vxw112, vxw102) new_primCompAux0(vxw79, GT) -> GT new_compare31(vxw110, vxw100, ty_Int) -> new_compare19(vxw110, vxw100) new_esEs26(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), ty_Integer, cce) -> new_esEs13(vxw300, vxw4000) new_compare26(vxw110, vxw100, True) -> EQ new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False new_esEs20(vxw300, vxw4000, app(app(ty_@2, gc), gd)) -> new_esEs5(vxw300, vxw4000, gc, gd) new_esEs24(vxw110, vxw100, ty_Double) -> new_esEs17(vxw110, vxw100) new_esEs6(Left(vxw300), Left(vxw4000), app(ty_[], dch), cce) -> new_esEs11(vxw300, vxw4000, dch) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Double) -> new_ltEs7(vxw110, vxw100) new_esEs24(vxw110, vxw100, app(ty_Ratio, ccf)) -> new_esEs15(vxw110, vxw100, ccf) new_ltEs19(vxw112, vxw102, ty_Int) -> new_ltEs12(vxw112, vxw102) new_esEs28(vxw300, vxw4000, app(ty_[], dbf)) -> new_esEs11(vxw300, vxw4000, dbf) new_ltEs19(vxw112, vxw102, app(app(ty_Either, cga), cgb)) -> new_ltEs16(vxw112, vxw102, cga, cgb) new_compare16(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare28(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) new_ltEs20(vxw11, vxw10, ty_Char) -> new_ltEs11(vxw11, vxw10) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_Ratio, caa)) -> new_ltEs13(vxw110, vxw100, caa) new_compare12(vxw110, vxw100, False) -> GT new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Ratio, de)) -> new_esEs15(vxw300, vxw4000, de) new_ltEs14(vxw11, vxw10) -> new_not(new_esEs16(new_compare28(vxw11, vxw10), GT)) new_compare6(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare6(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_primCompAux0(vxw79, LT) -> LT new_ltEs16(Left(vxw110), Left(vxw100), app(app(ty_Either, bgh), bha), bfh) -> new_ltEs16(vxw110, vxw100, bgh, bha) new_esEs29(vxw30, vxw400, ty_Ordering) -> new_esEs16(vxw30, vxw400) new_esEs16(EQ, GT) -> False new_esEs16(GT, EQ) -> False new_not(True) -> False new_esEs6(Left(vxw300), Left(vxw4000), app(ty_Maybe, ddd), cce) -> new_esEs7(vxw300, vxw4000, ddd) new_compare30(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs24(vxw110, vxw100, ty_Ordering) -> new_esEs16(vxw110, vxw100) new_esEs6(Left(vxw300), Left(vxw4000), ty_Ordering, cce) -> new_esEs16(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), ty_Bool, bfh) -> new_ltEs5(vxw110, vxw100) new_primCmpNat0(Zero, Zero) -> EQ new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Float) -> new_ltEs17(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(ty_Either, cab), cac)) -> new_ltEs16(vxw110, vxw100, cab, cac) new_esEs25(vxw111, vxw101, ty_Integer) -> new_esEs13(vxw111, vxw101) new_esEs19(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_ltEs6(LT, GT) -> True new_esEs20(vxw300, vxw4000, app(ty_[], ge)) -> new_esEs11(vxw300, vxw4000, ge) new_esEs23(vxw110, vxw100, ty_Bool) -> new_esEs12(vxw110, vxw100) new_ltEs20(vxw11, vxw10, ty_Int) -> new_ltEs12(vxw11, vxw10) new_esEs30(vxw30, vxw400, app(ty_Ratio, eh)) -> new_esEs15(vxw30, vxw400, eh) new_esEs30(vxw30, vxw400, ty_Double) -> new_esEs17(vxw30, vxw400) new_compare25(vxw110, vxw100, False, bbh, bca, bcb) -> new_compare10(vxw110, vxw100, new_ltEs4(vxw110, vxw100, bbh, bca, bcb), bbh, bca, bcb) new_esEs30(vxw30, vxw400, ty_Ordering) -> new_esEs16(vxw30, vxw400) new_ltEs16(Left(vxw110), Right(vxw100), bfg, bfh) -> True new_lt19(vxw110, vxw100, ty_Integer) -> new_lt14(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_@0) -> new_ltEs15(vxw110, vxw100) new_primEqNat0(Succ(vxw3000), Zero) -> False new_primEqNat0(Zero, Succ(vxw40000)) -> False new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Float) -> new_esEs10(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), ty_Char, cce) -> new_esEs14(vxw300, vxw4000) new_lt20(vxw111, vxw101, ty_Integer) -> new_lt14(vxw111, vxw101) new_esEs16(LT, EQ) -> False new_esEs16(EQ, LT) -> False new_lt19(vxw110, vxw100, ty_Bool) -> new_lt15(vxw110, vxw100) new_compare31(vxw110, vxw100, ty_Integer) -> new_compare28(vxw110, vxw100) new_esEs29(vxw30, vxw400, ty_Double) -> new_esEs17(vxw30, vxw400) new_lt20(vxw111, vxw101, ty_Int) -> new_lt12(vxw111, vxw101) new_compare15(vxw110, vxw100, True, bbf, bbg) -> LT new_lt12(vxw110, vxw100) -> new_esEs16(new_compare19(vxw110, vxw100), LT) new_esEs24(vxw110, vxw100, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs4(vxw110, vxw100, bbh, bca, bcb) new_esEs23(vxw110, vxw100, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs4(vxw110, vxw100, bcg, bch, bda) new_esEs30(vxw30, vxw400, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs4(vxw30, vxw400, dh, ea, eb) new_ltEs18(Just(vxw110), Just(vxw100), app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs4(vxw110, vxw100, caf, cag, cah) new_lt20(vxw111, vxw101, ty_Char) -> new_lt9(vxw111, vxw101) new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT new_ltEs10(vxw111, vxw101, ty_Int) -> new_ltEs12(vxw111, vxw101) new_esEs28(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, app(ty_Ratio, gh)) -> new_esEs15(vxw300, vxw4000, gh) new_ltEs5(False, True) -> True new_compare110(vxw110, vxw100, True, fb, fc) -> LT new_esEs23(vxw110, vxw100, ty_Double) -> new_esEs17(vxw110, vxw100) new_lt13(vxw110, vxw100, ccf) -> new_esEs16(new_compare16(vxw110, vxw100, ccf), LT) new_lt8(vxw110, vxw100, app(ty_Maybe, bdg)) -> new_lt6(vxw110, vxw100, bdg) new_esEs7(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs9(vxw300, vxw4000) new_compare28(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) new_ltEs7(vxw11, vxw10) -> new_not(new_esEs16(new_compare6(vxw11, vxw10), GT)) new_primCmpNat0(Zero, Succ(vxw1000)) -> LT new_ltEs21(vxw20, vxw19, ty_Int) -> new_ltEs12(vxw20, vxw19) new_lt8(vxw110, vxw100, ty_Double) -> new_lt4(vxw110, vxw100) new_esEs21(vxw301, vxw4001, app(app(ty_@2, he), hf)) -> new_esEs5(vxw301, vxw4001, he, hf) new_esEs29(vxw30, vxw400, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs4(vxw30, vxw400, fd, ff, fg) new_ltEs17(vxw11, vxw10) -> new_not(new_esEs16(new_compare30(vxw11, vxw10), GT)) new_esEs25(vxw111, vxw101, ty_Ordering) -> new_esEs16(vxw111, vxw101) new_primCompAux1(vxw110, vxw100, vxw68, bcd) -> new_primCompAux0(vxw68, new_compare31(vxw110, vxw100, bcd)) new_ltEs21(vxw20, vxw19, ty_Integer) -> new_ltEs14(vxw20, vxw19) new_ltEs21(vxw20, vxw19, ty_Double) -> new_ltEs7(vxw20, vxw19) new_primCmpNat0(Succ(vxw1100), Zero) -> GT new_pePe(False, vxw67) -> vxw67 new_esEs7(Nothing, Just(vxw4000), cc) -> False new_esEs7(Just(vxw300), Nothing, cc) -> False new_compare7(vxw110, vxw100, fb, fc) -> new_compare24(vxw110, vxw100, new_esEs6(vxw110, vxw100, fb, fc), fb, fc) new_lt20(vxw111, vxw101, ty_Float) -> new_lt17(vxw111, vxw101) new_lt19(vxw110, vxw100, ty_Int) -> new_lt12(vxw110, vxw100) new_esEs12(False, False) -> True new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs12(vxw301, vxw4001) new_compare210(vxw110, vxw100, True, bcc) -> EQ new_esEs28(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs4(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), bfd, bfe, bff) -> new_pePe(new_lt19(vxw110, vxw100, bfd), new_asAs(new_esEs24(vxw110, vxw100, bfd), new_pePe(new_lt20(vxw111, vxw101, bfe), new_asAs(new_esEs25(vxw111, vxw101, bfe), new_ltEs19(vxw112, vxw102, bff))))) new_esEs22(vxw302, vxw4002, app(app(ty_Either, bbb), bbc)) -> new_esEs6(vxw302, vxw4002, bbb, bbc) new_esEs11(:(vxw300, vxw301), [], ccc) -> False new_esEs11([], :(vxw4000, vxw4001), ccc) -> False new_esEs24(vxw110, vxw100, ty_@0) -> new_esEs9(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Ordering) -> new_ltEs6(vxw110, vxw100) new_lt4(vxw110, vxw100) -> new_esEs16(new_compare6(vxw110, vxw100), LT) new_esEs26(vxw300, vxw4000, app(app(ty_@2, cgh), cha)) -> new_esEs5(vxw300, vxw4000, cgh, cha) new_esEs29(vxw30, vxw400, ty_Integer) -> new_esEs13(vxw30, vxw400) new_esEs26(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_ltEs6(LT, LT) -> True new_esEs29(vxw30, vxw400, ty_Char) -> new_esEs14(vxw30, vxw400) new_compare23(vxw110, vxw100, True, bbf, bbg) -> EQ new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False new_ltEs18(Just(vxw110), Just(vxw100), app(ty_Ratio, cbc)) -> new_ltEs13(vxw110, vxw100, cbc) new_esEs7(Nothing, Nothing, cc) -> True new_lt19(vxw110, vxw100, ty_Char) -> new_lt9(vxw110, vxw100) new_esEs23(vxw110, vxw100, app(ty_[], bdh)) -> new_esEs11(vxw110, vxw100, bdh) new_esEs6(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, dcc), dcd), dce), cce) -> new_esEs4(vxw300, vxw4000, dcc, dcd, dce) new_ltEs18(Just(vxw110), Just(vxw100), app(app(ty_@2, cba), cbb)) -> new_ltEs9(vxw110, vxw100, cba, cbb) new_ltEs20(vxw11, vxw10, app(app(ty_Either, bfg), bfh)) -> new_ltEs16(vxw11, vxw10, bfg, bfh) new_ltEs18(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs15(vxw110, vxw100) new_ltEs18(Just(vxw110), Just(vxw100), app(app(ty_Either, cbd), cbe)) -> new_ltEs16(vxw110, vxw100, cbd, cbe) new_esEs25(vxw111, vxw101, ty_Char) -> new_esEs14(vxw111, vxw101) new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(ty_@2, ddh), dea)) -> new_esEs5(vxw300, vxw4000, ddh, dea) new_ltEs16(Left(vxw110), Left(vxw100), app(app(ty_@2, bge), bgf), bfh) -> new_ltEs9(vxw110, vxw100, bge, bgf) new_compare25(vxw110, vxw100, True, bbh, bca, bcb) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT new_esEs26(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs21(vxw20, vxw19, app(ty_Maybe, cdg)) -> new_ltEs18(vxw20, vxw19, cdg) new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) new_esEs25(vxw111, vxw101, app(ty_Maybe, cfa)) -> new_esEs7(vxw111, vxw101, cfa) new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_esEs24(vxw110, vxw100, app(app(ty_Either, fb), fc)) -> new_esEs6(vxw110, vxw100, fb, fc) new_esEs26(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), app(app(ty_Either, dda), ddb), cce) -> new_esEs6(vxw300, vxw4000, dda, ddb) new_ltEs16(Left(vxw110), Left(vxw100), ty_Int, bfh) -> new_ltEs12(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_lt19(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_primMulNat0(Succ(vxw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw400000)) -> Zero new_ltEs18(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs12(vxw110, vxw100) new_esEs25(vxw111, vxw101, app(ty_[], cfb)) -> new_esEs11(vxw111, vxw101, cfb) new_ltEs6(LT, EQ) -> True new_esEs22(vxw302, vxw4002, app(ty_Maybe, bbe)) -> new_esEs7(vxw302, vxw4002, bbe) new_primPlusNat1(Succ(vxw690), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw690, vxw400000))) new_ltEs5(True, False) -> False new_esEs23(vxw110, vxw100, app(ty_Maybe, bdg)) -> new_esEs7(vxw110, vxw100, bdg) new_lt20(vxw111, vxw101, app(app(app(ty_@3, cea), ceb), cec)) -> new_lt11(vxw111, vxw101, cea, ceb, cec) new_primPlusNat0(Succ(vxw6900), Zero) -> Succ(vxw6900) new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_Either, dc), dd)) -> new_esEs6(vxw300, vxw4000, dc, dd) new_ltEs19(vxw112, vxw102, ty_Double) -> new_ltEs7(vxw112, vxw102) new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs4(vxw301, vxw4001, hb, hc, hd) new_compare4(:(vxw110, vxw111), :(vxw100, vxw101), bcd) -> new_primCompAux1(vxw110, vxw100, new_compare4(vxw111, vxw101, bcd), bcd) new_ltEs19(vxw112, vxw102, ty_Integer) -> new_ltEs14(vxw112, vxw102) new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) new_lt8(vxw110, vxw100, ty_Bool) -> new_lt15(vxw110, vxw100) new_esEs16(LT, GT) -> False new_esEs16(GT, LT) -> False new_esEs22(vxw302, vxw4002, app(ty_Ratio, bbd)) -> new_esEs15(vxw302, vxw4002, bbd) new_compare11(vxw110, vxw100) -> new_compare26(vxw110, vxw100, new_esEs12(vxw110, vxw100)) new_esEs19(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_esEs20(vxw300, vxw4000, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs4(vxw300, vxw4000, fh, ga, gb) new_esEs24(vxw110, vxw100, ty_Bool) -> new_esEs12(vxw110, vxw100) new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_[], deb)) -> new_esEs11(vxw300, vxw4000, deb) new_esEs23(vxw110, vxw100, app(app(ty_@2, bdb), bdc)) -> new_esEs5(vxw110, vxw100, bdb, bdc) new_esEs23(vxw110, vxw100, app(ty_Ratio, bdd)) -> new_esEs15(vxw110, vxw100, bdd) new_esEs6(Left(vxw300), Left(vxw4000), app(app(ty_@2, dcf), dcg), cce) -> new_esEs5(vxw300, vxw4000, dcf, dcg) new_lt6(vxw110, vxw100, bcc) -> new_esEs16(new_compare9(vxw110, vxw100, bcc), LT) new_lt17(vxw110, vxw100) -> new_esEs16(new_compare30(vxw110, vxw100), LT) new_esEs24(vxw110, vxw100, app(ty_Maybe, bcc)) -> new_esEs7(vxw110, vxw100, bcc) new_ltEs8(vxw11, vxw10, bcd) -> new_not(new_esEs16(new_compare4(vxw11, vxw10, bcd), GT)) new_ltEs10(vxw111, vxw101, app(app(ty_Either, beg), beh)) -> new_ltEs16(vxw111, vxw101, beg, beh) new_lt5(vxw110, vxw100, fb, fc) -> new_esEs16(new_compare7(vxw110, vxw100, fb, fc), LT) new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs25(vxw111, vxw101, ty_Bool) -> new_esEs12(vxw111, vxw101) new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs9(vxw301, vxw4001) new_lt8(vxw110, vxw100, ty_Integer) -> new_lt14(vxw110, vxw100) new_ltEs10(vxw111, vxw101, app(ty_Maybe, bfa)) -> new_ltEs18(vxw111, vxw101, bfa) new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fd, ff, fg) -> new_asAs(new_esEs20(vxw300, vxw4000, fd), new_asAs(new_esEs21(vxw301, vxw4001, ff), new_esEs22(vxw302, vxw4002, fg))) new_esEs20(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_lt7(vxw110, vxw100, bbf, bbg) -> new_esEs16(new_compare8(vxw110, vxw100, bbf, bbg), LT) new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_ltEs21(vxw20, vxw19, app(app(ty_Either, cde), cdf)) -> new_ltEs16(vxw20, vxw19, cde, cdf) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_@2, cg), da)) -> new_esEs5(vxw300, vxw4000, cg, da) new_ltEs21(vxw20, vxw19, ty_@0) -> new_ltEs15(vxw20, vxw19) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs24(vxw110, vxw100, app(app(ty_@2, bbf), bbg)) -> new_esEs5(vxw110, vxw100, bbf, bbg) new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs14(vxw301, vxw4001) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_[], db)) -> new_esEs11(vxw300, vxw4000, db) new_compare4([], :(vxw100, vxw101), bcd) -> LT new_esEs6(Left(vxw300), Left(vxw4000), ty_Bool, cce) -> new_esEs12(vxw300, vxw4000) new_compare31(vxw110, vxw100, ty_Ordering) -> new_compare14(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_[], bhc), bfh) -> new_ltEs8(vxw110, vxw100, bhc) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs23(vxw110, vxw100, app(app(ty_Either, bde), bdf)) -> new_esEs6(vxw110, vxw100, bde, bdf) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_Maybe, cad)) -> new_ltEs18(vxw110, vxw100, cad) new_ltEs21(vxw20, vxw19, app(app(ty_@2, cdb), cdc)) -> new_ltEs9(vxw20, vxw19, cdb, cdc) new_esEs20(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs21(vxw301, vxw4001, app(app(ty_Either, hh), baa)) -> new_esEs6(vxw301, vxw4001, hh, baa) new_lt8(vxw110, vxw100, app(ty_[], bdh)) -> new_lt18(vxw110, vxw100, bdh) new_esEs29(vxw30, vxw400, ty_Float) -> new_esEs10(vxw30, vxw400) new_esEs28(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_ltEs10(vxw111, vxw101, ty_@0) -> new_ltEs15(vxw111, vxw101) new_ltEs10(vxw111, vxw101, app(app(ty_@2, bed), bee)) -> new_ltEs9(vxw111, vxw101, bed, bee) new_ltEs16(Left(vxw110), Left(vxw100), ty_Double, bfh) -> new_ltEs7(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(app(ty_@2, dab), dac)) -> new_esEs5(vxw301, vxw4001, dab, dac) new_esEs30(vxw30, vxw400, ty_Int) -> new_esEs8(vxw30, vxw400) new_esEs26(vxw300, vxw4000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs4(vxw300, vxw4000, cge, cgf, cgg) new_lt8(vxw110, vxw100, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt11(vxw110, vxw100, bcg, bch, bda) new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) new_ltEs16(Left(vxw110), Left(vxw100), ty_Integer, bfh) -> new_ltEs14(vxw110, vxw100) new_esEs20(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_ltEs18(Nothing, Nothing, bga) -> True new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(ty_Either, dec), ded)) -> new_esEs6(vxw300, vxw4000, dec, ded) new_esEs26(vxw300, vxw4000, app(ty_Ratio, che)) -> new_esEs15(vxw300, vxw4000, che) new_compare18(vxw110, vxw100, bbh, bca, bcb) -> new_compare25(vxw110, vxw100, new_esEs4(vxw110, vxw100, bbh, bca, bcb), bbh, bca, bcb) new_ltEs6(GT, EQ) -> False new_compare10(vxw110, vxw100, False, bbh, bca, bcb) -> GT new_ltEs10(vxw111, vxw101, ty_Float) -> new_ltEs17(vxw111, vxw101) new_sr0(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) new_ltEs20(vxw11, vxw10, ty_Integer) -> new_ltEs14(vxw11, vxw10) new_ltEs5(False, False) -> True new_esEs16(GT, GT) -> True new_ltEs21(vxw20, vxw19, app(ty_Ratio, cdd)) -> new_ltEs13(vxw20, vxw19, cdd) new_lt19(vxw110, vxw100, app(app(app(ty_@3, bbh), bca), bcb)) -> new_lt11(vxw110, vxw100, bbh, bca, bcb) new_ltEs18(Just(vxw110), Just(vxw100), app(ty_Maybe, cbf)) -> new_ltEs18(vxw110, vxw100, cbf) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(ty_@2, bhg), bhh)) -> new_ltEs9(vxw110, vxw100, bhg, bhh) new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs16(vxw301, vxw4001) new_compare26(vxw110, vxw100, False) -> new_compare12(vxw110, vxw100, new_ltEs5(vxw110, vxw100)) new_esEs28(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_asAs(True, vxw59) -> vxw59 new_compare30(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare30(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs29(vxw30, vxw400, ty_Int) -> new_esEs8(vxw30, vxw400) new_compare31(vxw110, vxw100, ty_Double) -> new_compare6(vxw110, vxw100) new_lt20(vxw111, vxw101, app(app(ty_@2, ced), cee)) -> new_lt7(vxw111, vxw101, ced, cee) new_ltEs20(vxw11, vxw10, app(app(ty_@2, bce), bcf)) -> new_ltEs9(vxw11, vxw10, bce, bcf) new_ltEs20(vxw11, vxw10, ty_@0) -> new_ltEs15(vxw11, vxw10) new_ltEs16(Right(vxw110), Left(vxw100), bfg, bfh) -> False new_esEs23(vxw110, vxw100, ty_Integer) -> new_esEs13(vxw110, vxw100) new_esEs6(Left(vxw300), Right(vxw4000), ccd, cce) -> False new_esEs6(Right(vxw300), Left(vxw4000), ccd, cce) -> False new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs12(vxw301, vxw4001) new_esEs22(vxw302, vxw4002, app(ty_[], bba)) -> new_esEs11(vxw302, vxw4002, bba) new_ltEs18(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs7(vxw110, vxw100) new_esEs30(vxw30, vxw400, ty_Float) -> new_esEs10(vxw30, vxw400) new_esEs21(vxw301, vxw4001, app(ty_Ratio, bab)) -> new_esEs15(vxw301, vxw4001, bab) new_lt19(vxw110, vxw100, app(app(ty_@2, bbf), bbg)) -> new_lt7(vxw110, vxw100, bbf, bbg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_ltEs18(Just(vxw110), Nothing, bga) -> False new_esEs22(vxw302, vxw4002, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(vxw302, vxw4002, bad, bae, baf) new_ltEs20(vxw11, vxw10, ty_Double) -> new_ltEs7(vxw11, vxw10) new_compare24(vxw110, vxw100, True, fb, fc) -> EQ new_ltEs19(vxw112, vxw102, app(app(ty_@2, cff), cfg)) -> new_ltEs9(vxw112, vxw102, cff, cfg) new_ltEs19(vxw112, vxw102, ty_@0) -> new_ltEs15(vxw112, vxw102) new_ltEs19(vxw112, vxw102, ty_Ordering) -> new_ltEs6(vxw112, vxw102) new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) new_esEs6(Left(vxw300), Left(vxw4000), ty_@0, cce) -> new_esEs9(vxw300, vxw4000) new_esEs24(vxw110, vxw100, ty_Int) -> new_esEs8(vxw110, vxw100) new_esEs25(vxw111, vxw101, ty_@0) -> new_esEs9(vxw111, vxw101) new_esEs9(@0, @0) -> True new_esEs18(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) new_lt16(vxw110, vxw100) -> new_esEs16(new_compare29(vxw110, vxw100), LT) new_esEs22(vxw302, vxw4002, ty_Double) -> new_esEs17(vxw302, vxw4002) new_esEs6(Left(vxw300), Left(vxw4000), ty_Float, cce) -> new_esEs10(vxw300, vxw4000) new_primMulNat0(Zero, Zero) -> Zero new_compare4(:(vxw110, vxw111), [], bcd) -> GT new_esEs7(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs30(vxw30, vxw400, ty_Char) -> new_esEs14(vxw30, vxw400) new_esEs12(True, True) -> True new_esEs23(vxw110, vxw100, ty_Char) -> new_esEs14(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), ty_@0, bfh) -> new_ltEs15(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Char) -> new_ltEs11(vxw110, vxw100) new_ltEs19(vxw112, vxw102, app(ty_[], cgd)) -> new_ltEs8(vxw112, vxw102, cgd) new_esEs22(vxw302, vxw4002, app(app(ty_@2, bag), bah)) -> new_esEs5(vxw302, vxw4002, bag, bah) new_esEs26(vxw300, vxw4000, app(app(ty_Either, chc), chd)) -> new_esEs6(vxw300, vxw4000, chc, chd) new_ltEs10(vxw111, vxw101, app(ty_Ratio, bef)) -> new_ltEs13(vxw111, vxw101, bef) new_ltEs10(vxw111, vxw101, ty_Integer) -> new_ltEs14(vxw111, vxw101) new_esEs24(vxw110, vxw100, ty_Float) -> new_esEs10(vxw110, vxw100) new_ltEs6(EQ, LT) -> False new_ltEs19(vxw112, vxw102, app(ty_Ratio, cfh)) -> new_ltEs13(vxw112, vxw102, cfh) new_ltEs18(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs14(vxw110, vxw100) new_lt15(vxw110, vxw100) -> new_esEs16(new_compare11(vxw110, vxw100), LT) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs11(vxw11, vxw10) -> new_not(new_esEs16(new_compare17(vxw11, vxw10), GT)) new_ltEs20(vxw11, vxw10, app(ty_Maybe, bga)) -> new_ltEs18(vxw11, vxw10, bga) new_lt20(vxw111, vxw101, app(ty_Ratio, cef)) -> new_lt13(vxw111, vxw101, cef) new_compare31(vxw110, vxw100, ty_Float) -> new_compare30(vxw110, vxw100) new_compare6(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs25(vxw111, vxw101, app(app(ty_Either, ceg), ceh)) -> new_esEs6(vxw111, vxw101, ceg, ceh) new_primCompAux0(vxw79, EQ) -> vxw79 new_ltEs20(vxw11, vxw10, app(ty_[], bcd)) -> new_ltEs8(vxw11, vxw10, bcd) new_lt10(vxw110, vxw100) -> new_esEs16(new_compare14(vxw110, vxw100), LT) new_esEs27(vxw301, vxw4001, app(ty_[], dad)) -> new_esEs11(vxw301, vxw4001, dad) new_esEs11(:(vxw300, vxw301), :(vxw4000, vxw4001), ccc) -> new_asAs(new_esEs28(vxw300, vxw4000, ccc), new_esEs11(vxw301, vxw4001, ccc)) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Bool) -> new_ltEs5(vxw110, vxw100) new_lt19(vxw110, vxw100, app(ty_Ratio, ccf)) -> new_lt13(vxw110, vxw100, ccf) new_esEs30(vxw30, vxw400, ty_@0) -> new_esEs9(vxw30, vxw400) new_lt8(vxw110, vxw100, app(app(ty_Either, bde), bdf)) -> new_lt5(vxw110, vxw100, bde, bdf) new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False new_esEs26(vxw300, vxw4000, app(ty_[], chb)) -> new_esEs11(vxw300, vxw4000, chb) new_ltEs20(vxw11, vxw10, app(ty_Ratio, bfc)) -> new_ltEs13(vxw11, vxw10, bfc) new_compare31(vxw110, vxw100, ty_Bool) -> new_compare11(vxw110, vxw100) new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_ltEs19(vxw112, vxw102, app(ty_Maybe, cgc)) -> new_ltEs18(vxw112, vxw102, cgc) new_esEs21(vxw301, vxw4001, app(ty_Maybe, bac)) -> new_esEs7(vxw301, vxw4001, bac) new_ltEs16(Left(vxw110), Left(vxw100), ty_Float, bfh) -> new_ltEs17(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs14(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, app(app(ty_Either, gf), gg)) -> new_esEs6(vxw300, vxw4000, gf, gg) new_compare19(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) new_esEs24(vxw110, vxw100, ty_Char) -> new_esEs14(vxw110, vxw100) new_ltEs18(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs17(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False new_esEs25(vxw111, vxw101, app(ty_Ratio, cef)) -> new_esEs15(vxw111, vxw101, cef) new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) new_compare27(vxw110, vxw100, False) -> new_compare13(vxw110, vxw100, new_ltEs6(vxw110, vxw100)) new_esEs18(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs16(EQ, EQ) -> True new_compare4([], [], bcd) -> EQ new_ltEs10(vxw111, vxw101, ty_Double) -> new_ltEs7(vxw111, vxw101) new_esEs29(vxw30, vxw400, ty_@0) -> new_esEs9(vxw30, vxw400) new_esEs25(vxw111, vxw101, ty_Float) -> new_esEs10(vxw111, vxw101) new_esEs24(vxw110, vxw100, ty_Integer) -> new_esEs13(vxw110, vxw100) new_esEs22(vxw302, vxw4002, ty_Bool) -> new_esEs12(vxw302, vxw4002) new_esEs26(vxw300, vxw4000, app(ty_Maybe, chf)) -> new_esEs7(vxw300, vxw4000, chf) new_esEs30(vxw30, vxw400, ty_Integer) -> new_esEs13(vxw30, vxw400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(vxw301, vxw4001, app(ty_[], hg)) -> new_esEs11(vxw301, vxw4001, hg) new_lt8(vxw110, vxw100, ty_@0) -> new_lt16(vxw110, vxw100) new_compare111(vxw110, vxw100, False, bcc) -> GT new_ltEs19(vxw112, vxw102, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs4(vxw112, vxw102, cfc, cfd, cfe) new_ltEs19(vxw112, vxw102, ty_Bool) -> new_ltEs5(vxw112, vxw102) new_esEs8(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) new_lt19(vxw110, vxw100, ty_Double) -> new_lt4(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(ty_Maybe, dah)) -> new_esEs7(vxw301, vxw4001, dah) new_esEs23(vxw110, vxw100, ty_Int) -> new_esEs8(vxw110, vxw100) new_ltEs10(vxw111, vxw101, ty_Bool) -> new_ltEs5(vxw111, vxw101) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_Maybe, bhb), bfh) -> new_ltEs18(vxw110, vxw100, bhb) new_ltEs18(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs6(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs4(vxw301, vxw4001, chg, chh, daa) new_esEs22(vxw302, vxw4002, ty_Integer) -> new_esEs13(vxw302, vxw4002) new_not(False) -> True new_esEs6(Left(vxw300), Left(vxw4000), ty_Int, cce) -> new_esEs8(vxw300, vxw4000) new_compare31(vxw110, vxw100, ty_Char) -> new_compare17(vxw110, vxw100) new_esEs20(vxw300, vxw4000, app(ty_Maybe, ha)) -> new_esEs7(vxw300, vxw4000, ha) new_lt8(vxw110, vxw100, ty_Int) -> new_lt12(vxw110, vxw100) new_esEs16(LT, LT) -> True new_lt19(vxw110, vxw100, app(app(ty_Either, fb), fc)) -> new_lt5(vxw110, vxw100, fb, fc) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_primPlusNat0(Succ(vxw6900), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw6900, vxw4000000))) new_esEs29(vxw30, vxw400, app(app(ty_Either, ccd), cce)) -> new_esEs6(vxw30, vxw400, ccd, cce) new_esEs27(vxw301, vxw4001, app(ty_Ratio, dag)) -> new_esEs15(vxw301, vxw4001, dag) new_esEs25(vxw111, vxw101, ty_Double) -> new_esEs17(vxw111, vxw101) new_esEs20(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_lt11(vxw110, vxw100, bbh, bca, bcb) -> new_esEs16(new_compare18(vxw110, vxw100, bbh, bca, bcb), LT) new_lt19(vxw110, vxw100, app(ty_Maybe, bcc)) -> new_lt6(vxw110, vxw100, bcc) new_esEs29(vxw30, vxw400, app(ty_Ratio, dg)) -> new_esEs15(vxw30, vxw400, dg) new_lt19(vxw110, vxw100, ty_@0) -> new_lt16(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_compare13(vxw110, vxw100, True) -> LT new_esEs7(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), ty_Ordering, bfh) -> new_ltEs6(vxw110, vxw100) new_esEs29(vxw30, vxw400, ty_Bool) -> new_esEs12(vxw30, vxw400) new_lt9(vxw110, vxw100) -> new_esEs16(new_compare17(vxw110, vxw100), LT) new_esEs30(vxw30, vxw400, app(app(ty_Either, ef), eg)) -> new_esEs6(vxw30, vxw400, ef, eg) new_esEs22(vxw302, vxw4002, ty_@0) -> new_esEs9(vxw302, vxw4002) new_esEs20(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_ltEs21(vxw20, vxw19, app(ty_[], cdh)) -> new_ltEs8(vxw20, vxw19, cdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(vxw111, vxw101, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs4(vxw111, vxw101, cea, ceb, cec) new_esEs20(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_ltEs5(True, True) -> True new_esEs28(vxw300, vxw4000, app(app(ty_@2, dbd), dbe)) -> new_esEs5(vxw300, vxw4000, dbd, dbe) new_compare111(vxw110, vxw100, True, bcc) -> LT new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs16(vxw301, vxw4001) new_ltEs10(vxw111, vxw101, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs4(vxw111, vxw101, bea, beb, bec) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Char) -> new_esEs14(vxw300, vxw4000) new_lt8(vxw110, vxw100, app(ty_Ratio, bdd)) -> new_lt13(vxw110, vxw100, bdd) new_esEs27(vxw301, vxw4001, app(app(ty_Either, dae), daf)) -> new_esEs6(vxw301, vxw4001, dae, daf) new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) new_compare31(vxw110, vxw100, app(app(app(ty_@3, deg), deh), dfa)) -> new_compare18(vxw110, vxw100, deg, deh, dfa) new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs10(vxw301, vxw4001) new_ltEs21(vxw20, vxw19, ty_Float) -> new_ltEs17(vxw20, vxw19) new_esEs17(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs8(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_esEs29(vxw30, vxw400, app(ty_[], ccc)) -> new_esEs11(vxw30, vxw400, ccc) new_esEs30(vxw30, vxw400, app(ty_Maybe, fa)) -> new_esEs7(vxw30, vxw400, fa) new_esEs20(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_esEs13(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) new_lt8(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_esEs30(vxw30, vxw400, ty_Bool) -> new_esEs12(vxw30, vxw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs30(vxw30, vxw400, app(app(ty_@2, ec), ed)) -> new_esEs5(vxw30, vxw400, ec, ed) new_compare9(vxw110, vxw100, bcc) -> new_compare210(vxw110, vxw100, new_esEs7(vxw110, vxw100, bcc), bcc) new_ltEs10(vxw111, vxw101, app(ty_[], bfb)) -> new_ltEs8(vxw111, vxw101, bfb) new_compare8(vxw110, vxw100, bbf, bbg) -> new_compare23(vxw110, vxw100, new_esEs5(vxw110, vxw100, bbf, bbg), bbf, bbg) new_ltEs21(vxw20, vxw19, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs4(vxw20, vxw19, ccg, cch, cda) new_lt20(vxw111, vxw101, app(ty_[], cfb)) -> new_lt18(vxw111, vxw101, cfb) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_lt18(vxw110, vxw100, cbh) -> new_esEs16(new_compare4(vxw110, vxw100, cbh), LT) new_ltEs13(vxw11, vxw10, bfc) -> new_not(new_esEs16(new_compare16(vxw11, vxw10, bfc), GT)) new_ltEs18(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs11(vxw110, vxw100) new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) new_compare30(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare6(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare14(vxw110, vxw100) -> new_compare27(vxw110, vxw100, new_esEs16(vxw110, vxw100)) new_lt20(vxw111, vxw101, ty_@0) -> new_lt16(vxw111, vxw101) new_esEs23(vxw110, vxw100, ty_Ordering) -> new_esEs16(vxw110, vxw100) new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_ltEs10(vxw111, vxw101, ty_Ordering) -> new_ltEs6(vxw111, vxw101) new_ltEs20(vxw11, vxw10, ty_Ordering) -> new_ltEs6(vxw11, vxw10) new_compare12(vxw110, vxw100, True) -> LT new_compare31(vxw110, vxw100, app(ty_Maybe, dfg)) -> new_compare9(vxw110, vxw100, dfg) new_esEs22(vxw302, vxw4002, ty_Char) -> new_esEs14(vxw302, vxw4002) new_compare15(vxw110, vxw100, False, bbf, bbg) -> GT new_esEs15(:%(vxw300, vxw301), :%(vxw4000, vxw4001), dg) -> new_asAs(new_esEs18(vxw300, vxw4000, dg), new_esEs19(vxw301, vxw4001, dg)) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs4(vxw110, vxw100, bhd, bhe, bhf) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vxw20, vxw19, ty_Bool) -> new_ltEs5(vxw20, vxw19) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_[], cae)) -> new_ltEs8(vxw110, vxw100, cae) new_lt20(vxw111, vxw101, ty_Double) -> new_lt4(vxw111, vxw101) new_lt20(vxw111, vxw101, app(ty_Maybe, cfa)) -> new_lt6(vxw111, vxw101, cfa) new_esEs6(Left(vxw300), Left(vxw4000), ty_Double, cce) -> new_esEs17(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_Ratio, bgg), bfh) -> new_ltEs13(vxw110, vxw100, bgg) new_ltEs15(vxw11, vxw10) -> new_not(new_esEs16(new_compare29(vxw11, vxw10), GT)) new_esEs23(vxw110, vxw100, ty_Float) -> new_esEs10(vxw110, vxw100) new_compare110(vxw110, vxw100, False, fb, fc) -> GT new_esEs28(vxw300, vxw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs6(vxw300, vxw4000, dbg, dbh) new_compare17(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) new_primEqNat0(Zero, Zero) -> True new_esEs25(vxw111, vxw101, ty_Int) -> new_esEs8(vxw111, vxw101) new_compare13(vxw110, vxw100, False) -> GT new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs14(vxw301, vxw4001) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Int) -> new_ltEs12(vxw110, vxw100) new_ltEs21(vxw20, vxw19, ty_Ordering) -> new_ltEs6(vxw20, vxw19) new_esEs11([], [], ccc) -> True new_esEs29(vxw30, vxw400, app(app(ty_@2, cca), ccb)) -> new_esEs5(vxw30, vxw400, cca, ccb) new_esEs10(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs8(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_compare16(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare19(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) new_ltEs21(vxw20, vxw19, ty_Char) -> new_ltEs11(vxw20, vxw19) new_lt20(vxw111, vxw101, app(app(ty_Either, ceg), ceh)) -> new_lt5(vxw111, vxw101, ceg, ceh) new_lt8(vxw110, vxw100, ty_Char) -> new_lt9(vxw110, vxw100) new_esEs30(vxw30, vxw400, app(ty_[], ee)) -> new_esEs11(vxw30, vxw400, ee) new_esEs22(vxw302, vxw4002, ty_Ordering) -> new_esEs16(vxw302, vxw4002) new_asAs(False, vxw59) -> False new_compare31(vxw110, vxw100, app(app(ty_@2, dfb), dfc)) -> new_compare8(vxw110, vxw100, dfb, dfc) new_ltEs20(vxw11, vxw10, ty_Bool) -> new_ltEs5(vxw11, vxw10) new_ltEs9(@2(vxw110, vxw111), @2(vxw100, vxw101), bce, bcf) -> new_pePe(new_lt8(vxw110, vxw100, bce), new_asAs(new_esEs23(vxw110, vxw100, bce), new_ltEs10(vxw111, vxw101, bcf))) new_lt8(vxw110, vxw100, app(app(ty_@2, bdb), bdc)) -> new_lt7(vxw110, vxw100, bdb, bdc) new_esEs22(vxw302, vxw4002, ty_Float) -> new_esEs10(vxw302, vxw4002) new_ltEs20(vxw11, vxw10, ty_Float) -> new_ltEs17(vxw11, vxw10) new_esEs28(vxw300, vxw4000, app(ty_Ratio, dca)) -> new_esEs15(vxw300, vxw4000, dca) new_lt19(vxw110, vxw100, app(ty_[], cbh)) -> new_lt18(vxw110, vxw100, cbh) new_esEs29(vxw30, vxw400, app(ty_Maybe, cc)) -> new_esEs7(vxw30, vxw400, cc) new_ltEs20(vxw11, vxw10, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs4(vxw11, vxw10, bfd, bfe, bff) new_compare27(vxw110, vxw100, True) -> EQ new_compare210(vxw110, vxw100, False, bcc) -> new_compare111(vxw110, vxw100, new_ltEs18(vxw110, vxw100, bcc), bcc) new_ltEs6(GT, LT) -> False new_ltEs18(Just(vxw110), Just(vxw100), app(ty_[], cbg)) -> new_ltEs8(vxw110, vxw100, cbg) new_ltEs19(vxw112, vxw102, ty_Float) -> new_ltEs17(vxw112, vxw102) new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs9(vxw301, vxw4001) new_ltEs10(vxw111, vxw101, ty_Char) -> new_ltEs11(vxw111, vxw101) The set Q consists of the following terms: new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare111(x0, x1, False, x2) new_compare110(x0, x1, True, x2, x3) new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, True) new_compare31(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(Just(x0), Just(x1), ty_Char) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, ty_Float) new_compare31(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs13(x0, x1, x2) new_ltEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), ty_Int) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(LT, LT) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare210(x0, x1, True, x2) new_esEs29(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(@0, @0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_esEs30(x0, x1, ty_Int) new_ltEs18(Nothing, Nothing, x0) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(Just(x0), Just(x1), ty_Ordering) new_compare12(x0, x1, True) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs5(False, True) new_ltEs5(True, False) new_compare10(x0, x1, True, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(EQ, EQ) new_esEs29(x0, x1, ty_Float) new_compare31(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_lt8(x0, x1, ty_Int) new_esEs12(False, True) new_esEs12(True, False) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Ordering) new_compare31(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), Zero) new_lt7(x0, x1, x2, x3) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs21(x0, x1, ty_Double) new_compare31(x0, x1, ty_Ordering) new_sr(x0, x1) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs11([], :(x0, x1), x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt12(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_lt8(x0, x1, ty_Char) new_lt8(x0, x1, ty_Double) new_compare17(Char(x0), Char(x1)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs20(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs8(x0, x1) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs25(x0, x1, ty_Float) new_ltEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(@0, @0) new_esEs22(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux0(x0, GT) new_esEs14(Char(x0), Char(x1)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs28(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs7(Just(x0), Nothing, x1) new_esEs16(LT, GT) new_esEs16(GT, LT) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt10(x0, x1) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_lt9(x0, x1) new_compare4([], [], x0) new_esEs25(x0, x1, ty_Int) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_asAs(False, x0) new_esEs28(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare15(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_@0) new_compare4(:(x0, x1), [], x2) new_ltEs19(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(Just(x0), Just(x1), ty_Integer) new_compare111(x0, x1, True, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs27(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_compare7(x0, x1, x2, x3) new_ltEs6(LT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs6(GT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs7(Nothing, Just(x0), x1) new_esEs23(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Char) new_ltEs5(True, True) new_lt18(x0, x1, x2) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_@0) new_esEs16(EQ, GT) new_esEs16(GT, EQ) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs10(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_lt8(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_compare210(x0, x1, False, x2) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_compare13(x0, x1, True) new_esEs22(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), ty_Bool) new_lt4(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1) new_compare110(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs27(x0, x1, ty_Char) new_compare23(x0, x1, False, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs25(x0, x1, ty_@0) new_compare27(x0, x1, True) new_primMulNat0(Zero, Zero) new_esEs20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_@0) new_ltEs15(x0, x1) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs17(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Double) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(Integer(x0), Integer(x1)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCmpNat0(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(EQ, EQ) new_ltEs19(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs10(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_esEs11(:(x0, x1), [], x2) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs24(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Char) new_ltEs10(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_ltEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1) new_lt8(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs18(Just(x0), Just(x1), ty_Float) new_primPlusNat0(Zero, Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(x0, x1, x2) new_esEs20(x0, x1, ty_@0) new_lt6(x0, x1, x2) new_not(True) new_esEs29(x0, x1, ty_Ordering) new_lt17(x0, x1) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_esEs12(False, False) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt15(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs10(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, False) new_ltEs21(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs18(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Ordering) new_primCompAux0(x0, LT) new_ltEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Integer) new_lt8(x0, x1, ty_@0) new_esEs17(Double(x0, x1), Double(x2, x3)) new_ltEs21(x0, x1, ty_@0) new_ltEs11(x0, x1) new_compare18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs10(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, False, x2, x3, x4) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare19(x0, x1) new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_compare4([], :(x0, x1), x2) new_ltEs10(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, False) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(Float(x0, x1), Float(x2, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_compare23(x0, x1, True, x2, x3) new_compare25(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, GT) new_esEs22(x0, x1, ty_Double) new_compare26(x0, x1, False) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare4(:(x0, x1), :(x2, x3), x4) new_lt8(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs18(Just(x0), Nothing, x1) new_compare8(x0, x1, x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs11([], [], x0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_lt13(x0, x1, x2) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt14(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_ltEs10(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_compare13(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs10(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs13(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_primCompAux0(x0, EQ) new_primEqNat0(Zero, Zero) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Int) new_esEs12(True, True) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs21(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_not(False) new_esEs16(LT, LT) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Float) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Nothing, Just(x0), x1) new_ltEs18(Just(x0), Just(x1), ty_@0) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs18(Just(x0), Just(x1), ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs12(x0, x1) new_esEs21(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt8(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_@0) new_lt11(x0, x1, x2, x3, x4) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, True, x2, x3) new_primPlusNat1(Zero, x0) new_esEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Integer) new_esEs16(LT, EQ) new_esEs16(EQ, LT) new_compare31(x0, x1, ty_Float) new_asAs(True, x0) new_esEs23(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs16(GT, GT) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (26) Complex Obligation (AND) ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_insertBy(Right(vxw30), :(Right(vxw400), vxw41), be, bf) -> new_insertBy01(vxw400, vxw30, vxw41, new_esEs30(vxw30, vxw400, bf), be, bf) new_insertBy01(vxw19, vxw20, vxw21, False, bg, bh) -> new_insertBy02(vxw19, vxw20, vxw21, new_ltEs21(vxw20, vxw19, bh), bg, bh) new_insertBy02(vxw37, vxw38, vxw39, False, ca, cb) -> new_insertBy(Right(vxw38), vxw39, ca, cb) new_insertBy(Right(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy(Right(vxw30), vxw41, be, bf) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs4(vxw300, vxw4000, dde, ddf, ddg) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT new_ltEs12(vxw11, vxw10) -> new_not(new_esEs16(new_compare19(vxw11, vxw10), GT)) new_compare10(vxw110, vxw100, True, bbh, bca, bcb) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vxw67) -> True new_esEs5(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cca, ccb) -> new_asAs(new_esEs26(vxw300, vxw4000, cca), new_esEs27(vxw301, vxw4001, ccb)) new_compare23(vxw110, vxw100, False, bbf, bbg) -> new_compare15(vxw110, vxw100, new_ltEs9(vxw110, vxw100, bbf, bbg), bbf, bbg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs6(GT, GT) -> True new_compare29(@0, @0) -> EQ new_compare31(vxw110, vxw100, app(ty_Ratio, dfd)) -> new_compare16(vxw110, vxw100, dfd) new_esEs24(vxw110, vxw100, app(ty_[], cbh)) -> new_esEs11(vxw110, vxw100, cbh) new_esEs7(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, cd), ce), cf)) -> new_esEs4(vxw300, vxw4000, cd, ce, cf) new_lt20(vxw111, vxw101, ty_Bool) -> new_lt15(vxw111, vxw101) new_esEs6(Left(vxw300), Left(vxw4000), app(ty_Ratio, ddc), cce) -> new_esEs15(vxw300, vxw4000, ddc) new_lt19(vxw110, vxw100, ty_Ordering) -> new_lt10(vxw110, vxw100) new_ltEs18(Nothing, Just(vxw100), bga) -> True new_compare31(vxw110, vxw100, ty_@0) -> new_compare29(vxw110, vxw100) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare24(vxw110, vxw100, False, fb, fc) -> new_compare110(vxw110, vxw100, new_ltEs16(vxw110, vxw100, fb, fc), fb, fc) new_compare31(vxw110, vxw100, app(ty_[], dfh)) -> new_compare4(vxw110, vxw100, dfh) new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_Maybe, def)) -> new_esEs7(vxw300, vxw4000, def) new_esEs7(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs12(vxw300, vxw4000) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_@0) -> new_esEs9(vxw300, vxw4000) new_ltEs18(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs5(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Maybe, df)) -> new_esEs7(vxw300, vxw4000, df) new_esEs14(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs10(vxw301, vxw4001) new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) new_esEs28(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_esEs22(vxw302, vxw4002, ty_Int) -> new_esEs8(vxw302, vxw4002) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_Ratio, dee)) -> new_esEs15(vxw300, vxw4000, dee) new_compare31(vxw110, vxw100, app(app(ty_Either, dfe), dff)) -> new_compare7(vxw110, vxw100, dfe, dff) new_esEs28(vxw300, vxw4000, app(ty_Maybe, dcb)) -> new_esEs7(vxw300, vxw4000, dcb) new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) new_ltEs6(EQ, GT) -> True new_esEs23(vxw110, vxw100, ty_@0) -> new_esEs9(vxw110, vxw100) new_lt14(vxw110, vxw100) -> new_esEs16(new_compare28(vxw110, vxw100), LT) new_lt20(vxw111, vxw101, ty_Ordering) -> new_lt10(vxw111, vxw101) new_esEs25(vxw111, vxw101, app(app(ty_@2, ced), cee)) -> new_esEs5(vxw111, vxw101, ced, cee) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Integer) -> new_ltEs14(vxw110, vxw100) new_esEs28(vxw300, vxw4000, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs4(vxw300, vxw4000, dba, dbb, dbc) new_lt8(vxw110, vxw100, ty_Ordering) -> new_lt10(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), app(app(app(ty_@3, bgb), bgc), bgd), bfh) -> new_ltEs4(vxw110, vxw100, bgb, bgc, bgd) new_ltEs16(Left(vxw110), Left(vxw100), ty_Char, bfh) -> new_ltEs11(vxw110, vxw100) new_ltEs19(vxw112, vxw102, ty_Char) -> new_ltEs11(vxw112, vxw102) new_primCompAux0(vxw79, GT) -> GT new_compare31(vxw110, vxw100, ty_Int) -> new_compare19(vxw110, vxw100) new_esEs26(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), ty_Integer, cce) -> new_esEs13(vxw300, vxw4000) new_compare26(vxw110, vxw100, True) -> EQ new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False new_esEs20(vxw300, vxw4000, app(app(ty_@2, gc), gd)) -> new_esEs5(vxw300, vxw4000, gc, gd) new_esEs24(vxw110, vxw100, ty_Double) -> new_esEs17(vxw110, vxw100) new_esEs6(Left(vxw300), Left(vxw4000), app(ty_[], dch), cce) -> new_esEs11(vxw300, vxw4000, dch) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Double) -> new_ltEs7(vxw110, vxw100) new_esEs24(vxw110, vxw100, app(ty_Ratio, ccf)) -> new_esEs15(vxw110, vxw100, ccf) new_ltEs19(vxw112, vxw102, ty_Int) -> new_ltEs12(vxw112, vxw102) new_esEs28(vxw300, vxw4000, app(ty_[], dbf)) -> new_esEs11(vxw300, vxw4000, dbf) new_ltEs19(vxw112, vxw102, app(app(ty_Either, cga), cgb)) -> new_ltEs16(vxw112, vxw102, cga, cgb) new_compare16(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare28(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) new_ltEs20(vxw11, vxw10, ty_Char) -> new_ltEs11(vxw11, vxw10) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_Ratio, caa)) -> new_ltEs13(vxw110, vxw100, caa) new_compare12(vxw110, vxw100, False) -> GT new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Ratio, de)) -> new_esEs15(vxw300, vxw4000, de) new_ltEs14(vxw11, vxw10) -> new_not(new_esEs16(new_compare28(vxw11, vxw10), GT)) new_compare6(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare6(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_primCompAux0(vxw79, LT) -> LT new_ltEs16(Left(vxw110), Left(vxw100), app(app(ty_Either, bgh), bha), bfh) -> new_ltEs16(vxw110, vxw100, bgh, bha) new_esEs29(vxw30, vxw400, ty_Ordering) -> new_esEs16(vxw30, vxw400) new_esEs16(EQ, GT) -> False new_esEs16(GT, EQ) -> False new_not(True) -> False new_esEs6(Left(vxw300), Left(vxw4000), app(ty_Maybe, ddd), cce) -> new_esEs7(vxw300, vxw4000, ddd) new_compare30(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs24(vxw110, vxw100, ty_Ordering) -> new_esEs16(vxw110, vxw100) new_esEs6(Left(vxw300), Left(vxw4000), ty_Ordering, cce) -> new_esEs16(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), ty_Bool, bfh) -> new_ltEs5(vxw110, vxw100) new_primCmpNat0(Zero, Zero) -> EQ new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Float) -> new_ltEs17(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(ty_Either, cab), cac)) -> new_ltEs16(vxw110, vxw100, cab, cac) new_esEs25(vxw111, vxw101, ty_Integer) -> new_esEs13(vxw111, vxw101) new_esEs19(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_ltEs6(LT, GT) -> True new_esEs20(vxw300, vxw4000, app(ty_[], ge)) -> new_esEs11(vxw300, vxw4000, ge) new_esEs23(vxw110, vxw100, ty_Bool) -> new_esEs12(vxw110, vxw100) new_ltEs20(vxw11, vxw10, ty_Int) -> new_ltEs12(vxw11, vxw10) new_esEs30(vxw30, vxw400, app(ty_Ratio, eh)) -> new_esEs15(vxw30, vxw400, eh) new_esEs30(vxw30, vxw400, ty_Double) -> new_esEs17(vxw30, vxw400) new_compare25(vxw110, vxw100, False, bbh, bca, bcb) -> new_compare10(vxw110, vxw100, new_ltEs4(vxw110, vxw100, bbh, bca, bcb), bbh, bca, bcb) new_esEs30(vxw30, vxw400, ty_Ordering) -> new_esEs16(vxw30, vxw400) new_ltEs16(Left(vxw110), Right(vxw100), bfg, bfh) -> True new_lt19(vxw110, vxw100, ty_Integer) -> new_lt14(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_@0) -> new_ltEs15(vxw110, vxw100) new_primEqNat0(Succ(vxw3000), Zero) -> False new_primEqNat0(Zero, Succ(vxw40000)) -> False new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Float) -> new_esEs10(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), ty_Char, cce) -> new_esEs14(vxw300, vxw4000) new_lt20(vxw111, vxw101, ty_Integer) -> new_lt14(vxw111, vxw101) new_esEs16(LT, EQ) -> False new_esEs16(EQ, LT) -> False new_lt19(vxw110, vxw100, ty_Bool) -> new_lt15(vxw110, vxw100) new_compare31(vxw110, vxw100, ty_Integer) -> new_compare28(vxw110, vxw100) new_esEs29(vxw30, vxw400, ty_Double) -> new_esEs17(vxw30, vxw400) new_lt20(vxw111, vxw101, ty_Int) -> new_lt12(vxw111, vxw101) new_compare15(vxw110, vxw100, True, bbf, bbg) -> LT new_lt12(vxw110, vxw100) -> new_esEs16(new_compare19(vxw110, vxw100), LT) new_esEs24(vxw110, vxw100, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs4(vxw110, vxw100, bbh, bca, bcb) new_esEs23(vxw110, vxw100, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs4(vxw110, vxw100, bcg, bch, bda) new_esEs30(vxw30, vxw400, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs4(vxw30, vxw400, dh, ea, eb) new_ltEs18(Just(vxw110), Just(vxw100), app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs4(vxw110, vxw100, caf, cag, cah) new_lt20(vxw111, vxw101, ty_Char) -> new_lt9(vxw111, vxw101) new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT new_ltEs10(vxw111, vxw101, ty_Int) -> new_ltEs12(vxw111, vxw101) new_esEs28(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, app(ty_Ratio, gh)) -> new_esEs15(vxw300, vxw4000, gh) new_ltEs5(False, True) -> True new_compare110(vxw110, vxw100, True, fb, fc) -> LT new_esEs23(vxw110, vxw100, ty_Double) -> new_esEs17(vxw110, vxw100) new_lt13(vxw110, vxw100, ccf) -> new_esEs16(new_compare16(vxw110, vxw100, ccf), LT) new_lt8(vxw110, vxw100, app(ty_Maybe, bdg)) -> new_lt6(vxw110, vxw100, bdg) new_esEs7(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs9(vxw300, vxw4000) new_compare28(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) new_ltEs7(vxw11, vxw10) -> new_not(new_esEs16(new_compare6(vxw11, vxw10), GT)) new_primCmpNat0(Zero, Succ(vxw1000)) -> LT new_ltEs21(vxw20, vxw19, ty_Int) -> new_ltEs12(vxw20, vxw19) new_lt8(vxw110, vxw100, ty_Double) -> new_lt4(vxw110, vxw100) new_esEs21(vxw301, vxw4001, app(app(ty_@2, he), hf)) -> new_esEs5(vxw301, vxw4001, he, hf) new_esEs29(vxw30, vxw400, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs4(vxw30, vxw400, fd, ff, fg) new_ltEs17(vxw11, vxw10) -> new_not(new_esEs16(new_compare30(vxw11, vxw10), GT)) new_esEs25(vxw111, vxw101, ty_Ordering) -> new_esEs16(vxw111, vxw101) new_primCompAux1(vxw110, vxw100, vxw68, bcd) -> new_primCompAux0(vxw68, new_compare31(vxw110, vxw100, bcd)) new_ltEs21(vxw20, vxw19, ty_Integer) -> new_ltEs14(vxw20, vxw19) new_ltEs21(vxw20, vxw19, ty_Double) -> new_ltEs7(vxw20, vxw19) new_primCmpNat0(Succ(vxw1100), Zero) -> GT new_pePe(False, vxw67) -> vxw67 new_esEs7(Nothing, Just(vxw4000), cc) -> False new_esEs7(Just(vxw300), Nothing, cc) -> False new_compare7(vxw110, vxw100, fb, fc) -> new_compare24(vxw110, vxw100, new_esEs6(vxw110, vxw100, fb, fc), fb, fc) new_lt20(vxw111, vxw101, ty_Float) -> new_lt17(vxw111, vxw101) new_lt19(vxw110, vxw100, ty_Int) -> new_lt12(vxw110, vxw100) new_esEs12(False, False) -> True new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs12(vxw301, vxw4001) new_compare210(vxw110, vxw100, True, bcc) -> EQ new_esEs28(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs4(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), bfd, bfe, bff) -> new_pePe(new_lt19(vxw110, vxw100, bfd), new_asAs(new_esEs24(vxw110, vxw100, bfd), new_pePe(new_lt20(vxw111, vxw101, bfe), new_asAs(new_esEs25(vxw111, vxw101, bfe), new_ltEs19(vxw112, vxw102, bff))))) new_esEs22(vxw302, vxw4002, app(app(ty_Either, bbb), bbc)) -> new_esEs6(vxw302, vxw4002, bbb, bbc) new_esEs11(:(vxw300, vxw301), [], ccc) -> False new_esEs11([], :(vxw4000, vxw4001), ccc) -> False new_esEs24(vxw110, vxw100, ty_@0) -> new_esEs9(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Ordering) -> new_ltEs6(vxw110, vxw100) new_lt4(vxw110, vxw100) -> new_esEs16(new_compare6(vxw110, vxw100), LT) new_esEs26(vxw300, vxw4000, app(app(ty_@2, cgh), cha)) -> new_esEs5(vxw300, vxw4000, cgh, cha) new_esEs29(vxw30, vxw400, ty_Integer) -> new_esEs13(vxw30, vxw400) new_esEs26(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_ltEs6(LT, LT) -> True new_esEs29(vxw30, vxw400, ty_Char) -> new_esEs14(vxw30, vxw400) new_compare23(vxw110, vxw100, True, bbf, bbg) -> EQ new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False new_ltEs18(Just(vxw110), Just(vxw100), app(ty_Ratio, cbc)) -> new_ltEs13(vxw110, vxw100, cbc) new_esEs7(Nothing, Nothing, cc) -> True new_lt19(vxw110, vxw100, ty_Char) -> new_lt9(vxw110, vxw100) new_esEs23(vxw110, vxw100, app(ty_[], bdh)) -> new_esEs11(vxw110, vxw100, bdh) new_esEs6(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, dcc), dcd), dce), cce) -> new_esEs4(vxw300, vxw4000, dcc, dcd, dce) new_ltEs18(Just(vxw110), Just(vxw100), app(app(ty_@2, cba), cbb)) -> new_ltEs9(vxw110, vxw100, cba, cbb) new_ltEs20(vxw11, vxw10, app(app(ty_Either, bfg), bfh)) -> new_ltEs16(vxw11, vxw10, bfg, bfh) new_ltEs18(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs15(vxw110, vxw100) new_ltEs18(Just(vxw110), Just(vxw100), app(app(ty_Either, cbd), cbe)) -> new_ltEs16(vxw110, vxw100, cbd, cbe) new_esEs25(vxw111, vxw101, ty_Char) -> new_esEs14(vxw111, vxw101) new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(ty_@2, ddh), dea)) -> new_esEs5(vxw300, vxw4000, ddh, dea) new_ltEs16(Left(vxw110), Left(vxw100), app(app(ty_@2, bge), bgf), bfh) -> new_ltEs9(vxw110, vxw100, bge, bgf) new_compare25(vxw110, vxw100, True, bbh, bca, bcb) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT new_esEs26(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs21(vxw20, vxw19, app(ty_Maybe, cdg)) -> new_ltEs18(vxw20, vxw19, cdg) new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) new_esEs25(vxw111, vxw101, app(ty_Maybe, cfa)) -> new_esEs7(vxw111, vxw101, cfa) new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_esEs24(vxw110, vxw100, app(app(ty_Either, fb), fc)) -> new_esEs6(vxw110, vxw100, fb, fc) new_esEs26(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), app(app(ty_Either, dda), ddb), cce) -> new_esEs6(vxw300, vxw4000, dda, ddb) new_ltEs16(Left(vxw110), Left(vxw100), ty_Int, bfh) -> new_ltEs12(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_lt19(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_primMulNat0(Succ(vxw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw400000)) -> Zero new_ltEs18(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs12(vxw110, vxw100) new_esEs25(vxw111, vxw101, app(ty_[], cfb)) -> new_esEs11(vxw111, vxw101, cfb) new_ltEs6(LT, EQ) -> True new_esEs22(vxw302, vxw4002, app(ty_Maybe, bbe)) -> new_esEs7(vxw302, vxw4002, bbe) new_primPlusNat1(Succ(vxw690), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw690, vxw400000))) new_ltEs5(True, False) -> False new_esEs23(vxw110, vxw100, app(ty_Maybe, bdg)) -> new_esEs7(vxw110, vxw100, bdg) new_lt20(vxw111, vxw101, app(app(app(ty_@3, cea), ceb), cec)) -> new_lt11(vxw111, vxw101, cea, ceb, cec) new_primPlusNat0(Succ(vxw6900), Zero) -> Succ(vxw6900) new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_Either, dc), dd)) -> new_esEs6(vxw300, vxw4000, dc, dd) new_ltEs19(vxw112, vxw102, ty_Double) -> new_ltEs7(vxw112, vxw102) new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs4(vxw301, vxw4001, hb, hc, hd) new_compare4(:(vxw110, vxw111), :(vxw100, vxw101), bcd) -> new_primCompAux1(vxw110, vxw100, new_compare4(vxw111, vxw101, bcd), bcd) new_ltEs19(vxw112, vxw102, ty_Integer) -> new_ltEs14(vxw112, vxw102) new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) new_lt8(vxw110, vxw100, ty_Bool) -> new_lt15(vxw110, vxw100) new_esEs16(LT, GT) -> False new_esEs16(GT, LT) -> False new_esEs22(vxw302, vxw4002, app(ty_Ratio, bbd)) -> new_esEs15(vxw302, vxw4002, bbd) new_compare11(vxw110, vxw100) -> new_compare26(vxw110, vxw100, new_esEs12(vxw110, vxw100)) new_esEs19(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_esEs20(vxw300, vxw4000, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs4(vxw300, vxw4000, fh, ga, gb) new_esEs24(vxw110, vxw100, ty_Bool) -> new_esEs12(vxw110, vxw100) new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_[], deb)) -> new_esEs11(vxw300, vxw4000, deb) new_esEs23(vxw110, vxw100, app(app(ty_@2, bdb), bdc)) -> new_esEs5(vxw110, vxw100, bdb, bdc) new_esEs23(vxw110, vxw100, app(ty_Ratio, bdd)) -> new_esEs15(vxw110, vxw100, bdd) new_esEs6(Left(vxw300), Left(vxw4000), app(app(ty_@2, dcf), dcg), cce) -> new_esEs5(vxw300, vxw4000, dcf, dcg) new_lt6(vxw110, vxw100, bcc) -> new_esEs16(new_compare9(vxw110, vxw100, bcc), LT) new_lt17(vxw110, vxw100) -> new_esEs16(new_compare30(vxw110, vxw100), LT) new_esEs24(vxw110, vxw100, app(ty_Maybe, bcc)) -> new_esEs7(vxw110, vxw100, bcc) new_ltEs8(vxw11, vxw10, bcd) -> new_not(new_esEs16(new_compare4(vxw11, vxw10, bcd), GT)) new_ltEs10(vxw111, vxw101, app(app(ty_Either, beg), beh)) -> new_ltEs16(vxw111, vxw101, beg, beh) new_lt5(vxw110, vxw100, fb, fc) -> new_esEs16(new_compare7(vxw110, vxw100, fb, fc), LT) new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs25(vxw111, vxw101, ty_Bool) -> new_esEs12(vxw111, vxw101) new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs9(vxw301, vxw4001) new_lt8(vxw110, vxw100, ty_Integer) -> new_lt14(vxw110, vxw100) new_ltEs10(vxw111, vxw101, app(ty_Maybe, bfa)) -> new_ltEs18(vxw111, vxw101, bfa) new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fd, ff, fg) -> new_asAs(new_esEs20(vxw300, vxw4000, fd), new_asAs(new_esEs21(vxw301, vxw4001, ff), new_esEs22(vxw302, vxw4002, fg))) new_esEs20(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_lt7(vxw110, vxw100, bbf, bbg) -> new_esEs16(new_compare8(vxw110, vxw100, bbf, bbg), LT) new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_ltEs21(vxw20, vxw19, app(app(ty_Either, cde), cdf)) -> new_ltEs16(vxw20, vxw19, cde, cdf) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_@2, cg), da)) -> new_esEs5(vxw300, vxw4000, cg, da) new_ltEs21(vxw20, vxw19, ty_@0) -> new_ltEs15(vxw20, vxw19) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs24(vxw110, vxw100, app(app(ty_@2, bbf), bbg)) -> new_esEs5(vxw110, vxw100, bbf, bbg) new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs14(vxw301, vxw4001) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_[], db)) -> new_esEs11(vxw300, vxw4000, db) new_compare4([], :(vxw100, vxw101), bcd) -> LT new_esEs6(Left(vxw300), Left(vxw4000), ty_Bool, cce) -> new_esEs12(vxw300, vxw4000) new_compare31(vxw110, vxw100, ty_Ordering) -> new_compare14(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_[], bhc), bfh) -> new_ltEs8(vxw110, vxw100, bhc) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs23(vxw110, vxw100, app(app(ty_Either, bde), bdf)) -> new_esEs6(vxw110, vxw100, bde, bdf) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_Maybe, cad)) -> new_ltEs18(vxw110, vxw100, cad) new_ltEs21(vxw20, vxw19, app(app(ty_@2, cdb), cdc)) -> new_ltEs9(vxw20, vxw19, cdb, cdc) new_esEs20(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs21(vxw301, vxw4001, app(app(ty_Either, hh), baa)) -> new_esEs6(vxw301, vxw4001, hh, baa) new_lt8(vxw110, vxw100, app(ty_[], bdh)) -> new_lt18(vxw110, vxw100, bdh) new_esEs29(vxw30, vxw400, ty_Float) -> new_esEs10(vxw30, vxw400) new_esEs28(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_ltEs10(vxw111, vxw101, ty_@0) -> new_ltEs15(vxw111, vxw101) new_ltEs10(vxw111, vxw101, app(app(ty_@2, bed), bee)) -> new_ltEs9(vxw111, vxw101, bed, bee) new_ltEs16(Left(vxw110), Left(vxw100), ty_Double, bfh) -> new_ltEs7(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(app(ty_@2, dab), dac)) -> new_esEs5(vxw301, vxw4001, dab, dac) new_esEs30(vxw30, vxw400, ty_Int) -> new_esEs8(vxw30, vxw400) new_esEs26(vxw300, vxw4000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs4(vxw300, vxw4000, cge, cgf, cgg) new_lt8(vxw110, vxw100, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt11(vxw110, vxw100, bcg, bch, bda) new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) new_ltEs16(Left(vxw110), Left(vxw100), ty_Integer, bfh) -> new_ltEs14(vxw110, vxw100) new_esEs20(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_ltEs18(Nothing, Nothing, bga) -> True new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(ty_Either, dec), ded)) -> new_esEs6(vxw300, vxw4000, dec, ded) new_esEs26(vxw300, vxw4000, app(ty_Ratio, che)) -> new_esEs15(vxw300, vxw4000, che) new_compare18(vxw110, vxw100, bbh, bca, bcb) -> new_compare25(vxw110, vxw100, new_esEs4(vxw110, vxw100, bbh, bca, bcb), bbh, bca, bcb) new_ltEs6(GT, EQ) -> False new_compare10(vxw110, vxw100, False, bbh, bca, bcb) -> GT new_ltEs10(vxw111, vxw101, ty_Float) -> new_ltEs17(vxw111, vxw101) new_sr0(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) new_ltEs20(vxw11, vxw10, ty_Integer) -> new_ltEs14(vxw11, vxw10) new_ltEs5(False, False) -> True new_esEs16(GT, GT) -> True new_ltEs21(vxw20, vxw19, app(ty_Ratio, cdd)) -> new_ltEs13(vxw20, vxw19, cdd) new_lt19(vxw110, vxw100, app(app(app(ty_@3, bbh), bca), bcb)) -> new_lt11(vxw110, vxw100, bbh, bca, bcb) new_ltEs18(Just(vxw110), Just(vxw100), app(ty_Maybe, cbf)) -> new_ltEs18(vxw110, vxw100, cbf) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(ty_@2, bhg), bhh)) -> new_ltEs9(vxw110, vxw100, bhg, bhh) new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs16(vxw301, vxw4001) new_compare26(vxw110, vxw100, False) -> new_compare12(vxw110, vxw100, new_ltEs5(vxw110, vxw100)) new_esEs28(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_asAs(True, vxw59) -> vxw59 new_compare30(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare30(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs29(vxw30, vxw400, ty_Int) -> new_esEs8(vxw30, vxw400) new_compare31(vxw110, vxw100, ty_Double) -> new_compare6(vxw110, vxw100) new_lt20(vxw111, vxw101, app(app(ty_@2, ced), cee)) -> new_lt7(vxw111, vxw101, ced, cee) new_ltEs20(vxw11, vxw10, app(app(ty_@2, bce), bcf)) -> new_ltEs9(vxw11, vxw10, bce, bcf) new_ltEs20(vxw11, vxw10, ty_@0) -> new_ltEs15(vxw11, vxw10) new_ltEs16(Right(vxw110), Left(vxw100), bfg, bfh) -> False new_esEs23(vxw110, vxw100, ty_Integer) -> new_esEs13(vxw110, vxw100) new_esEs6(Left(vxw300), Right(vxw4000), ccd, cce) -> False new_esEs6(Right(vxw300), Left(vxw4000), ccd, cce) -> False new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs12(vxw301, vxw4001) new_esEs22(vxw302, vxw4002, app(ty_[], bba)) -> new_esEs11(vxw302, vxw4002, bba) new_ltEs18(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs7(vxw110, vxw100) new_esEs30(vxw30, vxw400, ty_Float) -> new_esEs10(vxw30, vxw400) new_esEs21(vxw301, vxw4001, app(ty_Ratio, bab)) -> new_esEs15(vxw301, vxw4001, bab) new_lt19(vxw110, vxw100, app(app(ty_@2, bbf), bbg)) -> new_lt7(vxw110, vxw100, bbf, bbg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_ltEs18(Just(vxw110), Nothing, bga) -> False new_esEs22(vxw302, vxw4002, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(vxw302, vxw4002, bad, bae, baf) new_ltEs20(vxw11, vxw10, ty_Double) -> new_ltEs7(vxw11, vxw10) new_compare24(vxw110, vxw100, True, fb, fc) -> EQ new_ltEs19(vxw112, vxw102, app(app(ty_@2, cff), cfg)) -> new_ltEs9(vxw112, vxw102, cff, cfg) new_ltEs19(vxw112, vxw102, ty_@0) -> new_ltEs15(vxw112, vxw102) new_ltEs19(vxw112, vxw102, ty_Ordering) -> new_ltEs6(vxw112, vxw102) new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) new_esEs6(Left(vxw300), Left(vxw4000), ty_@0, cce) -> new_esEs9(vxw300, vxw4000) new_esEs24(vxw110, vxw100, ty_Int) -> new_esEs8(vxw110, vxw100) new_esEs25(vxw111, vxw101, ty_@0) -> new_esEs9(vxw111, vxw101) new_esEs9(@0, @0) -> True new_esEs18(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) new_lt16(vxw110, vxw100) -> new_esEs16(new_compare29(vxw110, vxw100), LT) new_esEs22(vxw302, vxw4002, ty_Double) -> new_esEs17(vxw302, vxw4002) new_esEs6(Left(vxw300), Left(vxw4000), ty_Float, cce) -> new_esEs10(vxw300, vxw4000) new_primMulNat0(Zero, Zero) -> Zero new_compare4(:(vxw110, vxw111), [], bcd) -> GT new_esEs7(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs30(vxw30, vxw400, ty_Char) -> new_esEs14(vxw30, vxw400) new_esEs12(True, True) -> True new_esEs23(vxw110, vxw100, ty_Char) -> new_esEs14(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), ty_@0, bfh) -> new_ltEs15(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Char) -> new_ltEs11(vxw110, vxw100) new_ltEs19(vxw112, vxw102, app(ty_[], cgd)) -> new_ltEs8(vxw112, vxw102, cgd) new_esEs22(vxw302, vxw4002, app(app(ty_@2, bag), bah)) -> new_esEs5(vxw302, vxw4002, bag, bah) new_esEs26(vxw300, vxw4000, app(app(ty_Either, chc), chd)) -> new_esEs6(vxw300, vxw4000, chc, chd) new_ltEs10(vxw111, vxw101, app(ty_Ratio, bef)) -> new_ltEs13(vxw111, vxw101, bef) new_ltEs10(vxw111, vxw101, ty_Integer) -> new_ltEs14(vxw111, vxw101) new_esEs24(vxw110, vxw100, ty_Float) -> new_esEs10(vxw110, vxw100) new_ltEs6(EQ, LT) -> False new_ltEs19(vxw112, vxw102, app(ty_Ratio, cfh)) -> new_ltEs13(vxw112, vxw102, cfh) new_ltEs18(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs14(vxw110, vxw100) new_lt15(vxw110, vxw100) -> new_esEs16(new_compare11(vxw110, vxw100), LT) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs11(vxw11, vxw10) -> new_not(new_esEs16(new_compare17(vxw11, vxw10), GT)) new_ltEs20(vxw11, vxw10, app(ty_Maybe, bga)) -> new_ltEs18(vxw11, vxw10, bga) new_lt20(vxw111, vxw101, app(ty_Ratio, cef)) -> new_lt13(vxw111, vxw101, cef) new_compare31(vxw110, vxw100, ty_Float) -> new_compare30(vxw110, vxw100) new_compare6(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs25(vxw111, vxw101, app(app(ty_Either, ceg), ceh)) -> new_esEs6(vxw111, vxw101, ceg, ceh) new_primCompAux0(vxw79, EQ) -> vxw79 new_ltEs20(vxw11, vxw10, app(ty_[], bcd)) -> new_ltEs8(vxw11, vxw10, bcd) new_lt10(vxw110, vxw100) -> new_esEs16(new_compare14(vxw110, vxw100), LT) new_esEs27(vxw301, vxw4001, app(ty_[], dad)) -> new_esEs11(vxw301, vxw4001, dad) new_esEs11(:(vxw300, vxw301), :(vxw4000, vxw4001), ccc) -> new_asAs(new_esEs28(vxw300, vxw4000, ccc), new_esEs11(vxw301, vxw4001, ccc)) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Bool) -> new_ltEs5(vxw110, vxw100) new_lt19(vxw110, vxw100, app(ty_Ratio, ccf)) -> new_lt13(vxw110, vxw100, ccf) new_esEs30(vxw30, vxw400, ty_@0) -> new_esEs9(vxw30, vxw400) new_lt8(vxw110, vxw100, app(app(ty_Either, bde), bdf)) -> new_lt5(vxw110, vxw100, bde, bdf) new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False new_esEs26(vxw300, vxw4000, app(ty_[], chb)) -> new_esEs11(vxw300, vxw4000, chb) new_ltEs20(vxw11, vxw10, app(ty_Ratio, bfc)) -> new_ltEs13(vxw11, vxw10, bfc) new_compare31(vxw110, vxw100, ty_Bool) -> new_compare11(vxw110, vxw100) new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_ltEs19(vxw112, vxw102, app(ty_Maybe, cgc)) -> new_ltEs18(vxw112, vxw102, cgc) new_esEs21(vxw301, vxw4001, app(ty_Maybe, bac)) -> new_esEs7(vxw301, vxw4001, bac) new_ltEs16(Left(vxw110), Left(vxw100), ty_Float, bfh) -> new_ltEs17(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs14(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, app(app(ty_Either, gf), gg)) -> new_esEs6(vxw300, vxw4000, gf, gg) new_compare19(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) new_esEs24(vxw110, vxw100, ty_Char) -> new_esEs14(vxw110, vxw100) new_ltEs18(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs17(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False new_esEs25(vxw111, vxw101, app(ty_Ratio, cef)) -> new_esEs15(vxw111, vxw101, cef) new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) new_compare27(vxw110, vxw100, False) -> new_compare13(vxw110, vxw100, new_ltEs6(vxw110, vxw100)) new_esEs18(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs16(EQ, EQ) -> True new_compare4([], [], bcd) -> EQ new_ltEs10(vxw111, vxw101, ty_Double) -> new_ltEs7(vxw111, vxw101) new_esEs29(vxw30, vxw400, ty_@0) -> new_esEs9(vxw30, vxw400) new_esEs25(vxw111, vxw101, ty_Float) -> new_esEs10(vxw111, vxw101) new_esEs24(vxw110, vxw100, ty_Integer) -> new_esEs13(vxw110, vxw100) new_esEs22(vxw302, vxw4002, ty_Bool) -> new_esEs12(vxw302, vxw4002) new_esEs26(vxw300, vxw4000, app(ty_Maybe, chf)) -> new_esEs7(vxw300, vxw4000, chf) new_esEs30(vxw30, vxw400, ty_Integer) -> new_esEs13(vxw30, vxw400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(vxw301, vxw4001, app(ty_[], hg)) -> new_esEs11(vxw301, vxw4001, hg) new_lt8(vxw110, vxw100, ty_@0) -> new_lt16(vxw110, vxw100) new_compare111(vxw110, vxw100, False, bcc) -> GT new_ltEs19(vxw112, vxw102, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs4(vxw112, vxw102, cfc, cfd, cfe) new_ltEs19(vxw112, vxw102, ty_Bool) -> new_ltEs5(vxw112, vxw102) new_esEs8(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) new_lt19(vxw110, vxw100, ty_Double) -> new_lt4(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(ty_Maybe, dah)) -> new_esEs7(vxw301, vxw4001, dah) new_esEs23(vxw110, vxw100, ty_Int) -> new_esEs8(vxw110, vxw100) new_ltEs10(vxw111, vxw101, ty_Bool) -> new_ltEs5(vxw111, vxw101) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_Maybe, bhb), bfh) -> new_ltEs18(vxw110, vxw100, bhb) new_ltEs18(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs6(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs4(vxw301, vxw4001, chg, chh, daa) new_esEs22(vxw302, vxw4002, ty_Integer) -> new_esEs13(vxw302, vxw4002) new_not(False) -> True new_esEs6(Left(vxw300), Left(vxw4000), ty_Int, cce) -> new_esEs8(vxw300, vxw4000) new_compare31(vxw110, vxw100, ty_Char) -> new_compare17(vxw110, vxw100) new_esEs20(vxw300, vxw4000, app(ty_Maybe, ha)) -> new_esEs7(vxw300, vxw4000, ha) new_lt8(vxw110, vxw100, ty_Int) -> new_lt12(vxw110, vxw100) new_esEs16(LT, LT) -> True new_lt19(vxw110, vxw100, app(app(ty_Either, fb), fc)) -> new_lt5(vxw110, vxw100, fb, fc) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_primPlusNat0(Succ(vxw6900), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw6900, vxw4000000))) new_esEs29(vxw30, vxw400, app(app(ty_Either, ccd), cce)) -> new_esEs6(vxw30, vxw400, ccd, cce) new_esEs27(vxw301, vxw4001, app(ty_Ratio, dag)) -> new_esEs15(vxw301, vxw4001, dag) new_esEs25(vxw111, vxw101, ty_Double) -> new_esEs17(vxw111, vxw101) new_esEs20(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_lt11(vxw110, vxw100, bbh, bca, bcb) -> new_esEs16(new_compare18(vxw110, vxw100, bbh, bca, bcb), LT) new_lt19(vxw110, vxw100, app(ty_Maybe, bcc)) -> new_lt6(vxw110, vxw100, bcc) new_esEs29(vxw30, vxw400, app(ty_Ratio, dg)) -> new_esEs15(vxw30, vxw400, dg) new_lt19(vxw110, vxw100, ty_@0) -> new_lt16(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_compare13(vxw110, vxw100, True) -> LT new_esEs7(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), ty_Ordering, bfh) -> new_ltEs6(vxw110, vxw100) new_esEs29(vxw30, vxw400, ty_Bool) -> new_esEs12(vxw30, vxw400) new_lt9(vxw110, vxw100) -> new_esEs16(new_compare17(vxw110, vxw100), LT) new_esEs30(vxw30, vxw400, app(app(ty_Either, ef), eg)) -> new_esEs6(vxw30, vxw400, ef, eg) new_esEs22(vxw302, vxw4002, ty_@0) -> new_esEs9(vxw302, vxw4002) new_esEs20(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_ltEs21(vxw20, vxw19, app(ty_[], cdh)) -> new_ltEs8(vxw20, vxw19, cdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(vxw111, vxw101, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs4(vxw111, vxw101, cea, ceb, cec) new_esEs20(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_ltEs5(True, True) -> True new_esEs28(vxw300, vxw4000, app(app(ty_@2, dbd), dbe)) -> new_esEs5(vxw300, vxw4000, dbd, dbe) new_compare111(vxw110, vxw100, True, bcc) -> LT new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs16(vxw301, vxw4001) new_ltEs10(vxw111, vxw101, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs4(vxw111, vxw101, bea, beb, bec) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Char) -> new_esEs14(vxw300, vxw4000) new_lt8(vxw110, vxw100, app(ty_Ratio, bdd)) -> new_lt13(vxw110, vxw100, bdd) new_esEs27(vxw301, vxw4001, app(app(ty_Either, dae), daf)) -> new_esEs6(vxw301, vxw4001, dae, daf) new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) new_compare31(vxw110, vxw100, app(app(app(ty_@3, deg), deh), dfa)) -> new_compare18(vxw110, vxw100, deg, deh, dfa) new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs10(vxw301, vxw4001) new_ltEs21(vxw20, vxw19, ty_Float) -> new_ltEs17(vxw20, vxw19) new_esEs17(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs8(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_esEs29(vxw30, vxw400, app(ty_[], ccc)) -> new_esEs11(vxw30, vxw400, ccc) new_esEs30(vxw30, vxw400, app(ty_Maybe, fa)) -> new_esEs7(vxw30, vxw400, fa) new_esEs20(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_esEs13(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) new_lt8(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_esEs30(vxw30, vxw400, ty_Bool) -> new_esEs12(vxw30, vxw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs30(vxw30, vxw400, app(app(ty_@2, ec), ed)) -> new_esEs5(vxw30, vxw400, ec, ed) new_compare9(vxw110, vxw100, bcc) -> new_compare210(vxw110, vxw100, new_esEs7(vxw110, vxw100, bcc), bcc) new_ltEs10(vxw111, vxw101, app(ty_[], bfb)) -> new_ltEs8(vxw111, vxw101, bfb) new_compare8(vxw110, vxw100, bbf, bbg) -> new_compare23(vxw110, vxw100, new_esEs5(vxw110, vxw100, bbf, bbg), bbf, bbg) new_ltEs21(vxw20, vxw19, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs4(vxw20, vxw19, ccg, cch, cda) new_lt20(vxw111, vxw101, app(ty_[], cfb)) -> new_lt18(vxw111, vxw101, cfb) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_lt18(vxw110, vxw100, cbh) -> new_esEs16(new_compare4(vxw110, vxw100, cbh), LT) new_ltEs13(vxw11, vxw10, bfc) -> new_not(new_esEs16(new_compare16(vxw11, vxw10, bfc), GT)) new_ltEs18(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs11(vxw110, vxw100) new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) new_compare30(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare6(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare14(vxw110, vxw100) -> new_compare27(vxw110, vxw100, new_esEs16(vxw110, vxw100)) new_lt20(vxw111, vxw101, ty_@0) -> new_lt16(vxw111, vxw101) new_esEs23(vxw110, vxw100, ty_Ordering) -> new_esEs16(vxw110, vxw100) new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_ltEs10(vxw111, vxw101, ty_Ordering) -> new_ltEs6(vxw111, vxw101) new_ltEs20(vxw11, vxw10, ty_Ordering) -> new_ltEs6(vxw11, vxw10) new_compare12(vxw110, vxw100, True) -> LT new_compare31(vxw110, vxw100, app(ty_Maybe, dfg)) -> new_compare9(vxw110, vxw100, dfg) new_esEs22(vxw302, vxw4002, ty_Char) -> new_esEs14(vxw302, vxw4002) new_compare15(vxw110, vxw100, False, bbf, bbg) -> GT new_esEs15(:%(vxw300, vxw301), :%(vxw4000, vxw4001), dg) -> new_asAs(new_esEs18(vxw300, vxw4000, dg), new_esEs19(vxw301, vxw4001, dg)) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs4(vxw110, vxw100, bhd, bhe, bhf) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vxw20, vxw19, ty_Bool) -> new_ltEs5(vxw20, vxw19) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_[], cae)) -> new_ltEs8(vxw110, vxw100, cae) new_lt20(vxw111, vxw101, ty_Double) -> new_lt4(vxw111, vxw101) new_lt20(vxw111, vxw101, app(ty_Maybe, cfa)) -> new_lt6(vxw111, vxw101, cfa) new_esEs6(Left(vxw300), Left(vxw4000), ty_Double, cce) -> new_esEs17(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_Ratio, bgg), bfh) -> new_ltEs13(vxw110, vxw100, bgg) new_ltEs15(vxw11, vxw10) -> new_not(new_esEs16(new_compare29(vxw11, vxw10), GT)) new_esEs23(vxw110, vxw100, ty_Float) -> new_esEs10(vxw110, vxw100) new_compare110(vxw110, vxw100, False, fb, fc) -> GT new_esEs28(vxw300, vxw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs6(vxw300, vxw4000, dbg, dbh) new_compare17(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) new_primEqNat0(Zero, Zero) -> True new_esEs25(vxw111, vxw101, ty_Int) -> new_esEs8(vxw111, vxw101) new_compare13(vxw110, vxw100, False) -> GT new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs14(vxw301, vxw4001) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Int) -> new_ltEs12(vxw110, vxw100) new_ltEs21(vxw20, vxw19, ty_Ordering) -> new_ltEs6(vxw20, vxw19) new_esEs11([], [], ccc) -> True new_esEs29(vxw30, vxw400, app(app(ty_@2, cca), ccb)) -> new_esEs5(vxw30, vxw400, cca, ccb) new_esEs10(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs8(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_compare16(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare19(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) new_ltEs21(vxw20, vxw19, ty_Char) -> new_ltEs11(vxw20, vxw19) new_lt20(vxw111, vxw101, app(app(ty_Either, ceg), ceh)) -> new_lt5(vxw111, vxw101, ceg, ceh) new_lt8(vxw110, vxw100, ty_Char) -> new_lt9(vxw110, vxw100) new_esEs30(vxw30, vxw400, app(ty_[], ee)) -> new_esEs11(vxw30, vxw400, ee) new_esEs22(vxw302, vxw4002, ty_Ordering) -> new_esEs16(vxw302, vxw4002) new_asAs(False, vxw59) -> False new_compare31(vxw110, vxw100, app(app(ty_@2, dfb), dfc)) -> new_compare8(vxw110, vxw100, dfb, dfc) new_ltEs20(vxw11, vxw10, ty_Bool) -> new_ltEs5(vxw11, vxw10) new_ltEs9(@2(vxw110, vxw111), @2(vxw100, vxw101), bce, bcf) -> new_pePe(new_lt8(vxw110, vxw100, bce), new_asAs(new_esEs23(vxw110, vxw100, bce), new_ltEs10(vxw111, vxw101, bcf))) new_lt8(vxw110, vxw100, app(app(ty_@2, bdb), bdc)) -> new_lt7(vxw110, vxw100, bdb, bdc) new_esEs22(vxw302, vxw4002, ty_Float) -> new_esEs10(vxw302, vxw4002) new_ltEs20(vxw11, vxw10, ty_Float) -> new_ltEs17(vxw11, vxw10) new_esEs28(vxw300, vxw4000, app(ty_Ratio, dca)) -> new_esEs15(vxw300, vxw4000, dca) new_lt19(vxw110, vxw100, app(ty_[], cbh)) -> new_lt18(vxw110, vxw100, cbh) new_esEs29(vxw30, vxw400, app(ty_Maybe, cc)) -> new_esEs7(vxw30, vxw400, cc) new_ltEs20(vxw11, vxw10, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs4(vxw11, vxw10, bfd, bfe, bff) new_compare27(vxw110, vxw100, True) -> EQ new_compare210(vxw110, vxw100, False, bcc) -> new_compare111(vxw110, vxw100, new_ltEs18(vxw110, vxw100, bcc), bcc) new_ltEs6(GT, LT) -> False new_ltEs18(Just(vxw110), Just(vxw100), app(ty_[], cbg)) -> new_ltEs8(vxw110, vxw100, cbg) new_ltEs19(vxw112, vxw102, ty_Float) -> new_ltEs17(vxw112, vxw102) new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs9(vxw301, vxw4001) new_ltEs10(vxw111, vxw101, ty_Char) -> new_ltEs11(vxw111, vxw101) The set Q consists of the following terms: new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare111(x0, x1, False, x2) new_compare110(x0, x1, True, x2, x3) new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, True) new_compare31(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(Just(x0), Just(x1), ty_Char) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, ty_Float) new_compare31(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs13(x0, x1, x2) new_ltEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), ty_Int) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(LT, LT) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare210(x0, x1, True, x2) new_esEs29(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(@0, @0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_esEs30(x0, x1, ty_Int) new_ltEs18(Nothing, Nothing, x0) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(Just(x0), Just(x1), ty_Ordering) new_compare12(x0, x1, True) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs5(False, True) new_ltEs5(True, False) new_compare10(x0, x1, True, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(EQ, EQ) new_esEs29(x0, x1, ty_Float) new_compare31(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_lt8(x0, x1, ty_Int) new_esEs12(False, True) new_esEs12(True, False) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Ordering) new_compare31(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), Zero) new_lt7(x0, x1, x2, x3) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs21(x0, x1, ty_Double) new_compare31(x0, x1, ty_Ordering) new_sr(x0, x1) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs11([], :(x0, x1), x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt12(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_lt8(x0, x1, ty_Char) new_lt8(x0, x1, ty_Double) new_compare17(Char(x0), Char(x1)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs20(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs8(x0, x1) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs25(x0, x1, ty_Float) new_ltEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(@0, @0) new_esEs22(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux0(x0, GT) new_esEs14(Char(x0), Char(x1)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs28(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs7(Just(x0), Nothing, x1) new_esEs16(LT, GT) new_esEs16(GT, LT) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt10(x0, x1) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_lt9(x0, x1) new_compare4([], [], x0) new_esEs25(x0, x1, ty_Int) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_asAs(False, x0) new_esEs28(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare15(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_@0) new_compare4(:(x0, x1), [], x2) new_ltEs19(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(Just(x0), Just(x1), ty_Integer) new_compare111(x0, x1, True, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs27(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_compare7(x0, x1, x2, x3) new_ltEs6(LT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs6(GT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs7(Nothing, Just(x0), x1) new_esEs23(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Char) new_ltEs5(True, True) new_lt18(x0, x1, x2) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_@0) new_esEs16(EQ, GT) new_esEs16(GT, EQ) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs10(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_lt8(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_compare210(x0, x1, False, x2) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_compare13(x0, x1, True) new_esEs22(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), ty_Bool) new_lt4(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1) new_compare110(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs27(x0, x1, ty_Char) new_compare23(x0, x1, False, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs25(x0, x1, ty_@0) new_compare27(x0, x1, True) new_primMulNat0(Zero, Zero) new_esEs20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_@0) new_ltEs15(x0, x1) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs17(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Double) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(Integer(x0), Integer(x1)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCmpNat0(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(EQ, EQ) new_ltEs19(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs10(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_esEs11(:(x0, x1), [], x2) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs24(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Char) new_ltEs10(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_ltEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1) new_lt8(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs18(Just(x0), Just(x1), ty_Float) new_primPlusNat0(Zero, Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(x0, x1, x2) new_esEs20(x0, x1, ty_@0) new_lt6(x0, x1, x2) new_not(True) new_esEs29(x0, x1, ty_Ordering) new_lt17(x0, x1) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_esEs12(False, False) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt15(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs10(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, False) new_ltEs21(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs18(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Ordering) new_primCompAux0(x0, LT) new_ltEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Integer) new_lt8(x0, x1, ty_@0) new_esEs17(Double(x0, x1), Double(x2, x3)) new_ltEs21(x0, x1, ty_@0) new_ltEs11(x0, x1) new_compare18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs10(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, False, x2, x3, x4) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare19(x0, x1) new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_compare4([], :(x0, x1), x2) new_ltEs10(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, False) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(Float(x0, x1), Float(x2, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_compare23(x0, x1, True, x2, x3) new_compare25(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, GT) new_esEs22(x0, x1, ty_Double) new_compare26(x0, x1, False) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare4(:(x0, x1), :(x2, x3), x4) new_lt8(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs18(Just(x0), Nothing, x1) new_compare8(x0, x1, x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs11([], [], x0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_lt13(x0, x1, x2) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt14(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_ltEs10(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_compare13(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs10(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs13(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_primCompAux0(x0, EQ) new_primEqNat0(Zero, Zero) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Int) new_esEs12(True, True) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs21(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_not(False) new_esEs16(LT, LT) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Float) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Nothing, Just(x0), x1) new_ltEs18(Just(x0), Just(x1), ty_@0) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs18(Just(x0), Just(x1), ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs12(x0, x1) new_esEs21(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt8(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_@0) new_lt11(x0, x1, x2, x3, x4) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, True, x2, x3) new_primPlusNat1(Zero, x0) new_esEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Integer) new_esEs16(LT, EQ) new_esEs16(EQ, LT) new_compare31(x0, x1, ty_Float) new_asAs(True, x0) new_esEs23(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs16(GT, GT) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_insertBy01(vxw19, vxw20, vxw21, False, bg, bh) -> new_insertBy02(vxw19, vxw20, vxw21, new_ltEs21(vxw20, vxw19, bh), bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 5 >= 5, 6 >= 6 *new_insertBy(Right(vxw30), :(Right(vxw400), vxw41), be, bf) -> new_insertBy01(vxw400, vxw30, vxw41, new_esEs30(vxw30, vxw400, bf), be, bf) The graph contains the following edges 2 > 1, 1 > 2, 2 > 3, 3 >= 5, 4 >= 6 *new_insertBy02(vxw37, vxw38, vxw39, False, ca, cb) -> new_insertBy(Right(vxw38), vxw39, ca, cb) The graph contains the following edges 3 >= 2, 5 >= 3, 6 >= 4 *new_insertBy(Right(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy(Right(vxw30), vxw41, be, bf) The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_insertBy(Left(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, be), be, bf) new_insertBy0(vxw10, vxw11, vxw12, False, ba, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, ba), ba, bb) new_insertBy00(vxw28, vxw29, vxw30, False, bc, bd) -> new_insertBy(Left(vxw29), vxw30, bc, bd) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs4(vxw300, vxw4000, dde, ddf, ddg) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT new_ltEs12(vxw11, vxw10) -> new_not(new_esEs16(new_compare19(vxw11, vxw10), GT)) new_compare10(vxw110, vxw100, True, bbh, bca, bcb) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vxw67) -> True new_esEs5(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cca, ccb) -> new_asAs(new_esEs26(vxw300, vxw4000, cca), new_esEs27(vxw301, vxw4001, ccb)) new_compare23(vxw110, vxw100, False, bbf, bbg) -> new_compare15(vxw110, vxw100, new_ltEs9(vxw110, vxw100, bbf, bbg), bbf, bbg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs6(GT, GT) -> True new_compare29(@0, @0) -> EQ new_compare31(vxw110, vxw100, app(ty_Ratio, dfd)) -> new_compare16(vxw110, vxw100, dfd) new_esEs24(vxw110, vxw100, app(ty_[], cbh)) -> new_esEs11(vxw110, vxw100, cbh) new_esEs7(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, cd), ce), cf)) -> new_esEs4(vxw300, vxw4000, cd, ce, cf) new_lt20(vxw111, vxw101, ty_Bool) -> new_lt15(vxw111, vxw101) new_esEs6(Left(vxw300), Left(vxw4000), app(ty_Ratio, ddc), cce) -> new_esEs15(vxw300, vxw4000, ddc) new_lt19(vxw110, vxw100, ty_Ordering) -> new_lt10(vxw110, vxw100) new_ltEs18(Nothing, Just(vxw100), bga) -> True new_compare31(vxw110, vxw100, ty_@0) -> new_compare29(vxw110, vxw100) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare24(vxw110, vxw100, False, fb, fc) -> new_compare110(vxw110, vxw100, new_ltEs16(vxw110, vxw100, fb, fc), fb, fc) new_compare31(vxw110, vxw100, app(ty_[], dfh)) -> new_compare4(vxw110, vxw100, dfh) new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_Maybe, def)) -> new_esEs7(vxw300, vxw4000, def) new_esEs7(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs12(vxw300, vxw4000) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_@0) -> new_esEs9(vxw300, vxw4000) new_ltEs18(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs5(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Maybe, df)) -> new_esEs7(vxw300, vxw4000, df) new_esEs14(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs10(vxw301, vxw4001) new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) new_esEs28(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_esEs22(vxw302, vxw4002, ty_Int) -> new_esEs8(vxw302, vxw4002) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_Ratio, dee)) -> new_esEs15(vxw300, vxw4000, dee) new_compare31(vxw110, vxw100, app(app(ty_Either, dfe), dff)) -> new_compare7(vxw110, vxw100, dfe, dff) new_esEs28(vxw300, vxw4000, app(ty_Maybe, dcb)) -> new_esEs7(vxw300, vxw4000, dcb) new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) new_ltEs6(EQ, GT) -> True new_esEs23(vxw110, vxw100, ty_@0) -> new_esEs9(vxw110, vxw100) new_lt14(vxw110, vxw100) -> new_esEs16(new_compare28(vxw110, vxw100), LT) new_lt20(vxw111, vxw101, ty_Ordering) -> new_lt10(vxw111, vxw101) new_esEs25(vxw111, vxw101, app(app(ty_@2, ced), cee)) -> new_esEs5(vxw111, vxw101, ced, cee) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Integer) -> new_ltEs14(vxw110, vxw100) new_esEs28(vxw300, vxw4000, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs4(vxw300, vxw4000, dba, dbb, dbc) new_lt8(vxw110, vxw100, ty_Ordering) -> new_lt10(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), app(app(app(ty_@3, bgb), bgc), bgd), bfh) -> new_ltEs4(vxw110, vxw100, bgb, bgc, bgd) new_ltEs16(Left(vxw110), Left(vxw100), ty_Char, bfh) -> new_ltEs11(vxw110, vxw100) new_ltEs19(vxw112, vxw102, ty_Char) -> new_ltEs11(vxw112, vxw102) new_primCompAux0(vxw79, GT) -> GT new_compare31(vxw110, vxw100, ty_Int) -> new_compare19(vxw110, vxw100) new_esEs26(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), ty_Integer, cce) -> new_esEs13(vxw300, vxw4000) new_compare26(vxw110, vxw100, True) -> EQ new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False new_esEs20(vxw300, vxw4000, app(app(ty_@2, gc), gd)) -> new_esEs5(vxw300, vxw4000, gc, gd) new_esEs24(vxw110, vxw100, ty_Double) -> new_esEs17(vxw110, vxw100) new_esEs6(Left(vxw300), Left(vxw4000), app(ty_[], dch), cce) -> new_esEs11(vxw300, vxw4000, dch) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Double) -> new_ltEs7(vxw110, vxw100) new_esEs24(vxw110, vxw100, app(ty_Ratio, ccf)) -> new_esEs15(vxw110, vxw100, ccf) new_ltEs19(vxw112, vxw102, ty_Int) -> new_ltEs12(vxw112, vxw102) new_esEs28(vxw300, vxw4000, app(ty_[], dbf)) -> new_esEs11(vxw300, vxw4000, dbf) new_ltEs19(vxw112, vxw102, app(app(ty_Either, cga), cgb)) -> new_ltEs16(vxw112, vxw102, cga, cgb) new_compare16(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare28(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) new_ltEs20(vxw11, vxw10, ty_Char) -> new_ltEs11(vxw11, vxw10) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_Ratio, caa)) -> new_ltEs13(vxw110, vxw100, caa) new_compare12(vxw110, vxw100, False) -> GT new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Ratio, de)) -> new_esEs15(vxw300, vxw4000, de) new_ltEs14(vxw11, vxw10) -> new_not(new_esEs16(new_compare28(vxw11, vxw10), GT)) new_compare6(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare6(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_primCompAux0(vxw79, LT) -> LT new_ltEs16(Left(vxw110), Left(vxw100), app(app(ty_Either, bgh), bha), bfh) -> new_ltEs16(vxw110, vxw100, bgh, bha) new_esEs29(vxw30, vxw400, ty_Ordering) -> new_esEs16(vxw30, vxw400) new_esEs16(EQ, GT) -> False new_esEs16(GT, EQ) -> False new_not(True) -> False new_esEs6(Left(vxw300), Left(vxw4000), app(ty_Maybe, ddd), cce) -> new_esEs7(vxw300, vxw4000, ddd) new_compare30(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs24(vxw110, vxw100, ty_Ordering) -> new_esEs16(vxw110, vxw100) new_esEs6(Left(vxw300), Left(vxw4000), ty_Ordering, cce) -> new_esEs16(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), ty_Bool, bfh) -> new_ltEs5(vxw110, vxw100) new_primCmpNat0(Zero, Zero) -> EQ new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Float) -> new_ltEs17(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(ty_Either, cab), cac)) -> new_ltEs16(vxw110, vxw100, cab, cac) new_esEs25(vxw111, vxw101, ty_Integer) -> new_esEs13(vxw111, vxw101) new_esEs19(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_ltEs6(LT, GT) -> True new_esEs20(vxw300, vxw4000, app(ty_[], ge)) -> new_esEs11(vxw300, vxw4000, ge) new_esEs23(vxw110, vxw100, ty_Bool) -> new_esEs12(vxw110, vxw100) new_ltEs20(vxw11, vxw10, ty_Int) -> new_ltEs12(vxw11, vxw10) new_esEs30(vxw30, vxw400, app(ty_Ratio, eh)) -> new_esEs15(vxw30, vxw400, eh) new_esEs30(vxw30, vxw400, ty_Double) -> new_esEs17(vxw30, vxw400) new_compare25(vxw110, vxw100, False, bbh, bca, bcb) -> new_compare10(vxw110, vxw100, new_ltEs4(vxw110, vxw100, bbh, bca, bcb), bbh, bca, bcb) new_esEs30(vxw30, vxw400, ty_Ordering) -> new_esEs16(vxw30, vxw400) new_ltEs16(Left(vxw110), Right(vxw100), bfg, bfh) -> True new_lt19(vxw110, vxw100, ty_Integer) -> new_lt14(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_@0) -> new_ltEs15(vxw110, vxw100) new_primEqNat0(Succ(vxw3000), Zero) -> False new_primEqNat0(Zero, Succ(vxw40000)) -> False new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Float) -> new_esEs10(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), ty_Char, cce) -> new_esEs14(vxw300, vxw4000) new_lt20(vxw111, vxw101, ty_Integer) -> new_lt14(vxw111, vxw101) new_esEs16(LT, EQ) -> False new_esEs16(EQ, LT) -> False new_lt19(vxw110, vxw100, ty_Bool) -> new_lt15(vxw110, vxw100) new_compare31(vxw110, vxw100, ty_Integer) -> new_compare28(vxw110, vxw100) new_esEs29(vxw30, vxw400, ty_Double) -> new_esEs17(vxw30, vxw400) new_lt20(vxw111, vxw101, ty_Int) -> new_lt12(vxw111, vxw101) new_compare15(vxw110, vxw100, True, bbf, bbg) -> LT new_lt12(vxw110, vxw100) -> new_esEs16(new_compare19(vxw110, vxw100), LT) new_esEs24(vxw110, vxw100, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs4(vxw110, vxw100, bbh, bca, bcb) new_esEs23(vxw110, vxw100, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs4(vxw110, vxw100, bcg, bch, bda) new_esEs30(vxw30, vxw400, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs4(vxw30, vxw400, dh, ea, eb) new_ltEs18(Just(vxw110), Just(vxw100), app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs4(vxw110, vxw100, caf, cag, cah) new_lt20(vxw111, vxw101, ty_Char) -> new_lt9(vxw111, vxw101) new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT new_ltEs10(vxw111, vxw101, ty_Int) -> new_ltEs12(vxw111, vxw101) new_esEs28(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, app(ty_Ratio, gh)) -> new_esEs15(vxw300, vxw4000, gh) new_ltEs5(False, True) -> True new_compare110(vxw110, vxw100, True, fb, fc) -> LT new_esEs23(vxw110, vxw100, ty_Double) -> new_esEs17(vxw110, vxw100) new_lt13(vxw110, vxw100, ccf) -> new_esEs16(new_compare16(vxw110, vxw100, ccf), LT) new_lt8(vxw110, vxw100, app(ty_Maybe, bdg)) -> new_lt6(vxw110, vxw100, bdg) new_esEs7(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs9(vxw300, vxw4000) new_compare28(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) new_ltEs7(vxw11, vxw10) -> new_not(new_esEs16(new_compare6(vxw11, vxw10), GT)) new_primCmpNat0(Zero, Succ(vxw1000)) -> LT new_ltEs21(vxw20, vxw19, ty_Int) -> new_ltEs12(vxw20, vxw19) new_lt8(vxw110, vxw100, ty_Double) -> new_lt4(vxw110, vxw100) new_esEs21(vxw301, vxw4001, app(app(ty_@2, he), hf)) -> new_esEs5(vxw301, vxw4001, he, hf) new_esEs29(vxw30, vxw400, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs4(vxw30, vxw400, fd, ff, fg) new_ltEs17(vxw11, vxw10) -> new_not(new_esEs16(new_compare30(vxw11, vxw10), GT)) new_esEs25(vxw111, vxw101, ty_Ordering) -> new_esEs16(vxw111, vxw101) new_primCompAux1(vxw110, vxw100, vxw68, bcd) -> new_primCompAux0(vxw68, new_compare31(vxw110, vxw100, bcd)) new_ltEs21(vxw20, vxw19, ty_Integer) -> new_ltEs14(vxw20, vxw19) new_ltEs21(vxw20, vxw19, ty_Double) -> new_ltEs7(vxw20, vxw19) new_primCmpNat0(Succ(vxw1100), Zero) -> GT new_pePe(False, vxw67) -> vxw67 new_esEs7(Nothing, Just(vxw4000), cc) -> False new_esEs7(Just(vxw300), Nothing, cc) -> False new_compare7(vxw110, vxw100, fb, fc) -> new_compare24(vxw110, vxw100, new_esEs6(vxw110, vxw100, fb, fc), fb, fc) new_lt20(vxw111, vxw101, ty_Float) -> new_lt17(vxw111, vxw101) new_lt19(vxw110, vxw100, ty_Int) -> new_lt12(vxw110, vxw100) new_esEs12(False, False) -> True new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs12(vxw301, vxw4001) new_compare210(vxw110, vxw100, True, bcc) -> EQ new_esEs28(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs4(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), bfd, bfe, bff) -> new_pePe(new_lt19(vxw110, vxw100, bfd), new_asAs(new_esEs24(vxw110, vxw100, bfd), new_pePe(new_lt20(vxw111, vxw101, bfe), new_asAs(new_esEs25(vxw111, vxw101, bfe), new_ltEs19(vxw112, vxw102, bff))))) new_esEs22(vxw302, vxw4002, app(app(ty_Either, bbb), bbc)) -> new_esEs6(vxw302, vxw4002, bbb, bbc) new_esEs11(:(vxw300, vxw301), [], ccc) -> False new_esEs11([], :(vxw4000, vxw4001), ccc) -> False new_esEs24(vxw110, vxw100, ty_@0) -> new_esEs9(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Ordering) -> new_ltEs6(vxw110, vxw100) new_lt4(vxw110, vxw100) -> new_esEs16(new_compare6(vxw110, vxw100), LT) new_esEs26(vxw300, vxw4000, app(app(ty_@2, cgh), cha)) -> new_esEs5(vxw300, vxw4000, cgh, cha) new_esEs29(vxw30, vxw400, ty_Integer) -> new_esEs13(vxw30, vxw400) new_esEs26(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_ltEs6(LT, LT) -> True new_esEs29(vxw30, vxw400, ty_Char) -> new_esEs14(vxw30, vxw400) new_compare23(vxw110, vxw100, True, bbf, bbg) -> EQ new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False new_ltEs18(Just(vxw110), Just(vxw100), app(ty_Ratio, cbc)) -> new_ltEs13(vxw110, vxw100, cbc) new_esEs7(Nothing, Nothing, cc) -> True new_lt19(vxw110, vxw100, ty_Char) -> new_lt9(vxw110, vxw100) new_esEs23(vxw110, vxw100, app(ty_[], bdh)) -> new_esEs11(vxw110, vxw100, bdh) new_esEs6(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, dcc), dcd), dce), cce) -> new_esEs4(vxw300, vxw4000, dcc, dcd, dce) new_ltEs18(Just(vxw110), Just(vxw100), app(app(ty_@2, cba), cbb)) -> new_ltEs9(vxw110, vxw100, cba, cbb) new_ltEs20(vxw11, vxw10, app(app(ty_Either, bfg), bfh)) -> new_ltEs16(vxw11, vxw10, bfg, bfh) new_ltEs18(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs15(vxw110, vxw100) new_ltEs18(Just(vxw110), Just(vxw100), app(app(ty_Either, cbd), cbe)) -> new_ltEs16(vxw110, vxw100, cbd, cbe) new_esEs25(vxw111, vxw101, ty_Char) -> new_esEs14(vxw111, vxw101) new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(ty_@2, ddh), dea)) -> new_esEs5(vxw300, vxw4000, ddh, dea) new_ltEs16(Left(vxw110), Left(vxw100), app(app(ty_@2, bge), bgf), bfh) -> new_ltEs9(vxw110, vxw100, bge, bgf) new_compare25(vxw110, vxw100, True, bbh, bca, bcb) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT new_esEs26(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs21(vxw20, vxw19, app(ty_Maybe, cdg)) -> new_ltEs18(vxw20, vxw19, cdg) new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) new_esEs25(vxw111, vxw101, app(ty_Maybe, cfa)) -> new_esEs7(vxw111, vxw101, cfa) new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_esEs24(vxw110, vxw100, app(app(ty_Either, fb), fc)) -> new_esEs6(vxw110, vxw100, fb, fc) new_esEs26(vxw300, vxw4000, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_esEs6(Left(vxw300), Left(vxw4000), app(app(ty_Either, dda), ddb), cce) -> new_esEs6(vxw300, vxw4000, dda, ddb) new_ltEs16(Left(vxw110), Left(vxw100), ty_Int, bfh) -> new_ltEs12(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_lt19(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_primMulNat0(Succ(vxw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw400000)) -> Zero new_ltEs18(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs12(vxw110, vxw100) new_esEs25(vxw111, vxw101, app(ty_[], cfb)) -> new_esEs11(vxw111, vxw101, cfb) new_ltEs6(LT, EQ) -> True new_esEs22(vxw302, vxw4002, app(ty_Maybe, bbe)) -> new_esEs7(vxw302, vxw4002, bbe) new_primPlusNat1(Succ(vxw690), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw690, vxw400000))) new_ltEs5(True, False) -> False new_esEs23(vxw110, vxw100, app(ty_Maybe, bdg)) -> new_esEs7(vxw110, vxw100, bdg) new_lt20(vxw111, vxw101, app(app(app(ty_@3, cea), ceb), cec)) -> new_lt11(vxw111, vxw101, cea, ceb, cec) new_primPlusNat0(Succ(vxw6900), Zero) -> Succ(vxw6900) new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_Either, dc), dd)) -> new_esEs6(vxw300, vxw4000, dc, dd) new_ltEs19(vxw112, vxw102, ty_Double) -> new_ltEs7(vxw112, vxw102) new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs4(vxw301, vxw4001, hb, hc, hd) new_compare4(:(vxw110, vxw111), :(vxw100, vxw101), bcd) -> new_primCompAux1(vxw110, vxw100, new_compare4(vxw111, vxw101, bcd), bcd) new_ltEs19(vxw112, vxw102, ty_Integer) -> new_ltEs14(vxw112, vxw102) new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) new_lt8(vxw110, vxw100, ty_Bool) -> new_lt15(vxw110, vxw100) new_esEs16(LT, GT) -> False new_esEs16(GT, LT) -> False new_esEs22(vxw302, vxw4002, app(ty_Ratio, bbd)) -> new_esEs15(vxw302, vxw4002, bbd) new_compare11(vxw110, vxw100) -> new_compare26(vxw110, vxw100, new_esEs12(vxw110, vxw100)) new_esEs19(vxw301, vxw4001, ty_Int) -> new_esEs8(vxw301, vxw4001) new_esEs20(vxw300, vxw4000, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs4(vxw300, vxw4000, fh, ga, gb) new_esEs24(vxw110, vxw100, ty_Bool) -> new_esEs12(vxw110, vxw100) new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(ty_[], deb)) -> new_esEs11(vxw300, vxw4000, deb) new_esEs23(vxw110, vxw100, app(app(ty_@2, bdb), bdc)) -> new_esEs5(vxw110, vxw100, bdb, bdc) new_esEs23(vxw110, vxw100, app(ty_Ratio, bdd)) -> new_esEs15(vxw110, vxw100, bdd) new_esEs6(Left(vxw300), Left(vxw4000), app(app(ty_@2, dcf), dcg), cce) -> new_esEs5(vxw300, vxw4000, dcf, dcg) new_lt6(vxw110, vxw100, bcc) -> new_esEs16(new_compare9(vxw110, vxw100, bcc), LT) new_lt17(vxw110, vxw100) -> new_esEs16(new_compare30(vxw110, vxw100), LT) new_esEs24(vxw110, vxw100, app(ty_Maybe, bcc)) -> new_esEs7(vxw110, vxw100, bcc) new_ltEs8(vxw11, vxw10, bcd) -> new_not(new_esEs16(new_compare4(vxw11, vxw10, bcd), GT)) new_ltEs10(vxw111, vxw101, app(app(ty_Either, beg), beh)) -> new_ltEs16(vxw111, vxw101, beg, beh) new_lt5(vxw110, vxw100, fb, fc) -> new_esEs16(new_compare7(vxw110, vxw100, fb, fc), LT) new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs25(vxw111, vxw101, ty_Bool) -> new_esEs12(vxw111, vxw101) new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs9(vxw301, vxw4001) new_lt8(vxw110, vxw100, ty_Integer) -> new_lt14(vxw110, vxw100) new_ltEs10(vxw111, vxw101, app(ty_Maybe, bfa)) -> new_ltEs18(vxw111, vxw101, bfa) new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fd, ff, fg) -> new_asAs(new_esEs20(vxw300, vxw4000, fd), new_asAs(new_esEs21(vxw301, vxw4001, ff), new_esEs22(vxw302, vxw4002, fg))) new_esEs20(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_lt7(vxw110, vxw100, bbf, bbg) -> new_esEs16(new_compare8(vxw110, vxw100, bbf, bbg), LT) new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs13(vxw301, vxw4001) new_ltEs21(vxw20, vxw19, app(app(ty_Either, cde), cdf)) -> new_ltEs16(vxw20, vxw19, cde, cdf) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_@2, cg), da)) -> new_esEs5(vxw300, vxw4000, cg, da) new_ltEs21(vxw20, vxw19, ty_@0) -> new_ltEs15(vxw20, vxw19) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Double) -> new_esEs17(vxw300, vxw4000) new_esEs24(vxw110, vxw100, app(app(ty_@2, bbf), bbg)) -> new_esEs5(vxw110, vxw100, bbf, bbg) new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs14(vxw301, vxw4001) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_[], db)) -> new_esEs11(vxw300, vxw4000, db) new_compare4([], :(vxw100, vxw101), bcd) -> LT new_esEs6(Left(vxw300), Left(vxw4000), ty_Bool, cce) -> new_esEs12(vxw300, vxw4000) new_compare31(vxw110, vxw100, ty_Ordering) -> new_compare14(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_[], bhc), bfh) -> new_ltEs8(vxw110, vxw100, bhc) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs23(vxw110, vxw100, app(app(ty_Either, bde), bdf)) -> new_esEs6(vxw110, vxw100, bde, bdf) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_Maybe, cad)) -> new_ltEs18(vxw110, vxw100, cad) new_ltEs21(vxw20, vxw19, app(app(ty_@2, cdb), cdc)) -> new_ltEs9(vxw20, vxw19, cdb, cdc) new_esEs20(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs21(vxw301, vxw4001, app(app(ty_Either, hh), baa)) -> new_esEs6(vxw301, vxw4001, hh, baa) new_lt8(vxw110, vxw100, app(ty_[], bdh)) -> new_lt18(vxw110, vxw100, bdh) new_esEs29(vxw30, vxw400, ty_Float) -> new_esEs10(vxw30, vxw400) new_esEs28(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_ltEs10(vxw111, vxw101, ty_@0) -> new_ltEs15(vxw111, vxw101) new_ltEs10(vxw111, vxw101, app(app(ty_@2, bed), bee)) -> new_ltEs9(vxw111, vxw101, bed, bee) new_ltEs16(Left(vxw110), Left(vxw100), ty_Double, bfh) -> new_ltEs7(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(app(ty_@2, dab), dac)) -> new_esEs5(vxw301, vxw4001, dab, dac) new_esEs30(vxw30, vxw400, ty_Int) -> new_esEs8(vxw30, vxw400) new_esEs26(vxw300, vxw4000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs4(vxw300, vxw4000, cge, cgf, cgg) new_lt8(vxw110, vxw100, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt11(vxw110, vxw100, bcg, bch, bda) new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) new_ltEs16(Left(vxw110), Left(vxw100), ty_Integer, bfh) -> new_ltEs14(vxw110, vxw100) new_esEs20(vxw300, vxw4000, ty_Float) -> new_esEs10(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Double) -> new_esEs17(vxw300, vxw4000) new_ltEs18(Nothing, Nothing, bga) -> True new_esEs6(Right(vxw300), Right(vxw4000), ccd, app(app(ty_Either, dec), ded)) -> new_esEs6(vxw300, vxw4000, dec, ded) new_esEs26(vxw300, vxw4000, app(ty_Ratio, che)) -> new_esEs15(vxw300, vxw4000, che) new_compare18(vxw110, vxw100, bbh, bca, bcb) -> new_compare25(vxw110, vxw100, new_esEs4(vxw110, vxw100, bbh, bca, bcb), bbh, bca, bcb) new_ltEs6(GT, EQ) -> False new_compare10(vxw110, vxw100, False, bbh, bca, bcb) -> GT new_ltEs10(vxw111, vxw101, ty_Float) -> new_ltEs17(vxw111, vxw101) new_sr0(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) new_ltEs20(vxw11, vxw10, ty_Integer) -> new_ltEs14(vxw11, vxw10) new_ltEs5(False, False) -> True new_esEs16(GT, GT) -> True new_ltEs21(vxw20, vxw19, app(ty_Ratio, cdd)) -> new_ltEs13(vxw20, vxw19, cdd) new_lt19(vxw110, vxw100, app(app(app(ty_@3, bbh), bca), bcb)) -> new_lt11(vxw110, vxw100, bbh, bca, bcb) new_ltEs18(Just(vxw110), Just(vxw100), app(ty_Maybe, cbf)) -> new_ltEs18(vxw110, vxw100, cbf) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(ty_@2, bhg), bhh)) -> new_ltEs9(vxw110, vxw100, bhg, bhh) new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs16(vxw301, vxw4001) new_compare26(vxw110, vxw100, False) -> new_compare12(vxw110, vxw100, new_ltEs5(vxw110, vxw100)) new_esEs28(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_asAs(True, vxw59) -> vxw59 new_compare30(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare30(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs29(vxw30, vxw400, ty_Int) -> new_esEs8(vxw30, vxw400) new_compare31(vxw110, vxw100, ty_Double) -> new_compare6(vxw110, vxw100) new_lt20(vxw111, vxw101, app(app(ty_@2, ced), cee)) -> new_lt7(vxw111, vxw101, ced, cee) new_ltEs20(vxw11, vxw10, app(app(ty_@2, bce), bcf)) -> new_ltEs9(vxw11, vxw10, bce, bcf) new_ltEs20(vxw11, vxw10, ty_@0) -> new_ltEs15(vxw11, vxw10) new_ltEs16(Right(vxw110), Left(vxw100), bfg, bfh) -> False new_esEs23(vxw110, vxw100, ty_Integer) -> new_esEs13(vxw110, vxw100) new_esEs6(Left(vxw300), Right(vxw4000), ccd, cce) -> False new_esEs6(Right(vxw300), Left(vxw4000), ccd, cce) -> False new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs12(vxw301, vxw4001) new_esEs22(vxw302, vxw4002, app(ty_[], bba)) -> new_esEs11(vxw302, vxw4002, bba) new_ltEs18(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs7(vxw110, vxw100) new_esEs30(vxw30, vxw400, ty_Float) -> new_esEs10(vxw30, vxw400) new_esEs21(vxw301, vxw4001, app(ty_Ratio, bab)) -> new_esEs15(vxw301, vxw4001, bab) new_lt19(vxw110, vxw100, app(app(ty_@2, bbf), bbg)) -> new_lt7(vxw110, vxw100, bbf, bbg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_ltEs18(Just(vxw110), Nothing, bga) -> False new_esEs22(vxw302, vxw4002, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(vxw302, vxw4002, bad, bae, baf) new_ltEs20(vxw11, vxw10, ty_Double) -> new_ltEs7(vxw11, vxw10) new_compare24(vxw110, vxw100, True, fb, fc) -> EQ new_ltEs19(vxw112, vxw102, app(app(ty_@2, cff), cfg)) -> new_ltEs9(vxw112, vxw102, cff, cfg) new_ltEs19(vxw112, vxw102, ty_@0) -> new_ltEs15(vxw112, vxw102) new_ltEs19(vxw112, vxw102, ty_Ordering) -> new_ltEs6(vxw112, vxw102) new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) new_esEs6(Left(vxw300), Left(vxw4000), ty_@0, cce) -> new_esEs9(vxw300, vxw4000) new_esEs24(vxw110, vxw100, ty_Int) -> new_esEs8(vxw110, vxw100) new_esEs25(vxw111, vxw101, ty_@0) -> new_esEs9(vxw111, vxw101) new_esEs9(@0, @0) -> True new_esEs18(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) new_lt16(vxw110, vxw100) -> new_esEs16(new_compare29(vxw110, vxw100), LT) new_esEs22(vxw302, vxw4002, ty_Double) -> new_esEs17(vxw302, vxw4002) new_esEs6(Left(vxw300), Left(vxw4000), ty_Float, cce) -> new_esEs10(vxw300, vxw4000) new_primMulNat0(Zero, Zero) -> Zero new_compare4(:(vxw110, vxw111), [], bcd) -> GT new_esEs7(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs30(vxw30, vxw400, ty_Char) -> new_esEs14(vxw30, vxw400) new_esEs12(True, True) -> True new_esEs23(vxw110, vxw100, ty_Char) -> new_esEs14(vxw110, vxw100) new_ltEs16(Left(vxw110), Left(vxw100), ty_@0, bfh) -> new_ltEs15(vxw110, vxw100) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Char) -> new_ltEs11(vxw110, vxw100) new_ltEs19(vxw112, vxw102, app(ty_[], cgd)) -> new_ltEs8(vxw112, vxw102, cgd) new_esEs22(vxw302, vxw4002, app(app(ty_@2, bag), bah)) -> new_esEs5(vxw302, vxw4002, bag, bah) new_esEs26(vxw300, vxw4000, app(app(ty_Either, chc), chd)) -> new_esEs6(vxw300, vxw4000, chc, chd) new_ltEs10(vxw111, vxw101, app(ty_Ratio, bef)) -> new_ltEs13(vxw111, vxw101, bef) new_ltEs10(vxw111, vxw101, ty_Integer) -> new_ltEs14(vxw111, vxw101) new_esEs24(vxw110, vxw100, ty_Float) -> new_esEs10(vxw110, vxw100) new_ltEs6(EQ, LT) -> False new_ltEs19(vxw112, vxw102, app(ty_Ratio, cfh)) -> new_ltEs13(vxw112, vxw102, cfh) new_ltEs18(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs14(vxw110, vxw100) new_lt15(vxw110, vxw100) -> new_esEs16(new_compare11(vxw110, vxw100), LT) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_ltEs11(vxw11, vxw10) -> new_not(new_esEs16(new_compare17(vxw11, vxw10), GT)) new_ltEs20(vxw11, vxw10, app(ty_Maybe, bga)) -> new_ltEs18(vxw11, vxw10, bga) new_lt20(vxw111, vxw101, app(ty_Ratio, cef)) -> new_lt13(vxw111, vxw101, cef) new_compare31(vxw110, vxw100, ty_Float) -> new_compare30(vxw110, vxw100) new_compare6(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare19(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs25(vxw111, vxw101, app(app(ty_Either, ceg), ceh)) -> new_esEs6(vxw111, vxw101, ceg, ceh) new_primCompAux0(vxw79, EQ) -> vxw79 new_ltEs20(vxw11, vxw10, app(ty_[], bcd)) -> new_ltEs8(vxw11, vxw10, bcd) new_lt10(vxw110, vxw100) -> new_esEs16(new_compare14(vxw110, vxw100), LT) new_esEs27(vxw301, vxw4001, app(ty_[], dad)) -> new_esEs11(vxw301, vxw4001, dad) new_esEs11(:(vxw300, vxw301), :(vxw4000, vxw4001), ccc) -> new_asAs(new_esEs28(vxw300, vxw4000, ccc), new_esEs11(vxw301, vxw4001, ccc)) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Bool) -> new_ltEs5(vxw110, vxw100) new_lt19(vxw110, vxw100, app(ty_Ratio, ccf)) -> new_lt13(vxw110, vxw100, ccf) new_esEs30(vxw30, vxw400, ty_@0) -> new_esEs9(vxw30, vxw400) new_lt8(vxw110, vxw100, app(app(ty_Either, bde), bdf)) -> new_lt5(vxw110, vxw100, bde, bdf) new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False new_esEs26(vxw300, vxw4000, app(ty_[], chb)) -> new_esEs11(vxw300, vxw4000, chb) new_ltEs20(vxw11, vxw10, app(ty_Ratio, bfc)) -> new_ltEs13(vxw11, vxw10, bfc) new_compare31(vxw110, vxw100, ty_Bool) -> new_compare11(vxw110, vxw100) new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_ltEs19(vxw112, vxw102, app(ty_Maybe, cgc)) -> new_ltEs18(vxw112, vxw102, cgc) new_esEs21(vxw301, vxw4001, app(ty_Maybe, bac)) -> new_esEs7(vxw301, vxw4001, bac) new_ltEs16(Left(vxw110), Left(vxw100), ty_Float, bfh) -> new_ltEs17(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs14(vxw300, vxw4000) new_esEs20(vxw300, vxw4000, app(app(ty_Either, gf), gg)) -> new_esEs6(vxw300, vxw4000, gf, gg) new_compare19(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) new_esEs24(vxw110, vxw100, ty_Char) -> new_esEs14(vxw110, vxw100) new_ltEs18(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs17(vxw110, vxw100) new_esEs28(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False new_esEs25(vxw111, vxw101, app(ty_Ratio, cef)) -> new_esEs15(vxw111, vxw101, cef) new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) new_compare27(vxw110, vxw100, False) -> new_compare13(vxw110, vxw100, new_ltEs6(vxw110, vxw100)) new_esEs18(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_esEs16(EQ, EQ) -> True new_compare4([], [], bcd) -> EQ new_ltEs10(vxw111, vxw101, ty_Double) -> new_ltEs7(vxw111, vxw101) new_esEs29(vxw30, vxw400, ty_@0) -> new_esEs9(vxw30, vxw400) new_esEs25(vxw111, vxw101, ty_Float) -> new_esEs10(vxw111, vxw101) new_esEs24(vxw110, vxw100, ty_Integer) -> new_esEs13(vxw110, vxw100) new_esEs22(vxw302, vxw4002, ty_Bool) -> new_esEs12(vxw302, vxw4002) new_esEs26(vxw300, vxw4000, app(ty_Maybe, chf)) -> new_esEs7(vxw300, vxw4000, chf) new_esEs30(vxw30, vxw400, ty_Integer) -> new_esEs13(vxw30, vxw400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(vxw301, vxw4001, app(ty_[], hg)) -> new_esEs11(vxw301, vxw4001, hg) new_lt8(vxw110, vxw100, ty_@0) -> new_lt16(vxw110, vxw100) new_compare111(vxw110, vxw100, False, bcc) -> GT new_ltEs19(vxw112, vxw102, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs4(vxw112, vxw102, cfc, cfd, cfe) new_ltEs19(vxw112, vxw102, ty_Bool) -> new_ltEs5(vxw112, vxw102) new_esEs8(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) new_lt19(vxw110, vxw100, ty_Double) -> new_lt4(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(ty_Maybe, dah)) -> new_esEs7(vxw301, vxw4001, dah) new_esEs23(vxw110, vxw100, ty_Int) -> new_esEs8(vxw110, vxw100) new_ltEs10(vxw111, vxw101, ty_Bool) -> new_ltEs5(vxw111, vxw101) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_Maybe, bhb), bfh) -> new_ltEs18(vxw110, vxw100, bhb) new_ltEs18(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs6(vxw110, vxw100) new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs4(vxw301, vxw4001, chg, chh, daa) new_esEs22(vxw302, vxw4002, ty_Integer) -> new_esEs13(vxw302, vxw4002) new_not(False) -> True new_esEs6(Left(vxw300), Left(vxw4000), ty_Int, cce) -> new_esEs8(vxw300, vxw4000) new_compare31(vxw110, vxw100, ty_Char) -> new_compare17(vxw110, vxw100) new_esEs20(vxw300, vxw4000, app(ty_Maybe, ha)) -> new_esEs7(vxw300, vxw4000, ha) new_lt8(vxw110, vxw100, ty_Int) -> new_lt12(vxw110, vxw100) new_esEs16(LT, LT) -> True new_lt19(vxw110, vxw100, app(app(ty_Either, fb), fc)) -> new_lt5(vxw110, vxw100, fb, fc) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_primPlusNat0(Succ(vxw6900), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw6900, vxw4000000))) new_esEs29(vxw30, vxw400, app(app(ty_Either, ccd), cce)) -> new_esEs6(vxw30, vxw400, ccd, cce) new_esEs27(vxw301, vxw4001, app(ty_Ratio, dag)) -> new_esEs15(vxw301, vxw4001, dag) new_esEs25(vxw111, vxw101, ty_Double) -> new_esEs17(vxw111, vxw101) new_esEs20(vxw300, vxw4000, ty_Bool) -> new_esEs12(vxw300, vxw4000) new_lt11(vxw110, vxw100, bbh, bca, bcb) -> new_esEs16(new_compare18(vxw110, vxw100, bbh, bca, bcb), LT) new_lt19(vxw110, vxw100, app(ty_Maybe, bcc)) -> new_lt6(vxw110, vxw100, bcc) new_esEs29(vxw30, vxw400, app(ty_Ratio, dg)) -> new_esEs15(vxw30, vxw400, dg) new_lt19(vxw110, vxw100, ty_@0) -> new_lt16(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs16(vxw300, vxw4000) new_compare13(vxw110, vxw100, True) -> LT new_esEs7(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs10(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), ty_Ordering, bfh) -> new_ltEs6(vxw110, vxw100) new_esEs29(vxw30, vxw400, ty_Bool) -> new_esEs12(vxw30, vxw400) new_lt9(vxw110, vxw100) -> new_esEs16(new_compare17(vxw110, vxw100), LT) new_esEs30(vxw30, vxw400, app(app(ty_Either, ef), eg)) -> new_esEs6(vxw30, vxw400, ef, eg) new_esEs22(vxw302, vxw4002, ty_@0) -> new_esEs9(vxw302, vxw4002) new_esEs20(vxw300, vxw4000, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_ltEs21(vxw20, vxw19, app(ty_[], cdh)) -> new_ltEs8(vxw20, vxw19, cdh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(vxw111, vxw101, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs4(vxw111, vxw101, cea, ceb, cec) new_esEs20(vxw300, vxw4000, ty_Char) -> new_esEs14(vxw300, vxw4000) new_ltEs5(True, True) -> True new_esEs28(vxw300, vxw4000, app(app(ty_@2, dbd), dbe)) -> new_esEs5(vxw300, vxw4000, dbd, dbe) new_compare111(vxw110, vxw100, True, bcc) -> LT new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs16(vxw301, vxw4001) new_ltEs10(vxw111, vxw101, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs4(vxw111, vxw101, bea, beb, bec) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Char) -> new_esEs14(vxw300, vxw4000) new_lt8(vxw110, vxw100, app(ty_Ratio, bdd)) -> new_lt13(vxw110, vxw100, bdd) new_esEs27(vxw301, vxw4001, app(app(ty_Either, dae), daf)) -> new_esEs6(vxw301, vxw4001, dae, daf) new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs17(vxw301, vxw4001) new_compare31(vxw110, vxw100, app(app(app(ty_@3, deg), deh), dfa)) -> new_compare18(vxw110, vxw100, deg, deh, dfa) new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs10(vxw301, vxw4001) new_ltEs21(vxw20, vxw19, ty_Float) -> new_ltEs17(vxw20, vxw19) new_esEs17(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs8(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_esEs29(vxw30, vxw400, app(ty_[], ccc)) -> new_esEs11(vxw30, vxw400, ccc) new_esEs30(vxw30, vxw400, app(ty_Maybe, fa)) -> new_esEs7(vxw30, vxw400, fa) new_esEs20(vxw300, vxw4000, ty_@0) -> new_esEs9(vxw300, vxw4000) new_esEs13(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) new_lt8(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_esEs30(vxw30, vxw400, ty_Bool) -> new_esEs12(vxw30, vxw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs30(vxw30, vxw400, app(app(ty_@2, ec), ed)) -> new_esEs5(vxw30, vxw400, ec, ed) new_compare9(vxw110, vxw100, bcc) -> new_compare210(vxw110, vxw100, new_esEs7(vxw110, vxw100, bcc), bcc) new_ltEs10(vxw111, vxw101, app(ty_[], bfb)) -> new_ltEs8(vxw111, vxw101, bfb) new_compare8(vxw110, vxw100, bbf, bbg) -> new_compare23(vxw110, vxw100, new_esEs5(vxw110, vxw100, bbf, bbg), bbf, bbg) new_ltEs21(vxw20, vxw19, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs4(vxw20, vxw19, ccg, cch, cda) new_lt20(vxw111, vxw101, app(ty_[], cfb)) -> new_lt18(vxw111, vxw101, cfb) new_esEs6(Right(vxw300), Right(vxw4000), ccd, ty_Integer) -> new_esEs13(vxw300, vxw4000) new_lt18(vxw110, vxw100, cbh) -> new_esEs16(new_compare4(vxw110, vxw100, cbh), LT) new_ltEs13(vxw11, vxw10, bfc) -> new_not(new_esEs16(new_compare16(vxw11, vxw10, bfc), GT)) new_ltEs18(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs11(vxw110, vxw100) new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) new_compare30(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare6(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare19(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare14(vxw110, vxw100) -> new_compare27(vxw110, vxw100, new_esEs16(vxw110, vxw100)) new_lt20(vxw111, vxw101, ty_@0) -> new_lt16(vxw111, vxw101) new_esEs23(vxw110, vxw100, ty_Ordering) -> new_esEs16(vxw110, vxw100) new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs8(vxw300, vxw4000) new_ltEs10(vxw111, vxw101, ty_Ordering) -> new_ltEs6(vxw111, vxw101) new_ltEs20(vxw11, vxw10, ty_Ordering) -> new_ltEs6(vxw11, vxw10) new_compare12(vxw110, vxw100, True) -> LT new_compare31(vxw110, vxw100, app(ty_Maybe, dfg)) -> new_compare9(vxw110, vxw100, dfg) new_esEs22(vxw302, vxw4002, ty_Char) -> new_esEs14(vxw302, vxw4002) new_compare15(vxw110, vxw100, False, bbf, bbg) -> GT new_esEs15(:%(vxw300, vxw301), :%(vxw4000, vxw4001), dg) -> new_asAs(new_esEs18(vxw300, vxw4000, dg), new_esEs19(vxw301, vxw4001, dg)) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs4(vxw110, vxw100, bhd, bhe, bhf) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vxw20, vxw19, ty_Bool) -> new_ltEs5(vxw20, vxw19) new_ltEs16(Right(vxw110), Right(vxw100), bfg, app(ty_[], cae)) -> new_ltEs8(vxw110, vxw100, cae) new_lt20(vxw111, vxw101, ty_Double) -> new_lt4(vxw111, vxw101) new_lt20(vxw111, vxw101, app(ty_Maybe, cfa)) -> new_lt6(vxw111, vxw101, cfa) new_esEs6(Left(vxw300), Left(vxw4000), ty_Double, cce) -> new_esEs17(vxw300, vxw4000) new_ltEs16(Left(vxw110), Left(vxw100), app(ty_Ratio, bgg), bfh) -> new_ltEs13(vxw110, vxw100, bgg) new_ltEs15(vxw11, vxw10) -> new_not(new_esEs16(new_compare29(vxw11, vxw10), GT)) new_esEs23(vxw110, vxw100, ty_Float) -> new_esEs10(vxw110, vxw100) new_compare110(vxw110, vxw100, False, fb, fc) -> GT new_esEs28(vxw300, vxw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs6(vxw300, vxw4000, dbg, dbh) new_compare17(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) new_primEqNat0(Zero, Zero) -> True new_esEs25(vxw111, vxw101, ty_Int) -> new_esEs8(vxw111, vxw101) new_compare13(vxw110, vxw100, False) -> GT new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs14(vxw301, vxw4001) new_ltEs16(Right(vxw110), Right(vxw100), bfg, ty_Int) -> new_ltEs12(vxw110, vxw100) new_ltEs21(vxw20, vxw19, ty_Ordering) -> new_ltEs6(vxw20, vxw19) new_esEs11([], [], ccc) -> True new_esEs29(vxw30, vxw400, app(app(ty_@2, cca), ccb)) -> new_esEs5(vxw30, vxw400, cca, ccb) new_esEs10(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs8(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_compare16(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare19(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) new_ltEs21(vxw20, vxw19, ty_Char) -> new_ltEs11(vxw20, vxw19) new_lt20(vxw111, vxw101, app(app(ty_Either, ceg), ceh)) -> new_lt5(vxw111, vxw101, ceg, ceh) new_lt8(vxw110, vxw100, ty_Char) -> new_lt9(vxw110, vxw100) new_esEs30(vxw30, vxw400, app(ty_[], ee)) -> new_esEs11(vxw30, vxw400, ee) new_esEs22(vxw302, vxw4002, ty_Ordering) -> new_esEs16(vxw302, vxw4002) new_asAs(False, vxw59) -> False new_compare31(vxw110, vxw100, app(app(ty_@2, dfb), dfc)) -> new_compare8(vxw110, vxw100, dfb, dfc) new_ltEs20(vxw11, vxw10, ty_Bool) -> new_ltEs5(vxw11, vxw10) new_ltEs9(@2(vxw110, vxw111), @2(vxw100, vxw101), bce, bcf) -> new_pePe(new_lt8(vxw110, vxw100, bce), new_asAs(new_esEs23(vxw110, vxw100, bce), new_ltEs10(vxw111, vxw101, bcf))) new_lt8(vxw110, vxw100, app(app(ty_@2, bdb), bdc)) -> new_lt7(vxw110, vxw100, bdb, bdc) new_esEs22(vxw302, vxw4002, ty_Float) -> new_esEs10(vxw302, vxw4002) new_ltEs20(vxw11, vxw10, ty_Float) -> new_ltEs17(vxw11, vxw10) new_esEs28(vxw300, vxw4000, app(ty_Ratio, dca)) -> new_esEs15(vxw300, vxw4000, dca) new_lt19(vxw110, vxw100, app(ty_[], cbh)) -> new_lt18(vxw110, vxw100, cbh) new_esEs29(vxw30, vxw400, app(ty_Maybe, cc)) -> new_esEs7(vxw30, vxw400, cc) new_ltEs20(vxw11, vxw10, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs4(vxw11, vxw10, bfd, bfe, bff) new_compare27(vxw110, vxw100, True) -> EQ new_compare210(vxw110, vxw100, False, bcc) -> new_compare111(vxw110, vxw100, new_ltEs18(vxw110, vxw100, bcc), bcc) new_ltEs6(GT, LT) -> False new_ltEs18(Just(vxw110), Just(vxw100), app(ty_[], cbg)) -> new_ltEs8(vxw110, vxw100, cbg) new_ltEs19(vxw112, vxw102, ty_Float) -> new_ltEs17(vxw112, vxw102) new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs9(vxw301, vxw4001) new_ltEs10(vxw111, vxw101, ty_Char) -> new_ltEs11(vxw111, vxw101) The set Q consists of the following terms: new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare111(x0, x1, False, x2) new_compare110(x0, x1, True, x2, x3) new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, True) new_compare31(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(Just(x0), Just(x1), ty_Char) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, ty_Float) new_compare31(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs13(x0, x1, x2) new_ltEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), ty_Int) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs6(LT, LT) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare210(x0, x1, True, x2) new_esEs29(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(@0, @0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_esEs30(x0, x1, ty_Int) new_ltEs18(Nothing, Nothing, x0) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(Just(x0), Just(x1), ty_Ordering) new_compare12(x0, x1, True) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs5(False, True) new_ltEs5(True, False) new_compare10(x0, x1, True, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(EQ, EQ) new_esEs29(x0, x1, ty_Float) new_compare31(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_lt8(x0, x1, ty_Int) new_esEs12(False, True) new_esEs12(True, False) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, ty_Ordering) new_compare31(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), Zero) new_lt7(x0, x1, x2, x3) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_ltEs21(x0, x1, ty_Double) new_compare31(x0, x1, ty_Ordering) new_sr(x0, x1) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs11([], :(x0, x1), x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt12(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_lt8(x0, x1, ty_Char) new_lt8(x0, x1, ty_Double) new_compare17(Char(x0), Char(x1)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs20(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs8(x0, x1) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs25(x0, x1, ty_Float) new_ltEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(@0, @0) new_esEs22(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux0(x0, GT) new_esEs14(Char(x0), Char(x1)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs28(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs7(Just(x0), Nothing, x1) new_esEs16(LT, GT) new_esEs16(GT, LT) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt10(x0, x1) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_lt9(x0, x1) new_compare4([], [], x0) new_esEs25(x0, x1, ty_Int) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_asAs(False, x0) new_esEs28(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare15(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_@0) new_compare4(:(x0, x1), [], x2) new_ltEs19(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(Just(x0), Just(x1), ty_Integer) new_compare111(x0, x1, True, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs27(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_compare7(x0, x1, x2, x3) new_ltEs6(LT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs6(GT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs7(Nothing, Just(x0), x1) new_esEs23(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Char) new_ltEs5(True, True) new_lt18(x0, x1, x2) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_@0) new_esEs16(EQ, GT) new_esEs16(GT, EQ) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs10(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_lt8(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_compare210(x0, x1, False, x2) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_compare13(x0, x1, True) new_esEs22(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), ty_Bool) new_lt4(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1) new_compare110(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs27(x0, x1, ty_Char) new_compare23(x0, x1, False, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Char) new_ltEs8(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs25(x0, x1, ty_@0) new_compare27(x0, x1, True) new_primMulNat0(Zero, Zero) new_esEs20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_@0) new_ltEs15(x0, x1) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs17(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Double) new_primMulInt(Pos(x0), Pos(x1)) new_compare28(Integer(x0), Integer(x1)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCmpNat0(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(EQ, EQ) new_ltEs19(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs10(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_esEs11(:(x0, x1), [], x2) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs24(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Char) new_ltEs10(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_ltEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1) new_lt8(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs18(Just(x0), Just(x1), ty_Float) new_primPlusNat0(Zero, Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(x0, x1, x2) new_esEs20(x0, x1, ty_@0) new_lt6(x0, x1, x2) new_not(True) new_esEs29(x0, x1, ty_Ordering) new_lt17(x0, x1) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_esEs12(False, False) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt15(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs10(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, False) new_ltEs21(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs18(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Ordering) new_primCompAux0(x0, LT) new_ltEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Integer) new_lt8(x0, x1, ty_@0) new_esEs17(Double(x0, x1), Double(x2, x3)) new_ltEs21(x0, x1, ty_@0) new_ltEs11(x0, x1) new_compare18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs10(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, False, x2, x3, x4) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare19(x0, x1) new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_compare4([], :(x0, x1), x2) new_ltEs10(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, False) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(Float(x0, x1), Float(x2, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_compare23(x0, x1, True, x2, x3) new_compare25(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, GT) new_esEs22(x0, x1, ty_Double) new_compare26(x0, x1, False) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare4(:(x0, x1), :(x2, x3), x4) new_lt8(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs18(Just(x0), Nothing, x1) new_compare8(x0, x1, x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs11([], [], x0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs24(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_lt13(x0, x1, x2) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt14(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_ltEs10(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_compare13(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs10(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs13(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_primCompAux0(x0, EQ) new_primEqNat0(Zero, Zero) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Int) new_esEs12(True, True) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs21(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_not(False) new_esEs16(LT, LT) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Float) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Nothing, Just(x0), x1) new_ltEs18(Just(x0), Just(x1), ty_@0) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs18(Just(x0), Just(x1), ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs12(x0, x1) new_esEs21(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt8(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_@0) new_lt11(x0, x1, x2, x3, x4) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs10(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, True, x2, x3) new_primPlusNat1(Zero, x0) new_esEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Integer) new_esEs16(LT, EQ) new_esEs16(EQ, LT) new_compare31(x0, x1, ty_Float) new_asAs(True, x0) new_esEs23(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs16(GT, GT) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_insertBy0(vxw10, vxw11, vxw12, False, ba, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, ba), ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 5 >= 5, 6 >= 6 *new_insertBy00(vxw28, vxw29, vxw30, False, bc, bd) -> new_insertBy(Left(vxw29), vxw30, bc, bd) The graph contains the following edges 3 >= 2, 5 >= 3, 6 >= 4 *new_insertBy(Left(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, be), be, bf) The graph contains the following edges 2 > 1, 1 > 2, 2 > 3, 3 >= 5, 4 >= 6 ---------------------------------------- (32) YES ---------------------------------------- (33) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vxw6900), Succ(vxw4000000)) -> new_primPlusNat(vxw6900, vxw4000000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (34) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vxw6900), Succ(vxw4000000)) -> new_primPlusNat(vxw6900, vxw4000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (35) YES ---------------------------------------- (36) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (37) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (38) YES ---------------------------------------- (39) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Left(vxw300), Left(vxw4000), app(ty_Maybe, bbh), bbb) -> new_esEs3(vxw300, vxw4000, bbh) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(ty_[], ed)) -> new_esEs1(vxw302, vxw4002, ed) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bae)) -> new_esEs3(vxw300, vxw4000, bae) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs(vxw302, vxw4002, dg, dh, ea) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, gb), fc) -> new_esEs3(vxw300, vxw4000, gb) new_esEs2(Right(vxw300), Right(vxw4000), bca, app(app(ty_@2, bce), bcf)) -> new_esEs0(vxw300, vxw4000, bce, bcf) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(app(ty_@2, da), db), be) -> new_esEs0(vxw301, vxw4001, da, db) new_esEs2(Right(vxw300), Right(vxw4000), bca, app(app(ty_Either, bch), bda)) -> new_esEs2(vxw300, vxw4000, bch, bda) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bh), bd, be) -> new_esEs1(vxw300, vxw4000, bh) new_esEs3(Just(vxw300), Just(vxw4000), app(app(ty_Either, bea), beb)) -> new_esEs2(vxw300, vxw4000, bea, beb) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, eh), fa), fb), fc) -> new_esEs(vxw300, vxw4000, eh, fa, fb) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(app(ty_@2, gg), gh)) -> new_esEs0(vxw301, vxw4001, gg, gh) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(ty_Maybe, hd)) -> new_esEs3(vxw301, vxw4001, hd) new_esEs2(Left(vxw300), Left(vxw4000), app(ty_[], bbe), bbb) -> new_esEs1(vxw300, vxw4000, bbe) new_esEs2(Right(vxw300), Right(vxw4000), bca, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs(vxw300, vxw4000, bcb, bcc, bcd) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(ty_[], dc), be) -> new_esEs1(vxw301, vxw4001, dc) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(app(ty_Either, hb), hc)) -> new_esEs2(vxw301, vxw4001, hb, hc) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vxw300, vxw4000, he, hf, hg) new_esEs3(Just(vxw300), Just(vxw4000), app(ty_Maybe, bec)) -> new_esEs3(vxw300, vxw4000, bec) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], fg), fc) -> new_esEs1(vxw300, vxw4000, fg) new_esEs3(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(vxw300, vxw4000, bdc, bdd, bde) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, bac), bad)) -> new_esEs2(vxw300, vxw4000, bac, bad) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(app(app(ty_@3, ce), cf), cg), be) -> new_esEs(vxw301, vxw4001, ce, cf, cg) new_esEs3(Just(vxw300), Just(vxw4000), app(ty_[], bdh)) -> new_esEs1(vxw300, vxw4000, bdh) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(app(ty_Either, ee), ef)) -> new_esEs2(vxw302, vxw4002, ee, ef) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(ty_[], ha)) -> new_esEs1(vxw301, vxw4001, ha) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(app(ty_@2, eb), ec)) -> new_esEs0(vxw302, vxw4002, eb, ec) new_esEs2(Left(vxw300), Left(vxw4000), app(app(ty_Either, bbf), bbg), bbb) -> new_esEs2(vxw300, vxw4000, bbf, bbg) new_esEs2(Right(vxw300), Right(vxw4000), bca, app(ty_[], bcg)) -> new_esEs1(vxw300, vxw4000, bcg) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, hh), baa)) -> new_esEs0(vxw300, vxw4000, hh, baa) new_esEs3(Just(vxw300), Just(vxw4000), app(app(ty_@2, bdf), bdg)) -> new_esEs0(vxw300, vxw4000, bdf, bdg) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(app(ty_Either, dd), de), be) -> new_esEs2(vxw301, vxw4001, dd, de) new_esEs2(Right(vxw300), Right(vxw4000), bca, app(ty_Maybe, bdb)) -> new_esEs3(vxw300, vxw4000, bdb) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), baf) -> new_esEs1(vxw301, vxw4001, baf) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, ba), bb), bc), bd, be) -> new_esEs(vxw300, vxw4000, ba, bb, bc) new_esEs2(Left(vxw300), Left(vxw4000), app(app(ty_@2, bbc), bbd), bbb) -> new_esEs0(vxw300, vxw4000, bbc, bbd) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bab)) -> new_esEs1(vxw300, vxw4000, bab) new_esEs2(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bag), bah), bba), bbb) -> new_esEs(vxw300, vxw4000, bag, bah, bba) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(ty_Maybe, eg)) -> new_esEs3(vxw302, vxw4002, eg) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, ca), cb), bd, be) -> new_esEs2(vxw300, vxw4000, ca, cb) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(ty_Maybe, df), be) -> new_esEs3(vxw301, vxw4001, df) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, fd), ff), fc) -> new_esEs0(vxw300, vxw4000, fd, ff) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, fh), ga), fc) -> new_esEs2(vxw300, vxw4000, fh, ga) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, bf), bg), bd, be) -> new_esEs0(vxw300, vxw4000, bf, bg) new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs(vxw301, vxw4001, gd, ge, gf) new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, cc), bd, be) -> new_esEs3(vxw300, vxw4000, cc) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (40) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_esEs3(Just(vxw300), Just(vxw4000), app(app(ty_Either, bea), beb)) -> new_esEs2(vxw300, vxw4000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(vxw300, vxw4000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, bac), bad)) -> new_esEs2(vxw300, vxw4000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vxw300, vxw4000, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(vxw300), Just(vxw4000), app(ty_[], bdh)) -> new_esEs1(vxw300, vxw4000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(vxw300), Just(vxw4000), app(app(ty_@2, bdf), bdg)) -> new_esEs0(vxw300, vxw4000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vxw300), Just(vxw4000), app(ty_Maybe, bec)) -> new_esEs3(vxw300, vxw4000, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, hh), baa)) -> new_esEs0(vxw300, vxw4000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bae)) -> new_esEs3(vxw300, vxw4000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(app(ty_Either, ee), ef)) -> new_esEs2(vxw302, vxw4002, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(app(ty_Either, dd), de), be) -> new_esEs2(vxw301, vxw4001, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, ca), cb), bd, be) -> new_esEs2(vxw300, vxw4000, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(app(ty_Either, hb), hc)) -> new_esEs2(vxw301, vxw4001, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, fh), ga), fc) -> new_esEs2(vxw300, vxw4000, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Right(vxw300), Right(vxw4000), bca, app(app(ty_Either, bch), bda)) -> new_esEs2(vxw300, vxw4000, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(vxw300), Left(vxw4000), app(app(ty_Either, bbf), bbg), bbb) -> new_esEs2(vxw300, vxw4000, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), baf) -> new_esEs1(vxw301, vxw4001, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bab)) -> new_esEs1(vxw300, vxw4000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs(vxw302, vxw4002, dg, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(app(app(ty_@3, ce), cf), cg), be) -> new_esEs(vxw301, vxw4001, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, ba), bb), bc), bd, be) -> new_esEs(vxw300, vxw4000, ba, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, eh), fa), fb), fc) -> new_esEs(vxw300, vxw4000, eh, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs(vxw301, vxw4001, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(Right(vxw300), Right(vxw4000), bca, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs(vxw300, vxw4000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bag), bah), bba), bbb) -> new_esEs(vxw300, vxw4000, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(ty_[], ed)) -> new_esEs1(vxw302, vxw4002, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bh), bd, be) -> new_esEs1(vxw300, vxw4000, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(ty_[], dc), be) -> new_esEs1(vxw301, vxw4001, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], fg), fc) -> new_esEs1(vxw300, vxw4000, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(ty_[], ha)) -> new_esEs1(vxw301, vxw4001, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(vxw300), Left(vxw4000), app(ty_[], bbe), bbb) -> new_esEs1(vxw300, vxw4000, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(vxw300), Right(vxw4000), bca, app(ty_[], bcg)) -> new_esEs1(vxw300, vxw4000, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(app(ty_@2, da), db), be) -> new_esEs0(vxw301, vxw4001, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(app(ty_@2, eb), ec)) -> new_esEs0(vxw302, vxw4002, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, bf), bg), bd, be) -> new_esEs0(vxw300, vxw4000, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, bd, app(ty_Maybe, eg)) -> new_esEs3(vxw302, vxw4002, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cd, app(ty_Maybe, df), be) -> new_esEs3(vxw301, vxw4001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, cc), bd, be) -> new_esEs3(vxw300, vxw4000, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(app(ty_@2, gg), gh)) -> new_esEs0(vxw301, vxw4001, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, fd), ff), fc) -> new_esEs0(vxw300, vxw4000, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Right(vxw300), Right(vxw4000), bca, app(app(ty_@2, bce), bcf)) -> new_esEs0(vxw300, vxw4000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(vxw300), Left(vxw4000), app(app(ty_@2, bbc), bbd), bbb) -> new_esEs0(vxw300, vxw4000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, gb), fc) -> new_esEs3(vxw300, vxw4000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gc, app(ty_Maybe, hd)) -> new_esEs3(vxw301, vxw4001, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(vxw300), Left(vxw4000), app(ty_Maybe, bbh), bbb) -> new_esEs3(vxw300, vxw4000, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(vxw300), Right(vxw4000), bca, app(ty_Maybe, bdb)) -> new_esEs3(vxw300, vxw4000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (41) YES