/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, 0 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, 63 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (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 ---------------------------------------- (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; " "compare0 x y True = GT; " "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); " "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'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; " "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); " 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; " "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); " "reduce2D vxu vxv = gcd 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"];1723[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 1723[label="",style="solid", color="burlywood", weight=9]; 1723 -> 6[label="",style="solid", color="burlywood", weight=3]; 1724[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 1724[label="",style="solid", color="burlywood", weight=9]; 1724 -> 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"];1725[label="vxw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];11 -> 1725[label="",style="solid", color="burlywood", weight=9]; 1725 -> 12[label="",style="solid", color="burlywood", weight=3]; 1726[label="vxw3/Just vxw30",fontsize=10,color="white",style="solid",shape="box"];11 -> 1726[label="",style="solid", color="burlywood", weight=9]; 1726 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="List.insertBy0 vxw40 compare Nothing vxw41 (vxw40 : vxw41) (compare2 Nothing vxw40 (Nothing == vxw40))",fontsize=16,color="burlywood",shape="box"];1727[label="vxw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];12 -> 1727[label="",style="solid", color="burlywood", weight=9]; 1727 -> 14[label="",style="solid", color="burlywood", weight=3]; 1728[label="vxw40/Just vxw400",fontsize=10,color="white",style="solid",shape="box"];12 -> 1728[label="",style="solid", color="burlywood", weight=9]; 1728 -> 15[label="",style="solid", color="burlywood", weight=3]; 13[label="List.insertBy0 vxw40 compare (Just vxw30) vxw41 (vxw40 : vxw41) (compare2 (Just vxw30) vxw40 (Just vxw30 == vxw40))",fontsize=16,color="burlywood",shape="box"];1729[label="vxw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];13 -> 1729[label="",style="solid", color="burlywood", weight=9]; 1729 -> 16[label="",style="solid", color="burlywood", weight=3]; 1730[label="vxw40/Just vxw400",fontsize=10,color="white",style="solid",shape="box"];13 -> 1730[label="",style="solid", color="burlywood", weight=9]; 1730 -> 17[label="",style="solid", color="burlywood", weight=3]; 14[label="List.insertBy0 Nothing compare Nothing vxw41 (Nothing : vxw41) (compare2 Nothing Nothing (Nothing == Nothing))",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 15[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) (compare2 Nothing (Just vxw400) (Nothing == Just vxw400))",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 16[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare2 (Just vxw30) Nothing (Just vxw30 == Nothing))",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 17[label="List.insertBy0 (Just vxw400) compare (Just vxw30) vxw41 (Just vxw400 : vxw41) (compare2 (Just vxw30) (Just vxw400) (Just vxw30 == Just vxw400))",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 18[label="List.insertBy0 Nothing compare Nothing vxw41 (Nothing : vxw41) (compare2 Nothing Nothing True)",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 19[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) (compare2 Nothing (Just vxw400) False)",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 20[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare2 (Just vxw30) Nothing False)",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 21 -> 25[label="",style="dashed", color="red", weight=0]; 21[label="List.insertBy0 (Just vxw400) compare (Just vxw30) vxw41 (Just vxw400 : vxw41) (compare2 (Just vxw30) (Just vxw400) (vxw30 == vxw400))",fontsize=16,color="magenta"];21 -> 26[label="",style="dashed", color="magenta", weight=3]; 21 -> 27[label="",style="dashed", color="magenta", weight=3]; 21 -> 28[label="",style="dashed", color="magenta", weight=3]; 21 -> 29[label="",style="dashed", color="magenta", weight=3]; 22[label="List.insertBy0 Nothing compare Nothing vxw41 (Nothing : vxw41) EQ",fontsize=16,color="black",shape="box"];22 -> 30[label="",style="solid", color="black", weight=3]; 23[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) (compare1 Nothing (Just vxw400) (Nothing <= Just vxw400))",fontsize=16,color="black",shape="box"];23 -> 31[label="",style="solid", color="black", weight=3]; 24[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare1 (Just vxw30) Nothing (Just vxw30 <= Nothing))",fontsize=16,color="black",shape="box"];24 -> 32[label="",style="solid", color="black", weight=3]; 26[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];1731[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1731[label="",style="solid", color="blue", weight=9]; 1731 -> 33[label="",style="solid", color="blue", weight=3]; 1732[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1732[label="",style="solid", color="blue", weight=9]; 1732 -> 34[label="",style="solid", color="blue", weight=3]; 1733[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1733[label="",style="solid", color="blue", weight=9]; 1733 -> 35[label="",style="solid", color="blue", weight=3]; 1734[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1734[label="",style="solid", color="blue", weight=9]; 1734 -> 36[label="",style="solid", color="blue", weight=3]; 1735[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1735[label="",style="solid", color="blue", weight=9]; 1735 -> 37[label="",style="solid", color="blue", weight=3]; 1736[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1736[label="",style="solid", color="blue", weight=9]; 1736 -> 38[label="",style="solid", color="blue", weight=3]; 1737[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1737[label="",style="solid", color="blue", weight=9]; 1737 -> 39[label="",style="solid", color="blue", weight=3]; 1738[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1738[label="",style="solid", color="blue", weight=9]; 1738 -> 40[label="",style="solid", color="blue", weight=3]; 1739[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1739[label="",style="solid", color="blue", weight=9]; 1739 -> 41[label="",style="solid", color="blue", weight=3]; 1740[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1740[label="",style="solid", color="blue", weight=9]; 1740 -> 42[label="",style="solid", color="blue", weight=3]; 1741[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1741[label="",style="solid", color="blue", weight=9]; 1741 -> 43[label="",style="solid", color="blue", weight=3]; 1742[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1742[label="",style="solid", color="blue", weight=9]; 1742 -> 44[label="",style="solid", color="blue", weight=3]; 1743[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1743[label="",style="solid", color="blue", weight=9]; 1743 -> 45[label="",style="solid", color="blue", weight=3]; 1744[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1744[label="",style="solid", color="blue", weight=9]; 1744 -> 46[label="",style="solid", color="blue", weight=3]; 27[label="vxw41",fontsize=16,color="green",shape="box"];28[label="vxw30",fontsize=16,color="green",shape="box"];29[label="vxw400",fontsize=16,color="green",shape="box"];25[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) (compare2 (Just vxw11) (Just vxw10) vxw13)",fontsize=16,color="burlywood",shape="triangle"];1745[label="vxw13/False",fontsize=10,color="white",style="solid",shape="box"];25 -> 1745[label="",style="solid", color="burlywood", weight=9]; 1745 -> 47[label="",style="solid", color="burlywood", weight=3]; 1746[label="vxw13/True",fontsize=10,color="white",style="solid",shape="box"];25 -> 1746[label="",style="solid", color="burlywood", weight=9]; 1746 -> 48[label="",style="solid", color="burlywood", weight=3]; 30[label="Nothing : Nothing : vxw41",fontsize=16,color="green",shape="box"];31[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) (compare1 Nothing (Just vxw400) True)",fontsize=16,color="black",shape="box"];31 -> 49[label="",style="solid", color="black", weight=3]; 32[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare1 (Just vxw30) Nothing False)",fontsize=16,color="black",shape="box"];32 -> 50[label="",style="solid", color="black", weight=3]; 33[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];33 -> 51[label="",style="solid", color="black", weight=3]; 34[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1747[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];34 -> 1747[label="",style="solid", color="burlywood", weight=9]; 1747 -> 52[label="",style="solid", color="burlywood", weight=3]; 1748[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];34 -> 1748[label="",style="solid", color="burlywood", weight=9]; 1748 -> 53[label="",style="solid", color="burlywood", weight=3]; 35[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1749[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];35 -> 1749[label="",style="solid", color="burlywood", weight=9]; 1749 -> 54[label="",style="solid", color="burlywood", weight=3]; 1750[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];35 -> 1750[label="",style="solid", color="burlywood", weight=9]; 1750 -> 55[label="",style="solid", color="burlywood", weight=3]; 36[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1751[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];36 -> 1751[label="",style="solid", color="burlywood", weight=9]; 1751 -> 56[label="",style="solid", color="burlywood", weight=3]; 37[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1752[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];37 -> 1752[label="",style="solid", color="burlywood", weight=9]; 1752 -> 57[label="",style="solid", color="burlywood", weight=3]; 38[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1753[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];38 -> 1753[label="",style="solid", color="burlywood", weight=9]; 1753 -> 58[label="",style="solid", color="burlywood", weight=3]; 1754[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];38 -> 1754[label="",style="solid", color="burlywood", weight=9]; 1754 -> 59[label="",style="solid", color="burlywood", weight=3]; 39[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1755[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];39 -> 1755[label="",style="solid", color="burlywood", weight=9]; 1755 -> 60[label="",style="solid", color="burlywood", weight=3]; 40[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1756[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];40 -> 1756[label="",style="solid", color="burlywood", weight=9]; 1756 -> 61[label="",style="solid", color="burlywood", weight=3]; 1757[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];40 -> 1757[label="",style="solid", color="burlywood", weight=9]; 1757 -> 62[label="",style="solid", color="burlywood", weight=3]; 41[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];41 -> 63[label="",style="solid", color="black", weight=3]; 42[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];42 -> 64[label="",style="solid", color="black", weight=3]; 43[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1758[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];43 -> 1758[label="",style="solid", color="burlywood", weight=9]; 1758 -> 65[label="",style="solid", color="burlywood", weight=3]; 1759[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];43 -> 1759[label="",style="solid", color="burlywood", weight=9]; 1759 -> 66[label="",style="solid", color="burlywood", weight=3]; 1760[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];43 -> 1760[label="",style="solid", color="burlywood", weight=9]; 1760 -> 67[label="",style="solid", color="burlywood", weight=3]; 44[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1761[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];44 -> 1761[label="",style="solid", color="burlywood", weight=9]; 1761 -> 68[label="",style="solid", color="burlywood", weight=3]; 45[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];45 -> 69[label="",style="solid", color="black", weight=3]; 46[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1762[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];46 -> 1762[label="",style="solid", color="burlywood", weight=9]; 1762 -> 70[label="",style="solid", color="burlywood", weight=3]; 47[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) (compare2 (Just vxw11) (Just vxw10) False)",fontsize=16,color="black",shape="box"];47 -> 71[label="",style="solid", color="black", weight=3]; 48[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) (compare2 (Just vxw11) (Just vxw10) True)",fontsize=16,color="black",shape="box"];48 -> 72[label="",style="solid", color="black", weight=3]; 49[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) LT",fontsize=16,color="black",shape="box"];49 -> 73[label="",style="solid", color="black", weight=3]; 50[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare0 (Just vxw30) Nothing otherwise)",fontsize=16,color="black",shape="box"];50 -> 74[label="",style="solid", color="black", weight=3]; 51[label="primEqInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];1763[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];51 -> 1763[label="",style="solid", color="burlywood", weight=9]; 1763 -> 75[label="",style="solid", color="burlywood", weight=3]; 1764[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];51 -> 1764[label="",style="solid", color="burlywood", weight=9]; 1764 -> 76[label="",style="solid", color="burlywood", weight=3]; 52[label="Nothing == vxw400",fontsize=16,color="burlywood",shape="box"];1765[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];52 -> 1765[label="",style="solid", color="burlywood", weight=9]; 1765 -> 77[label="",style="solid", color="burlywood", weight=3]; 1766[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];52 -> 1766[label="",style="solid", color="burlywood", weight=9]; 1766 -> 78[label="",style="solid", color="burlywood", weight=3]; 53[label="Just vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1767[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];53 -> 1767[label="",style="solid", color="burlywood", weight=9]; 1767 -> 79[label="",style="solid", color="burlywood", weight=3]; 1768[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];53 -> 1768[label="",style="solid", color="burlywood", weight=9]; 1768 -> 80[label="",style="solid", color="burlywood", weight=3]; 54[label="Left vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1769[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];54 -> 1769[label="",style="solid", color="burlywood", weight=9]; 1769 -> 81[label="",style="solid", color="burlywood", weight=3]; 1770[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];54 -> 1770[label="",style="solid", color="burlywood", weight=9]; 1770 -> 82[label="",style="solid", color="burlywood", weight=3]; 55[label="Right vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1771[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];55 -> 1771[label="",style="solid", color="burlywood", weight=9]; 1771 -> 83[label="",style="solid", color="burlywood", weight=3]; 1772[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];55 -> 1772[label="",style="solid", color="burlywood", weight=9]; 1772 -> 84[label="",style="solid", color="burlywood", weight=3]; 56[label="Integer vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1773[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];56 -> 1773[label="",style="solid", color="burlywood", weight=9]; 1773 -> 85[label="",style="solid", color="burlywood", weight=3]; 57[label="(vxw300,vxw301) == vxw400",fontsize=16,color="burlywood",shape="box"];1774[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];57 -> 1774[label="",style="solid", color="burlywood", weight=9]; 1774 -> 86[label="",style="solid", color="burlywood", weight=3]; 58[label="vxw300 : vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];1775[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];58 -> 1775[label="",style="solid", color="burlywood", weight=9]; 1775 -> 87[label="",style="solid", color="burlywood", weight=3]; 1776[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];58 -> 1776[label="",style="solid", color="burlywood", weight=9]; 1776 -> 88[label="",style="solid", color="burlywood", weight=3]; 59[label="[] == vxw400",fontsize=16,color="burlywood",shape="box"];1777[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];59 -> 1777[label="",style="solid", color="burlywood", weight=9]; 1777 -> 89[label="",style="solid", color="burlywood", weight=3]; 1778[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];59 -> 1778[label="",style="solid", color="burlywood", weight=9]; 1778 -> 90[label="",style="solid", color="burlywood", weight=3]; 60[label="vxw300 :% vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];1779[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];60 -> 1779[label="",style="solid", color="burlywood", weight=9]; 1779 -> 91[label="",style="solid", color="burlywood", weight=3]; 61[label="False == vxw400",fontsize=16,color="burlywood",shape="box"];1780[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];61 -> 1780[label="",style="solid", color="burlywood", weight=9]; 1780 -> 92[label="",style="solid", color="burlywood", weight=3]; 1781[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];61 -> 1781[label="",style="solid", color="burlywood", weight=9]; 1781 -> 93[label="",style="solid", color="burlywood", weight=3]; 62[label="True == vxw400",fontsize=16,color="burlywood",shape="box"];1782[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];62 -> 1782[label="",style="solid", color="burlywood", weight=9]; 1782 -> 94[label="",style="solid", color="burlywood", weight=3]; 1783[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];62 -> 1783[label="",style="solid", color="burlywood", weight=9]; 1783 -> 95[label="",style="solid", color="burlywood", weight=3]; 63[label="primEqChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1784[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];63 -> 1784[label="",style="solid", color="burlywood", weight=9]; 1784 -> 96[label="",style="solid", color="burlywood", weight=3]; 64[label="primEqFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1785[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];64 -> 1785[label="",style="solid", color="burlywood", weight=9]; 1785 -> 97[label="",style="solid", color="burlywood", weight=3]; 65[label="LT == vxw400",fontsize=16,color="burlywood",shape="box"];1786[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];65 -> 1786[label="",style="solid", color="burlywood", weight=9]; 1786 -> 98[label="",style="solid", color="burlywood", weight=3]; 1787[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];65 -> 1787[label="",style="solid", color="burlywood", weight=9]; 1787 -> 99[label="",style="solid", color="burlywood", weight=3]; 1788[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];65 -> 1788[label="",style="solid", color="burlywood", weight=9]; 1788 -> 100[label="",style="solid", color="burlywood", weight=3]; 66[label="EQ == vxw400",fontsize=16,color="burlywood",shape="box"];1789[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];66 -> 1789[label="",style="solid", color="burlywood", weight=9]; 1789 -> 101[label="",style="solid", color="burlywood", weight=3]; 1790[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];66 -> 1790[label="",style="solid", color="burlywood", weight=9]; 1790 -> 102[label="",style="solid", color="burlywood", weight=3]; 1791[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];66 -> 1791[label="",style="solid", color="burlywood", weight=9]; 1791 -> 103[label="",style="solid", color="burlywood", weight=3]; 67[label="GT == vxw400",fontsize=16,color="burlywood",shape="box"];1792[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];67 -> 1792[label="",style="solid", color="burlywood", weight=9]; 1792 -> 104[label="",style="solid", color="burlywood", weight=3]; 1793[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];67 -> 1793[label="",style="solid", color="burlywood", weight=9]; 1793 -> 105[label="",style="solid", color="burlywood", weight=3]; 1794[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];67 -> 1794[label="",style="solid", color="burlywood", weight=9]; 1794 -> 106[label="",style="solid", color="burlywood", weight=3]; 68[label="(vxw300,vxw301,vxw302) == vxw400",fontsize=16,color="burlywood",shape="box"];1795[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];68 -> 1795[label="",style="solid", color="burlywood", weight=9]; 1795 -> 107[label="",style="solid", color="burlywood", weight=3]; 69[label="primEqDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1796[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];69 -> 1796[label="",style="solid", color="burlywood", weight=9]; 1796 -> 108[label="",style="solid", color="burlywood", weight=3]; 70[label="() == vxw400",fontsize=16,color="burlywood",shape="box"];1797[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];70 -> 1797[label="",style="solid", color="burlywood", weight=9]; 1797 -> 109[label="",style="solid", color="burlywood", weight=3]; 71 -> 150[label="",style="dashed", color="red", weight=0]; 71[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) (compare1 (Just vxw11) (Just vxw10) (Just vxw11 <= Just vxw10))",fontsize=16,color="magenta"];71 -> 151[label="",style="dashed", color="magenta", weight=3]; 71 -> 152[label="",style="dashed", color="magenta", weight=3]; 71 -> 153[label="",style="dashed", color="magenta", weight=3]; 71 -> 154[label="",style="dashed", color="magenta", weight=3]; 72[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) EQ",fontsize=16,color="black",shape="box"];72 -> 111[label="",style="solid", color="black", weight=3]; 73[label="Nothing : Just vxw400 : vxw41",fontsize=16,color="green",shape="box"];74[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare0 (Just vxw30) Nothing True)",fontsize=16,color="black",shape="box"];74 -> 112[label="",style="solid", color="black", weight=3]; 75[label="primEqInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1798[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];75 -> 1798[label="",style="solid", color="burlywood", weight=9]; 1798 -> 113[label="",style="solid", color="burlywood", weight=3]; 1799[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];75 -> 1799[label="",style="solid", color="burlywood", weight=9]; 1799 -> 114[label="",style="solid", color="burlywood", weight=3]; 76[label="primEqInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1800[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];76 -> 1800[label="",style="solid", color="burlywood", weight=9]; 1800 -> 115[label="",style="solid", color="burlywood", weight=3]; 1801[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];76 -> 1801[label="",style="solid", color="burlywood", weight=9]; 1801 -> 116[label="",style="solid", color="burlywood", weight=3]; 77[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];77 -> 117[label="",style="solid", color="black", weight=3]; 78[label="Nothing == Just vxw4000",fontsize=16,color="black",shape="box"];78 -> 118[label="",style="solid", color="black", weight=3]; 79[label="Just vxw300 == Nothing",fontsize=16,color="black",shape="box"];79 -> 119[label="",style="solid", color="black", weight=3]; 80[label="Just vxw300 == Just vxw4000",fontsize=16,color="black",shape="box"];80 -> 120[label="",style="solid", color="black", weight=3]; 81[label="Left vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];81 -> 121[label="",style="solid", color="black", weight=3]; 82[label="Left vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];82 -> 122[label="",style="solid", color="black", weight=3]; 83[label="Right vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];83 -> 123[label="",style="solid", color="black", weight=3]; 84[label="Right vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];84 -> 124[label="",style="solid", color="black", weight=3]; 85[label="Integer vxw300 == Integer vxw4000",fontsize=16,color="black",shape="box"];85 -> 125[label="",style="solid", color="black", weight=3]; 86[label="(vxw300,vxw301) == (vxw4000,vxw4001)",fontsize=16,color="black",shape="box"];86 -> 126[label="",style="solid", color="black", weight=3]; 87[label="vxw300 : vxw301 == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];87 -> 127[label="",style="solid", color="black", weight=3]; 88[label="vxw300 : vxw301 == []",fontsize=16,color="black",shape="box"];88 -> 128[label="",style="solid", color="black", weight=3]; 89[label="[] == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];89 -> 129[label="",style="solid", color="black", weight=3]; 90[label="[] == []",fontsize=16,color="black",shape="box"];90 -> 130[label="",style="solid", color="black", weight=3]; 91[label="vxw300 :% vxw301 == vxw4000 :% vxw4001",fontsize=16,color="black",shape="box"];91 -> 131[label="",style="solid", color="black", weight=3]; 92[label="False == False",fontsize=16,color="black",shape="box"];92 -> 132[label="",style="solid", color="black", weight=3]; 93[label="False == True",fontsize=16,color="black",shape="box"];93 -> 133[label="",style="solid", color="black", weight=3]; 94[label="True == False",fontsize=16,color="black",shape="box"];94 -> 134[label="",style="solid", color="black", weight=3]; 95[label="True == True",fontsize=16,color="black",shape="box"];95 -> 135[label="",style="solid", color="black", weight=3]; 96[label="primEqChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1802[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];96 -> 1802[label="",style="solid", color="burlywood", weight=9]; 1802 -> 136[label="",style="solid", color="burlywood", weight=3]; 97[label="primEqFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];1803[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];97 -> 1803[label="",style="solid", color="burlywood", weight=9]; 1803 -> 137[label="",style="solid", color="burlywood", weight=3]; 98[label="LT == LT",fontsize=16,color="black",shape="box"];98 -> 138[label="",style="solid", color="black", weight=3]; 99[label="LT == EQ",fontsize=16,color="black",shape="box"];99 -> 139[label="",style="solid", color="black", weight=3]; 100[label="LT == GT",fontsize=16,color="black",shape="box"];100 -> 140[label="",style="solid", color="black", weight=3]; 101[label="EQ == LT",fontsize=16,color="black",shape="box"];101 -> 141[label="",style="solid", color="black", weight=3]; 102[label="EQ == EQ",fontsize=16,color="black",shape="box"];102 -> 142[label="",style="solid", color="black", weight=3]; 103[label="EQ == GT",fontsize=16,color="black",shape="box"];103 -> 143[label="",style="solid", color="black", weight=3]; 104[label="GT == LT",fontsize=16,color="black",shape="box"];104 -> 144[label="",style="solid", color="black", weight=3]; 105[label="GT == EQ",fontsize=16,color="black",shape="box"];105 -> 145[label="",style="solid", color="black", weight=3]; 106[label="GT == GT",fontsize=16,color="black",shape="box"];106 -> 146[label="",style="solid", color="black", weight=3]; 107[label="(vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002)",fontsize=16,color="black",shape="box"];107 -> 147[label="",style="solid", color="black", weight=3]; 108[label="primEqDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];1804[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];108 -> 1804[label="",style="solid", color="burlywood", weight=9]; 1804 -> 148[label="",style="solid", color="burlywood", weight=3]; 109[label="() == ()",fontsize=16,color="black",shape="box"];109 -> 149[label="",style="solid", color="black", weight=3]; 151[label="vxw10",fontsize=16,color="green",shape="box"];152[label="vxw11",fontsize=16,color="green",shape="box"];153[label="vxw12",fontsize=16,color="green",shape="box"];154[label="Just vxw11 <= Just vxw10",fontsize=16,color="black",shape="box"];154 -> 159[label="",style="solid", color="black", weight=3]; 150[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare1 (Just vxw20) (Just vxw19) vxw22)",fontsize=16,color="burlywood",shape="triangle"];1805[label="vxw22/False",fontsize=10,color="white",style="solid",shape="box"];150 -> 1805[label="",style="solid", color="burlywood", weight=9]; 1805 -> 160[label="",style="solid", color="burlywood", weight=3]; 1806[label="vxw22/True",fontsize=10,color="white",style="solid",shape="box"];150 -> 1806[label="",style="solid", color="burlywood", weight=9]; 1806 -> 161[label="",style="solid", color="burlywood", weight=3]; 111[label="Just vxw11 : Just vxw10 : vxw12",fontsize=16,color="green",shape="box"];112[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) GT",fontsize=16,color="black",shape="box"];112 -> 162[label="",style="solid", color="black", weight=3]; 113[label="primEqInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];1807[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];113 -> 1807[label="",style="solid", color="burlywood", weight=9]; 1807 -> 163[label="",style="solid", color="burlywood", weight=3]; 1808[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];113 -> 1808[label="",style="solid", color="burlywood", weight=9]; 1808 -> 164[label="",style="solid", color="burlywood", weight=3]; 114[label="primEqInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];1809[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];114 -> 1809[label="",style="solid", color="burlywood", weight=9]; 1809 -> 165[label="",style="solid", color="burlywood", weight=3]; 1810[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];114 -> 1810[label="",style="solid", color="burlywood", weight=9]; 1810 -> 166[label="",style="solid", color="burlywood", weight=3]; 115[label="primEqInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];1811[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];115 -> 1811[label="",style="solid", color="burlywood", weight=9]; 1811 -> 167[label="",style="solid", color="burlywood", weight=3]; 1812[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];115 -> 1812[label="",style="solid", color="burlywood", weight=9]; 1812 -> 168[label="",style="solid", color="burlywood", weight=3]; 116[label="primEqInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];1813[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];116 -> 1813[label="",style="solid", color="burlywood", weight=9]; 1813 -> 169[label="",style="solid", color="burlywood", weight=3]; 1814[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];116 -> 1814[label="",style="solid", color="burlywood", weight=9]; 1814 -> 170[label="",style="solid", color="burlywood", weight=3]; 117[label="True",fontsize=16,color="green",shape="box"];118[label="False",fontsize=16,color="green",shape="box"];119[label="False",fontsize=16,color="green",shape="box"];120[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1815[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1815[label="",style="solid", color="blue", weight=9]; 1815 -> 171[label="",style="solid", color="blue", weight=3]; 1816[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1816[label="",style="solid", color="blue", weight=9]; 1816 -> 172[label="",style="solid", color="blue", weight=3]; 1817[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1817[label="",style="solid", color="blue", weight=9]; 1817 -> 173[label="",style="solid", color="blue", weight=3]; 1818[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1818[label="",style="solid", color="blue", weight=9]; 1818 -> 174[label="",style="solid", color="blue", weight=3]; 1819[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1819[label="",style="solid", color="blue", weight=9]; 1819 -> 175[label="",style="solid", color="blue", weight=3]; 1820[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1820[label="",style="solid", color="blue", weight=9]; 1820 -> 176[label="",style="solid", color="blue", weight=3]; 1821[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1821[label="",style="solid", color="blue", weight=9]; 1821 -> 177[label="",style="solid", color="blue", weight=3]; 1822[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1822[label="",style="solid", color="blue", weight=9]; 1822 -> 178[label="",style="solid", color="blue", weight=3]; 1823[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1823[label="",style="solid", color="blue", weight=9]; 1823 -> 179[label="",style="solid", color="blue", weight=3]; 1824[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1824[label="",style="solid", color="blue", weight=9]; 1824 -> 180[label="",style="solid", color="blue", weight=3]; 1825[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1825[label="",style="solid", color="blue", weight=9]; 1825 -> 181[label="",style="solid", color="blue", weight=3]; 1826[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1826[label="",style="solid", color="blue", weight=9]; 1826 -> 182[label="",style="solid", color="blue", weight=3]; 1827[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1827[label="",style="solid", color="blue", weight=9]; 1827 -> 183[label="",style="solid", color="blue", weight=3]; 1828[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];120 -> 1828[label="",style="solid", color="blue", weight=9]; 1828 -> 184[label="",style="solid", color="blue", weight=3]; 121[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1829[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1829[label="",style="solid", color="blue", weight=9]; 1829 -> 185[label="",style="solid", color="blue", weight=3]; 1830[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1830[label="",style="solid", color="blue", weight=9]; 1830 -> 186[label="",style="solid", color="blue", weight=3]; 1831[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1831[label="",style="solid", color="blue", weight=9]; 1831 -> 187[label="",style="solid", color="blue", weight=3]; 1832[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1832[label="",style="solid", color="blue", weight=9]; 1832 -> 188[label="",style="solid", color="blue", weight=3]; 1833[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1833[label="",style="solid", color="blue", weight=9]; 1833 -> 189[label="",style="solid", color="blue", weight=3]; 1834[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1834[label="",style="solid", color="blue", weight=9]; 1834 -> 190[label="",style="solid", color="blue", weight=3]; 1835[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1835[label="",style="solid", color="blue", weight=9]; 1835 -> 191[label="",style="solid", color="blue", weight=3]; 1836[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1836[label="",style="solid", color="blue", weight=9]; 1836 -> 192[label="",style="solid", color="blue", weight=3]; 1837[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1837[label="",style="solid", color="blue", weight=9]; 1837 -> 193[label="",style="solid", color="blue", weight=3]; 1838[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1838[label="",style="solid", color="blue", weight=9]; 1838 -> 194[label="",style="solid", color="blue", weight=3]; 1839[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1839[label="",style="solid", color="blue", weight=9]; 1839 -> 195[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"];121 -> 1840[label="",style="solid", color="blue", weight=9]; 1840 -> 196[label="",style="solid", color="blue", weight=3]; 1841[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1841[label="",style="solid", color="blue", weight=9]; 1841 -> 197[label="",style="solid", color="blue", weight=3]; 1842[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1842[label="",style="solid", color="blue", weight=9]; 1842 -> 198[label="",style="solid", color="blue", weight=3]; 122[label="False",fontsize=16,color="green",shape="box"];123[label="False",fontsize=16,color="green",shape="box"];124[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1843[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1843[label="",style="solid", color="blue", weight=9]; 1843 -> 199[label="",style="solid", color="blue", weight=3]; 1844[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1844[label="",style="solid", color="blue", weight=9]; 1844 -> 200[label="",style="solid", color="blue", weight=3]; 1845[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1845[label="",style="solid", color="blue", weight=9]; 1845 -> 201[label="",style="solid", color="blue", weight=3]; 1846[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1846[label="",style="solid", color="blue", weight=9]; 1846 -> 202[label="",style="solid", color="blue", weight=3]; 1847[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1847[label="",style="solid", color="blue", weight=9]; 1847 -> 203[label="",style="solid", color="blue", weight=3]; 1848[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1848[label="",style="solid", color="blue", weight=9]; 1848 -> 204[label="",style="solid", color="blue", weight=3]; 1849[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1849[label="",style="solid", color="blue", weight=9]; 1849 -> 205[label="",style="solid", color="blue", weight=3]; 1850[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1850[label="",style="solid", color="blue", weight=9]; 1850 -> 206[label="",style="solid", color="blue", weight=3]; 1851[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1851[label="",style="solid", color="blue", weight=9]; 1851 -> 207[label="",style="solid", color="blue", weight=3]; 1852[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1852[label="",style="solid", color="blue", weight=9]; 1852 -> 208[label="",style="solid", color="blue", weight=3]; 1853[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1853[label="",style="solid", color="blue", weight=9]; 1853 -> 209[label="",style="solid", color="blue", weight=3]; 1854[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1854[label="",style="solid", color="blue", weight=9]; 1854 -> 210[label="",style="solid", color="blue", weight=3]; 1855[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1855[label="",style="solid", color="blue", weight=9]; 1855 -> 211[label="",style="solid", color="blue", weight=3]; 1856[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 1856[label="",style="solid", color="blue", weight=9]; 1856 -> 212[label="",style="solid", color="blue", weight=3]; 125 -> 51[label="",style="dashed", color="red", weight=0]; 125[label="primEqInt vxw300 vxw4000",fontsize=16,color="magenta"];125 -> 213[label="",style="dashed", color="magenta", weight=3]; 125 -> 214[label="",style="dashed", color="magenta", weight=3]; 126 -> 368[label="",style="dashed", color="red", weight=0]; 126[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];126 -> 369[label="",style="dashed", color="magenta", weight=3]; 126 -> 370[label="",style="dashed", color="magenta", weight=3]; 127 -> 368[label="",style="dashed", color="red", weight=0]; 127[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];127 -> 371[label="",style="dashed", color="magenta", weight=3]; 127 -> 372[label="",style="dashed", color="magenta", weight=3]; 128[label="False",fontsize=16,color="green",shape="box"];129[label="False",fontsize=16,color="green",shape="box"];130[label="True",fontsize=16,color="green",shape="box"];131 -> 368[label="",style="dashed", color="red", weight=0]; 131[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];131 -> 373[label="",style="dashed", color="magenta", weight=3]; 131 -> 374[label="",style="dashed", color="magenta", weight=3]; 132[label="True",fontsize=16,color="green",shape="box"];133[label="False",fontsize=16,color="green",shape="box"];134[label="False",fontsize=16,color="green",shape="box"];135[label="True",fontsize=16,color="green",shape="box"];136[label="primEqChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];136 -> 225[label="",style="solid", color="black", weight=3]; 137[label="primEqFloat (Float vxw300 vxw301) (Float vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];137 -> 226[label="",style="solid", color="black", weight=3]; 138[label="True",fontsize=16,color="green",shape="box"];139[label="False",fontsize=16,color="green",shape="box"];140[label="False",fontsize=16,color="green",shape="box"];141[label="False",fontsize=16,color="green",shape="box"];142[label="True",fontsize=16,color="green",shape="box"];143[label="False",fontsize=16,color="green",shape="box"];144[label="False",fontsize=16,color="green",shape="box"];145[label="False",fontsize=16,color="green",shape="box"];146[label="True",fontsize=16,color="green",shape="box"];147 -> 368[label="",style="dashed", color="red", weight=0]; 147[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];147 -> 375[label="",style="dashed", color="magenta", weight=3]; 147 -> 376[label="",style="dashed", color="magenta", weight=3]; 148[label="primEqDouble (Double vxw300 vxw301) (Double vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];148 -> 238[label="",style="solid", color="black", weight=3]; 149[label="True",fontsize=16,color="green",shape="box"];159[label="vxw11 <= vxw10",fontsize=16,color="blue",shape="box"];1857[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1857[label="",style="solid", color="blue", weight=9]; 1857 -> 239[label="",style="solid", color="blue", weight=3]; 1858[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1858[label="",style="solid", color="blue", weight=9]; 1858 -> 240[label="",style="solid", color="blue", weight=3]; 1859[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1859[label="",style="solid", color="blue", weight=9]; 1859 -> 241[label="",style="solid", color="blue", weight=3]; 1860[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1860[label="",style="solid", color="blue", weight=9]; 1860 -> 242[label="",style="solid", color="blue", weight=3]; 1861[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1861[label="",style="solid", color="blue", weight=9]; 1861 -> 243[label="",style="solid", color="blue", weight=3]; 1862[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1862[label="",style="solid", color="blue", weight=9]; 1862 -> 244[label="",style="solid", color="blue", weight=3]; 1863[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1863[label="",style="solid", color="blue", weight=9]; 1863 -> 245[label="",style="solid", color="blue", weight=3]; 1864[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1864[label="",style="solid", color="blue", weight=9]; 1864 -> 246[label="",style="solid", color="blue", weight=3]; 1865[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1865[label="",style="solid", color="blue", weight=9]; 1865 -> 247[label="",style="solid", color="blue", weight=3]; 1866[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1866[label="",style="solid", color="blue", weight=9]; 1866 -> 248[label="",style="solid", color="blue", weight=3]; 1867[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1867[label="",style="solid", color="blue", weight=9]; 1867 -> 249[label="",style="solid", color="blue", weight=3]; 1868[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1868[label="",style="solid", color="blue", weight=9]; 1868 -> 250[label="",style="solid", color="blue", weight=3]; 1869[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1869[label="",style="solid", color="blue", weight=9]; 1869 -> 251[label="",style="solid", color="blue", weight=3]; 1870[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1870[label="",style="solid", color="blue", weight=9]; 1870 -> 252[label="",style="solid", color="blue", weight=3]; 160[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare1 (Just vxw20) (Just vxw19) False)",fontsize=16,color="black",shape="box"];160 -> 253[label="",style="solid", color="black", weight=3]; 161[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare1 (Just vxw20) (Just vxw19) True)",fontsize=16,color="black",shape="box"];161 -> 254[label="",style="solid", color="black", weight=3]; 162[label="Nothing : List.insertBy compare (Just vxw30) vxw41",fontsize=16,color="green",shape="box"];162 -> 255[label="",style="dashed", color="green", weight=3]; 163[label="primEqInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];1871[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];163 -> 1871[label="",style="solid", color="burlywood", weight=9]; 1871 -> 256[label="",style="solid", color="burlywood", weight=3]; 1872[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];163 -> 1872[label="",style="solid", color="burlywood", weight=9]; 1872 -> 257[label="",style="solid", color="burlywood", weight=3]; 164[label="primEqInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];164 -> 258[label="",style="solid", color="black", weight=3]; 165[label="primEqInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];1873[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];165 -> 1873[label="",style="solid", color="burlywood", weight=9]; 1873 -> 259[label="",style="solid", color="burlywood", weight=3]; 1874[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];165 -> 1874[label="",style="solid", color="burlywood", weight=9]; 1874 -> 260[label="",style="solid", color="burlywood", weight=3]; 166[label="primEqInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];1875[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];166 -> 1875[label="",style="solid", color="burlywood", weight=9]; 1875 -> 261[label="",style="solid", color="burlywood", weight=3]; 1876[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];166 -> 1876[label="",style="solid", color="burlywood", weight=9]; 1876 -> 262[label="",style="solid", color="burlywood", weight=3]; 167[label="primEqInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];167 -> 263[label="",style="solid", color="black", weight=3]; 168[label="primEqInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];1877[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];168 -> 1877[label="",style="solid", color="burlywood", weight=9]; 1877 -> 264[label="",style="solid", color="burlywood", weight=3]; 1878[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];168 -> 1878[label="",style="solid", color="burlywood", weight=9]; 1878 -> 265[label="",style="solid", color="burlywood", weight=3]; 169[label="primEqInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];1879[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];169 -> 1879[label="",style="solid", color="burlywood", weight=9]; 1879 -> 266[label="",style="solid", color="burlywood", weight=3]; 1880[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];169 -> 1880[label="",style="solid", color="burlywood", weight=9]; 1880 -> 267[label="",style="solid", color="burlywood", weight=3]; 170[label="primEqInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];1881[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];170 -> 1881[label="",style="solid", color="burlywood", weight=9]; 1881 -> 268[label="",style="solid", color="burlywood", weight=3]; 1882[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];170 -> 1882[label="",style="solid", color="burlywood", weight=9]; 1882 -> 269[label="",style="solid", color="burlywood", weight=3]; 171 -> 33[label="",style="dashed", color="red", weight=0]; 171[label="vxw300 == vxw4000",fontsize=16,color="magenta"];171 -> 270[label="",style="dashed", color="magenta", weight=3]; 171 -> 271[label="",style="dashed", color="magenta", weight=3]; 172 -> 34[label="",style="dashed", color="red", weight=0]; 172[label="vxw300 == vxw4000",fontsize=16,color="magenta"];172 -> 272[label="",style="dashed", color="magenta", weight=3]; 172 -> 273[label="",style="dashed", color="magenta", weight=3]; 173 -> 35[label="",style="dashed", color="red", weight=0]; 173[label="vxw300 == vxw4000",fontsize=16,color="magenta"];173 -> 274[label="",style="dashed", color="magenta", weight=3]; 173 -> 275[label="",style="dashed", color="magenta", weight=3]; 174 -> 36[label="",style="dashed", color="red", weight=0]; 174[label="vxw300 == vxw4000",fontsize=16,color="magenta"];174 -> 276[label="",style="dashed", color="magenta", weight=3]; 174 -> 277[label="",style="dashed", color="magenta", weight=3]; 175 -> 37[label="",style="dashed", color="red", weight=0]; 175[label="vxw300 == vxw4000",fontsize=16,color="magenta"];175 -> 278[label="",style="dashed", color="magenta", weight=3]; 175 -> 279[label="",style="dashed", color="magenta", weight=3]; 176 -> 38[label="",style="dashed", color="red", weight=0]; 176[label="vxw300 == vxw4000",fontsize=16,color="magenta"];176 -> 280[label="",style="dashed", color="magenta", weight=3]; 176 -> 281[label="",style="dashed", color="magenta", weight=3]; 177 -> 39[label="",style="dashed", color="red", weight=0]; 177[label="vxw300 == vxw4000",fontsize=16,color="magenta"];177 -> 282[label="",style="dashed", color="magenta", weight=3]; 177 -> 283[label="",style="dashed", color="magenta", weight=3]; 178 -> 40[label="",style="dashed", color="red", weight=0]; 178[label="vxw300 == vxw4000",fontsize=16,color="magenta"];178 -> 284[label="",style="dashed", color="magenta", weight=3]; 178 -> 285[label="",style="dashed", color="magenta", weight=3]; 179 -> 41[label="",style="dashed", color="red", weight=0]; 179[label="vxw300 == vxw4000",fontsize=16,color="magenta"];179 -> 286[label="",style="dashed", color="magenta", weight=3]; 179 -> 287[label="",style="dashed", color="magenta", weight=3]; 180 -> 42[label="",style="dashed", color="red", weight=0]; 180[label="vxw300 == vxw4000",fontsize=16,color="magenta"];180 -> 288[label="",style="dashed", color="magenta", weight=3]; 180 -> 289[label="",style="dashed", color="magenta", weight=3]; 181 -> 43[label="",style="dashed", color="red", weight=0]; 181[label="vxw300 == vxw4000",fontsize=16,color="magenta"];181 -> 290[label="",style="dashed", color="magenta", weight=3]; 181 -> 291[label="",style="dashed", color="magenta", weight=3]; 182 -> 44[label="",style="dashed", color="red", weight=0]; 182[label="vxw300 == vxw4000",fontsize=16,color="magenta"];182 -> 292[label="",style="dashed", color="magenta", weight=3]; 182 -> 293[label="",style="dashed", color="magenta", weight=3]; 183 -> 45[label="",style="dashed", color="red", weight=0]; 183[label="vxw300 == vxw4000",fontsize=16,color="magenta"];183 -> 294[label="",style="dashed", color="magenta", weight=3]; 183 -> 295[label="",style="dashed", color="magenta", weight=3]; 184 -> 46[label="",style="dashed", color="red", weight=0]; 184[label="vxw300 == vxw4000",fontsize=16,color="magenta"];184 -> 296[label="",style="dashed", color="magenta", weight=3]; 184 -> 297[label="",style="dashed", color="magenta", weight=3]; 185 -> 33[label="",style="dashed", color="red", weight=0]; 185[label="vxw300 == vxw4000",fontsize=16,color="magenta"];185 -> 298[label="",style="dashed", color="magenta", weight=3]; 185 -> 299[label="",style="dashed", color="magenta", weight=3]; 186 -> 34[label="",style="dashed", color="red", weight=0]; 186[label="vxw300 == vxw4000",fontsize=16,color="magenta"];186 -> 300[label="",style="dashed", color="magenta", weight=3]; 186 -> 301[label="",style="dashed", color="magenta", weight=3]; 187 -> 35[label="",style="dashed", color="red", weight=0]; 187[label="vxw300 == vxw4000",fontsize=16,color="magenta"];187 -> 302[label="",style="dashed", color="magenta", weight=3]; 187 -> 303[label="",style="dashed", color="magenta", weight=3]; 188 -> 36[label="",style="dashed", color="red", weight=0]; 188[label="vxw300 == vxw4000",fontsize=16,color="magenta"];188 -> 304[label="",style="dashed", color="magenta", weight=3]; 188 -> 305[label="",style="dashed", color="magenta", weight=3]; 189 -> 37[label="",style="dashed", color="red", weight=0]; 189[label="vxw300 == vxw4000",fontsize=16,color="magenta"];189 -> 306[label="",style="dashed", color="magenta", weight=3]; 189 -> 307[label="",style="dashed", color="magenta", weight=3]; 190 -> 38[label="",style="dashed", color="red", weight=0]; 190[label="vxw300 == vxw4000",fontsize=16,color="magenta"];190 -> 308[label="",style="dashed", color="magenta", weight=3]; 190 -> 309[label="",style="dashed", color="magenta", weight=3]; 191 -> 39[label="",style="dashed", color="red", weight=0]; 191[label="vxw300 == vxw4000",fontsize=16,color="magenta"];191 -> 310[label="",style="dashed", color="magenta", weight=3]; 191 -> 311[label="",style="dashed", color="magenta", weight=3]; 192 -> 40[label="",style="dashed", color="red", weight=0]; 192[label="vxw300 == vxw4000",fontsize=16,color="magenta"];192 -> 312[label="",style="dashed", color="magenta", weight=3]; 192 -> 313[label="",style="dashed", color="magenta", weight=3]; 193 -> 41[label="",style="dashed", color="red", weight=0]; 193[label="vxw300 == vxw4000",fontsize=16,color="magenta"];193 -> 314[label="",style="dashed", color="magenta", weight=3]; 193 -> 315[label="",style="dashed", color="magenta", weight=3]; 194 -> 42[label="",style="dashed", color="red", weight=0]; 194[label="vxw300 == vxw4000",fontsize=16,color="magenta"];194 -> 316[label="",style="dashed", color="magenta", weight=3]; 194 -> 317[label="",style="dashed", color="magenta", weight=3]; 195 -> 43[label="",style="dashed", color="red", weight=0]; 195[label="vxw300 == vxw4000",fontsize=16,color="magenta"];195 -> 318[label="",style="dashed", color="magenta", weight=3]; 195 -> 319[label="",style="dashed", color="magenta", weight=3]; 196 -> 44[label="",style="dashed", color="red", weight=0]; 196[label="vxw300 == vxw4000",fontsize=16,color="magenta"];196 -> 320[label="",style="dashed", color="magenta", weight=3]; 196 -> 321[label="",style="dashed", color="magenta", weight=3]; 197 -> 45[label="",style="dashed", color="red", weight=0]; 197[label="vxw300 == vxw4000",fontsize=16,color="magenta"];197 -> 322[label="",style="dashed", color="magenta", weight=3]; 197 -> 323[label="",style="dashed", color="magenta", weight=3]; 198 -> 46[label="",style="dashed", color="red", weight=0]; 198[label="vxw300 == vxw4000",fontsize=16,color="magenta"];198 -> 324[label="",style="dashed", color="magenta", weight=3]; 198 -> 325[label="",style="dashed", color="magenta", weight=3]; 199 -> 33[label="",style="dashed", color="red", weight=0]; 199[label="vxw300 == vxw4000",fontsize=16,color="magenta"];199 -> 326[label="",style="dashed", color="magenta", weight=3]; 199 -> 327[label="",style="dashed", color="magenta", weight=3]; 200 -> 34[label="",style="dashed", color="red", weight=0]; 200[label="vxw300 == vxw4000",fontsize=16,color="magenta"];200 -> 328[label="",style="dashed", color="magenta", weight=3]; 200 -> 329[label="",style="dashed", color="magenta", weight=3]; 201 -> 35[label="",style="dashed", color="red", weight=0]; 201[label="vxw300 == vxw4000",fontsize=16,color="magenta"];201 -> 330[label="",style="dashed", color="magenta", weight=3]; 201 -> 331[label="",style="dashed", color="magenta", weight=3]; 202 -> 36[label="",style="dashed", color="red", weight=0]; 202[label="vxw300 == vxw4000",fontsize=16,color="magenta"];202 -> 332[label="",style="dashed", color="magenta", weight=3]; 202 -> 333[label="",style="dashed", color="magenta", weight=3]; 203 -> 37[label="",style="dashed", color="red", weight=0]; 203[label="vxw300 == vxw4000",fontsize=16,color="magenta"];203 -> 334[label="",style="dashed", color="magenta", weight=3]; 203 -> 335[label="",style="dashed", color="magenta", weight=3]; 204 -> 38[label="",style="dashed", color="red", weight=0]; 204[label="vxw300 == vxw4000",fontsize=16,color="magenta"];204 -> 336[label="",style="dashed", color="magenta", weight=3]; 204 -> 337[label="",style="dashed", color="magenta", weight=3]; 205 -> 39[label="",style="dashed", color="red", weight=0]; 205[label="vxw300 == vxw4000",fontsize=16,color="magenta"];205 -> 338[label="",style="dashed", color="magenta", weight=3]; 205 -> 339[label="",style="dashed", color="magenta", weight=3]; 206 -> 40[label="",style="dashed", color="red", weight=0]; 206[label="vxw300 == vxw4000",fontsize=16,color="magenta"];206 -> 340[label="",style="dashed", color="magenta", weight=3]; 206 -> 341[label="",style="dashed", color="magenta", weight=3]; 207 -> 41[label="",style="dashed", color="red", weight=0]; 207[label="vxw300 == vxw4000",fontsize=16,color="magenta"];207 -> 342[label="",style="dashed", color="magenta", weight=3]; 207 -> 343[label="",style="dashed", color="magenta", weight=3]; 208 -> 42[label="",style="dashed", color="red", weight=0]; 208[label="vxw300 == vxw4000",fontsize=16,color="magenta"];208 -> 344[label="",style="dashed", color="magenta", weight=3]; 208 -> 345[label="",style="dashed", color="magenta", weight=3]; 209 -> 43[label="",style="dashed", color="red", weight=0]; 209[label="vxw300 == vxw4000",fontsize=16,color="magenta"];209 -> 346[label="",style="dashed", color="magenta", weight=3]; 209 -> 347[label="",style="dashed", color="magenta", weight=3]; 210 -> 44[label="",style="dashed", color="red", weight=0]; 210[label="vxw300 == vxw4000",fontsize=16,color="magenta"];210 -> 348[label="",style="dashed", color="magenta", weight=3]; 210 -> 349[label="",style="dashed", color="magenta", weight=3]; 211 -> 45[label="",style="dashed", color="red", weight=0]; 211[label="vxw300 == vxw4000",fontsize=16,color="magenta"];211 -> 350[label="",style="dashed", color="magenta", weight=3]; 211 -> 351[label="",style="dashed", color="magenta", weight=3]; 212 -> 46[label="",style="dashed", color="red", weight=0]; 212[label="vxw300 == vxw4000",fontsize=16,color="magenta"];212 -> 352[label="",style="dashed", color="magenta", weight=3]; 212 -> 353[label="",style="dashed", color="magenta", weight=3]; 213[label="vxw300",fontsize=16,color="green",shape="box"];214[label="vxw4000",fontsize=16,color="green",shape="box"];369[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];1883[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1883[label="",style="solid", color="blue", weight=9]; 1883 -> 381[label="",style="solid", color="blue", weight=3]; 1884[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1884[label="",style="solid", color="blue", weight=9]; 1884 -> 382[label="",style="solid", color="blue", weight=3]; 1885[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1885[label="",style="solid", color="blue", weight=9]; 1885 -> 383[label="",style="solid", color="blue", weight=3]; 1886[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1886[label="",style="solid", color="blue", weight=9]; 1886 -> 384[label="",style="solid", color="blue", weight=3]; 1887[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1887[label="",style="solid", color="blue", weight=9]; 1887 -> 385[label="",style="solid", color="blue", weight=3]; 1888[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1888[label="",style="solid", color="blue", weight=9]; 1888 -> 386[label="",style="solid", color="blue", weight=3]; 1889[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1889[label="",style="solid", color="blue", weight=9]; 1889 -> 387[label="",style="solid", color="blue", weight=3]; 1890[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1890[label="",style="solid", color="blue", weight=9]; 1890 -> 388[label="",style="solid", color="blue", weight=3]; 1891[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1891[label="",style="solid", color="blue", weight=9]; 1891 -> 389[label="",style="solid", color="blue", weight=3]; 1892[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1892[label="",style="solid", color="blue", weight=9]; 1892 -> 390[label="",style="solid", color="blue", weight=3]; 1893[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1893[label="",style="solid", color="blue", weight=9]; 1893 -> 391[label="",style="solid", color="blue", weight=3]; 1894[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1894[label="",style="solid", color="blue", weight=9]; 1894 -> 392[label="",style="solid", color="blue", weight=3]; 1895[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1895[label="",style="solid", color="blue", weight=9]; 1895 -> 393[label="",style="solid", color="blue", weight=3]; 1896[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 1896[label="",style="solid", color="blue", weight=9]; 1896 -> 394[label="",style="solid", color="blue", weight=3]; 370[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1897[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1897[label="",style="solid", color="blue", weight=9]; 1897 -> 395[label="",style="solid", color="blue", weight=3]; 1898[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1898[label="",style="solid", color="blue", weight=9]; 1898 -> 396[label="",style="solid", color="blue", weight=3]; 1899[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1899[label="",style="solid", color="blue", weight=9]; 1899 -> 397[label="",style="solid", color="blue", weight=3]; 1900[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1900[label="",style="solid", color="blue", weight=9]; 1900 -> 398[label="",style="solid", color="blue", weight=3]; 1901[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1901[label="",style="solid", color="blue", weight=9]; 1901 -> 399[label="",style="solid", color="blue", weight=3]; 1902[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1902[label="",style="solid", color="blue", weight=9]; 1902 -> 400[label="",style="solid", color="blue", weight=3]; 1903[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1903[label="",style="solid", color="blue", weight=9]; 1903 -> 401[label="",style="solid", color="blue", weight=3]; 1904[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1904[label="",style="solid", color="blue", weight=9]; 1904 -> 402[label="",style="solid", color="blue", weight=3]; 1905[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1905[label="",style="solid", color="blue", weight=9]; 1905 -> 403[label="",style="solid", color="blue", weight=3]; 1906[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1906[label="",style="solid", color="blue", weight=9]; 1906 -> 404[label="",style="solid", color="blue", weight=3]; 1907[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1907[label="",style="solid", color="blue", weight=9]; 1907 -> 405[label="",style="solid", color="blue", weight=3]; 1908[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1908[label="",style="solid", color="blue", weight=9]; 1908 -> 406[label="",style="solid", color="blue", weight=3]; 1909[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1909[label="",style="solid", color="blue", weight=9]; 1909 -> 407[label="",style="solid", color="blue", weight=3]; 1910[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 1910[label="",style="solid", color="blue", weight=9]; 1910 -> 408[label="",style="solid", color="blue", weight=3]; 368[label="vxw34 && vxw35",fontsize=16,color="burlywood",shape="triangle"];1911[label="vxw34/False",fontsize=10,color="white",style="solid",shape="box"];368 -> 1911[label="",style="solid", color="burlywood", weight=9]; 1911 -> 409[label="",style="solid", color="burlywood", weight=3]; 1912[label="vxw34/True",fontsize=10,color="white",style="solid",shape="box"];368 -> 1912[label="",style="solid", color="burlywood", weight=9]; 1912 -> 410[label="",style="solid", color="burlywood", weight=3]; 371 -> 38[label="",style="dashed", color="red", weight=0]; 371[label="vxw301 == vxw4001",fontsize=16,color="magenta"];371 -> 411[label="",style="dashed", color="magenta", weight=3]; 371 -> 412[label="",style="dashed", color="magenta", weight=3]; 372[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1913[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1913[label="",style="solid", color="blue", weight=9]; 1913 -> 413[label="",style="solid", color="blue", weight=3]; 1914[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1914[label="",style="solid", color="blue", weight=9]; 1914 -> 414[label="",style="solid", color="blue", weight=3]; 1915[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1915[label="",style="solid", color="blue", weight=9]; 1915 -> 415[label="",style="solid", color="blue", weight=3]; 1916[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1916[label="",style="solid", color="blue", weight=9]; 1916 -> 416[label="",style="solid", color="blue", weight=3]; 1917[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1917[label="",style="solid", color="blue", weight=9]; 1917 -> 417[label="",style="solid", color="blue", weight=3]; 1918[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1918[label="",style="solid", color="blue", weight=9]; 1918 -> 418[label="",style="solid", color="blue", weight=3]; 1919[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1919[label="",style="solid", color="blue", weight=9]; 1919 -> 419[label="",style="solid", color="blue", weight=3]; 1920[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1920[label="",style="solid", color="blue", weight=9]; 1920 -> 420[label="",style="solid", color="blue", weight=3]; 1921[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1921[label="",style="solid", color="blue", weight=9]; 1921 -> 421[label="",style="solid", color="blue", weight=3]; 1922[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1922[label="",style="solid", color="blue", weight=9]; 1922 -> 422[label="",style="solid", color="blue", weight=3]; 1923[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1923[label="",style="solid", color="blue", weight=9]; 1923 -> 423[label="",style="solid", color="blue", weight=3]; 1924[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1924[label="",style="solid", color="blue", weight=9]; 1924 -> 424[label="",style="solid", color="blue", weight=3]; 1925[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1925[label="",style="solid", color="blue", weight=9]; 1925 -> 425[label="",style="solid", color="blue", weight=3]; 1926[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 1926[label="",style="solid", color="blue", weight=9]; 1926 -> 426[label="",style="solid", color="blue", weight=3]; 373[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];1927[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 1927[label="",style="solid", color="blue", weight=9]; 1927 -> 427[label="",style="solid", color="blue", weight=3]; 1928[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 1928[label="",style="solid", color="blue", weight=9]; 1928 -> 428[label="",style="solid", color="blue", weight=3]; 374[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1929[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 1929[label="",style="solid", color="blue", weight=9]; 1929 -> 429[label="",style="solid", color="blue", weight=3]; 1930[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 1930[label="",style="solid", color="blue", weight=9]; 1930 -> 430[label="",style="solid", color="blue", weight=3]; 225[label="primEqNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];1931[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];225 -> 1931[label="",style="solid", color="burlywood", weight=9]; 1931 -> 431[label="",style="solid", color="burlywood", weight=3]; 1932[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];225 -> 1932[label="",style="solid", color="burlywood", weight=9]; 1932 -> 432[label="",style="solid", color="burlywood", weight=3]; 226 -> 33[label="",style="dashed", color="red", weight=0]; 226[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];226 -> 433[label="",style="dashed", color="magenta", weight=3]; 226 -> 434[label="",style="dashed", color="magenta", weight=3]; 375 -> 368[label="",style="dashed", color="red", weight=0]; 375[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];375 -> 435[label="",style="dashed", color="magenta", weight=3]; 375 -> 436[label="",style="dashed", color="magenta", weight=3]; 376[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1933[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1933[label="",style="solid", color="blue", weight=9]; 1933 -> 437[label="",style="solid", color="blue", weight=3]; 1934[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1934[label="",style="solid", color="blue", weight=9]; 1934 -> 438[label="",style="solid", color="blue", weight=3]; 1935[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1935[label="",style="solid", color="blue", weight=9]; 1935 -> 439[label="",style="solid", color="blue", weight=3]; 1936[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1936[label="",style="solid", color="blue", weight=9]; 1936 -> 440[label="",style="solid", color="blue", weight=3]; 1937[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1937[label="",style="solid", color="blue", weight=9]; 1937 -> 441[label="",style="solid", color="blue", weight=3]; 1938[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1938[label="",style="solid", color="blue", weight=9]; 1938 -> 442[label="",style="solid", color="blue", weight=3]; 1939[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1939[label="",style="solid", color="blue", weight=9]; 1939 -> 443[label="",style="solid", color="blue", weight=3]; 1940[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1940[label="",style="solid", color="blue", weight=9]; 1940 -> 444[label="",style="solid", color="blue", weight=3]; 1941[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1941[label="",style="solid", color="blue", weight=9]; 1941 -> 445[label="",style="solid", color="blue", weight=3]; 1942[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1942[label="",style="solid", color="blue", weight=9]; 1942 -> 446[label="",style="solid", color="blue", weight=3]; 1943[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1943[label="",style="solid", color="blue", weight=9]; 1943 -> 447[label="",style="solid", color="blue", weight=3]; 1944[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1944[label="",style="solid", color="blue", weight=9]; 1944 -> 448[label="",style="solid", color="blue", weight=3]; 1945[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1945[label="",style="solid", color="blue", weight=9]; 1945 -> 449[label="",style="solid", color="blue", weight=3]; 1946[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 1946[label="",style="solid", color="blue", weight=9]; 1946 -> 450[label="",style="solid", color="blue", weight=3]; 238 -> 33[label="",style="dashed", color="red", weight=0]; 238[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];238 -> 451[label="",style="dashed", color="magenta", weight=3]; 238 -> 452[label="",style="dashed", color="magenta", weight=3]; 239[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1947[label="vxw11/Left vxw110",fontsize=10,color="white",style="solid",shape="box"];239 -> 1947[label="",style="solid", color="burlywood", weight=9]; 1947 -> 453[label="",style="solid", color="burlywood", weight=3]; 1948[label="vxw11/Right vxw110",fontsize=10,color="white",style="solid",shape="box"];239 -> 1948[label="",style="solid", color="burlywood", weight=9]; 1948 -> 454[label="",style="solid", color="burlywood", weight=3]; 240[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];240 -> 455[label="",style="solid", color="black", weight=3]; 241[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];241 -> 456[label="",style="solid", color="black", weight=3]; 242[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1949[label="vxw11/LT",fontsize=10,color="white",style="solid",shape="box"];242 -> 1949[label="",style="solid", color="burlywood", weight=9]; 1949 -> 457[label="",style="solid", color="burlywood", weight=3]; 1950[label="vxw11/EQ",fontsize=10,color="white",style="solid",shape="box"];242 -> 1950[label="",style="solid", color="burlywood", weight=9]; 1950 -> 458[label="",style="solid", color="burlywood", weight=3]; 1951[label="vxw11/GT",fontsize=10,color="white",style="solid",shape="box"];242 -> 1951[label="",style="solid", color="burlywood", weight=9]; 1951 -> 459[label="",style="solid", color="burlywood", weight=3]; 243[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1952[label="vxw11/(vxw110,vxw111,vxw112)",fontsize=10,color="white",style="solid",shape="box"];243 -> 1952[label="",style="solid", color="burlywood", weight=9]; 1952 -> 460[label="",style="solid", color="burlywood", weight=3]; 244[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];244 -> 461[label="",style="solid", color="black", weight=3]; 245[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1953[label="vxw11/(vxw110,vxw111)",fontsize=10,color="white",style="solid",shape="box"];245 -> 1953[label="",style="solid", color="burlywood", weight=9]; 1953 -> 462[label="",style="solid", color="burlywood", weight=3]; 246[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];246 -> 463[label="",style="solid", color="black", weight=3]; 247[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1954[label="vxw11/False",fontsize=10,color="white",style="solid",shape="box"];247 -> 1954[label="",style="solid", color="burlywood", weight=9]; 1954 -> 464[label="",style="solid", color="burlywood", weight=3]; 1955[label="vxw11/True",fontsize=10,color="white",style="solid",shape="box"];247 -> 1955[label="",style="solid", color="burlywood", weight=9]; 1955 -> 465[label="",style="solid", color="burlywood", weight=3]; 248[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];248 -> 466[label="",style="solid", color="black", weight=3]; 249[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];249 -> 467[label="",style="solid", color="black", weight=3]; 250[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1956[label="vxw11/Nothing",fontsize=10,color="white",style="solid",shape="box"];250 -> 1956[label="",style="solid", color="burlywood", weight=9]; 1956 -> 468[label="",style="solid", color="burlywood", weight=3]; 1957[label="vxw11/Just vxw110",fontsize=10,color="white",style="solid",shape="box"];250 -> 1957[label="",style="solid", color="burlywood", weight=9]; 1957 -> 469[label="",style="solid", color="burlywood", weight=3]; 251[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];251 -> 470[label="",style="solid", color="black", weight=3]; 252[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];252 -> 471[label="",style="solid", color="black", weight=3]; 253[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare0 (Just vxw20) (Just vxw19) otherwise)",fontsize=16,color="black",shape="box"];253 -> 472[label="",style="solid", color="black", weight=3]; 254[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) LT",fontsize=16,color="black",shape="box"];254 -> 473[label="",style="solid", color="black", weight=3]; 255 -> 5[label="",style="dashed", color="red", weight=0]; 255[label="List.insertBy compare (Just vxw30) vxw41",fontsize=16,color="magenta"];255 -> 474[label="",style="dashed", color="magenta", weight=3]; 255 -> 475[label="",style="dashed", color="magenta", weight=3]; 256[label="primEqInt (Pos (Succ vxw3000)) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];256 -> 476[label="",style="solid", color="black", weight=3]; 257[label="primEqInt (Pos (Succ vxw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];257 -> 477[label="",style="solid", color="black", weight=3]; 258[label="False",fontsize=16,color="green",shape="box"];259[label="primEqInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];259 -> 478[label="",style="solid", color="black", weight=3]; 260[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];260 -> 479[label="",style="solid", color="black", weight=3]; 261[label="primEqInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];261 -> 480[label="",style="solid", color="black", weight=3]; 262[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];262 -> 481[label="",style="solid", color="black", weight=3]; 263[label="False",fontsize=16,color="green",shape="box"];264[label="primEqInt (Neg (Succ vxw3000)) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];264 -> 482[label="",style="solid", color="black", weight=3]; 265[label="primEqInt (Neg (Succ vxw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];265 -> 483[label="",style="solid", color="black", weight=3]; 266[label="primEqInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];266 -> 484[label="",style="solid", color="black", weight=3]; 267[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];267 -> 485[label="",style="solid", color="black", weight=3]; 268[label="primEqInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];268 -> 486[label="",style="solid", color="black", weight=3]; 269[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];269 -> 487[label="",style="solid", color="black", weight=3]; 270[label="vxw300",fontsize=16,color="green",shape="box"];271[label="vxw4000",fontsize=16,color="green",shape="box"];272[label="vxw300",fontsize=16,color="green",shape="box"];273[label="vxw4000",fontsize=16,color="green",shape="box"];274[label="vxw300",fontsize=16,color="green",shape="box"];275[label="vxw4000",fontsize=16,color="green",shape="box"];276[label="vxw300",fontsize=16,color="green",shape="box"];277[label="vxw4000",fontsize=16,color="green",shape="box"];278[label="vxw300",fontsize=16,color="green",shape="box"];279[label="vxw4000",fontsize=16,color="green",shape="box"];280[label="vxw300",fontsize=16,color="green",shape="box"];281[label="vxw4000",fontsize=16,color="green",shape="box"];282[label="vxw300",fontsize=16,color="green",shape="box"];283[label="vxw4000",fontsize=16,color="green",shape="box"];284[label="vxw300",fontsize=16,color="green",shape="box"];285[label="vxw4000",fontsize=16,color="green",shape="box"];286[label="vxw300",fontsize=16,color="green",shape="box"];287[label="vxw4000",fontsize=16,color="green",shape="box"];288[label="vxw300",fontsize=16,color="green",shape="box"];289[label="vxw4000",fontsize=16,color="green",shape="box"];290[label="vxw300",fontsize=16,color="green",shape="box"];291[label="vxw4000",fontsize=16,color="green",shape="box"];292[label="vxw300",fontsize=16,color="green",shape="box"];293[label="vxw4000",fontsize=16,color="green",shape="box"];294[label="vxw300",fontsize=16,color="green",shape="box"];295[label="vxw4000",fontsize=16,color="green",shape="box"];296[label="vxw300",fontsize=16,color="green",shape="box"];297[label="vxw4000",fontsize=16,color="green",shape="box"];298[label="vxw300",fontsize=16,color="green",shape="box"];299[label="vxw4000",fontsize=16,color="green",shape="box"];300[label="vxw300",fontsize=16,color="green",shape="box"];301[label="vxw4000",fontsize=16,color="green",shape="box"];302[label="vxw300",fontsize=16,color="green",shape="box"];303[label="vxw4000",fontsize=16,color="green",shape="box"];304[label="vxw300",fontsize=16,color="green",shape="box"];305[label="vxw4000",fontsize=16,color="green",shape="box"];306[label="vxw300",fontsize=16,color="green",shape="box"];307[label="vxw4000",fontsize=16,color="green",shape="box"];308[label="vxw300",fontsize=16,color="green",shape="box"];309[label="vxw4000",fontsize=16,color="green",shape="box"];310[label="vxw300",fontsize=16,color="green",shape="box"];311[label="vxw4000",fontsize=16,color="green",shape="box"];312[label="vxw300",fontsize=16,color="green",shape="box"];313[label="vxw4000",fontsize=16,color="green",shape="box"];314[label="vxw300",fontsize=16,color="green",shape="box"];315[label="vxw4000",fontsize=16,color="green",shape="box"];316[label="vxw300",fontsize=16,color="green",shape="box"];317[label="vxw4000",fontsize=16,color="green",shape="box"];318[label="vxw300",fontsize=16,color="green",shape="box"];319[label="vxw4000",fontsize=16,color="green",shape="box"];320[label="vxw300",fontsize=16,color="green",shape="box"];321[label="vxw4000",fontsize=16,color="green",shape="box"];322[label="vxw300",fontsize=16,color="green",shape="box"];323[label="vxw4000",fontsize=16,color="green",shape="box"];324[label="vxw300",fontsize=16,color="green",shape="box"];325[label="vxw4000",fontsize=16,color="green",shape="box"];326[label="vxw300",fontsize=16,color="green",shape="box"];327[label="vxw4000",fontsize=16,color="green",shape="box"];328[label="vxw300",fontsize=16,color="green",shape="box"];329[label="vxw4000",fontsize=16,color="green",shape="box"];330[label="vxw300",fontsize=16,color="green",shape="box"];331[label="vxw4000",fontsize=16,color="green",shape="box"];332[label="vxw300",fontsize=16,color="green",shape="box"];333[label="vxw4000",fontsize=16,color="green",shape="box"];334[label="vxw300",fontsize=16,color="green",shape="box"];335[label="vxw4000",fontsize=16,color="green",shape="box"];336[label="vxw300",fontsize=16,color="green",shape="box"];337[label="vxw4000",fontsize=16,color="green",shape="box"];338[label="vxw300",fontsize=16,color="green",shape="box"];339[label="vxw4000",fontsize=16,color="green",shape="box"];340[label="vxw300",fontsize=16,color="green",shape="box"];341[label="vxw4000",fontsize=16,color="green",shape="box"];342[label="vxw300",fontsize=16,color="green",shape="box"];343[label="vxw4000",fontsize=16,color="green",shape="box"];344[label="vxw300",fontsize=16,color="green",shape="box"];345[label="vxw4000",fontsize=16,color="green",shape="box"];346[label="vxw300",fontsize=16,color="green",shape="box"];347[label="vxw4000",fontsize=16,color="green",shape="box"];348[label="vxw300",fontsize=16,color="green",shape="box"];349[label="vxw4000",fontsize=16,color="green",shape="box"];350[label="vxw300",fontsize=16,color="green",shape="box"];351[label="vxw4000",fontsize=16,color="green",shape="box"];352[label="vxw300",fontsize=16,color="green",shape="box"];353[label="vxw4000",fontsize=16,color="green",shape="box"];381 -> 33[label="",style="dashed", color="red", weight=0]; 381[label="vxw301 == vxw4001",fontsize=16,color="magenta"];381 -> 488[label="",style="dashed", color="magenta", weight=3]; 381 -> 489[label="",style="dashed", color="magenta", weight=3]; 382 -> 34[label="",style="dashed", color="red", weight=0]; 382[label="vxw301 == vxw4001",fontsize=16,color="magenta"];382 -> 490[label="",style="dashed", color="magenta", weight=3]; 382 -> 491[label="",style="dashed", color="magenta", weight=3]; 383 -> 35[label="",style="dashed", color="red", weight=0]; 383[label="vxw301 == vxw4001",fontsize=16,color="magenta"];383 -> 492[label="",style="dashed", color="magenta", weight=3]; 383 -> 493[label="",style="dashed", color="magenta", weight=3]; 384 -> 36[label="",style="dashed", color="red", weight=0]; 384[label="vxw301 == vxw4001",fontsize=16,color="magenta"];384 -> 494[label="",style="dashed", color="magenta", weight=3]; 384 -> 495[label="",style="dashed", color="magenta", weight=3]; 385 -> 37[label="",style="dashed", color="red", weight=0]; 385[label="vxw301 == vxw4001",fontsize=16,color="magenta"];385 -> 496[label="",style="dashed", color="magenta", weight=3]; 385 -> 497[label="",style="dashed", color="magenta", weight=3]; 386 -> 38[label="",style="dashed", color="red", weight=0]; 386[label="vxw301 == vxw4001",fontsize=16,color="magenta"];386 -> 498[label="",style="dashed", color="magenta", weight=3]; 386 -> 499[label="",style="dashed", color="magenta", weight=3]; 387 -> 39[label="",style="dashed", color="red", weight=0]; 387[label="vxw301 == vxw4001",fontsize=16,color="magenta"];387 -> 500[label="",style="dashed", color="magenta", weight=3]; 387 -> 501[label="",style="dashed", color="magenta", weight=3]; 388 -> 40[label="",style="dashed", color="red", weight=0]; 388[label="vxw301 == vxw4001",fontsize=16,color="magenta"];388 -> 502[label="",style="dashed", color="magenta", weight=3]; 388 -> 503[label="",style="dashed", color="magenta", weight=3]; 389 -> 41[label="",style="dashed", color="red", weight=0]; 389[label="vxw301 == vxw4001",fontsize=16,color="magenta"];389 -> 504[label="",style="dashed", color="magenta", weight=3]; 389 -> 505[label="",style="dashed", color="magenta", weight=3]; 390 -> 42[label="",style="dashed", color="red", weight=0]; 390[label="vxw301 == vxw4001",fontsize=16,color="magenta"];390 -> 506[label="",style="dashed", color="magenta", weight=3]; 390 -> 507[label="",style="dashed", color="magenta", weight=3]; 391 -> 43[label="",style="dashed", color="red", weight=0]; 391[label="vxw301 == vxw4001",fontsize=16,color="magenta"];391 -> 508[label="",style="dashed", color="magenta", weight=3]; 391 -> 509[label="",style="dashed", color="magenta", weight=3]; 392 -> 44[label="",style="dashed", color="red", weight=0]; 392[label="vxw301 == vxw4001",fontsize=16,color="magenta"];392 -> 510[label="",style="dashed", color="magenta", weight=3]; 392 -> 511[label="",style="dashed", color="magenta", weight=3]; 393 -> 45[label="",style="dashed", color="red", weight=0]; 393[label="vxw301 == vxw4001",fontsize=16,color="magenta"];393 -> 512[label="",style="dashed", color="magenta", weight=3]; 393 -> 513[label="",style="dashed", color="magenta", weight=3]; 394 -> 46[label="",style="dashed", color="red", weight=0]; 394[label="vxw301 == vxw4001",fontsize=16,color="magenta"];394 -> 514[label="",style="dashed", color="magenta", weight=3]; 394 -> 515[label="",style="dashed", color="magenta", weight=3]; 395 -> 33[label="",style="dashed", color="red", weight=0]; 395[label="vxw300 == vxw4000",fontsize=16,color="magenta"];395 -> 516[label="",style="dashed", color="magenta", weight=3]; 395 -> 517[label="",style="dashed", color="magenta", weight=3]; 396 -> 34[label="",style="dashed", color="red", weight=0]; 396[label="vxw300 == vxw4000",fontsize=16,color="magenta"];396 -> 518[label="",style="dashed", color="magenta", weight=3]; 396 -> 519[label="",style="dashed", color="magenta", weight=3]; 397 -> 35[label="",style="dashed", color="red", weight=0]; 397[label="vxw300 == vxw4000",fontsize=16,color="magenta"];397 -> 520[label="",style="dashed", color="magenta", weight=3]; 397 -> 521[label="",style="dashed", color="magenta", weight=3]; 398 -> 36[label="",style="dashed", color="red", weight=0]; 398[label="vxw300 == vxw4000",fontsize=16,color="magenta"];398 -> 522[label="",style="dashed", color="magenta", weight=3]; 398 -> 523[label="",style="dashed", color="magenta", weight=3]; 399 -> 37[label="",style="dashed", color="red", weight=0]; 399[label="vxw300 == vxw4000",fontsize=16,color="magenta"];399 -> 524[label="",style="dashed", color="magenta", weight=3]; 399 -> 525[label="",style="dashed", color="magenta", weight=3]; 400 -> 38[label="",style="dashed", color="red", weight=0]; 400[label="vxw300 == vxw4000",fontsize=16,color="magenta"];400 -> 526[label="",style="dashed", color="magenta", weight=3]; 400 -> 527[label="",style="dashed", color="magenta", weight=3]; 401 -> 39[label="",style="dashed", color="red", weight=0]; 401[label="vxw300 == vxw4000",fontsize=16,color="magenta"];401 -> 528[label="",style="dashed", color="magenta", weight=3]; 401 -> 529[label="",style="dashed", color="magenta", weight=3]; 402 -> 40[label="",style="dashed", color="red", weight=0]; 402[label="vxw300 == vxw4000",fontsize=16,color="magenta"];402 -> 530[label="",style="dashed", color="magenta", weight=3]; 402 -> 531[label="",style="dashed", color="magenta", weight=3]; 403 -> 41[label="",style="dashed", color="red", weight=0]; 403[label="vxw300 == vxw4000",fontsize=16,color="magenta"];403 -> 532[label="",style="dashed", color="magenta", weight=3]; 403 -> 533[label="",style="dashed", color="magenta", weight=3]; 404 -> 42[label="",style="dashed", color="red", weight=0]; 404[label="vxw300 == vxw4000",fontsize=16,color="magenta"];404 -> 534[label="",style="dashed", color="magenta", weight=3]; 404 -> 535[label="",style="dashed", color="magenta", weight=3]; 405 -> 43[label="",style="dashed", color="red", weight=0]; 405[label="vxw300 == vxw4000",fontsize=16,color="magenta"];405 -> 536[label="",style="dashed", color="magenta", weight=3]; 405 -> 537[label="",style="dashed", color="magenta", weight=3]; 406 -> 44[label="",style="dashed", color="red", weight=0]; 406[label="vxw300 == vxw4000",fontsize=16,color="magenta"];406 -> 538[label="",style="dashed", color="magenta", weight=3]; 406 -> 539[label="",style="dashed", color="magenta", weight=3]; 407 -> 45[label="",style="dashed", color="red", weight=0]; 407[label="vxw300 == vxw4000",fontsize=16,color="magenta"];407 -> 540[label="",style="dashed", color="magenta", weight=3]; 407 -> 541[label="",style="dashed", color="magenta", weight=3]; 408 -> 46[label="",style="dashed", color="red", weight=0]; 408[label="vxw300 == vxw4000",fontsize=16,color="magenta"];408 -> 542[label="",style="dashed", color="magenta", weight=3]; 408 -> 543[label="",style="dashed", color="magenta", weight=3]; 409[label="False && vxw35",fontsize=16,color="black",shape="box"];409 -> 544[label="",style="solid", color="black", weight=3]; 410[label="True && vxw35",fontsize=16,color="black",shape="box"];410 -> 545[label="",style="solid", color="black", weight=3]; 411[label="vxw301",fontsize=16,color="green",shape="box"];412[label="vxw4001",fontsize=16,color="green",shape="box"];413 -> 33[label="",style="dashed", color="red", weight=0]; 413[label="vxw300 == vxw4000",fontsize=16,color="magenta"];413 -> 546[label="",style="dashed", color="magenta", weight=3]; 413 -> 547[label="",style="dashed", color="magenta", weight=3]; 414 -> 34[label="",style="dashed", color="red", weight=0]; 414[label="vxw300 == vxw4000",fontsize=16,color="magenta"];414 -> 548[label="",style="dashed", color="magenta", weight=3]; 414 -> 549[label="",style="dashed", color="magenta", weight=3]; 415 -> 35[label="",style="dashed", color="red", weight=0]; 415[label="vxw300 == vxw4000",fontsize=16,color="magenta"];415 -> 550[label="",style="dashed", color="magenta", weight=3]; 415 -> 551[label="",style="dashed", color="magenta", weight=3]; 416 -> 36[label="",style="dashed", color="red", weight=0]; 416[label="vxw300 == vxw4000",fontsize=16,color="magenta"];416 -> 552[label="",style="dashed", color="magenta", weight=3]; 416 -> 553[label="",style="dashed", color="magenta", weight=3]; 417 -> 37[label="",style="dashed", color="red", weight=0]; 417[label="vxw300 == vxw4000",fontsize=16,color="magenta"];417 -> 554[label="",style="dashed", color="magenta", weight=3]; 417 -> 555[label="",style="dashed", color="magenta", weight=3]; 418 -> 38[label="",style="dashed", color="red", weight=0]; 418[label="vxw300 == vxw4000",fontsize=16,color="magenta"];418 -> 556[label="",style="dashed", color="magenta", weight=3]; 418 -> 557[label="",style="dashed", color="magenta", weight=3]; 419 -> 39[label="",style="dashed", color="red", weight=0]; 419[label="vxw300 == vxw4000",fontsize=16,color="magenta"];419 -> 558[label="",style="dashed", color="magenta", weight=3]; 419 -> 559[label="",style="dashed", color="magenta", weight=3]; 420 -> 40[label="",style="dashed", color="red", weight=0]; 420[label="vxw300 == vxw4000",fontsize=16,color="magenta"];420 -> 560[label="",style="dashed", color="magenta", weight=3]; 420 -> 561[label="",style="dashed", color="magenta", weight=3]; 421 -> 41[label="",style="dashed", color="red", weight=0]; 421[label="vxw300 == vxw4000",fontsize=16,color="magenta"];421 -> 562[label="",style="dashed", color="magenta", weight=3]; 421 -> 563[label="",style="dashed", color="magenta", weight=3]; 422 -> 42[label="",style="dashed", color="red", weight=0]; 422[label="vxw300 == vxw4000",fontsize=16,color="magenta"];422 -> 564[label="",style="dashed", color="magenta", weight=3]; 422 -> 565[label="",style="dashed", color="magenta", weight=3]; 423 -> 43[label="",style="dashed", color="red", weight=0]; 423[label="vxw300 == vxw4000",fontsize=16,color="magenta"];423 -> 566[label="",style="dashed", color="magenta", weight=3]; 423 -> 567[label="",style="dashed", color="magenta", weight=3]; 424 -> 44[label="",style="dashed", color="red", weight=0]; 424[label="vxw300 == vxw4000",fontsize=16,color="magenta"];424 -> 568[label="",style="dashed", color="magenta", weight=3]; 424 -> 569[label="",style="dashed", color="magenta", weight=3]; 425 -> 45[label="",style="dashed", color="red", weight=0]; 425[label="vxw300 == vxw4000",fontsize=16,color="magenta"];425 -> 570[label="",style="dashed", color="magenta", weight=3]; 425 -> 571[label="",style="dashed", color="magenta", weight=3]; 426 -> 46[label="",style="dashed", color="red", weight=0]; 426[label="vxw300 == vxw4000",fontsize=16,color="magenta"];426 -> 572[label="",style="dashed", color="magenta", weight=3]; 426 -> 573[label="",style="dashed", color="magenta", weight=3]; 427 -> 33[label="",style="dashed", color="red", weight=0]; 427[label="vxw301 == vxw4001",fontsize=16,color="magenta"];427 -> 574[label="",style="dashed", color="magenta", weight=3]; 427 -> 575[label="",style="dashed", color="magenta", weight=3]; 428 -> 36[label="",style="dashed", color="red", weight=0]; 428[label="vxw301 == vxw4001",fontsize=16,color="magenta"];428 -> 576[label="",style="dashed", color="magenta", weight=3]; 428 -> 577[label="",style="dashed", color="magenta", weight=3]; 429 -> 33[label="",style="dashed", color="red", weight=0]; 429[label="vxw300 == vxw4000",fontsize=16,color="magenta"];429 -> 578[label="",style="dashed", color="magenta", weight=3]; 429 -> 579[label="",style="dashed", color="magenta", weight=3]; 430 -> 36[label="",style="dashed", color="red", weight=0]; 430[label="vxw300 == vxw4000",fontsize=16,color="magenta"];430 -> 580[label="",style="dashed", color="magenta", weight=3]; 430 -> 581[label="",style="dashed", color="magenta", weight=3]; 431[label="primEqNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];1958[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];431 -> 1958[label="",style="solid", color="burlywood", weight=9]; 1958 -> 582[label="",style="solid", color="burlywood", weight=3]; 1959[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];431 -> 1959[label="",style="solid", color="burlywood", weight=9]; 1959 -> 583[label="",style="solid", color="burlywood", weight=3]; 432[label="primEqNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];1960[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];432 -> 1960[label="",style="solid", color="burlywood", weight=9]; 1960 -> 584[label="",style="solid", color="burlywood", weight=3]; 1961[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];432 -> 1961[label="",style="solid", color="burlywood", weight=9]; 1961 -> 585[label="",style="solid", color="burlywood", weight=3]; 433[label="vxw300 * vxw4001",fontsize=16,color="black",shape="triangle"];433 -> 586[label="",style="solid", color="black", weight=3]; 434 -> 433[label="",style="dashed", color="red", weight=0]; 434[label="vxw301 * vxw4000",fontsize=16,color="magenta"];434 -> 587[label="",style="dashed", color="magenta", weight=3]; 434 -> 588[label="",style="dashed", color="magenta", weight=3]; 435[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];1962[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1962[label="",style="solid", color="blue", weight=9]; 1962 -> 589[label="",style="solid", color="blue", weight=3]; 1963[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1963[label="",style="solid", color="blue", weight=9]; 1963 -> 590[label="",style="solid", color="blue", weight=3]; 1964[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1964[label="",style="solid", color="blue", weight=9]; 1964 -> 591[label="",style="solid", color="blue", weight=3]; 1965[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1965[label="",style="solid", color="blue", weight=9]; 1965 -> 592[label="",style="solid", color="blue", weight=3]; 1966[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1966[label="",style="solid", color="blue", weight=9]; 1966 -> 593[label="",style="solid", color="blue", weight=3]; 1967[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1967[label="",style="solid", color="blue", weight=9]; 1967 -> 594[label="",style="solid", color="blue", weight=3]; 1968[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1968[label="",style="solid", color="blue", weight=9]; 1968 -> 595[label="",style="solid", color="blue", weight=3]; 1969[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1969[label="",style="solid", color="blue", weight=9]; 1969 -> 596[label="",style="solid", color="blue", weight=3]; 1970[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1970[label="",style="solid", color="blue", weight=9]; 1970 -> 597[label="",style="solid", color="blue", weight=3]; 1971[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1971[label="",style="solid", color="blue", weight=9]; 1971 -> 598[label="",style="solid", color="blue", weight=3]; 1972[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1972[label="",style="solid", color="blue", weight=9]; 1972 -> 599[label="",style="solid", color="blue", weight=3]; 1973[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1973[label="",style="solid", color="blue", weight=9]; 1973 -> 600[label="",style="solid", color="blue", weight=3]; 1974[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1974[label="",style="solid", color="blue", weight=9]; 1974 -> 601[label="",style="solid", color="blue", weight=3]; 1975[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];435 -> 1975[label="",style="solid", color="blue", weight=9]; 1975 -> 602[label="",style="solid", color="blue", weight=3]; 436[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];1976[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1976[label="",style="solid", color="blue", weight=9]; 1976 -> 603[label="",style="solid", color="blue", weight=3]; 1977[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1977[label="",style="solid", color="blue", weight=9]; 1977 -> 604[label="",style="solid", color="blue", weight=3]; 1978[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1978[label="",style="solid", color="blue", weight=9]; 1978 -> 605[label="",style="solid", color="blue", weight=3]; 1979[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1979[label="",style="solid", color="blue", weight=9]; 1979 -> 606[label="",style="solid", color="blue", weight=3]; 1980[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1980[label="",style="solid", color="blue", weight=9]; 1980 -> 607[label="",style="solid", color="blue", weight=3]; 1981[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1981[label="",style="solid", color="blue", weight=9]; 1981 -> 608[label="",style="solid", color="blue", weight=3]; 1982[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1982[label="",style="solid", color="blue", weight=9]; 1982 -> 609[label="",style="solid", color="blue", weight=3]; 1983[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1983[label="",style="solid", color="blue", weight=9]; 1983 -> 610[label="",style="solid", color="blue", weight=3]; 1984[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1984[label="",style="solid", color="blue", weight=9]; 1984 -> 611[label="",style="solid", color="blue", weight=3]; 1985[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1985[label="",style="solid", color="blue", weight=9]; 1985 -> 612[label="",style="solid", color="blue", weight=3]; 1986[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1986[label="",style="solid", color="blue", weight=9]; 1986 -> 613[label="",style="solid", color="blue", weight=3]; 1987[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1987[label="",style="solid", color="blue", weight=9]; 1987 -> 614[label="",style="solid", color="blue", weight=3]; 1988[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1988[label="",style="solid", color="blue", weight=9]; 1988 -> 615[label="",style="solid", color="blue", weight=3]; 1989[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 1989[label="",style="solid", color="blue", weight=9]; 1989 -> 616[label="",style="solid", color="blue", weight=3]; 437 -> 33[label="",style="dashed", color="red", weight=0]; 437[label="vxw300 == vxw4000",fontsize=16,color="magenta"];437 -> 617[label="",style="dashed", color="magenta", weight=3]; 437 -> 618[label="",style="dashed", color="magenta", weight=3]; 438 -> 34[label="",style="dashed", color="red", weight=0]; 438[label="vxw300 == vxw4000",fontsize=16,color="magenta"];438 -> 619[label="",style="dashed", color="magenta", weight=3]; 438 -> 620[label="",style="dashed", color="magenta", weight=3]; 439 -> 35[label="",style="dashed", color="red", weight=0]; 439[label="vxw300 == vxw4000",fontsize=16,color="magenta"];439 -> 621[label="",style="dashed", color="magenta", weight=3]; 439 -> 622[label="",style="dashed", color="magenta", weight=3]; 440 -> 36[label="",style="dashed", color="red", weight=0]; 440[label="vxw300 == vxw4000",fontsize=16,color="magenta"];440 -> 623[label="",style="dashed", color="magenta", weight=3]; 440 -> 624[label="",style="dashed", color="magenta", weight=3]; 441 -> 37[label="",style="dashed", color="red", weight=0]; 441[label="vxw300 == vxw4000",fontsize=16,color="magenta"];441 -> 625[label="",style="dashed", color="magenta", weight=3]; 441 -> 626[label="",style="dashed", color="magenta", weight=3]; 442 -> 38[label="",style="dashed", color="red", weight=0]; 442[label="vxw300 == vxw4000",fontsize=16,color="magenta"];442 -> 627[label="",style="dashed", color="magenta", weight=3]; 442 -> 628[label="",style="dashed", color="magenta", weight=3]; 443 -> 39[label="",style="dashed", color="red", weight=0]; 443[label="vxw300 == vxw4000",fontsize=16,color="magenta"];443 -> 629[label="",style="dashed", color="magenta", weight=3]; 443 -> 630[label="",style="dashed", color="magenta", weight=3]; 444 -> 40[label="",style="dashed", color="red", weight=0]; 444[label="vxw300 == vxw4000",fontsize=16,color="magenta"];444 -> 631[label="",style="dashed", color="magenta", weight=3]; 444 -> 632[label="",style="dashed", color="magenta", weight=3]; 445 -> 41[label="",style="dashed", color="red", weight=0]; 445[label="vxw300 == vxw4000",fontsize=16,color="magenta"];445 -> 633[label="",style="dashed", color="magenta", weight=3]; 445 -> 634[label="",style="dashed", color="magenta", weight=3]; 446 -> 42[label="",style="dashed", color="red", weight=0]; 446[label="vxw300 == vxw4000",fontsize=16,color="magenta"];446 -> 635[label="",style="dashed", color="magenta", weight=3]; 446 -> 636[label="",style="dashed", color="magenta", weight=3]; 447 -> 43[label="",style="dashed", color="red", weight=0]; 447[label="vxw300 == vxw4000",fontsize=16,color="magenta"];447 -> 637[label="",style="dashed", color="magenta", weight=3]; 447 -> 638[label="",style="dashed", color="magenta", weight=3]; 448 -> 44[label="",style="dashed", color="red", weight=0]; 448[label="vxw300 == vxw4000",fontsize=16,color="magenta"];448 -> 639[label="",style="dashed", color="magenta", weight=3]; 448 -> 640[label="",style="dashed", color="magenta", weight=3]; 449 -> 45[label="",style="dashed", color="red", weight=0]; 449[label="vxw300 == vxw4000",fontsize=16,color="magenta"];449 -> 641[label="",style="dashed", color="magenta", weight=3]; 449 -> 642[label="",style="dashed", color="magenta", weight=3]; 450 -> 46[label="",style="dashed", color="red", weight=0]; 450[label="vxw300 == vxw4000",fontsize=16,color="magenta"];450 -> 643[label="",style="dashed", color="magenta", weight=3]; 450 -> 644[label="",style="dashed", color="magenta", weight=3]; 451 -> 433[label="",style="dashed", color="red", weight=0]; 451[label="vxw300 * vxw4001",fontsize=16,color="magenta"];451 -> 645[label="",style="dashed", color="magenta", weight=3]; 451 -> 646[label="",style="dashed", color="magenta", weight=3]; 452 -> 433[label="",style="dashed", color="red", weight=0]; 452[label="vxw301 * vxw4000",fontsize=16,color="magenta"];452 -> 647[label="",style="dashed", color="magenta", weight=3]; 452 -> 648[label="",style="dashed", color="magenta", weight=3]; 453[label="Left vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];1990[label="vxw10/Left vxw100",fontsize=10,color="white",style="solid",shape="box"];453 -> 1990[label="",style="solid", color="burlywood", weight=9]; 1990 -> 649[label="",style="solid", color="burlywood", weight=3]; 1991[label="vxw10/Right vxw100",fontsize=10,color="white",style="solid",shape="box"];453 -> 1991[label="",style="solid", color="burlywood", weight=9]; 1991 -> 650[label="",style="solid", color="burlywood", weight=3]; 454[label="Right vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];1992[label="vxw10/Left vxw100",fontsize=10,color="white",style="solid",shape="box"];454 -> 1992[label="",style="solid", color="burlywood", weight=9]; 1992 -> 651[label="",style="solid", color="burlywood", weight=3]; 1993[label="vxw10/Right vxw100",fontsize=10,color="white",style="solid",shape="box"];454 -> 1993[label="",style="solid", color="burlywood", weight=9]; 1993 -> 652[label="",style="solid", color="burlywood", weight=3]; 455[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];455 -> 653[label="",style="solid", color="black", weight=3]; 456[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];456 -> 654[label="",style="solid", color="black", weight=3]; 457[label="LT <= vxw10",fontsize=16,color="burlywood",shape="box"];1994[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];457 -> 1994[label="",style="solid", color="burlywood", weight=9]; 1994 -> 655[label="",style="solid", color="burlywood", weight=3]; 1995[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];457 -> 1995[label="",style="solid", color="burlywood", weight=9]; 1995 -> 656[label="",style="solid", color="burlywood", weight=3]; 1996[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];457 -> 1996[label="",style="solid", color="burlywood", weight=9]; 1996 -> 657[label="",style="solid", color="burlywood", weight=3]; 458[label="EQ <= vxw10",fontsize=16,color="burlywood",shape="box"];1997[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];458 -> 1997[label="",style="solid", color="burlywood", weight=9]; 1997 -> 658[label="",style="solid", color="burlywood", weight=3]; 1998[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];458 -> 1998[label="",style="solid", color="burlywood", weight=9]; 1998 -> 659[label="",style="solid", color="burlywood", weight=3]; 1999[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];458 -> 1999[label="",style="solid", color="burlywood", weight=9]; 1999 -> 660[label="",style="solid", color="burlywood", weight=3]; 459[label="GT <= vxw10",fontsize=16,color="burlywood",shape="box"];2000[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];459 -> 2000[label="",style="solid", color="burlywood", weight=9]; 2000 -> 661[label="",style="solid", color="burlywood", weight=3]; 2001[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];459 -> 2001[label="",style="solid", color="burlywood", weight=9]; 2001 -> 662[label="",style="solid", color="burlywood", weight=3]; 2002[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];459 -> 2002[label="",style="solid", color="burlywood", weight=9]; 2002 -> 663[label="",style="solid", color="burlywood", weight=3]; 460[label="(vxw110,vxw111,vxw112) <= vxw10",fontsize=16,color="burlywood",shape="box"];2003[label="vxw10/(vxw100,vxw101,vxw102)",fontsize=10,color="white",style="solid",shape="box"];460 -> 2003[label="",style="solid", color="burlywood", weight=9]; 2003 -> 664[label="",style="solid", color="burlywood", weight=3]; 461[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];461 -> 665[label="",style="solid", color="black", weight=3]; 462[label="(vxw110,vxw111) <= vxw10",fontsize=16,color="burlywood",shape="box"];2004[label="vxw10/(vxw100,vxw101)",fontsize=10,color="white",style="solid",shape="box"];462 -> 2004[label="",style="solid", color="burlywood", weight=9]; 2004 -> 666[label="",style="solid", color="burlywood", weight=3]; 463[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];463 -> 667[label="",style="solid", color="black", weight=3]; 464[label="False <= vxw10",fontsize=16,color="burlywood",shape="box"];2005[label="vxw10/False",fontsize=10,color="white",style="solid",shape="box"];464 -> 2005[label="",style="solid", color="burlywood", weight=9]; 2005 -> 668[label="",style="solid", color="burlywood", weight=3]; 2006[label="vxw10/True",fontsize=10,color="white",style="solid",shape="box"];464 -> 2006[label="",style="solid", color="burlywood", weight=9]; 2006 -> 669[label="",style="solid", color="burlywood", weight=3]; 465[label="True <= vxw10",fontsize=16,color="burlywood",shape="box"];2007[label="vxw10/False",fontsize=10,color="white",style="solid",shape="box"];465 -> 2007[label="",style="solid", color="burlywood", weight=9]; 2007 -> 670[label="",style="solid", color="burlywood", weight=3]; 2008[label="vxw10/True",fontsize=10,color="white",style="solid",shape="box"];465 -> 2008[label="",style="solid", color="burlywood", weight=9]; 2008 -> 671[label="",style="solid", color="burlywood", weight=3]; 466[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];466 -> 672[label="",style="solid", color="black", weight=3]; 467[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];467 -> 673[label="",style="solid", color="black", weight=3]; 468[label="Nothing <= vxw10",fontsize=16,color="burlywood",shape="box"];2009[label="vxw10/Nothing",fontsize=10,color="white",style="solid",shape="box"];468 -> 2009[label="",style="solid", color="burlywood", weight=9]; 2009 -> 674[label="",style="solid", color="burlywood", weight=3]; 2010[label="vxw10/Just vxw100",fontsize=10,color="white",style="solid",shape="box"];468 -> 2010[label="",style="solid", color="burlywood", weight=9]; 2010 -> 675[label="",style="solid", color="burlywood", weight=3]; 469[label="Just vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];2011[label="vxw10/Nothing",fontsize=10,color="white",style="solid",shape="box"];469 -> 2011[label="",style="solid", color="burlywood", weight=9]; 2011 -> 676[label="",style="solid", color="burlywood", weight=3]; 2012[label="vxw10/Just vxw100",fontsize=10,color="white",style="solid",shape="box"];469 -> 2012[label="",style="solid", color="burlywood", weight=9]; 2012 -> 677[label="",style="solid", color="burlywood", weight=3]; 470[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];470 -> 678[label="",style="solid", color="black", weight=3]; 471[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];471 -> 679[label="",style="solid", color="black", weight=3]; 472[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare0 (Just vxw20) (Just vxw19) True)",fontsize=16,color="black",shape="box"];472 -> 680[label="",style="solid", color="black", weight=3]; 473[label="Just vxw20 : Just vxw19 : vxw21",fontsize=16,color="green",shape="box"];474[label="vxw41",fontsize=16,color="green",shape="box"];475[label="Just vxw30",fontsize=16,color="green",shape="box"];476 -> 225[label="",style="dashed", color="red", weight=0]; 476[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];476 -> 681[label="",style="dashed", color="magenta", weight=3]; 476 -> 682[label="",style="dashed", color="magenta", weight=3]; 477[label="False",fontsize=16,color="green",shape="box"];478[label="False",fontsize=16,color="green",shape="box"];479[label="True",fontsize=16,color="green",shape="box"];480[label="False",fontsize=16,color="green",shape="box"];481[label="True",fontsize=16,color="green",shape="box"];482 -> 225[label="",style="dashed", color="red", weight=0]; 482[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];482 -> 683[label="",style="dashed", color="magenta", weight=3]; 482 -> 684[label="",style="dashed", color="magenta", weight=3]; 483[label="False",fontsize=16,color="green",shape="box"];484[label="False",fontsize=16,color="green",shape="box"];485[label="True",fontsize=16,color="green",shape="box"];486[label="False",fontsize=16,color="green",shape="box"];487[label="True",fontsize=16,color="green",shape="box"];488[label="vxw301",fontsize=16,color="green",shape="box"];489[label="vxw4001",fontsize=16,color="green",shape="box"];490[label="vxw301",fontsize=16,color="green",shape="box"];491[label="vxw4001",fontsize=16,color="green",shape="box"];492[label="vxw301",fontsize=16,color="green",shape="box"];493[label="vxw4001",fontsize=16,color="green",shape="box"];494[label="vxw301",fontsize=16,color="green",shape="box"];495[label="vxw4001",fontsize=16,color="green",shape="box"];496[label="vxw301",fontsize=16,color="green",shape="box"];497[label="vxw4001",fontsize=16,color="green",shape="box"];498[label="vxw301",fontsize=16,color="green",shape="box"];499[label="vxw4001",fontsize=16,color="green",shape="box"];500[label="vxw301",fontsize=16,color="green",shape="box"];501[label="vxw4001",fontsize=16,color="green",shape="box"];502[label="vxw301",fontsize=16,color="green",shape="box"];503[label="vxw4001",fontsize=16,color="green",shape="box"];504[label="vxw301",fontsize=16,color="green",shape="box"];505[label="vxw4001",fontsize=16,color="green",shape="box"];506[label="vxw301",fontsize=16,color="green",shape="box"];507[label="vxw4001",fontsize=16,color="green",shape="box"];508[label="vxw301",fontsize=16,color="green",shape="box"];509[label="vxw4001",fontsize=16,color="green",shape="box"];510[label="vxw301",fontsize=16,color="green",shape="box"];511[label="vxw4001",fontsize=16,color="green",shape="box"];512[label="vxw301",fontsize=16,color="green",shape="box"];513[label="vxw4001",fontsize=16,color="green",shape="box"];514[label="vxw301",fontsize=16,color="green",shape="box"];515[label="vxw4001",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[label="vxw4000",fontsize=16,color="green",shape="box"];524[label="vxw300",fontsize=16,color="green",shape="box"];525[label="vxw4000",fontsize=16,color="green",shape="box"];526[label="vxw300",fontsize=16,color="green",shape="box"];527[label="vxw4000",fontsize=16,color="green",shape="box"];528[label="vxw300",fontsize=16,color="green",shape="box"];529[label="vxw4000",fontsize=16,color="green",shape="box"];530[label="vxw300",fontsize=16,color="green",shape="box"];531[label="vxw4000",fontsize=16,color="green",shape="box"];532[label="vxw300",fontsize=16,color="green",shape="box"];533[label="vxw4000",fontsize=16,color="green",shape="box"];534[label="vxw300",fontsize=16,color="green",shape="box"];535[label="vxw4000",fontsize=16,color="green",shape="box"];536[label="vxw300",fontsize=16,color="green",shape="box"];537[label="vxw4000",fontsize=16,color="green",shape="box"];538[label="vxw300",fontsize=16,color="green",shape="box"];539[label="vxw4000",fontsize=16,color="green",shape="box"];540[label="vxw300",fontsize=16,color="green",shape="box"];541[label="vxw4000",fontsize=16,color="green",shape="box"];542[label="vxw300",fontsize=16,color="green",shape="box"];543[label="vxw4000",fontsize=16,color="green",shape="box"];544[label="False",fontsize=16,color="green",shape="box"];545[label="vxw35",fontsize=16,color="green",shape="box"];546[label="vxw300",fontsize=16,color="green",shape="box"];547[label="vxw4000",fontsize=16,color="green",shape="box"];548[label="vxw300",fontsize=16,color="green",shape="box"];549[label="vxw4000",fontsize=16,color="green",shape="box"];550[label="vxw300",fontsize=16,color="green",shape="box"];551[label="vxw4000",fontsize=16,color="green",shape="box"];552[label="vxw300",fontsize=16,color="green",shape="box"];553[label="vxw4000",fontsize=16,color="green",shape="box"];554[label="vxw300",fontsize=16,color="green",shape="box"];555[label="vxw4000",fontsize=16,color="green",shape="box"];556[label="vxw300",fontsize=16,color="green",shape="box"];557[label="vxw4000",fontsize=16,color="green",shape="box"];558[label="vxw300",fontsize=16,color="green",shape="box"];559[label="vxw4000",fontsize=16,color="green",shape="box"];560[label="vxw300",fontsize=16,color="green",shape="box"];561[label="vxw4000",fontsize=16,color="green",shape="box"];562[label="vxw300",fontsize=16,color="green",shape="box"];563[label="vxw4000",fontsize=16,color="green",shape="box"];564[label="vxw300",fontsize=16,color="green",shape="box"];565[label="vxw4000",fontsize=16,color="green",shape="box"];566[label="vxw300",fontsize=16,color="green",shape="box"];567[label="vxw4000",fontsize=16,color="green",shape="box"];568[label="vxw300",fontsize=16,color="green",shape="box"];569[label="vxw4000",fontsize=16,color="green",shape="box"];570[label="vxw300",fontsize=16,color="green",shape="box"];571[label="vxw4000",fontsize=16,color="green",shape="box"];572[label="vxw300",fontsize=16,color="green",shape="box"];573[label="vxw4000",fontsize=16,color="green",shape="box"];574[label="vxw301",fontsize=16,color="green",shape="box"];575[label="vxw4001",fontsize=16,color="green",shape="box"];576[label="vxw301",fontsize=16,color="green",shape="box"];577[label="vxw4001",fontsize=16,color="green",shape="box"];578[label="vxw300",fontsize=16,color="green",shape="box"];579[label="vxw4000",fontsize=16,color="green",shape="box"];580[label="vxw300",fontsize=16,color="green",shape="box"];581[label="vxw4000",fontsize=16,color="green",shape="box"];582[label="primEqNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];582 -> 685[label="",style="solid", color="black", weight=3]; 583[label="primEqNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];583 -> 686[label="",style="solid", color="black", weight=3]; 584[label="primEqNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];584 -> 687[label="",style="solid", color="black", weight=3]; 585[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];585 -> 688[label="",style="solid", color="black", weight=3]; 586[label="primMulInt vxw300 vxw4001",fontsize=16,color="burlywood",shape="triangle"];2013[label="vxw300/Pos vxw3000",fontsize=10,color="white",style="solid",shape="box"];586 -> 2013[label="",style="solid", color="burlywood", weight=9]; 2013 -> 689[label="",style="solid", color="burlywood", weight=3]; 2014[label="vxw300/Neg vxw3000",fontsize=10,color="white",style="solid",shape="box"];586 -> 2014[label="",style="solid", color="burlywood", weight=9]; 2014 -> 690[label="",style="solid", color="burlywood", weight=3]; 587[label="vxw301",fontsize=16,color="green",shape="box"];588[label="vxw4000",fontsize=16,color="green",shape="box"];589 -> 33[label="",style="dashed", color="red", weight=0]; 589[label="vxw302 == vxw4002",fontsize=16,color="magenta"];589 -> 691[label="",style="dashed", color="magenta", weight=3]; 589 -> 692[label="",style="dashed", color="magenta", weight=3]; 590 -> 34[label="",style="dashed", color="red", weight=0]; 590[label="vxw302 == vxw4002",fontsize=16,color="magenta"];590 -> 693[label="",style="dashed", color="magenta", weight=3]; 590 -> 694[label="",style="dashed", color="magenta", weight=3]; 591 -> 35[label="",style="dashed", color="red", weight=0]; 591[label="vxw302 == vxw4002",fontsize=16,color="magenta"];591 -> 695[label="",style="dashed", color="magenta", weight=3]; 591 -> 696[label="",style="dashed", color="magenta", weight=3]; 592 -> 36[label="",style="dashed", color="red", weight=0]; 592[label="vxw302 == vxw4002",fontsize=16,color="magenta"];592 -> 697[label="",style="dashed", color="magenta", weight=3]; 592 -> 698[label="",style="dashed", color="magenta", weight=3]; 593 -> 37[label="",style="dashed", color="red", weight=0]; 593[label="vxw302 == vxw4002",fontsize=16,color="magenta"];593 -> 699[label="",style="dashed", color="magenta", weight=3]; 593 -> 700[label="",style="dashed", color="magenta", weight=3]; 594 -> 38[label="",style="dashed", color="red", weight=0]; 594[label="vxw302 == vxw4002",fontsize=16,color="magenta"];594 -> 701[label="",style="dashed", color="magenta", weight=3]; 594 -> 702[label="",style="dashed", color="magenta", weight=3]; 595 -> 39[label="",style="dashed", color="red", weight=0]; 595[label="vxw302 == vxw4002",fontsize=16,color="magenta"];595 -> 703[label="",style="dashed", color="magenta", weight=3]; 595 -> 704[label="",style="dashed", color="magenta", weight=3]; 596 -> 40[label="",style="dashed", color="red", weight=0]; 596[label="vxw302 == vxw4002",fontsize=16,color="magenta"];596 -> 705[label="",style="dashed", color="magenta", weight=3]; 596 -> 706[label="",style="dashed", color="magenta", weight=3]; 597 -> 41[label="",style="dashed", color="red", weight=0]; 597[label="vxw302 == vxw4002",fontsize=16,color="magenta"];597 -> 707[label="",style="dashed", color="magenta", weight=3]; 597 -> 708[label="",style="dashed", color="magenta", weight=3]; 598 -> 42[label="",style="dashed", color="red", weight=0]; 598[label="vxw302 == vxw4002",fontsize=16,color="magenta"];598 -> 709[label="",style="dashed", color="magenta", weight=3]; 598 -> 710[label="",style="dashed", color="magenta", weight=3]; 599 -> 43[label="",style="dashed", color="red", weight=0]; 599[label="vxw302 == vxw4002",fontsize=16,color="magenta"];599 -> 711[label="",style="dashed", color="magenta", weight=3]; 599 -> 712[label="",style="dashed", color="magenta", weight=3]; 600 -> 44[label="",style="dashed", color="red", weight=0]; 600[label="vxw302 == vxw4002",fontsize=16,color="magenta"];600 -> 713[label="",style="dashed", color="magenta", weight=3]; 600 -> 714[label="",style="dashed", color="magenta", weight=3]; 601 -> 45[label="",style="dashed", color="red", weight=0]; 601[label="vxw302 == vxw4002",fontsize=16,color="magenta"];601 -> 715[label="",style="dashed", color="magenta", weight=3]; 601 -> 716[label="",style="dashed", color="magenta", weight=3]; 602 -> 46[label="",style="dashed", color="red", weight=0]; 602[label="vxw302 == vxw4002",fontsize=16,color="magenta"];602 -> 717[label="",style="dashed", color="magenta", weight=3]; 602 -> 718[label="",style="dashed", color="magenta", weight=3]; 603 -> 33[label="",style="dashed", color="red", weight=0]; 603[label="vxw301 == vxw4001",fontsize=16,color="magenta"];603 -> 719[label="",style="dashed", color="magenta", weight=3]; 603 -> 720[label="",style="dashed", color="magenta", weight=3]; 604 -> 34[label="",style="dashed", color="red", weight=0]; 604[label="vxw301 == vxw4001",fontsize=16,color="magenta"];604 -> 721[label="",style="dashed", color="magenta", weight=3]; 604 -> 722[label="",style="dashed", color="magenta", weight=3]; 605 -> 35[label="",style="dashed", color="red", weight=0]; 605[label="vxw301 == vxw4001",fontsize=16,color="magenta"];605 -> 723[label="",style="dashed", color="magenta", weight=3]; 605 -> 724[label="",style="dashed", color="magenta", weight=3]; 606 -> 36[label="",style="dashed", color="red", weight=0]; 606[label="vxw301 == vxw4001",fontsize=16,color="magenta"];606 -> 725[label="",style="dashed", color="magenta", weight=3]; 606 -> 726[label="",style="dashed", color="magenta", weight=3]; 607 -> 37[label="",style="dashed", color="red", weight=0]; 607[label="vxw301 == vxw4001",fontsize=16,color="magenta"];607 -> 727[label="",style="dashed", color="magenta", weight=3]; 607 -> 728[label="",style="dashed", color="magenta", weight=3]; 608 -> 38[label="",style="dashed", color="red", weight=0]; 608[label="vxw301 == vxw4001",fontsize=16,color="magenta"];608 -> 729[label="",style="dashed", color="magenta", weight=3]; 608 -> 730[label="",style="dashed", color="magenta", weight=3]; 609 -> 39[label="",style="dashed", color="red", weight=0]; 609[label="vxw301 == vxw4001",fontsize=16,color="magenta"];609 -> 731[label="",style="dashed", color="magenta", weight=3]; 609 -> 732[label="",style="dashed", color="magenta", weight=3]; 610 -> 40[label="",style="dashed", color="red", weight=0]; 610[label="vxw301 == vxw4001",fontsize=16,color="magenta"];610 -> 733[label="",style="dashed", color="magenta", weight=3]; 610 -> 734[label="",style="dashed", color="magenta", weight=3]; 611 -> 41[label="",style="dashed", color="red", weight=0]; 611[label="vxw301 == vxw4001",fontsize=16,color="magenta"];611 -> 735[label="",style="dashed", color="magenta", weight=3]; 611 -> 736[label="",style="dashed", color="magenta", weight=3]; 612 -> 42[label="",style="dashed", color="red", weight=0]; 612[label="vxw301 == vxw4001",fontsize=16,color="magenta"];612 -> 737[label="",style="dashed", color="magenta", weight=3]; 612 -> 738[label="",style="dashed", color="magenta", weight=3]; 613 -> 43[label="",style="dashed", color="red", weight=0]; 613[label="vxw301 == vxw4001",fontsize=16,color="magenta"];613 -> 739[label="",style="dashed", color="magenta", weight=3]; 613 -> 740[label="",style="dashed", color="magenta", weight=3]; 614 -> 44[label="",style="dashed", color="red", weight=0]; 614[label="vxw301 == vxw4001",fontsize=16,color="magenta"];614 -> 741[label="",style="dashed", color="magenta", weight=3]; 614 -> 742[label="",style="dashed", color="magenta", weight=3]; 615 -> 45[label="",style="dashed", color="red", weight=0]; 615[label="vxw301 == vxw4001",fontsize=16,color="magenta"];615 -> 743[label="",style="dashed", color="magenta", weight=3]; 615 -> 744[label="",style="dashed", color="magenta", weight=3]; 616 -> 46[label="",style="dashed", color="red", weight=0]; 616[label="vxw301 == vxw4001",fontsize=16,color="magenta"];616 -> 745[label="",style="dashed", color="magenta", weight=3]; 616 -> 746[label="",style="dashed", color="magenta", weight=3]; 617[label="vxw300",fontsize=16,color="green",shape="box"];618[label="vxw4000",fontsize=16,color="green",shape="box"];619[label="vxw300",fontsize=16,color="green",shape="box"];620[label="vxw4000",fontsize=16,color="green",shape="box"];621[label="vxw300",fontsize=16,color="green",shape="box"];622[label="vxw4000",fontsize=16,color="green",shape="box"];623[label="vxw300",fontsize=16,color="green",shape="box"];624[label="vxw4000",fontsize=16,color="green",shape="box"];625[label="vxw300",fontsize=16,color="green",shape="box"];626[label="vxw4000",fontsize=16,color="green",shape="box"];627[label="vxw300",fontsize=16,color="green",shape="box"];628[label="vxw4000",fontsize=16,color="green",shape="box"];629[label="vxw300",fontsize=16,color="green",shape="box"];630[label="vxw4000",fontsize=16,color="green",shape="box"];631[label="vxw300",fontsize=16,color="green",shape="box"];632[label="vxw4000",fontsize=16,color="green",shape="box"];633[label="vxw300",fontsize=16,color="green",shape="box"];634[label="vxw4000",fontsize=16,color="green",shape="box"];635[label="vxw300",fontsize=16,color="green",shape="box"];636[label="vxw4000",fontsize=16,color="green",shape="box"];637[label="vxw300",fontsize=16,color="green",shape="box"];638[label="vxw4000",fontsize=16,color="green",shape="box"];639[label="vxw300",fontsize=16,color="green",shape="box"];640[label="vxw4000",fontsize=16,color="green",shape="box"];641[label="vxw300",fontsize=16,color="green",shape="box"];642[label="vxw4000",fontsize=16,color="green",shape="box"];643[label="vxw300",fontsize=16,color="green",shape="box"];644[label="vxw4000",fontsize=16,color="green",shape="box"];645[label="vxw300",fontsize=16,color="green",shape="box"];646[label="vxw4001",fontsize=16,color="green",shape="box"];647[label="vxw301",fontsize=16,color="green",shape="box"];648[label="vxw4000",fontsize=16,color="green",shape="box"];649[label="Left vxw110 <= Left vxw100",fontsize=16,color="black",shape="box"];649 -> 747[label="",style="solid", color="black", weight=3]; 650[label="Left vxw110 <= Right vxw100",fontsize=16,color="black",shape="box"];650 -> 748[label="",style="solid", color="black", weight=3]; 651[label="Right vxw110 <= Left vxw100",fontsize=16,color="black",shape="box"];651 -> 749[label="",style="solid", color="black", weight=3]; 652[label="Right vxw110 <= Right vxw100",fontsize=16,color="black",shape="box"];652 -> 750[label="",style="solid", color="black", weight=3]; 653 -> 751[label="",style="dashed", color="red", weight=0]; 653[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];653 -> 752[label="",style="dashed", color="magenta", weight=3]; 654 -> 751[label="",style="dashed", color="red", weight=0]; 654[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];654 -> 753[label="",style="dashed", color="magenta", weight=3]; 655[label="LT <= LT",fontsize=16,color="black",shape="box"];655 -> 760[label="",style="solid", color="black", weight=3]; 656[label="LT <= EQ",fontsize=16,color="black",shape="box"];656 -> 761[label="",style="solid", color="black", weight=3]; 657[label="LT <= GT",fontsize=16,color="black",shape="box"];657 -> 762[label="",style="solid", color="black", weight=3]; 658[label="EQ <= LT",fontsize=16,color="black",shape="box"];658 -> 763[label="",style="solid", color="black", weight=3]; 659[label="EQ <= EQ",fontsize=16,color="black",shape="box"];659 -> 764[label="",style="solid", color="black", weight=3]; 660[label="EQ <= GT",fontsize=16,color="black",shape="box"];660 -> 765[label="",style="solid", color="black", weight=3]; 661[label="GT <= LT",fontsize=16,color="black",shape="box"];661 -> 766[label="",style="solid", color="black", weight=3]; 662[label="GT <= EQ",fontsize=16,color="black",shape="box"];662 -> 767[label="",style="solid", color="black", weight=3]; 663[label="GT <= GT",fontsize=16,color="black",shape="box"];663 -> 768[label="",style="solid", color="black", weight=3]; 664[label="(vxw110,vxw111,vxw112) <= (vxw100,vxw101,vxw102)",fontsize=16,color="black",shape="box"];664 -> 769[label="",style="solid", color="black", weight=3]; 665 -> 751[label="",style="dashed", color="red", weight=0]; 665[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];665 -> 754[label="",style="dashed", color="magenta", weight=3]; 666[label="(vxw110,vxw111) <= (vxw100,vxw101)",fontsize=16,color="black",shape="box"];666 -> 770[label="",style="solid", color="black", weight=3]; 667 -> 751[label="",style="dashed", color="red", weight=0]; 667[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];667 -> 755[label="",style="dashed", color="magenta", weight=3]; 668[label="False <= False",fontsize=16,color="black",shape="box"];668 -> 771[label="",style="solid", color="black", weight=3]; 669[label="False <= True",fontsize=16,color="black",shape="box"];669 -> 772[label="",style="solid", color="black", weight=3]; 670[label="True <= False",fontsize=16,color="black",shape="box"];670 -> 773[label="",style="solid", color="black", weight=3]; 671[label="True <= True",fontsize=16,color="black",shape="box"];671 -> 774[label="",style="solid", color="black", weight=3]; 672 -> 751[label="",style="dashed", color="red", weight=0]; 672[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];672 -> 756[label="",style="dashed", color="magenta", weight=3]; 673 -> 751[label="",style="dashed", color="red", weight=0]; 673[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];673 -> 757[label="",style="dashed", color="magenta", weight=3]; 674[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];674 -> 775[label="",style="solid", color="black", weight=3]; 675[label="Nothing <= Just vxw100",fontsize=16,color="black",shape="box"];675 -> 776[label="",style="solid", color="black", weight=3]; 676[label="Just vxw110 <= Nothing",fontsize=16,color="black",shape="box"];676 -> 777[label="",style="solid", color="black", weight=3]; 677[label="Just vxw110 <= Just vxw100",fontsize=16,color="black",shape="box"];677 -> 778[label="",style="solid", color="black", weight=3]; 678 -> 751[label="",style="dashed", color="red", weight=0]; 678[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];678 -> 758[label="",style="dashed", color="magenta", weight=3]; 679 -> 751[label="",style="dashed", color="red", weight=0]; 679[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];679 -> 759[label="",style="dashed", color="magenta", weight=3]; 680[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) GT",fontsize=16,color="black",shape="box"];680 -> 779[label="",style="solid", color="black", weight=3]; 681[label="vxw3000",fontsize=16,color="green",shape="box"];682[label="vxw40000",fontsize=16,color="green",shape="box"];683[label="vxw3000",fontsize=16,color="green",shape="box"];684[label="vxw40000",fontsize=16,color="green",shape="box"];685 -> 225[label="",style="dashed", color="red", weight=0]; 685[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];685 -> 780[label="",style="dashed", color="magenta", weight=3]; 685 -> 781[label="",style="dashed", color="magenta", weight=3]; 686[label="False",fontsize=16,color="green",shape="box"];687[label="False",fontsize=16,color="green",shape="box"];688[label="True",fontsize=16,color="green",shape="box"];689[label="primMulInt (Pos vxw3000) vxw4001",fontsize=16,color="burlywood",shape="box"];2015[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];689 -> 2015[label="",style="solid", color="burlywood", weight=9]; 2015 -> 782[label="",style="solid", color="burlywood", weight=3]; 2016[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];689 -> 2016[label="",style="solid", color="burlywood", weight=9]; 2016 -> 783[label="",style="solid", color="burlywood", weight=3]; 690[label="primMulInt (Neg vxw3000) vxw4001",fontsize=16,color="burlywood",shape="box"];2017[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];690 -> 2017[label="",style="solid", color="burlywood", weight=9]; 2017 -> 784[label="",style="solid", color="burlywood", weight=3]; 2018[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];690 -> 2018[label="",style="solid", color="burlywood", weight=9]; 2018 -> 785[label="",style="solid", color="burlywood", weight=3]; 691[label="vxw302",fontsize=16,color="green",shape="box"];692[label="vxw4002",fontsize=16,color="green",shape="box"];693[label="vxw302",fontsize=16,color="green",shape="box"];694[label="vxw4002",fontsize=16,color="green",shape="box"];695[label="vxw302",fontsize=16,color="green",shape="box"];696[label="vxw4002",fontsize=16,color="green",shape="box"];697[label="vxw302",fontsize=16,color="green",shape="box"];698[label="vxw4002",fontsize=16,color="green",shape="box"];699[label="vxw302",fontsize=16,color="green",shape="box"];700[label="vxw4002",fontsize=16,color="green",shape="box"];701[label="vxw302",fontsize=16,color="green",shape="box"];702[label="vxw4002",fontsize=16,color="green",shape="box"];703[label="vxw302",fontsize=16,color="green",shape="box"];704[label="vxw4002",fontsize=16,color="green",shape="box"];705[label="vxw302",fontsize=16,color="green",shape="box"];706[label="vxw4002",fontsize=16,color="green",shape="box"];707[label="vxw302",fontsize=16,color="green",shape="box"];708[label="vxw4002",fontsize=16,color="green",shape="box"];709[label="vxw302",fontsize=16,color="green",shape="box"];710[label="vxw4002",fontsize=16,color="green",shape="box"];711[label="vxw302",fontsize=16,color="green",shape="box"];712[label="vxw4002",fontsize=16,color="green",shape="box"];713[label="vxw302",fontsize=16,color="green",shape="box"];714[label="vxw4002",fontsize=16,color="green",shape="box"];715[label="vxw302",fontsize=16,color="green",shape="box"];716[label="vxw4002",fontsize=16,color="green",shape="box"];717[label="vxw302",fontsize=16,color="green",shape="box"];718[label="vxw4002",fontsize=16,color="green",shape="box"];719[label="vxw301",fontsize=16,color="green",shape="box"];720[label="vxw4001",fontsize=16,color="green",shape="box"];721[label="vxw301",fontsize=16,color="green",shape="box"];722[label="vxw4001",fontsize=16,color="green",shape="box"];723[label="vxw301",fontsize=16,color="green",shape="box"];724[label="vxw4001",fontsize=16,color="green",shape="box"];725[label="vxw301",fontsize=16,color="green",shape="box"];726[label="vxw4001",fontsize=16,color="green",shape="box"];727[label="vxw301",fontsize=16,color="green",shape="box"];728[label="vxw4001",fontsize=16,color="green",shape="box"];729[label="vxw301",fontsize=16,color="green",shape="box"];730[label="vxw4001",fontsize=16,color="green",shape="box"];731[label="vxw301",fontsize=16,color="green",shape="box"];732[label="vxw4001",fontsize=16,color="green",shape="box"];733[label="vxw301",fontsize=16,color="green",shape="box"];734[label="vxw4001",fontsize=16,color="green",shape="box"];735[label="vxw301",fontsize=16,color="green",shape="box"];736[label="vxw4001",fontsize=16,color="green",shape="box"];737[label="vxw301",fontsize=16,color="green",shape="box"];738[label="vxw4001",fontsize=16,color="green",shape="box"];739[label="vxw301",fontsize=16,color="green",shape="box"];740[label="vxw4001",fontsize=16,color="green",shape="box"];741[label="vxw301",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="vxw4001",fontsize=16,color="green",shape="box"];747[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2019[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2019[label="",style="solid", color="blue", weight=9]; 2019 -> 786[label="",style="solid", color="blue", weight=3]; 2020[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2020[label="",style="solid", color="blue", weight=9]; 2020 -> 787[label="",style="solid", color="blue", weight=3]; 2021[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2021[label="",style="solid", color="blue", weight=9]; 2021 -> 788[label="",style="solid", color="blue", weight=3]; 2022[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2022[label="",style="solid", color="blue", weight=9]; 2022 -> 789[label="",style="solid", color="blue", weight=3]; 2023[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2023[label="",style="solid", color="blue", weight=9]; 2023 -> 790[label="",style="solid", color="blue", weight=3]; 2024[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2024[label="",style="solid", color="blue", weight=9]; 2024 -> 791[label="",style="solid", color="blue", weight=3]; 2025[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2025[label="",style="solid", color="blue", weight=9]; 2025 -> 792[label="",style="solid", color="blue", weight=3]; 2026[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2026[label="",style="solid", color="blue", weight=9]; 2026 -> 793[label="",style="solid", color="blue", weight=3]; 2027[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2027[label="",style="solid", color="blue", weight=9]; 2027 -> 794[label="",style="solid", color="blue", weight=3]; 2028[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2028[label="",style="solid", color="blue", weight=9]; 2028 -> 795[label="",style="solid", color="blue", weight=3]; 2029[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2029[label="",style="solid", color="blue", weight=9]; 2029 -> 796[label="",style="solid", color="blue", weight=3]; 2030[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2030[label="",style="solid", color="blue", weight=9]; 2030 -> 797[label="",style="solid", color="blue", weight=3]; 2031[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2031[label="",style="solid", color="blue", weight=9]; 2031 -> 798[label="",style="solid", color="blue", weight=3]; 2032[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2032[label="",style="solid", color="blue", weight=9]; 2032 -> 799[label="",style="solid", color="blue", weight=3]; 748[label="True",fontsize=16,color="green",shape="box"];749[label="False",fontsize=16,color="green",shape="box"];750[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2033[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2033[label="",style="solid", color="blue", weight=9]; 2033 -> 800[label="",style="solid", color="blue", weight=3]; 2034[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2034[label="",style="solid", color="blue", weight=9]; 2034 -> 801[label="",style="solid", color="blue", weight=3]; 2035[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2035[label="",style="solid", color="blue", weight=9]; 2035 -> 802[label="",style="solid", color="blue", weight=3]; 2036[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2036[label="",style="solid", color="blue", weight=9]; 2036 -> 803[label="",style="solid", color="blue", weight=3]; 2037[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2037[label="",style="solid", color="blue", weight=9]; 2037 -> 804[label="",style="solid", color="blue", weight=3]; 2038[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2038[label="",style="solid", color="blue", weight=9]; 2038 -> 805[label="",style="solid", color="blue", weight=3]; 2039[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2039[label="",style="solid", color="blue", weight=9]; 2039 -> 806[label="",style="solid", color="blue", weight=3]; 2040[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2040[label="",style="solid", color="blue", weight=9]; 2040 -> 807[label="",style="solid", color="blue", weight=3]; 2041[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2041[label="",style="solid", color="blue", weight=9]; 2041 -> 808[label="",style="solid", color="blue", weight=3]; 2042[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2042[label="",style="solid", color="blue", weight=9]; 2042 -> 809[label="",style="solid", color="blue", weight=3]; 2043[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2043[label="",style="solid", color="blue", weight=9]; 2043 -> 810[label="",style="solid", color="blue", weight=3]; 2044[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2044[label="",style="solid", color="blue", weight=9]; 2044 -> 811[label="",style="solid", color="blue", weight=3]; 2045[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2045[label="",style="solid", color="blue", weight=9]; 2045 -> 812[label="",style="solid", color="blue", weight=3]; 2046[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];750 -> 2046[label="",style="solid", color="blue", weight=9]; 2046 -> 813[label="",style="solid", color="blue", weight=3]; 752 -> 43[label="",style="dashed", color="red", weight=0]; 752[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];752 -> 814[label="",style="dashed", color="magenta", weight=3]; 752 -> 815[label="",style="dashed", color="magenta", weight=3]; 751[label="not vxw36",fontsize=16,color="burlywood",shape="triangle"];2047[label="vxw36/False",fontsize=10,color="white",style="solid",shape="box"];751 -> 2047[label="",style="solid", color="burlywood", weight=9]; 2047 -> 816[label="",style="solid", color="burlywood", weight=3]; 2048[label="vxw36/True",fontsize=10,color="white",style="solid",shape="box"];751 -> 2048[label="",style="solid", color="burlywood", weight=9]; 2048 -> 817[label="",style="solid", color="burlywood", weight=3]; 753 -> 43[label="",style="dashed", color="red", weight=0]; 753[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];753 -> 818[label="",style="dashed", color="magenta", weight=3]; 753 -> 819[label="",style="dashed", color="magenta", weight=3]; 760[label="True",fontsize=16,color="green",shape="box"];761[label="True",fontsize=16,color="green",shape="box"];762[label="True",fontsize=16,color="green",shape="box"];763[label="False",fontsize=16,color="green",shape="box"];764[label="True",fontsize=16,color="green",shape="box"];765[label="True",fontsize=16,color="green",shape="box"];766[label="False",fontsize=16,color="green",shape="box"];767[label="False",fontsize=16,color="green",shape="box"];768[label="True",fontsize=16,color="green",shape="box"];769 -> 918[label="",style="dashed", color="red", weight=0]; 769[label="vxw110 < vxw100 || vxw110 == vxw100 && (vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102)",fontsize=16,color="magenta"];769 -> 919[label="",style="dashed", color="magenta", weight=3]; 769 -> 920[label="",style="dashed", color="magenta", weight=3]; 754 -> 43[label="",style="dashed", color="red", weight=0]; 754[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];754 -> 820[label="",style="dashed", color="magenta", weight=3]; 754 -> 821[label="",style="dashed", color="magenta", weight=3]; 770 -> 918[label="",style="dashed", color="red", weight=0]; 770[label="vxw110 < vxw100 || vxw110 == vxw100 && vxw111 <= vxw101",fontsize=16,color="magenta"];770 -> 921[label="",style="dashed", color="magenta", weight=3]; 770 -> 922[label="",style="dashed", color="magenta", weight=3]; 755 -> 43[label="",style="dashed", color="red", weight=0]; 755[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];755 -> 822[label="",style="dashed", color="magenta", weight=3]; 755 -> 823[label="",style="dashed", color="magenta", weight=3]; 771[label="True",fontsize=16,color="green",shape="box"];772[label="True",fontsize=16,color="green",shape="box"];773[label="False",fontsize=16,color="green",shape="box"];774[label="True",fontsize=16,color="green",shape="box"];756 -> 43[label="",style="dashed", color="red", weight=0]; 756[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];756 -> 824[label="",style="dashed", color="magenta", weight=3]; 756 -> 825[label="",style="dashed", color="magenta", weight=3]; 757 -> 43[label="",style="dashed", color="red", weight=0]; 757[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];757 -> 826[label="",style="dashed", color="magenta", weight=3]; 757 -> 827[label="",style="dashed", color="magenta", weight=3]; 775[label="True",fontsize=16,color="green",shape="box"];776[label="True",fontsize=16,color="green",shape="box"];777[label="False",fontsize=16,color="green",shape="box"];778[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2049[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2049[label="",style="solid", color="blue", weight=9]; 2049 -> 837[label="",style="solid", color="blue", weight=3]; 2050[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2050[label="",style="solid", color="blue", weight=9]; 2050 -> 838[label="",style="solid", color="blue", weight=3]; 2051[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2051[label="",style="solid", color="blue", weight=9]; 2051 -> 839[label="",style="solid", color="blue", weight=3]; 2052[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2052[label="",style="solid", color="blue", weight=9]; 2052 -> 840[label="",style="solid", color="blue", weight=3]; 2053[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2053[label="",style="solid", color="blue", weight=9]; 2053 -> 841[label="",style="solid", color="blue", weight=3]; 2054[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2054[label="",style="solid", color="blue", weight=9]; 2054 -> 842[label="",style="solid", color="blue", weight=3]; 2055[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2055[label="",style="solid", color="blue", weight=9]; 2055 -> 843[label="",style="solid", color="blue", weight=3]; 2056[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2056[label="",style="solid", color="blue", weight=9]; 2056 -> 844[label="",style="solid", color="blue", weight=3]; 2057[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2057[label="",style="solid", color="blue", weight=9]; 2057 -> 845[label="",style="solid", color="blue", weight=3]; 2058[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2058[label="",style="solid", color="blue", weight=9]; 2058 -> 846[label="",style="solid", color="blue", weight=3]; 2059[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2059[label="",style="solid", color="blue", weight=9]; 2059 -> 847[label="",style="solid", color="blue", weight=3]; 2060[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2060[label="",style="solid", color="blue", weight=9]; 2060 -> 848[label="",style="solid", color="blue", weight=3]; 2061[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2061[label="",style="solid", color="blue", weight=9]; 2061 -> 849[label="",style="solid", color="blue", weight=3]; 2062[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];778 -> 2062[label="",style="solid", color="blue", weight=9]; 2062 -> 850[label="",style="solid", color="blue", weight=3]; 758 -> 43[label="",style="dashed", color="red", weight=0]; 758[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];758 -> 828[label="",style="dashed", color="magenta", weight=3]; 758 -> 829[label="",style="dashed", color="magenta", weight=3]; 759 -> 43[label="",style="dashed", color="red", weight=0]; 759[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];759 -> 830[label="",style="dashed", color="magenta", weight=3]; 759 -> 831[label="",style="dashed", color="magenta", weight=3]; 779[label="Just vxw19 : List.insertBy compare (Just vxw20) vxw21",fontsize=16,color="green",shape="box"];779 -> 851[label="",style="dashed", color="green", weight=3]; 780[label="vxw3000",fontsize=16,color="green",shape="box"];781[label="vxw40000",fontsize=16,color="green",shape="box"];782[label="primMulInt (Pos vxw3000) (Pos vxw40010)",fontsize=16,color="black",shape="box"];782 -> 852[label="",style="solid", color="black", weight=3]; 783[label="primMulInt (Pos vxw3000) (Neg vxw40010)",fontsize=16,color="black",shape="box"];783 -> 853[label="",style="solid", color="black", weight=3]; 784[label="primMulInt (Neg vxw3000) (Pos vxw40010)",fontsize=16,color="black",shape="box"];784 -> 854[label="",style="solid", color="black", weight=3]; 785[label="primMulInt (Neg vxw3000) (Neg vxw40010)",fontsize=16,color="black",shape="box"];785 -> 855[label="",style="solid", color="black", weight=3]; 786 -> 239[label="",style="dashed", color="red", weight=0]; 786[label="vxw110 <= vxw100",fontsize=16,color="magenta"];786 -> 856[label="",style="dashed", color="magenta", weight=3]; 786 -> 857[label="",style="dashed", color="magenta", weight=3]; 787 -> 240[label="",style="dashed", color="red", weight=0]; 787[label="vxw110 <= vxw100",fontsize=16,color="magenta"];787 -> 858[label="",style="dashed", color="magenta", weight=3]; 787 -> 859[label="",style="dashed", color="magenta", weight=3]; 788 -> 241[label="",style="dashed", color="red", weight=0]; 788[label="vxw110 <= vxw100",fontsize=16,color="magenta"];788 -> 860[label="",style="dashed", color="magenta", weight=3]; 788 -> 861[label="",style="dashed", color="magenta", weight=3]; 789 -> 242[label="",style="dashed", color="red", weight=0]; 789[label="vxw110 <= vxw100",fontsize=16,color="magenta"];789 -> 862[label="",style="dashed", color="magenta", weight=3]; 789 -> 863[label="",style="dashed", color="magenta", weight=3]; 790 -> 243[label="",style="dashed", color="red", weight=0]; 790[label="vxw110 <= vxw100",fontsize=16,color="magenta"];790 -> 864[label="",style="dashed", color="magenta", weight=3]; 790 -> 865[label="",style="dashed", color="magenta", weight=3]; 791 -> 244[label="",style="dashed", color="red", weight=0]; 791[label="vxw110 <= vxw100",fontsize=16,color="magenta"];791 -> 866[label="",style="dashed", color="magenta", weight=3]; 791 -> 867[label="",style="dashed", color="magenta", weight=3]; 792 -> 245[label="",style="dashed", color="red", weight=0]; 792[label="vxw110 <= vxw100",fontsize=16,color="magenta"];792 -> 868[label="",style="dashed", color="magenta", weight=3]; 792 -> 869[label="",style="dashed", color="magenta", weight=3]; 793 -> 246[label="",style="dashed", color="red", weight=0]; 793[label="vxw110 <= vxw100",fontsize=16,color="magenta"];793 -> 870[label="",style="dashed", color="magenta", weight=3]; 793 -> 871[label="",style="dashed", color="magenta", weight=3]; 794 -> 247[label="",style="dashed", color="red", weight=0]; 794[label="vxw110 <= vxw100",fontsize=16,color="magenta"];794 -> 872[label="",style="dashed", color="magenta", weight=3]; 794 -> 873[label="",style="dashed", color="magenta", weight=3]; 795 -> 248[label="",style="dashed", color="red", weight=0]; 795[label="vxw110 <= vxw100",fontsize=16,color="magenta"];795 -> 874[label="",style="dashed", color="magenta", weight=3]; 795 -> 875[label="",style="dashed", color="magenta", weight=3]; 796 -> 249[label="",style="dashed", color="red", weight=0]; 796[label="vxw110 <= vxw100",fontsize=16,color="magenta"];796 -> 876[label="",style="dashed", color="magenta", weight=3]; 796 -> 877[label="",style="dashed", color="magenta", weight=3]; 797 -> 250[label="",style="dashed", color="red", weight=0]; 797[label="vxw110 <= vxw100",fontsize=16,color="magenta"];797 -> 878[label="",style="dashed", color="magenta", weight=3]; 797 -> 879[label="",style="dashed", color="magenta", weight=3]; 798 -> 251[label="",style="dashed", color="red", weight=0]; 798[label="vxw110 <= vxw100",fontsize=16,color="magenta"];798 -> 880[label="",style="dashed", color="magenta", weight=3]; 798 -> 881[label="",style="dashed", color="magenta", weight=3]; 799 -> 252[label="",style="dashed", color="red", weight=0]; 799[label="vxw110 <= vxw100",fontsize=16,color="magenta"];799 -> 882[label="",style="dashed", color="magenta", weight=3]; 799 -> 883[label="",style="dashed", color="magenta", weight=3]; 800 -> 239[label="",style="dashed", color="red", weight=0]; 800[label="vxw110 <= vxw100",fontsize=16,color="magenta"];800 -> 884[label="",style="dashed", color="magenta", weight=3]; 800 -> 885[label="",style="dashed", color="magenta", weight=3]; 801 -> 240[label="",style="dashed", color="red", weight=0]; 801[label="vxw110 <= vxw100",fontsize=16,color="magenta"];801 -> 886[label="",style="dashed", color="magenta", weight=3]; 801 -> 887[label="",style="dashed", color="magenta", weight=3]; 802 -> 241[label="",style="dashed", color="red", weight=0]; 802[label="vxw110 <= vxw100",fontsize=16,color="magenta"];802 -> 888[label="",style="dashed", color="magenta", weight=3]; 802 -> 889[label="",style="dashed", color="magenta", weight=3]; 803 -> 242[label="",style="dashed", color="red", weight=0]; 803[label="vxw110 <= vxw100",fontsize=16,color="magenta"];803 -> 890[label="",style="dashed", color="magenta", weight=3]; 803 -> 891[label="",style="dashed", color="magenta", weight=3]; 804 -> 243[label="",style="dashed", color="red", weight=0]; 804[label="vxw110 <= vxw100",fontsize=16,color="magenta"];804 -> 892[label="",style="dashed", color="magenta", weight=3]; 804 -> 893[label="",style="dashed", color="magenta", weight=3]; 805 -> 244[label="",style="dashed", color="red", weight=0]; 805[label="vxw110 <= vxw100",fontsize=16,color="magenta"];805 -> 894[label="",style="dashed", color="magenta", weight=3]; 805 -> 895[label="",style="dashed", color="magenta", weight=3]; 806 -> 245[label="",style="dashed", color="red", weight=0]; 806[label="vxw110 <= vxw100",fontsize=16,color="magenta"];806 -> 896[label="",style="dashed", color="magenta", weight=3]; 806 -> 897[label="",style="dashed", color="magenta", weight=3]; 807 -> 246[label="",style="dashed", color="red", weight=0]; 807[label="vxw110 <= vxw100",fontsize=16,color="magenta"];807 -> 898[label="",style="dashed", color="magenta", weight=3]; 807 -> 899[label="",style="dashed", color="magenta", weight=3]; 808 -> 247[label="",style="dashed", color="red", weight=0]; 808[label="vxw110 <= vxw100",fontsize=16,color="magenta"];808 -> 900[label="",style="dashed", color="magenta", weight=3]; 808 -> 901[label="",style="dashed", color="magenta", weight=3]; 809 -> 248[label="",style="dashed", color="red", weight=0]; 809[label="vxw110 <= vxw100",fontsize=16,color="magenta"];809 -> 902[label="",style="dashed", color="magenta", weight=3]; 809 -> 903[label="",style="dashed", color="magenta", weight=3]; 810 -> 249[label="",style="dashed", color="red", weight=0]; 810[label="vxw110 <= vxw100",fontsize=16,color="magenta"];810 -> 904[label="",style="dashed", color="magenta", weight=3]; 810 -> 905[label="",style="dashed", color="magenta", weight=3]; 811 -> 250[label="",style="dashed", color="red", weight=0]; 811[label="vxw110 <= vxw100",fontsize=16,color="magenta"];811 -> 906[label="",style="dashed", color="magenta", weight=3]; 811 -> 907[label="",style="dashed", color="magenta", weight=3]; 812 -> 251[label="",style="dashed", color="red", weight=0]; 812[label="vxw110 <= vxw100",fontsize=16,color="magenta"];812 -> 908[label="",style="dashed", color="magenta", weight=3]; 812 -> 909[label="",style="dashed", color="magenta", weight=3]; 813 -> 252[label="",style="dashed", color="red", weight=0]; 813[label="vxw110 <= vxw100",fontsize=16,color="magenta"];813 -> 910[label="",style="dashed", color="magenta", weight=3]; 813 -> 911[label="",style="dashed", color="magenta", weight=3]; 814[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2063[label="vxw11/Integer vxw110",fontsize=10,color="white",style="solid",shape="box"];814 -> 2063[label="",style="solid", color="burlywood", weight=9]; 2063 -> 912[label="",style="solid", color="burlywood", weight=3]; 815[label="GT",fontsize=16,color="green",shape="box"];816[label="not False",fontsize=16,color="black",shape="box"];816 -> 913[label="",style="solid", color="black", weight=3]; 817[label="not True",fontsize=16,color="black",shape="box"];817 -> 914[label="",style="solid", color="black", weight=3]; 818[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];818 -> 915[label="",style="solid", color="black", weight=3]; 819[label="GT",fontsize=16,color="green",shape="box"];919[label="vxw110 < vxw100",fontsize=16,color="blue",shape="box"];2064[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2064[label="",style="solid", color="blue", weight=9]; 2064 -> 927[label="",style="solid", color="blue", weight=3]; 2065[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2065[label="",style="solid", color="blue", weight=9]; 2065 -> 928[label="",style="solid", color="blue", weight=3]; 2066[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2066[label="",style="solid", color="blue", weight=9]; 2066 -> 929[label="",style="solid", color="blue", weight=3]; 2067[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2067[label="",style="solid", color="blue", weight=9]; 2067 -> 930[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"];919 -> 2068[label="",style="solid", color="blue", weight=9]; 2068 -> 931[label="",style="solid", color="blue", weight=3]; 2069[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2069[label="",style="solid", color="blue", weight=9]; 2069 -> 932[label="",style="solid", color="blue", weight=3]; 2070[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2070[label="",style="solid", color="blue", weight=9]; 2070 -> 933[label="",style="solid", color="blue", weight=3]; 2071[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2071[label="",style="solid", color="blue", weight=9]; 2071 -> 934[label="",style="solid", color="blue", weight=3]; 2072[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2072[label="",style="solid", color="blue", weight=9]; 2072 -> 935[label="",style="solid", color="blue", weight=3]; 2073[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2073[label="",style="solid", color="blue", weight=9]; 2073 -> 936[label="",style="solid", color="blue", weight=3]; 2074[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2074[label="",style="solid", color="blue", weight=9]; 2074 -> 937[label="",style="solid", color="blue", weight=3]; 2075[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2075[label="",style="solid", color="blue", weight=9]; 2075 -> 938[label="",style="solid", color="blue", weight=3]; 2076[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2076[label="",style="solid", color="blue", weight=9]; 2076 -> 939[label="",style="solid", color="blue", weight=3]; 2077[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];919 -> 2077[label="",style="solid", color="blue", weight=9]; 2077 -> 940[label="",style="solid", color="blue", weight=3]; 920 -> 368[label="",style="dashed", color="red", weight=0]; 920[label="vxw110 == vxw100 && (vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102)",fontsize=16,color="magenta"];920 -> 941[label="",style="dashed", color="magenta", weight=3]; 920 -> 942[label="",style="dashed", color="magenta", weight=3]; 918[label="vxw42 || vxw43",fontsize=16,color="burlywood",shape="triangle"];2078[label="vxw42/False",fontsize=10,color="white",style="solid",shape="box"];918 -> 2078[label="",style="solid", color="burlywood", weight=9]; 2078 -> 943[label="",style="solid", color="burlywood", weight=3]; 2079[label="vxw42/True",fontsize=10,color="white",style="solid",shape="box"];918 -> 2079[label="",style="solid", color="burlywood", weight=9]; 2079 -> 944[label="",style="solid", color="burlywood", weight=3]; 820[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2080[label="vxw11/vxw110 :% vxw111",fontsize=10,color="white",style="solid",shape="box"];820 -> 2080[label="",style="solid", color="burlywood", weight=9]; 2080 -> 945[label="",style="solid", color="burlywood", weight=3]; 821[label="GT",fontsize=16,color="green",shape="box"];921[label="vxw110 < vxw100",fontsize=16,color="blue",shape="box"];2081[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2081[label="",style="solid", color="blue", weight=9]; 2081 -> 946[label="",style="solid", color="blue", weight=3]; 2082[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2082[label="",style="solid", color="blue", weight=9]; 2082 -> 947[label="",style="solid", color="blue", weight=3]; 2083[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2083[label="",style="solid", color="blue", weight=9]; 2083 -> 948[label="",style="solid", color="blue", weight=3]; 2084[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2084[label="",style="solid", color="blue", weight=9]; 2084 -> 949[label="",style="solid", color="blue", weight=3]; 2085[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2085[label="",style="solid", color="blue", weight=9]; 2085 -> 950[label="",style="solid", color="blue", weight=3]; 2086[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2086[label="",style="solid", color="blue", weight=9]; 2086 -> 951[label="",style="solid", color="blue", weight=3]; 2087[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2087[label="",style="solid", color="blue", weight=9]; 2087 -> 952[label="",style="solid", color="blue", weight=3]; 2088[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2088[label="",style="solid", color="blue", weight=9]; 2088 -> 953[label="",style="solid", color="blue", weight=3]; 2089[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2089[label="",style="solid", color="blue", weight=9]; 2089 -> 954[label="",style="solid", color="blue", weight=3]; 2090[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2090[label="",style="solid", color="blue", weight=9]; 2090 -> 955[label="",style="solid", color="blue", weight=3]; 2091[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2091[label="",style="solid", color="blue", weight=9]; 2091 -> 956[label="",style="solid", color="blue", weight=3]; 2092[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2092[label="",style="solid", color="blue", weight=9]; 2092 -> 957[label="",style="solid", color="blue", weight=3]; 2093[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2093[label="",style="solid", color="blue", weight=9]; 2093 -> 958[label="",style="solid", color="blue", weight=3]; 2094[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 2094[label="",style="solid", color="blue", weight=9]; 2094 -> 959[label="",style="solid", color="blue", weight=3]; 922 -> 368[label="",style="dashed", color="red", weight=0]; 922[label="vxw110 == vxw100 && vxw111 <= vxw101",fontsize=16,color="magenta"];922 -> 960[label="",style="dashed", color="magenta", weight=3]; 922 -> 961[label="",style="dashed", color="magenta", weight=3]; 822[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];822 -> 962[label="",style="solid", color="black", weight=3]; 823[label="GT",fontsize=16,color="green",shape="box"];824[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];824 -> 963[label="",style="solid", color="black", weight=3]; 825[label="GT",fontsize=16,color="green",shape="box"];826[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];826 -> 964[label="",style="solid", color="black", weight=3]; 827[label="GT",fontsize=16,color="green",shape="box"];837 -> 239[label="",style="dashed", color="red", weight=0]; 837[label="vxw110 <= vxw100",fontsize=16,color="magenta"];837 -> 965[label="",style="dashed", color="magenta", weight=3]; 837 -> 966[label="",style="dashed", color="magenta", weight=3]; 838 -> 240[label="",style="dashed", color="red", weight=0]; 838[label="vxw110 <= vxw100",fontsize=16,color="magenta"];838 -> 967[label="",style="dashed", color="magenta", weight=3]; 838 -> 968[label="",style="dashed", color="magenta", weight=3]; 839 -> 241[label="",style="dashed", color="red", weight=0]; 839[label="vxw110 <= vxw100",fontsize=16,color="magenta"];839 -> 969[label="",style="dashed", color="magenta", weight=3]; 839 -> 970[label="",style="dashed", color="magenta", weight=3]; 840 -> 242[label="",style="dashed", color="red", weight=0]; 840[label="vxw110 <= vxw100",fontsize=16,color="magenta"];840 -> 971[label="",style="dashed", color="magenta", weight=3]; 840 -> 972[label="",style="dashed", color="magenta", weight=3]; 841 -> 243[label="",style="dashed", color="red", weight=0]; 841[label="vxw110 <= vxw100",fontsize=16,color="magenta"];841 -> 973[label="",style="dashed", color="magenta", weight=3]; 841 -> 974[label="",style="dashed", color="magenta", weight=3]; 842 -> 244[label="",style="dashed", color="red", weight=0]; 842[label="vxw110 <= vxw100",fontsize=16,color="magenta"];842 -> 975[label="",style="dashed", color="magenta", weight=3]; 842 -> 976[label="",style="dashed", color="magenta", weight=3]; 843 -> 245[label="",style="dashed", color="red", weight=0]; 843[label="vxw110 <= vxw100",fontsize=16,color="magenta"];843 -> 977[label="",style="dashed", color="magenta", weight=3]; 843 -> 978[label="",style="dashed", color="magenta", weight=3]; 844 -> 246[label="",style="dashed", color="red", weight=0]; 844[label="vxw110 <= vxw100",fontsize=16,color="magenta"];844 -> 979[label="",style="dashed", color="magenta", weight=3]; 844 -> 980[label="",style="dashed", color="magenta", weight=3]; 845 -> 247[label="",style="dashed", color="red", weight=0]; 845[label="vxw110 <= vxw100",fontsize=16,color="magenta"];845 -> 981[label="",style="dashed", color="magenta", weight=3]; 845 -> 982[label="",style="dashed", color="magenta", weight=3]; 846 -> 248[label="",style="dashed", color="red", weight=0]; 846[label="vxw110 <= vxw100",fontsize=16,color="magenta"];846 -> 983[label="",style="dashed", color="magenta", weight=3]; 846 -> 984[label="",style="dashed", color="magenta", weight=3]; 847 -> 249[label="",style="dashed", color="red", weight=0]; 847[label="vxw110 <= vxw100",fontsize=16,color="magenta"];847 -> 985[label="",style="dashed", color="magenta", weight=3]; 847 -> 986[label="",style="dashed", color="magenta", weight=3]; 848 -> 250[label="",style="dashed", color="red", weight=0]; 848[label="vxw110 <= vxw100",fontsize=16,color="magenta"];848 -> 987[label="",style="dashed", color="magenta", weight=3]; 848 -> 988[label="",style="dashed", color="magenta", weight=3]; 849 -> 251[label="",style="dashed", color="red", weight=0]; 849[label="vxw110 <= vxw100",fontsize=16,color="magenta"];849 -> 989[label="",style="dashed", color="magenta", weight=3]; 849 -> 990[label="",style="dashed", color="magenta", weight=3]; 850 -> 252[label="",style="dashed", color="red", weight=0]; 850[label="vxw110 <= vxw100",fontsize=16,color="magenta"];850 -> 991[label="",style="dashed", color="magenta", weight=3]; 850 -> 992[label="",style="dashed", color="magenta", weight=3]; 828[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2095[label="vxw11/vxw110 : vxw111",fontsize=10,color="white",style="solid",shape="box"];828 -> 2095[label="",style="solid", color="burlywood", weight=9]; 2095 -> 993[label="",style="solid", color="burlywood", weight=3]; 2096[label="vxw11/[]",fontsize=10,color="white",style="solid",shape="box"];828 -> 2096[label="",style="solid", color="burlywood", weight=9]; 2096 -> 994[label="",style="solid", color="burlywood", weight=3]; 829[label="GT",fontsize=16,color="green",shape="box"];830[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2097[label="vxw11/()",fontsize=10,color="white",style="solid",shape="box"];830 -> 2097[label="",style="solid", color="burlywood", weight=9]; 2097 -> 995[label="",style="solid", color="burlywood", weight=3]; 831[label="GT",fontsize=16,color="green",shape="box"];851 -> 5[label="",style="dashed", color="red", weight=0]; 851[label="List.insertBy compare (Just vxw20) vxw21",fontsize=16,color="magenta"];851 -> 996[label="",style="dashed", color="magenta", weight=3]; 851 -> 997[label="",style="dashed", color="magenta", weight=3]; 852[label="Pos (primMulNat vxw3000 vxw40010)",fontsize=16,color="green",shape="box"];852 -> 998[label="",style="dashed", color="green", weight=3]; 853[label="Neg (primMulNat vxw3000 vxw40010)",fontsize=16,color="green",shape="box"];853 -> 999[label="",style="dashed", color="green", weight=3]; 854[label="Neg (primMulNat vxw3000 vxw40010)",fontsize=16,color="green",shape="box"];854 -> 1000[label="",style="dashed", color="green", weight=3]; 855[label="Pos (primMulNat vxw3000 vxw40010)",fontsize=16,color="green",shape="box"];855 -> 1001[label="",style="dashed", color="green", weight=3]; 856[label="vxw110",fontsize=16,color="green",shape="box"];857[label="vxw100",fontsize=16,color="green",shape="box"];858[label="vxw110",fontsize=16,color="green",shape="box"];859[label="vxw100",fontsize=16,color="green",shape="box"];860[label="vxw110",fontsize=16,color="green",shape="box"];861[label="vxw100",fontsize=16,color="green",shape="box"];862[label="vxw110",fontsize=16,color="green",shape="box"];863[label="vxw100",fontsize=16,color="green",shape="box"];864[label="vxw110",fontsize=16,color="green",shape="box"];865[label="vxw100",fontsize=16,color="green",shape="box"];866[label="vxw110",fontsize=16,color="green",shape="box"];867[label="vxw100",fontsize=16,color="green",shape="box"];868[label="vxw110",fontsize=16,color="green",shape="box"];869[label="vxw100",fontsize=16,color="green",shape="box"];870[label="vxw110",fontsize=16,color="green",shape="box"];871[label="vxw100",fontsize=16,color="green",shape="box"];872[label="vxw110",fontsize=16,color="green",shape="box"];873[label="vxw100",fontsize=16,color="green",shape="box"];874[label="vxw110",fontsize=16,color="green",shape="box"];875[label="vxw100",fontsize=16,color="green",shape="box"];876[label="vxw110",fontsize=16,color="green",shape="box"];877[label="vxw100",fontsize=16,color="green",shape="box"];878[label="vxw110",fontsize=16,color="green",shape="box"];879[label="vxw100",fontsize=16,color="green",shape="box"];880[label="vxw110",fontsize=16,color="green",shape="box"];881[label="vxw100",fontsize=16,color="green",shape="box"];882[label="vxw110",fontsize=16,color="green",shape="box"];883[label="vxw100",fontsize=16,color="green",shape="box"];884[label="vxw110",fontsize=16,color="green",shape="box"];885[label="vxw100",fontsize=16,color="green",shape="box"];886[label="vxw110",fontsize=16,color="green",shape="box"];887[label="vxw100",fontsize=16,color="green",shape="box"];888[label="vxw110",fontsize=16,color="green",shape="box"];889[label="vxw100",fontsize=16,color="green",shape="box"];890[label="vxw110",fontsize=16,color="green",shape="box"];891[label="vxw100",fontsize=16,color="green",shape="box"];892[label="vxw110",fontsize=16,color="green",shape="box"];893[label="vxw100",fontsize=16,color="green",shape="box"];894[label="vxw110",fontsize=16,color="green",shape="box"];895[label="vxw100",fontsize=16,color="green",shape="box"];896[label="vxw110",fontsize=16,color="green",shape="box"];897[label="vxw100",fontsize=16,color="green",shape="box"];898[label="vxw110",fontsize=16,color="green",shape="box"];899[label="vxw100",fontsize=16,color="green",shape="box"];900[label="vxw110",fontsize=16,color="green",shape="box"];901[label="vxw100",fontsize=16,color="green",shape="box"];902[label="vxw110",fontsize=16,color="green",shape="box"];903[label="vxw100",fontsize=16,color="green",shape="box"];904[label="vxw110",fontsize=16,color="green",shape="box"];905[label="vxw100",fontsize=16,color="green",shape="box"];906[label="vxw110",fontsize=16,color="green",shape="box"];907[label="vxw100",fontsize=16,color="green",shape="box"];908[label="vxw110",fontsize=16,color="green",shape="box"];909[label="vxw100",fontsize=16,color="green",shape="box"];910[label="vxw110",fontsize=16,color="green",shape="box"];911[label="vxw100",fontsize=16,color="green",shape="box"];912[label="compare (Integer vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2098[label="vxw10/Integer vxw100",fontsize=10,color="white",style="solid",shape="box"];912 -> 2098[label="",style="solid", color="burlywood", weight=9]; 2098 -> 1002[label="",style="solid", color="burlywood", weight=3]; 913[label="True",fontsize=16,color="green",shape="box"];914[label="False",fontsize=16,color="green",shape="box"];915[label="primCmpChar vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2099[label="vxw11/Char vxw110",fontsize=10,color="white",style="solid",shape="box"];915 -> 2099[label="",style="solid", color="burlywood", weight=9]; 2099 -> 1003[label="",style="solid", color="burlywood", weight=3]; 927[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];927 -> 1004[label="",style="solid", color="black", weight=3]; 928[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];928 -> 1005[label="",style="solid", color="black", weight=3]; 929[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];929 -> 1006[label="",style="solid", color="black", weight=3]; 930[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];930 -> 1007[label="",style="solid", color="black", weight=3]; 931[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];931 -> 1008[label="",style="solid", color="black", weight=3]; 932[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];932 -> 1009[label="",style="solid", color="black", weight=3]; 933[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];933 -> 1010[label="",style="solid", color="black", weight=3]; 934[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];934 -> 1011[label="",style="solid", color="black", weight=3]; 935[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];935 -> 1012[label="",style="solid", color="black", weight=3]; 936[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];936 -> 1013[label="",style="solid", color="black", weight=3]; 937[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];937 -> 1014[label="",style="solid", color="black", weight=3]; 938[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];938 -> 1015[label="",style="solid", color="black", weight=3]; 939[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];939 -> 1016[label="",style="solid", color="black", weight=3]; 940[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];940 -> 1017[label="",style="solid", color="black", weight=3]; 941 -> 918[label="",style="dashed", color="red", weight=0]; 941[label="vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102",fontsize=16,color="magenta"];941 -> 1018[label="",style="dashed", color="magenta", weight=3]; 941 -> 1019[label="",style="dashed", color="magenta", weight=3]; 942[label="vxw110 == vxw100",fontsize=16,color="blue",shape="box"];2100[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2100[label="",style="solid", color="blue", weight=9]; 2100 -> 1020[label="",style="solid", color="blue", weight=3]; 2101[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2101[label="",style="solid", color="blue", weight=9]; 2101 -> 1021[label="",style="solid", color="blue", weight=3]; 2102[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2102[label="",style="solid", color="blue", weight=9]; 2102 -> 1022[label="",style="solid", color="blue", weight=3]; 2103[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2103[label="",style="solid", color="blue", weight=9]; 2103 -> 1023[label="",style="solid", color="blue", weight=3]; 2104[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2104[label="",style="solid", color="blue", weight=9]; 2104 -> 1024[label="",style="solid", color="blue", weight=3]; 2105[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2105[label="",style="solid", color="blue", weight=9]; 2105 -> 1025[label="",style="solid", color="blue", weight=3]; 2106[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2106[label="",style="solid", color="blue", weight=9]; 2106 -> 1026[label="",style="solid", color="blue", weight=3]; 2107[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2107[label="",style="solid", color="blue", weight=9]; 2107 -> 1027[label="",style="solid", color="blue", weight=3]; 2108[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2108[label="",style="solid", color="blue", weight=9]; 2108 -> 1028[label="",style="solid", color="blue", weight=3]; 2109[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2109[label="",style="solid", color="blue", weight=9]; 2109 -> 1029[label="",style="solid", color="blue", weight=3]; 2110[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2110[label="",style="solid", color="blue", weight=9]; 2110 -> 1030[label="",style="solid", color="blue", weight=3]; 2111[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2111[label="",style="solid", color="blue", weight=9]; 2111 -> 1031[label="",style="solid", color="blue", weight=3]; 2112[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2112[label="",style="solid", color="blue", weight=9]; 2112 -> 1032[label="",style="solid", color="blue", weight=3]; 2113[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 2113[label="",style="solid", color="blue", weight=9]; 2113 -> 1033[label="",style="solid", color="blue", weight=3]; 943[label="False || vxw43",fontsize=16,color="black",shape="box"];943 -> 1034[label="",style="solid", color="black", weight=3]; 944[label="True || vxw43",fontsize=16,color="black",shape="box"];944 -> 1035[label="",style="solid", color="black", weight=3]; 945[label="compare (vxw110 :% vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2114[label="vxw10/vxw100 :% vxw101",fontsize=10,color="white",style="solid",shape="box"];945 -> 2114[label="",style="solid", color="burlywood", weight=9]; 2114 -> 1036[label="",style="solid", color="burlywood", weight=3]; 946 -> 927[label="",style="dashed", color="red", weight=0]; 946[label="vxw110 < vxw100",fontsize=16,color="magenta"];946 -> 1037[label="",style="dashed", color="magenta", weight=3]; 946 -> 1038[label="",style="dashed", color="magenta", weight=3]; 947 -> 928[label="",style="dashed", color="red", weight=0]; 947[label="vxw110 < vxw100",fontsize=16,color="magenta"];947 -> 1039[label="",style="dashed", color="magenta", weight=3]; 947 -> 1040[label="",style="dashed", color="magenta", weight=3]; 948 -> 929[label="",style="dashed", color="red", weight=0]; 948[label="vxw110 < vxw100",fontsize=16,color="magenta"];948 -> 1041[label="",style="dashed", color="magenta", weight=3]; 948 -> 1042[label="",style="dashed", color="magenta", weight=3]; 949 -> 930[label="",style="dashed", color="red", weight=0]; 949[label="vxw110 < vxw100",fontsize=16,color="magenta"];949 -> 1043[label="",style="dashed", color="magenta", weight=3]; 949 -> 1044[label="",style="dashed", color="magenta", weight=3]; 950 -> 931[label="",style="dashed", color="red", weight=0]; 950[label="vxw110 < vxw100",fontsize=16,color="magenta"];950 -> 1045[label="",style="dashed", color="magenta", weight=3]; 950 -> 1046[label="",style="dashed", color="magenta", weight=3]; 951 -> 932[label="",style="dashed", color="red", weight=0]; 951[label="vxw110 < vxw100",fontsize=16,color="magenta"];951 -> 1047[label="",style="dashed", color="magenta", weight=3]; 951 -> 1048[label="",style="dashed", color="magenta", weight=3]; 952 -> 933[label="",style="dashed", color="red", weight=0]; 952[label="vxw110 < vxw100",fontsize=16,color="magenta"];952 -> 1049[label="",style="dashed", color="magenta", weight=3]; 952 -> 1050[label="",style="dashed", color="magenta", weight=3]; 953 -> 934[label="",style="dashed", color="red", weight=0]; 953[label="vxw110 < vxw100",fontsize=16,color="magenta"];953 -> 1051[label="",style="dashed", color="magenta", weight=3]; 953 -> 1052[label="",style="dashed", color="magenta", weight=3]; 954 -> 935[label="",style="dashed", color="red", weight=0]; 954[label="vxw110 < vxw100",fontsize=16,color="magenta"];954 -> 1053[label="",style="dashed", color="magenta", weight=3]; 954 -> 1054[label="",style="dashed", color="magenta", weight=3]; 955 -> 936[label="",style="dashed", color="red", weight=0]; 955[label="vxw110 < vxw100",fontsize=16,color="magenta"];955 -> 1055[label="",style="dashed", color="magenta", weight=3]; 955 -> 1056[label="",style="dashed", color="magenta", weight=3]; 956 -> 937[label="",style="dashed", color="red", weight=0]; 956[label="vxw110 < vxw100",fontsize=16,color="magenta"];956 -> 1057[label="",style="dashed", color="magenta", weight=3]; 956 -> 1058[label="",style="dashed", color="magenta", weight=3]; 957 -> 938[label="",style="dashed", color="red", weight=0]; 957[label="vxw110 < vxw100",fontsize=16,color="magenta"];957 -> 1059[label="",style="dashed", color="magenta", weight=3]; 957 -> 1060[label="",style="dashed", color="magenta", weight=3]; 958 -> 939[label="",style="dashed", color="red", weight=0]; 958[label="vxw110 < vxw100",fontsize=16,color="magenta"];958 -> 1061[label="",style="dashed", color="magenta", weight=3]; 958 -> 1062[label="",style="dashed", color="magenta", weight=3]; 959 -> 940[label="",style="dashed", color="red", weight=0]; 959[label="vxw110 < vxw100",fontsize=16,color="magenta"];959 -> 1063[label="",style="dashed", color="magenta", weight=3]; 959 -> 1064[label="",style="dashed", color="magenta", weight=3]; 960[label="vxw111 <= vxw101",fontsize=16,color="blue",shape="box"];2115[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2115[label="",style="solid", color="blue", weight=9]; 2115 -> 1065[label="",style="solid", color="blue", weight=3]; 2116[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2116[label="",style="solid", color="blue", weight=9]; 2116 -> 1066[label="",style="solid", color="blue", weight=3]; 2117[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2117[label="",style="solid", color="blue", weight=9]; 2117 -> 1067[label="",style="solid", color="blue", weight=3]; 2118[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2118[label="",style="solid", color="blue", weight=9]; 2118 -> 1068[label="",style="solid", color="blue", weight=3]; 2119[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2119[label="",style="solid", color="blue", weight=9]; 2119 -> 1069[label="",style="solid", color="blue", weight=3]; 2120[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2120[label="",style="solid", color="blue", weight=9]; 2120 -> 1070[label="",style="solid", color="blue", weight=3]; 2121[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2121[label="",style="solid", color="blue", weight=9]; 2121 -> 1071[label="",style="solid", color="blue", weight=3]; 2122[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2122[label="",style="solid", color="blue", weight=9]; 2122 -> 1072[label="",style="solid", color="blue", weight=3]; 2123[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2123[label="",style="solid", color="blue", weight=9]; 2123 -> 1073[label="",style="solid", color="blue", weight=3]; 2124[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2124[label="",style="solid", color="blue", weight=9]; 2124 -> 1074[label="",style="solid", color="blue", weight=3]; 2125[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2125[label="",style="solid", color="blue", weight=9]; 2125 -> 1075[label="",style="solid", color="blue", weight=3]; 2126[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2126[label="",style="solid", color="blue", weight=9]; 2126 -> 1076[label="",style="solid", color="blue", weight=3]; 2127[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2127[label="",style="solid", color="blue", weight=9]; 2127 -> 1077[label="",style="solid", color="blue", weight=3]; 2128[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];960 -> 2128[label="",style="solid", color="blue", weight=9]; 2128 -> 1078[label="",style="solid", color="blue", weight=3]; 961[label="vxw110 == vxw100",fontsize=16,color="blue",shape="box"];2129[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2129[label="",style="solid", color="blue", weight=9]; 2129 -> 1079[label="",style="solid", color="blue", weight=3]; 2130[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2130[label="",style="solid", color="blue", weight=9]; 2130 -> 1080[label="",style="solid", color="blue", weight=3]; 2131[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2131[label="",style="solid", color="blue", weight=9]; 2131 -> 1081[label="",style="solid", color="blue", weight=3]; 2132[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2132[label="",style="solid", color="blue", weight=9]; 2132 -> 1082[label="",style="solid", color="blue", weight=3]; 2133[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2133[label="",style="solid", color="blue", weight=9]; 2133 -> 1083[label="",style="solid", color="blue", weight=3]; 2134[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2134[label="",style="solid", color="blue", weight=9]; 2134 -> 1084[label="",style="solid", color="blue", weight=3]; 2135[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2135[label="",style="solid", color="blue", weight=9]; 2135 -> 1085[label="",style="solid", color="blue", weight=3]; 2136[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2136[label="",style="solid", color="blue", weight=9]; 2136 -> 1086[label="",style="solid", color="blue", weight=3]; 2137[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2137[label="",style="solid", color="blue", weight=9]; 2137 -> 1087[label="",style="solid", color="blue", weight=3]; 2138[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2138[label="",style="solid", color="blue", weight=9]; 2138 -> 1088[label="",style="solid", color="blue", weight=3]; 2139[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2139[label="",style="solid", color="blue", weight=9]; 2139 -> 1089[label="",style="solid", color="blue", weight=3]; 2140[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2140[label="",style="solid", color="blue", weight=9]; 2140 -> 1090[label="",style="solid", color="blue", weight=3]; 2141[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2141[label="",style="solid", color="blue", weight=9]; 2141 -> 1091[label="",style="solid", color="blue", weight=3]; 2142[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];961 -> 2142[label="",style="solid", color="blue", weight=9]; 2142 -> 1092[label="",style="solid", color="blue", weight=3]; 962[label="primCmpInt vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2143[label="vxw11/Pos vxw110",fontsize=10,color="white",style="solid",shape="box"];962 -> 2143[label="",style="solid", color="burlywood", weight=9]; 2143 -> 1093[label="",style="solid", color="burlywood", weight=3]; 2144[label="vxw11/Neg vxw110",fontsize=10,color="white",style="solid",shape="box"];962 -> 2144[label="",style="solid", color="burlywood", weight=9]; 2144 -> 1094[label="",style="solid", color="burlywood", weight=3]; 963[label="primCmpDouble vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2145[label="vxw11/Double vxw110 vxw111",fontsize=10,color="white",style="solid",shape="box"];963 -> 2145[label="",style="solid", color="burlywood", weight=9]; 2145 -> 1095[label="",style="solid", color="burlywood", weight=3]; 964[label="primCmpFloat vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2146[label="vxw11/Float vxw110 vxw111",fontsize=10,color="white",style="solid",shape="box"];964 -> 2146[label="",style="solid", color="burlywood", weight=9]; 2146 -> 1096[label="",style="solid", color="burlywood", weight=3]; 965[label="vxw110",fontsize=16,color="green",shape="box"];966[label="vxw100",fontsize=16,color="green",shape="box"];967[label="vxw110",fontsize=16,color="green",shape="box"];968[label="vxw100",fontsize=16,color="green",shape="box"];969[label="vxw110",fontsize=16,color="green",shape="box"];970[label="vxw100",fontsize=16,color="green",shape="box"];971[label="vxw110",fontsize=16,color="green",shape="box"];972[label="vxw100",fontsize=16,color="green",shape="box"];973[label="vxw110",fontsize=16,color="green",shape="box"];974[label="vxw100",fontsize=16,color="green",shape="box"];975[label="vxw110",fontsize=16,color="green",shape="box"];976[label="vxw100",fontsize=16,color="green",shape="box"];977[label="vxw110",fontsize=16,color="green",shape="box"];978[label="vxw100",fontsize=16,color="green",shape="box"];979[label="vxw110",fontsize=16,color="green",shape="box"];980[label="vxw100",fontsize=16,color="green",shape="box"];981[label="vxw110",fontsize=16,color="green",shape="box"];982[label="vxw100",fontsize=16,color="green",shape="box"];983[label="vxw110",fontsize=16,color="green",shape="box"];984[label="vxw100",fontsize=16,color="green",shape="box"];985[label="vxw110",fontsize=16,color="green",shape="box"];986[label="vxw100",fontsize=16,color="green",shape="box"];987[label="vxw110",fontsize=16,color="green",shape="box"];988[label="vxw100",fontsize=16,color="green",shape="box"];989[label="vxw110",fontsize=16,color="green",shape="box"];990[label="vxw100",fontsize=16,color="green",shape="box"];991[label="vxw110",fontsize=16,color="green",shape="box"];992[label="vxw100",fontsize=16,color="green",shape="box"];993[label="compare (vxw110 : vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2147[label="vxw10/vxw100 : vxw101",fontsize=10,color="white",style="solid",shape="box"];993 -> 2147[label="",style="solid", color="burlywood", weight=9]; 2147 -> 1097[label="",style="solid", color="burlywood", weight=3]; 2148[label="vxw10/[]",fontsize=10,color="white",style="solid",shape="box"];993 -> 2148[label="",style="solid", color="burlywood", weight=9]; 2148 -> 1098[label="",style="solid", color="burlywood", weight=3]; 994[label="compare [] vxw10",fontsize=16,color="burlywood",shape="box"];2149[label="vxw10/vxw100 : vxw101",fontsize=10,color="white",style="solid",shape="box"];994 -> 2149[label="",style="solid", color="burlywood", weight=9]; 2149 -> 1099[label="",style="solid", color="burlywood", weight=3]; 2150[label="vxw10/[]",fontsize=10,color="white",style="solid",shape="box"];994 -> 2150[label="",style="solid", color="burlywood", weight=9]; 2150 -> 1100[label="",style="solid", color="burlywood", weight=3]; 995[label="compare () vxw10",fontsize=16,color="burlywood",shape="box"];2151[label="vxw10/()",fontsize=10,color="white",style="solid",shape="box"];995 -> 2151[label="",style="solid", color="burlywood", weight=9]; 2151 -> 1101[label="",style="solid", color="burlywood", weight=3]; 996[label="vxw21",fontsize=16,color="green",shape="box"];997[label="Just vxw20",fontsize=16,color="green",shape="box"];998[label="primMulNat vxw3000 vxw40010",fontsize=16,color="burlywood",shape="triangle"];2152[label="vxw3000/Succ vxw30000",fontsize=10,color="white",style="solid",shape="box"];998 -> 2152[label="",style="solid", color="burlywood", weight=9]; 2152 -> 1102[label="",style="solid", color="burlywood", weight=3]; 2153[label="vxw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];998 -> 2153[label="",style="solid", color="burlywood", weight=9]; 2153 -> 1103[label="",style="solid", color="burlywood", weight=3]; 999 -> 998[label="",style="dashed", color="red", weight=0]; 999[label="primMulNat vxw3000 vxw40010",fontsize=16,color="magenta"];999 -> 1104[label="",style="dashed", color="magenta", weight=3]; 1000 -> 998[label="",style="dashed", color="red", weight=0]; 1000[label="primMulNat vxw3000 vxw40010",fontsize=16,color="magenta"];1000 -> 1105[label="",style="dashed", color="magenta", weight=3]; 1001 -> 998[label="",style="dashed", color="red", weight=0]; 1001[label="primMulNat vxw3000 vxw40010",fontsize=16,color="magenta"];1001 -> 1106[label="",style="dashed", color="magenta", weight=3]; 1001 -> 1107[label="",style="dashed", color="magenta", weight=3]; 1002[label="compare (Integer vxw110) (Integer vxw100)",fontsize=16,color="black",shape="box"];1002 -> 1108[label="",style="solid", color="black", weight=3]; 1003[label="primCmpChar (Char vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2154[label="vxw10/Char vxw100",fontsize=10,color="white",style="solid",shape="box"];1003 -> 2154[label="",style="solid", color="burlywood", weight=9]; 2154 -> 1109[label="",style="solid", color="burlywood", weight=3]; 1004 -> 43[label="",style="dashed", color="red", weight=0]; 1004[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1004 -> 1110[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1111[label="",style="dashed", color="magenta", weight=3]; 1005 -> 43[label="",style="dashed", color="red", weight=0]; 1005[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1005 -> 1112[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1113[label="",style="dashed", color="magenta", weight=3]; 1006 -> 43[label="",style="dashed", color="red", weight=0]; 1006[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1006 -> 1114[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1115[label="",style="dashed", color="magenta", weight=3]; 1007 -> 43[label="",style="dashed", color="red", weight=0]; 1007[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1007 -> 1116[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1117[label="",style="dashed", color="magenta", weight=3]; 1008 -> 43[label="",style="dashed", color="red", weight=0]; 1008[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1008 -> 1118[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1119[label="",style="dashed", color="magenta", weight=3]; 1009 -> 43[label="",style="dashed", color="red", weight=0]; 1009[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1009 -> 1120[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1121[label="",style="dashed", color="magenta", weight=3]; 1010 -> 43[label="",style="dashed", color="red", weight=0]; 1010[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1010 -> 1122[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1123[label="",style="dashed", color="magenta", weight=3]; 1011 -> 43[label="",style="dashed", color="red", weight=0]; 1011[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1011 -> 1124[label="",style="dashed", color="magenta", weight=3]; 1011 -> 1125[label="",style="dashed", color="magenta", weight=3]; 1012 -> 43[label="",style="dashed", color="red", weight=0]; 1012[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1012 -> 1126[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1127[label="",style="dashed", color="magenta", weight=3]; 1013 -> 43[label="",style="dashed", color="red", weight=0]; 1013[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1013 -> 1128[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1129[label="",style="dashed", color="magenta", weight=3]; 1014 -> 43[label="",style="dashed", color="red", weight=0]; 1014[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1014 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1131[label="",style="dashed", color="magenta", weight=3]; 1015 -> 43[label="",style="dashed", color="red", weight=0]; 1015[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1015 -> 1132[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1133[label="",style="dashed", color="magenta", weight=3]; 1016 -> 43[label="",style="dashed", color="red", weight=0]; 1016[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1016 -> 1134[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1135[label="",style="dashed", color="magenta", weight=3]; 1017 -> 43[label="",style="dashed", color="red", weight=0]; 1017[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1017 -> 1136[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1137[label="",style="dashed", color="magenta", weight=3]; 1018[label="vxw111 < vxw101",fontsize=16,color="blue",shape="box"];2155[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2155[label="",style="solid", color="blue", weight=9]; 2155 -> 1138[label="",style="solid", color="blue", weight=3]; 2156[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2156[label="",style="solid", color="blue", weight=9]; 2156 -> 1139[label="",style="solid", color="blue", weight=3]; 2157[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2157[label="",style="solid", color="blue", weight=9]; 2157 -> 1140[label="",style="solid", color="blue", weight=3]; 2158[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2158[label="",style="solid", color="blue", weight=9]; 2158 -> 1141[label="",style="solid", color="blue", weight=3]; 2159[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2159[label="",style="solid", color="blue", weight=9]; 2159 -> 1142[label="",style="solid", color="blue", weight=3]; 2160[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2160[label="",style="solid", color="blue", weight=9]; 2160 -> 1143[label="",style="solid", color="blue", weight=3]; 2161[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2161[label="",style="solid", color="blue", weight=9]; 2161 -> 1144[label="",style="solid", color="blue", weight=3]; 2162[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2162[label="",style="solid", color="blue", weight=9]; 2162 -> 1145[label="",style="solid", color="blue", weight=3]; 2163[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2163[label="",style="solid", color="blue", weight=9]; 2163 -> 1146[label="",style="solid", color="blue", weight=3]; 2164[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2164[label="",style="solid", color="blue", weight=9]; 2164 -> 1147[label="",style="solid", color="blue", weight=3]; 2165[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2165[label="",style="solid", color="blue", weight=9]; 2165 -> 1148[label="",style="solid", color="blue", weight=3]; 2166[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2166[label="",style="solid", color="blue", weight=9]; 2166 -> 1149[label="",style="solid", color="blue", weight=3]; 2167[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2167[label="",style="solid", color="blue", weight=9]; 2167 -> 1150[label="",style="solid", color="blue", weight=3]; 2168[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1018 -> 2168[label="",style="solid", color="blue", weight=9]; 2168 -> 1151[label="",style="solid", color="blue", weight=3]; 1019 -> 368[label="",style="dashed", color="red", weight=0]; 1019[label="vxw111 == vxw101 && vxw112 <= vxw102",fontsize=16,color="magenta"];1019 -> 1152[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1153[label="",style="dashed", color="magenta", weight=3]; 1020 -> 35[label="",style="dashed", color="red", weight=0]; 1020[label="vxw110 == vxw100",fontsize=16,color="magenta"];1020 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1021 -> 36[label="",style="dashed", color="red", weight=0]; 1021[label="vxw110 == vxw100",fontsize=16,color="magenta"];1021 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1022 -> 41[label="",style="dashed", color="red", weight=0]; 1022[label="vxw110 == vxw100",fontsize=16,color="magenta"];1022 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1023 -> 43[label="",style="dashed", color="red", weight=0]; 1023[label="vxw110 == vxw100",fontsize=16,color="magenta"];1023 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1024 -> 44[label="",style="dashed", color="red", weight=0]; 1024[label="vxw110 == vxw100",fontsize=16,color="magenta"];1024 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1025 -> 39[label="",style="dashed", color="red", weight=0]; 1025[label="vxw110 == vxw100",fontsize=16,color="magenta"];1025 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1026 -> 37[label="",style="dashed", color="red", weight=0]; 1026[label="vxw110 == vxw100",fontsize=16,color="magenta"];1026 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1027 -> 33[label="",style="dashed", color="red", weight=0]; 1027[label="vxw110 == vxw100",fontsize=16,color="magenta"];1027 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1028 -> 40[label="",style="dashed", color="red", weight=0]; 1028[label="vxw110 == vxw100",fontsize=16,color="magenta"];1028 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1029 -> 45[label="",style="dashed", color="red", weight=0]; 1029[label="vxw110 == vxw100",fontsize=16,color="magenta"];1029 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1030 -> 42[label="",style="dashed", color="red", weight=0]; 1030[label="vxw110 == vxw100",fontsize=16,color="magenta"];1030 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1031 -> 34[label="",style="dashed", color="red", weight=0]; 1031[label="vxw110 == vxw100",fontsize=16,color="magenta"];1031 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1032 -> 38[label="",style="dashed", color="red", weight=0]; 1032[label="vxw110 == vxw100",fontsize=16,color="magenta"];1032 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1033 -> 46[label="",style="dashed", color="red", weight=0]; 1033[label="vxw110 == vxw100",fontsize=16,color="magenta"];1033 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1034[label="vxw43",fontsize=16,color="green",shape="box"];1035[label="True",fontsize=16,color="green",shape="box"];1036[label="compare (vxw110 :% vxw111) (vxw100 :% vxw101)",fontsize=16,color="black",shape="box"];1036 -> 1182[label="",style="solid", color="black", weight=3]; 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 -> 239[label="",style="dashed", color="red", weight=0]; 1065[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1065 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1066 -> 240[label="",style="dashed", color="red", weight=0]; 1066[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1066 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1067 -> 241[label="",style="dashed", color="red", weight=0]; 1067[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1067 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1068 -> 242[label="",style="dashed", color="red", weight=0]; 1068[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1068 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1068 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1069 -> 243[label="",style="dashed", color="red", weight=0]; 1069[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1069 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1069 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1070 -> 244[label="",style="dashed", color="red", weight=0]; 1070[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1070 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1070 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1071 -> 245[label="",style="dashed", color="red", weight=0]; 1071[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1071 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1071 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1072 -> 246[label="",style="dashed", color="red", weight=0]; 1072[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1072 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1073 -> 247[label="",style="dashed", color="red", weight=0]; 1073[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1073 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1073 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1074 -> 248[label="",style="dashed", color="red", weight=0]; 1074[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1074 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1074 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1075 -> 249[label="",style="dashed", color="red", weight=0]; 1075[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1075 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1075 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1076 -> 250[label="",style="dashed", color="red", weight=0]; 1076[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1076 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1076 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1077 -> 251[label="",style="dashed", color="red", weight=0]; 1077[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1077 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1077 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1078 -> 252[label="",style="dashed", color="red", weight=0]; 1078[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1078 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1078 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1079 -> 35[label="",style="dashed", color="red", weight=0]; 1079[label="vxw110 == vxw100",fontsize=16,color="magenta"];1079 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1079 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1080 -> 36[label="",style="dashed", color="red", weight=0]; 1080[label="vxw110 == vxw100",fontsize=16,color="magenta"];1080 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1080 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1081 -> 41[label="",style="dashed", color="red", weight=0]; 1081[label="vxw110 == vxw100",fontsize=16,color="magenta"];1081 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1081 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1082 -> 43[label="",style="dashed", color="red", weight=0]; 1082[label="vxw110 == vxw100",fontsize=16,color="magenta"];1082 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1082 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1083 -> 44[label="",style="dashed", color="red", weight=0]; 1083[label="vxw110 == vxw100",fontsize=16,color="magenta"];1083 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1083 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1084 -> 39[label="",style="dashed", color="red", weight=0]; 1084[label="vxw110 == vxw100",fontsize=16,color="magenta"];1084 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1084 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1085 -> 37[label="",style="dashed", color="red", weight=0]; 1085[label="vxw110 == vxw100",fontsize=16,color="magenta"];1085 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1085 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1086 -> 33[label="",style="dashed", color="red", weight=0]; 1086[label="vxw110 == vxw100",fontsize=16,color="magenta"];1086 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1087 -> 40[label="",style="dashed", color="red", weight=0]; 1087[label="vxw110 == vxw100",fontsize=16,color="magenta"];1087 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1087 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1088 -> 45[label="",style="dashed", color="red", weight=0]; 1088[label="vxw110 == vxw100",fontsize=16,color="magenta"];1088 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1088 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1089 -> 42[label="",style="dashed", color="red", weight=0]; 1089[label="vxw110 == vxw100",fontsize=16,color="magenta"];1089 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1090 -> 34[label="",style="dashed", color="red", weight=0]; 1090[label="vxw110 == vxw100",fontsize=16,color="magenta"];1090 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1091 -> 38[label="",style="dashed", color="red", weight=0]; 1091[label="vxw110 == vxw100",fontsize=16,color="magenta"];1091 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1092 -> 46[label="",style="dashed", color="red", weight=0]; 1092[label="vxw110 == vxw100",fontsize=16,color="magenta"];1092 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1093[label="primCmpInt (Pos vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2169[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2169[label="",style="solid", color="burlywood", weight=9]; 2169 -> 1239[label="",style="solid", color="burlywood", weight=3]; 2170[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2170[label="",style="solid", color="burlywood", weight=9]; 2170 -> 1240[label="",style="solid", color="burlywood", weight=3]; 1094[label="primCmpInt (Neg vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2171[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1094 -> 2171[label="",style="solid", color="burlywood", weight=9]; 2171 -> 1241[label="",style="solid", color="burlywood", weight=3]; 2172[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1094 -> 2172[label="",style="solid", color="burlywood", weight=9]; 2172 -> 1242[label="",style="solid", color="burlywood", weight=3]; 1095[label="primCmpDouble (Double vxw110 vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2173[label="vxw111/Pos vxw1110",fontsize=10,color="white",style="solid",shape="box"];1095 -> 2173[label="",style="solid", color="burlywood", weight=9]; 2173 -> 1243[label="",style="solid", color="burlywood", weight=3]; 2174[label="vxw111/Neg vxw1110",fontsize=10,color="white",style="solid",shape="box"];1095 -> 2174[label="",style="solid", color="burlywood", weight=9]; 2174 -> 1244[label="",style="solid", color="burlywood", weight=3]; 1096[label="primCmpFloat (Float vxw110 vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2175[label="vxw111/Pos vxw1110",fontsize=10,color="white",style="solid",shape="box"];1096 -> 2175[label="",style="solid", color="burlywood", weight=9]; 2175 -> 1245[label="",style="solid", color="burlywood", weight=3]; 2176[label="vxw111/Neg vxw1110",fontsize=10,color="white",style="solid",shape="box"];1096 -> 2176[label="",style="solid", color="burlywood", weight=9]; 2176 -> 1246[label="",style="solid", color="burlywood", weight=3]; 1097[label="compare (vxw110 : vxw111) (vxw100 : vxw101)",fontsize=16,color="black",shape="box"];1097 -> 1247[label="",style="solid", color="black", weight=3]; 1098[label="compare (vxw110 : vxw111) []",fontsize=16,color="black",shape="box"];1098 -> 1248[label="",style="solid", color="black", weight=3]; 1099[label="compare [] (vxw100 : vxw101)",fontsize=16,color="black",shape="box"];1099 -> 1249[label="",style="solid", color="black", weight=3]; 1100[label="compare [] []",fontsize=16,color="black",shape="box"];1100 -> 1250[label="",style="solid", color="black", weight=3]; 1101[label="compare () ()",fontsize=16,color="black",shape="box"];1101 -> 1251[label="",style="solid", color="black", weight=3]; 1102[label="primMulNat (Succ vxw30000) vxw40010",fontsize=16,color="burlywood",shape="box"];2177[label="vxw40010/Succ vxw400100",fontsize=10,color="white",style="solid",shape="box"];1102 -> 2177[label="",style="solid", color="burlywood", weight=9]; 2177 -> 1252[label="",style="solid", color="burlywood", weight=3]; 2178[label="vxw40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1102 -> 2178[label="",style="solid", color="burlywood", weight=9]; 2178 -> 1253[label="",style="solid", color="burlywood", weight=3]; 1103[label="primMulNat Zero vxw40010",fontsize=16,color="burlywood",shape="box"];2179[label="vxw40010/Succ vxw400100",fontsize=10,color="white",style="solid",shape="box"];1103 -> 2179[label="",style="solid", color="burlywood", weight=9]; 2179 -> 1254[label="",style="solid", color="burlywood", weight=3]; 2180[label="vxw40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1103 -> 2180[label="",style="solid", color="burlywood", weight=9]; 2180 -> 1255[label="",style="solid", color="burlywood", weight=3]; 1104[label="vxw40010",fontsize=16,color="green",shape="box"];1105[label="vxw3000",fontsize=16,color="green",shape="box"];1106[label="vxw40010",fontsize=16,color="green",shape="box"];1107[label="vxw3000",fontsize=16,color="green",shape="box"];1108 -> 962[label="",style="dashed", color="red", weight=0]; 1108[label="primCmpInt vxw110 vxw100",fontsize=16,color="magenta"];1108 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1109[label="primCmpChar (Char vxw110) (Char vxw100)",fontsize=16,color="black",shape="box"];1109 -> 1258[label="",style="solid", color="black", weight=3]; 1110[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1110 -> 1259[label="",style="solid", color="black", weight=3]; 1111[label="LT",fontsize=16,color="green",shape="box"];1112 -> 814[label="",style="dashed", color="red", weight=0]; 1112[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1112 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1112 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1113[label="LT",fontsize=16,color="green",shape="box"];1114 -> 818[label="",style="dashed", color="red", weight=0]; 1114[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1114 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1115[label="LT",fontsize=16,color="green",shape="box"];1116[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1116 -> 1264[label="",style="solid", color="black", weight=3]; 1117[label="LT",fontsize=16,color="green",shape="box"];1118[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1118 -> 1265[label="",style="solid", color="black", weight=3]; 1119[label="LT",fontsize=16,color="green",shape="box"];1120 -> 820[label="",style="dashed", color="red", weight=0]; 1120[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1120 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1121[label="LT",fontsize=16,color="green",shape="box"];1122[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1122 -> 1268[label="",style="solid", color="black", weight=3]; 1123[label="LT",fontsize=16,color="green",shape="box"];1124 -> 822[label="",style="dashed", color="red", weight=0]; 1124[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1124 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1125[label="LT",fontsize=16,color="green",shape="box"];1126[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1126 -> 1271[label="",style="solid", color="black", weight=3]; 1127[label="LT",fontsize=16,color="green",shape="box"];1128 -> 824[label="",style="dashed", color="red", weight=0]; 1128[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1128 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1129[label="LT",fontsize=16,color="green",shape="box"];1130 -> 826[label="",style="dashed", color="red", weight=0]; 1130[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1130 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1131[label="LT",fontsize=16,color="green",shape="box"];1132[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1132 -> 1276[label="",style="solid", color="black", weight=3]; 1133[label="LT",fontsize=16,color="green",shape="box"];1134 -> 828[label="",style="dashed", color="red", weight=0]; 1134[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1134 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1135[label="LT",fontsize=16,color="green",shape="box"];1136 -> 830[label="",style="dashed", color="red", weight=0]; 1136[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1136 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1137[label="LT",fontsize=16,color="green",shape="box"];1138 -> 927[label="",style="dashed", color="red", weight=0]; 1138[label="vxw111 < vxw101",fontsize=16,color="magenta"];1138 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1139 -> 928[label="",style="dashed", color="red", weight=0]; 1139[label="vxw111 < vxw101",fontsize=16,color="magenta"];1139 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1140 -> 929[label="",style="dashed", color="red", weight=0]; 1140[label="vxw111 < vxw101",fontsize=16,color="magenta"];1140 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1141 -> 930[label="",style="dashed", color="red", weight=0]; 1141[label="vxw111 < vxw101",fontsize=16,color="magenta"];1141 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1142 -> 931[label="",style="dashed", color="red", weight=0]; 1142[label="vxw111 < vxw101",fontsize=16,color="magenta"];1142 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1143 -> 932[label="",style="dashed", color="red", weight=0]; 1143[label="vxw111 < vxw101",fontsize=16,color="magenta"];1143 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1144 -> 933[label="",style="dashed", color="red", weight=0]; 1144[label="vxw111 < vxw101",fontsize=16,color="magenta"];1144 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1145 -> 934[label="",style="dashed", color="red", weight=0]; 1145[label="vxw111 < vxw101",fontsize=16,color="magenta"];1145 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1146 -> 935[label="",style="dashed", color="red", weight=0]; 1146[label="vxw111 < vxw101",fontsize=16,color="magenta"];1146 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1147 -> 936[label="",style="dashed", color="red", weight=0]; 1147[label="vxw111 < vxw101",fontsize=16,color="magenta"];1147 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1148 -> 937[label="",style="dashed", color="red", weight=0]; 1148[label="vxw111 < vxw101",fontsize=16,color="magenta"];1148 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1149 -> 938[label="",style="dashed", color="red", weight=0]; 1149[label="vxw111 < vxw101",fontsize=16,color="magenta"];1149 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1150 -> 939[label="",style="dashed", color="red", weight=0]; 1150[label="vxw111 < vxw101",fontsize=16,color="magenta"];1150 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1151 -> 940[label="",style="dashed", color="red", weight=0]; 1151[label="vxw111 < vxw101",fontsize=16,color="magenta"];1151 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1152[label="vxw112 <= vxw102",fontsize=16,color="blue",shape="box"];2181[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2181[label="",style="solid", color="blue", weight=9]; 2181 -> 1309[label="",style="solid", color="blue", weight=3]; 2182[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2182[label="",style="solid", color="blue", weight=9]; 2182 -> 1310[label="",style="solid", color="blue", weight=3]; 2183[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2183[label="",style="solid", color="blue", weight=9]; 2183 -> 1311[label="",style="solid", color="blue", weight=3]; 2184[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2184[label="",style="solid", color="blue", weight=9]; 2184 -> 1312[label="",style="solid", color="blue", weight=3]; 2185[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2185[label="",style="solid", color="blue", weight=9]; 2185 -> 1313[label="",style="solid", color="blue", weight=3]; 2186[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2186[label="",style="solid", color="blue", weight=9]; 2186 -> 1314[label="",style="solid", color="blue", weight=3]; 2187[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2187[label="",style="solid", color="blue", weight=9]; 2187 -> 1315[label="",style="solid", color="blue", weight=3]; 2188[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2188[label="",style="solid", color="blue", weight=9]; 2188 -> 1316[label="",style="solid", color="blue", weight=3]; 2189[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2189[label="",style="solid", color="blue", weight=9]; 2189 -> 1317[label="",style="solid", color="blue", weight=3]; 2190[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2190[label="",style="solid", color="blue", weight=9]; 2190 -> 1318[label="",style="solid", color="blue", weight=3]; 2191[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2191[label="",style="solid", color="blue", weight=9]; 2191 -> 1319[label="",style="solid", color="blue", weight=3]; 2192[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2192[label="",style="solid", color="blue", weight=9]; 2192 -> 1320[label="",style="solid", color="blue", weight=3]; 2193[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2193[label="",style="solid", color="blue", weight=9]; 2193 -> 1321[label="",style="solid", color="blue", weight=3]; 2194[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2194[label="",style="solid", color="blue", weight=9]; 2194 -> 1322[label="",style="solid", color="blue", weight=3]; 1153[label="vxw111 == vxw101",fontsize=16,color="blue",shape="box"];2195[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2195[label="",style="solid", color="blue", weight=9]; 2195 -> 1323[label="",style="solid", color="blue", weight=3]; 2196[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2196[label="",style="solid", color="blue", weight=9]; 2196 -> 1324[label="",style="solid", color="blue", weight=3]; 2197[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2197[label="",style="solid", color="blue", weight=9]; 2197 -> 1325[label="",style="solid", color="blue", weight=3]; 2198[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2198[label="",style="solid", color="blue", weight=9]; 2198 -> 1326[label="",style="solid", color="blue", weight=3]; 2199[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2199[label="",style="solid", color="blue", weight=9]; 2199 -> 1327[label="",style="solid", color="blue", weight=3]; 2200[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2200[label="",style="solid", color="blue", weight=9]; 2200 -> 1328[label="",style="solid", color="blue", weight=3]; 2201[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2201[label="",style="solid", color="blue", weight=9]; 2201 -> 1329[label="",style="solid", color="blue", weight=3]; 2202[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2202[label="",style="solid", color="blue", weight=9]; 2202 -> 1330[label="",style="solid", color="blue", weight=3]; 2203[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2203[label="",style="solid", color="blue", weight=9]; 2203 -> 1331[label="",style="solid", color="blue", weight=3]; 2204[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2204[label="",style="solid", color="blue", weight=9]; 2204 -> 1332[label="",style="solid", color="blue", weight=3]; 2205[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2205[label="",style="solid", color="blue", weight=9]; 2205 -> 1333[label="",style="solid", color="blue", weight=3]; 2206[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2206[label="",style="solid", color="blue", weight=9]; 2206 -> 1334[label="",style="solid", color="blue", weight=3]; 2207[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2207[label="",style="solid", color="blue", weight=9]; 2207 -> 1335[label="",style="solid", color="blue", weight=3]; 2208[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2208[label="",style="solid", color="blue", weight=9]; 2208 -> 1336[label="",style="solid", color="blue", weight=3]; 1154[label="vxw110",fontsize=16,color="green",shape="box"];1155[label="vxw100",fontsize=16,color="green",shape="box"];1156[label="vxw110",fontsize=16,color="green",shape="box"];1157[label="vxw100",fontsize=16,color="green",shape="box"];1158[label="vxw110",fontsize=16,color="green",shape="box"];1159[label="vxw100",fontsize=16,color="green",shape="box"];1160[label="vxw110",fontsize=16,color="green",shape="box"];1161[label="vxw100",fontsize=16,color="green",shape="box"];1162[label="vxw110",fontsize=16,color="green",shape="box"];1163[label="vxw100",fontsize=16,color="green",shape="box"];1164[label="vxw110",fontsize=16,color="green",shape="box"];1165[label="vxw100",fontsize=16,color="green",shape="box"];1166[label="vxw110",fontsize=16,color="green",shape="box"];1167[label="vxw100",fontsize=16,color="green",shape="box"];1168[label="vxw110",fontsize=16,color="green",shape="box"];1169[label="vxw100",fontsize=16,color="green",shape="box"];1170[label="vxw110",fontsize=16,color="green",shape="box"];1171[label="vxw100",fontsize=16,color="green",shape="box"];1172[label="vxw110",fontsize=16,color="green",shape="box"];1173[label="vxw100",fontsize=16,color="green",shape="box"];1174[label="vxw110",fontsize=16,color="green",shape="box"];1175[label="vxw100",fontsize=16,color="green",shape="box"];1176[label="vxw110",fontsize=16,color="green",shape="box"];1177[label="vxw100",fontsize=16,color="green",shape="box"];1178[label="vxw110",fontsize=16,color="green",shape="box"];1179[label="vxw100",fontsize=16,color="green",shape="box"];1180[label="vxw110",fontsize=16,color="green",shape="box"];1181[label="vxw100",fontsize=16,color="green",shape="box"];1182[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="blue",shape="box"];2209[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2209[label="",style="solid", color="blue", weight=9]; 2209 -> 1337[label="",style="solid", color="blue", weight=3]; 2210[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1182 -> 2210[label="",style="solid", color="blue", weight=9]; 2210 -> 1338[label="",style="solid", color="blue", weight=3]; 1183[label="vxw111",fontsize=16,color="green",shape="box"];1184[label="vxw101",fontsize=16,color="green",shape="box"];1185[label="vxw111",fontsize=16,color="green",shape="box"];1186[label="vxw101",fontsize=16,color="green",shape="box"];1187[label="vxw111",fontsize=16,color="green",shape="box"];1188[label="vxw101",fontsize=16,color="green",shape="box"];1189[label="vxw111",fontsize=16,color="green",shape="box"];1190[label="vxw101",fontsize=16,color="green",shape="box"];1191[label="vxw111",fontsize=16,color="green",shape="box"];1192[label="vxw101",fontsize=16,color="green",shape="box"];1193[label="vxw111",fontsize=16,color="green",shape="box"];1194[label="vxw101",fontsize=16,color="green",shape="box"];1195[label="vxw111",fontsize=16,color="green",shape="box"];1196[label="vxw101",fontsize=16,color="green",shape="box"];1197[label="vxw111",fontsize=16,color="green",shape="box"];1198[label="vxw101",fontsize=16,color="green",shape="box"];1199[label="vxw111",fontsize=16,color="green",shape="box"];1200[label="vxw101",fontsize=16,color="green",shape="box"];1201[label="vxw111",fontsize=16,color="green",shape="box"];1202[label="vxw101",fontsize=16,color="green",shape="box"];1203[label="vxw111",fontsize=16,color="green",shape="box"];1204[label="vxw101",fontsize=16,color="green",shape="box"];1205[label="vxw111",fontsize=16,color="green",shape="box"];1206[label="vxw101",fontsize=16,color="green",shape="box"];1207[label="vxw111",fontsize=16,color="green",shape="box"];1208[label="vxw101",fontsize=16,color="green",shape="box"];1209[label="vxw111",fontsize=16,color="green",shape="box"];1210[label="vxw101",fontsize=16,color="green",shape="box"];1211[label="vxw110",fontsize=16,color="green",shape="box"];1212[label="vxw100",fontsize=16,color="green",shape="box"];1213[label="vxw110",fontsize=16,color="green",shape="box"];1214[label="vxw100",fontsize=16,color="green",shape="box"];1215[label="vxw110",fontsize=16,color="green",shape="box"];1216[label="vxw100",fontsize=16,color="green",shape="box"];1217[label="vxw110",fontsize=16,color="green",shape="box"];1218[label="vxw100",fontsize=16,color="green",shape="box"];1219[label="vxw110",fontsize=16,color="green",shape="box"];1220[label="vxw100",fontsize=16,color="green",shape="box"];1221[label="vxw110",fontsize=16,color="green",shape="box"];1222[label="vxw100",fontsize=16,color="green",shape="box"];1223[label="vxw110",fontsize=16,color="green",shape="box"];1224[label="vxw100",fontsize=16,color="green",shape="box"];1225[label="vxw110",fontsize=16,color="green",shape="box"];1226[label="vxw100",fontsize=16,color="green",shape="box"];1227[label="vxw110",fontsize=16,color="green",shape="box"];1228[label="vxw100",fontsize=16,color="green",shape="box"];1229[label="vxw110",fontsize=16,color="green",shape="box"];1230[label="vxw100",fontsize=16,color="green",shape="box"];1231[label="vxw110",fontsize=16,color="green",shape="box"];1232[label="vxw100",fontsize=16,color="green",shape="box"];1233[label="vxw110",fontsize=16,color="green",shape="box"];1234[label="vxw100",fontsize=16,color="green",shape="box"];1235[label="vxw110",fontsize=16,color="green",shape="box"];1236[label="vxw100",fontsize=16,color="green",shape="box"];1237[label="vxw110",fontsize=16,color="green",shape="box"];1238[label="vxw100",fontsize=16,color="green",shape="box"];1239[label="primCmpInt (Pos (Succ vxw1100)) vxw10",fontsize=16,color="burlywood",shape="box"];2211[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2211[label="",style="solid", color="burlywood", weight=9]; 2211 -> 1339[label="",style="solid", color="burlywood", weight=3]; 2212[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2212[label="",style="solid", color="burlywood", weight=9]; 2212 -> 1340[label="",style="solid", color="burlywood", weight=3]; 1240[label="primCmpInt (Pos Zero) vxw10",fontsize=16,color="burlywood",shape="box"];2213[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2213[label="",style="solid", color="burlywood", weight=9]; 2213 -> 1341[label="",style="solid", color="burlywood", weight=3]; 2214[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2214[label="",style="solid", color="burlywood", weight=9]; 2214 -> 1342[label="",style="solid", color="burlywood", weight=3]; 1241[label="primCmpInt (Neg (Succ vxw1100)) vxw10",fontsize=16,color="burlywood",shape="box"];2215[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2215[label="",style="solid", color="burlywood", weight=9]; 2215 -> 1343[label="",style="solid", color="burlywood", weight=3]; 2216[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2216[label="",style="solid", color="burlywood", weight=9]; 2216 -> 1344[label="",style="solid", color="burlywood", weight=3]; 1242[label="primCmpInt (Neg Zero) vxw10",fontsize=16,color="burlywood",shape="box"];2217[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1242 -> 2217[label="",style="solid", color="burlywood", weight=9]; 2217 -> 1345[label="",style="solid", color="burlywood", weight=3]; 2218[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1242 -> 2218[label="",style="solid", color="burlywood", weight=9]; 2218 -> 1346[label="",style="solid", color="burlywood", weight=3]; 1243[label="primCmpDouble (Double vxw110 (Pos vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2219[label="vxw10/Double vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2219[label="",style="solid", color="burlywood", weight=9]; 2219 -> 1347[label="",style="solid", color="burlywood", weight=3]; 1244[label="primCmpDouble (Double vxw110 (Neg vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2220[label="vxw10/Double vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2220[label="",style="solid", color="burlywood", weight=9]; 2220 -> 1348[label="",style="solid", color="burlywood", weight=3]; 1245[label="primCmpFloat (Float vxw110 (Pos vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2221[label="vxw10/Float vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2221[label="",style="solid", color="burlywood", weight=9]; 2221 -> 1349[label="",style="solid", color="burlywood", weight=3]; 1246[label="primCmpFloat (Float vxw110 (Neg vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2222[label="vxw10/Float vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2222[label="",style="solid", color="burlywood", weight=9]; 2222 -> 1350[label="",style="solid", color="burlywood", weight=3]; 1247 -> 1351[label="",style="dashed", color="red", weight=0]; 1247[label="primCompAux vxw110 vxw100 (compare vxw111 vxw101)",fontsize=16,color="magenta"];1247 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1248[label="GT",fontsize=16,color="green",shape="box"];1249[label="LT",fontsize=16,color="green",shape="box"];1250[label="EQ",fontsize=16,color="green",shape="box"];1251[label="EQ",fontsize=16,color="green",shape="box"];1252[label="primMulNat (Succ vxw30000) (Succ vxw400100)",fontsize=16,color="black",shape="box"];1252 -> 1353[label="",style="solid", color="black", weight=3]; 1253[label="primMulNat (Succ vxw30000) Zero",fontsize=16,color="black",shape="box"];1253 -> 1354[label="",style="solid", color="black", weight=3]; 1254[label="primMulNat Zero (Succ vxw400100)",fontsize=16,color="black",shape="box"];1254 -> 1355[label="",style="solid", color="black", weight=3]; 1255[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1255 -> 1356[label="",style="solid", color="black", weight=3]; 1256[label="vxw110",fontsize=16,color="green",shape="box"];1257[label="vxw100",fontsize=16,color="green",shape="box"];1258[label="primCmpNat vxw110 vxw100",fontsize=16,color="burlywood",shape="triangle"];2223[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1258 -> 2223[label="",style="solid", color="burlywood", weight=9]; 2223 -> 1357[label="",style="solid", color="burlywood", weight=3]; 2224[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1258 -> 2224[label="",style="solid", color="burlywood", weight=9]; 2224 -> 1358[label="",style="solid", color="burlywood", weight=3]; 1259[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1259 -> 1359[label="",style="solid", color="black", weight=3]; 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="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1264 -> 1360[label="",style="solid", color="black", weight=3]; 1265[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1265 -> 1361[label="",style="solid", color="black", weight=3]; 1266[label="vxw110",fontsize=16,color="green",shape="box"];1267[label="vxw100",fontsize=16,color="green",shape="box"];1268[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1268 -> 1362[label="",style="solid", color="black", weight=3]; 1269[label="vxw110",fontsize=16,color="green",shape="box"];1270[label="vxw100",fontsize=16,color="green",shape="box"];1271[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1271 -> 1363[label="",style="solid", color="black", weight=3]; 1272[label="vxw110",fontsize=16,color="green",shape="box"];1273[label="vxw100",fontsize=16,color="green",shape="box"];1274[label="vxw110",fontsize=16,color="green",shape="box"];1275[label="vxw100",fontsize=16,color="green",shape="box"];1276[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1276 -> 1364[label="",style="solid", color="black", weight=3]; 1277[label="vxw110",fontsize=16,color="green",shape="box"];1278[label="vxw100",fontsize=16,color="green",shape="box"];1279[label="vxw110",fontsize=16,color="green",shape="box"];1280[label="vxw100",fontsize=16,color="green",shape="box"];1281[label="vxw111",fontsize=16,color="green",shape="box"];1282[label="vxw101",fontsize=16,color="green",shape="box"];1283[label="vxw111",fontsize=16,color="green",shape="box"];1284[label="vxw101",fontsize=16,color="green",shape="box"];1285[label="vxw111",fontsize=16,color="green",shape="box"];1286[label="vxw101",fontsize=16,color="green",shape="box"];1287[label="vxw111",fontsize=16,color="green",shape="box"];1288[label="vxw101",fontsize=16,color="green",shape="box"];1289[label="vxw111",fontsize=16,color="green",shape="box"];1290[label="vxw101",fontsize=16,color="green",shape="box"];1291[label="vxw111",fontsize=16,color="green",shape="box"];1292[label="vxw101",fontsize=16,color="green",shape="box"];1293[label="vxw111",fontsize=16,color="green",shape="box"];1294[label="vxw101",fontsize=16,color="green",shape="box"];1295[label="vxw111",fontsize=16,color="green",shape="box"];1296[label="vxw101",fontsize=16,color="green",shape="box"];1297[label="vxw111",fontsize=16,color="green",shape="box"];1298[label="vxw101",fontsize=16,color="green",shape="box"];1299[label="vxw111",fontsize=16,color="green",shape="box"];1300[label="vxw101",fontsize=16,color="green",shape="box"];1301[label="vxw111",fontsize=16,color="green",shape="box"];1302[label="vxw101",fontsize=16,color="green",shape="box"];1303[label="vxw111",fontsize=16,color="green",shape="box"];1304[label="vxw101",fontsize=16,color="green",shape="box"];1305[label="vxw111",fontsize=16,color="green",shape="box"];1306[label="vxw101",fontsize=16,color="green",shape="box"];1307[label="vxw111",fontsize=16,color="green",shape="box"];1308[label="vxw101",fontsize=16,color="green",shape="box"];1309 -> 239[label="",style="dashed", color="red", weight=0]; 1309[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1309 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1309 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1310 -> 240[label="",style="dashed", color="red", weight=0]; 1310[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1310 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1310 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1311 -> 241[label="",style="dashed", color="red", weight=0]; 1311[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1311 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1311 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1312 -> 242[label="",style="dashed", color="red", weight=0]; 1312[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1312 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1313 -> 243[label="",style="dashed", color="red", weight=0]; 1313[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1313 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1314 -> 244[label="",style="dashed", color="red", weight=0]; 1314[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1314 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1315 -> 245[label="",style="dashed", color="red", weight=0]; 1315[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1315 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1316 -> 246[label="",style="dashed", color="red", weight=0]; 1316[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1316 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1317 -> 247[label="",style="dashed", color="red", weight=0]; 1317[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1317 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1318 -> 248[label="",style="dashed", color="red", weight=0]; 1318[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1318 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1319 -> 249[label="",style="dashed", color="red", weight=0]; 1319[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1319 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1320 -> 250[label="",style="dashed", color="red", weight=0]; 1320[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1320 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1321 -> 251[label="",style="dashed", color="red", weight=0]; 1321[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1321 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1322 -> 252[label="",style="dashed", color="red", weight=0]; 1322[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1322 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1323 -> 35[label="",style="dashed", color="red", weight=0]; 1323[label="vxw111 == vxw101",fontsize=16,color="magenta"];1323 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1324 -> 36[label="",style="dashed", color="red", weight=0]; 1324[label="vxw111 == vxw101",fontsize=16,color="magenta"];1324 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1325 -> 41[label="",style="dashed", color="red", weight=0]; 1325[label="vxw111 == vxw101",fontsize=16,color="magenta"];1325 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1326 -> 43[label="",style="dashed", color="red", weight=0]; 1326[label="vxw111 == vxw101",fontsize=16,color="magenta"];1326 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1326 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1327 -> 44[label="",style="dashed", color="red", weight=0]; 1327[label="vxw111 == vxw101",fontsize=16,color="magenta"];1327 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1328 -> 39[label="",style="dashed", color="red", weight=0]; 1328[label="vxw111 == vxw101",fontsize=16,color="magenta"];1328 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1329 -> 37[label="",style="dashed", color="red", weight=0]; 1329[label="vxw111 == vxw101",fontsize=16,color="magenta"];1329 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1330 -> 33[label="",style="dashed", color="red", weight=0]; 1330[label="vxw111 == vxw101",fontsize=16,color="magenta"];1330 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1331 -> 40[label="",style="dashed", color="red", weight=0]; 1331[label="vxw111 == vxw101",fontsize=16,color="magenta"];1331 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1332 -> 45[label="",style="dashed", color="red", weight=0]; 1332[label="vxw111 == vxw101",fontsize=16,color="magenta"];1332 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1333 -> 42[label="",style="dashed", color="red", weight=0]; 1333[label="vxw111 == vxw101",fontsize=16,color="magenta"];1333 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1334 -> 34[label="",style="dashed", color="red", weight=0]; 1334[label="vxw111 == vxw101",fontsize=16,color="magenta"];1334 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1335 -> 38[label="",style="dashed", color="red", weight=0]; 1335[label="vxw111 == vxw101",fontsize=16,color="magenta"];1335 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1336 -> 46[label="",style="dashed", color="red", weight=0]; 1336[label="vxw111 == vxw101",fontsize=16,color="magenta"];1336 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1337 -> 814[label="",style="dashed", color="red", weight=0]; 1337[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="magenta"];1337 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1338 -> 822[label="",style="dashed", color="red", weight=0]; 1338[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="magenta"];1338 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1339[label="primCmpInt (Pos (Succ vxw1100)) (Pos vxw100)",fontsize=16,color="black",shape="box"];1339 -> 1425[label="",style="solid", color="black", weight=3]; 1340[label="primCmpInt (Pos (Succ vxw1100)) (Neg vxw100)",fontsize=16,color="black",shape="box"];1340 -> 1426[label="",style="solid", color="black", weight=3]; 1341[label="primCmpInt (Pos Zero) (Pos vxw100)",fontsize=16,color="burlywood",shape="box"];2225[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1341 -> 2225[label="",style="solid", color="burlywood", weight=9]; 2225 -> 1427[label="",style="solid", color="burlywood", weight=3]; 2226[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1341 -> 2226[label="",style="solid", color="burlywood", weight=9]; 2226 -> 1428[label="",style="solid", color="burlywood", weight=3]; 1342[label="primCmpInt (Pos Zero) (Neg vxw100)",fontsize=16,color="burlywood",shape="box"];2227[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1342 -> 2227[label="",style="solid", color="burlywood", weight=9]; 2227 -> 1429[label="",style="solid", color="burlywood", weight=3]; 2228[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1342 -> 2228[label="",style="solid", color="burlywood", weight=9]; 2228 -> 1430[label="",style="solid", color="burlywood", weight=3]; 1343[label="primCmpInt (Neg (Succ vxw1100)) (Pos vxw100)",fontsize=16,color="black",shape="box"];1343 -> 1431[label="",style="solid", color="black", weight=3]; 1344[label="primCmpInt (Neg (Succ vxw1100)) (Neg vxw100)",fontsize=16,color="black",shape="box"];1344 -> 1432[label="",style="solid", color="black", weight=3]; 1345[label="primCmpInt (Neg Zero) (Pos vxw100)",fontsize=16,color="burlywood",shape="box"];2229[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1345 -> 2229[label="",style="solid", color="burlywood", weight=9]; 2229 -> 1433[label="",style="solid", color="burlywood", weight=3]; 2230[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1345 -> 2230[label="",style="solid", color="burlywood", weight=9]; 2230 -> 1434[label="",style="solid", color="burlywood", weight=3]; 1346[label="primCmpInt (Neg Zero) (Neg vxw100)",fontsize=16,color="burlywood",shape="box"];2231[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2231[label="",style="solid", color="burlywood", weight=9]; 2231 -> 1435[label="",style="solid", color="burlywood", weight=3]; 2232[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2232[label="",style="solid", color="burlywood", weight=9]; 2232 -> 1436[label="",style="solid", color="burlywood", weight=3]; 1347[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2233[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1347 -> 2233[label="",style="solid", color="burlywood", weight=9]; 2233 -> 1437[label="",style="solid", color="burlywood", weight=3]; 2234[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1347 -> 2234[label="",style="solid", color="burlywood", weight=9]; 2234 -> 1438[label="",style="solid", color="burlywood", weight=3]; 1348[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2235[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1348 -> 2235[label="",style="solid", color="burlywood", weight=9]; 2235 -> 1439[label="",style="solid", color="burlywood", weight=3]; 2236[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1348 -> 2236[label="",style="solid", color="burlywood", weight=9]; 2236 -> 1440[label="",style="solid", color="burlywood", weight=3]; 1349[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2237[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1349 -> 2237[label="",style="solid", color="burlywood", weight=9]; 2237 -> 1441[label="",style="solid", color="burlywood", weight=3]; 2238[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1349 -> 2238[label="",style="solid", color="burlywood", weight=9]; 2238 -> 1442[label="",style="solid", color="burlywood", weight=3]; 1350[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2239[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1350 -> 2239[label="",style="solid", color="burlywood", weight=9]; 2239 -> 1443[label="",style="solid", color="burlywood", weight=3]; 2240[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1350 -> 2240[label="",style="solid", color="burlywood", weight=9]; 2240 -> 1444[label="",style="solid", color="burlywood", weight=3]; 1352 -> 828[label="",style="dashed", color="red", weight=0]; 1352[label="compare vxw111 vxw101",fontsize=16,color="magenta"];1352 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1351[label="primCompAux vxw110 vxw100 vxw44",fontsize=16,color="black",shape="triangle"];1351 -> 1447[label="",style="solid", color="black", weight=3]; 1353 -> 1448[label="",style="dashed", color="red", weight=0]; 1353[label="primPlusNat (primMulNat vxw30000 (Succ vxw400100)) (Succ vxw400100)",fontsize=16,color="magenta"];1353 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1354[label="Zero",fontsize=16,color="green",shape="box"];1355[label="Zero",fontsize=16,color="green",shape="box"];1356[label="Zero",fontsize=16,color="green",shape="box"];1357[label="primCmpNat (Succ vxw1100) vxw100",fontsize=16,color="burlywood",shape="box"];2241[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1357 -> 2241[label="",style="solid", color="burlywood", weight=9]; 2241 -> 1450[label="",style="solid", color="burlywood", weight=3]; 2242[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1357 -> 2242[label="",style="solid", color="burlywood", weight=9]; 2242 -> 1451[label="",style="solid", color="burlywood", weight=3]; 1358[label="primCmpNat Zero vxw100",fontsize=16,color="burlywood",shape="box"];2243[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1358 -> 2243[label="",style="solid", color="burlywood", weight=9]; 2243 -> 1452[label="",style="solid", color="burlywood", weight=3]; 2244[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1358 -> 2244[label="",style="solid", color="burlywood", weight=9]; 2244 -> 1453[label="",style="solid", color="burlywood", weight=3]; 1359 -> 1454[label="",style="dashed", color="red", weight=0]; 1359[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1359 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1360 -> 1456[label="",style="dashed", color="red", weight=0]; 1360[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1360 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1361 -> 1458[label="",style="dashed", color="red", weight=0]; 1361[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1361 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1362 -> 1460[label="",style="dashed", color="red", weight=0]; 1362[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1362 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1363 -> 1462[label="",style="dashed", color="red", weight=0]; 1363[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1363 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1464[label="",style="dashed", color="red", weight=0]; 1364[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1364 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1365[label="vxw112",fontsize=16,color="green",shape="box"];1366[label="vxw102",fontsize=16,color="green",shape="box"];1367[label="vxw112",fontsize=16,color="green",shape="box"];1368[label="vxw102",fontsize=16,color="green",shape="box"];1369[label="vxw112",fontsize=16,color="green",shape="box"];1370[label="vxw102",fontsize=16,color="green",shape="box"];1371[label="vxw112",fontsize=16,color="green",shape="box"];1372[label="vxw102",fontsize=16,color="green",shape="box"];1373[label="vxw112",fontsize=16,color="green",shape="box"];1374[label="vxw102",fontsize=16,color="green",shape="box"];1375[label="vxw112",fontsize=16,color="green",shape="box"];1376[label="vxw102",fontsize=16,color="green",shape="box"];1377[label="vxw112",fontsize=16,color="green",shape="box"];1378[label="vxw102",fontsize=16,color="green",shape="box"];1379[label="vxw112",fontsize=16,color="green",shape="box"];1380[label="vxw102",fontsize=16,color="green",shape="box"];1381[label="vxw112",fontsize=16,color="green",shape="box"];1382[label="vxw102",fontsize=16,color="green",shape="box"];1383[label="vxw112",fontsize=16,color="green",shape="box"];1384[label="vxw102",fontsize=16,color="green",shape="box"];1385[label="vxw112",fontsize=16,color="green",shape="box"];1386[label="vxw102",fontsize=16,color="green",shape="box"];1387[label="vxw112",fontsize=16,color="green",shape="box"];1388[label="vxw102",fontsize=16,color="green",shape="box"];1389[label="vxw112",fontsize=16,color="green",shape="box"];1390[label="vxw102",fontsize=16,color="green",shape="box"];1391[label="vxw112",fontsize=16,color="green",shape="box"];1392[label="vxw102",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[label="vxw111",fontsize=16,color="green",shape="box"];1416[label="vxw101",fontsize=16,color="green",shape="box"];1417[label="vxw111",fontsize=16,color="green",shape="box"];1418[label="vxw101",fontsize=16,color="green",shape="box"];1419[label="vxw111",fontsize=16,color="green",shape="box"];1420[label="vxw101",fontsize=16,color="green",shape="box"];1421[label="vxw110 * vxw101",fontsize=16,color="burlywood",shape="triangle"];2245[label="vxw110/Integer vxw1100",fontsize=10,color="white",style="solid",shape="box"];1421 -> 2245[label="",style="solid", color="burlywood", weight=9]; 2245 -> 1466[label="",style="solid", color="burlywood", weight=3]; 1422 -> 1421[label="",style="dashed", color="red", weight=0]; 1422[label="vxw100 * vxw111",fontsize=16,color="magenta"];1422 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1423 -> 433[label="",style="dashed", color="red", weight=0]; 1423[label="vxw110 * vxw101",fontsize=16,color="magenta"];1423 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1424 -> 433[label="",style="dashed", color="red", weight=0]; 1424[label="vxw100 * vxw111",fontsize=16,color="magenta"];1424 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1258[label="",style="dashed", color="red", weight=0]; 1425[label="primCmpNat (Succ vxw1100) vxw100",fontsize=16,color="magenta"];1425 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1426[label="GT",fontsize=16,color="green",shape="box"];1427[label="primCmpInt (Pos Zero) (Pos (Succ vxw1000))",fontsize=16,color="black",shape="box"];1427 -> 1475[label="",style="solid", color="black", weight=3]; 1428[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1428 -> 1476[label="",style="solid", color="black", weight=3]; 1429[label="primCmpInt (Pos Zero) (Neg (Succ vxw1000))",fontsize=16,color="black",shape="box"];1429 -> 1477[label="",style="solid", color="black", weight=3]; 1430[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1430 -> 1478[label="",style="solid", color="black", weight=3]; 1431[label="LT",fontsize=16,color="green",shape="box"];1432 -> 1258[label="",style="dashed", color="red", weight=0]; 1432[label="primCmpNat vxw100 (Succ vxw1100)",fontsize=16,color="magenta"];1432 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1433[label="primCmpInt (Neg Zero) (Pos (Succ vxw1000))",fontsize=16,color="black",shape="box"];1433 -> 1481[label="",style="solid", color="black", weight=3]; 1434[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1434 -> 1482[label="",style="solid", color="black", weight=3]; 1435[label="primCmpInt (Neg Zero) (Neg (Succ vxw1000))",fontsize=16,color="black",shape="box"];1435 -> 1483[label="",style="solid", color="black", weight=3]; 1436[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1436 -> 1484[label="",style="solid", color="black", weight=3]; 1437[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1437 -> 1485[label="",style="solid", color="black", weight=3]; 1438[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1438 -> 1486[label="",style="solid", color="black", weight=3]; 1439[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1439 -> 1487[label="",style="solid", color="black", weight=3]; 1440[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1440 -> 1488[label="",style="solid", color="black", weight=3]; 1441[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1441 -> 1489[label="",style="solid", color="black", weight=3]; 1442[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1442 -> 1490[label="",style="solid", color="black", weight=3]; 1443[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1443 -> 1491[label="",style="solid", color="black", weight=3]; 1444[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1444 -> 1492[label="",style="solid", color="black", weight=3]; 1445[label="vxw111",fontsize=16,color="green",shape="box"];1446[label="vxw101",fontsize=16,color="green",shape="box"];1447 -> 1493[label="",style="dashed", color="red", weight=0]; 1447[label="primCompAux0 vxw44 (compare vxw110 vxw100)",fontsize=16,color="magenta"];1447 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1449 -> 998[label="",style="dashed", color="red", weight=0]; 1449[label="primMulNat vxw30000 (Succ vxw400100)",fontsize=16,color="magenta"];1449 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1448[label="primPlusNat vxw45 (Succ vxw400100)",fontsize=16,color="burlywood",shape="triangle"];2246[label="vxw45/Succ vxw450",fontsize=10,color="white",style="solid",shape="box"];1448 -> 2246[label="",style="solid", color="burlywood", weight=9]; 2246 -> 1498[label="",style="solid", color="burlywood", weight=3]; 2247[label="vxw45/Zero",fontsize=10,color="white",style="solid",shape="box"];1448 -> 2247[label="",style="solid", color="burlywood", weight=9]; 2247 -> 1499[label="",style="solid", color="burlywood", weight=3]; 1450[label="primCmpNat (Succ vxw1100) (Succ vxw1000)",fontsize=16,color="black",shape="box"];1450 -> 1500[label="",style="solid", color="black", weight=3]; 1451[label="primCmpNat (Succ vxw1100) Zero",fontsize=16,color="black",shape="box"];1451 -> 1501[label="",style="solid", color="black", weight=3]; 1452[label="primCmpNat Zero (Succ vxw1000)",fontsize=16,color="black",shape="box"];1452 -> 1502[label="",style="solid", color="black", weight=3]; 1453[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1453 -> 1503[label="",style="solid", color="black", weight=3]; 1455 -> 35[label="",style="dashed", color="red", weight=0]; 1455[label="vxw110 == vxw100",fontsize=16,color="magenta"];1455 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1454[label="compare2 vxw110 vxw100 vxw46",fontsize=16,color="burlywood",shape="triangle"];2248[label="vxw46/False",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2248[label="",style="solid", color="burlywood", weight=9]; 2248 -> 1506[label="",style="solid", color="burlywood", weight=3]; 2249[label="vxw46/True",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2249[label="",style="solid", color="burlywood", weight=9]; 2249 -> 1507[label="",style="solid", color="burlywood", weight=3]; 1457 -> 43[label="",style="dashed", color="red", weight=0]; 1457[label="vxw110 == vxw100",fontsize=16,color="magenta"];1457 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1456[label="compare2 vxw110 vxw100 vxw47",fontsize=16,color="burlywood",shape="triangle"];2250[label="vxw47/False",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2250[label="",style="solid", color="burlywood", weight=9]; 2250 -> 1510[label="",style="solid", color="burlywood", weight=3]; 2251[label="vxw47/True",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2251[label="",style="solid", color="burlywood", weight=9]; 2251 -> 1511[label="",style="solid", color="burlywood", weight=3]; 1459 -> 44[label="",style="dashed", color="red", weight=0]; 1459[label="vxw110 == vxw100",fontsize=16,color="magenta"];1459 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1458[label="compare2 vxw110 vxw100 vxw48",fontsize=16,color="burlywood",shape="triangle"];2252[label="vxw48/False",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2252[label="",style="solid", color="burlywood", weight=9]; 2252 -> 1514[label="",style="solid", color="burlywood", weight=3]; 2253[label="vxw48/True",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2253[label="",style="solid", color="burlywood", weight=9]; 2253 -> 1515[label="",style="solid", color="burlywood", weight=3]; 1461 -> 37[label="",style="dashed", color="red", weight=0]; 1461[label="vxw110 == vxw100",fontsize=16,color="magenta"];1461 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1460[label="compare2 vxw110 vxw100 vxw49",fontsize=16,color="burlywood",shape="triangle"];2254[label="vxw49/False",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2254[label="",style="solid", color="burlywood", weight=9]; 2254 -> 1518[label="",style="solid", color="burlywood", weight=3]; 2255[label="vxw49/True",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2255[label="",style="solid", color="burlywood", weight=9]; 2255 -> 1519[label="",style="solid", color="burlywood", weight=3]; 1463 -> 40[label="",style="dashed", color="red", weight=0]; 1463[label="vxw110 == vxw100",fontsize=16,color="magenta"];1463 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1462[label="compare2 vxw110 vxw100 vxw50",fontsize=16,color="burlywood",shape="triangle"];2256[label="vxw50/False",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2256[label="",style="solid", color="burlywood", weight=9]; 2256 -> 1522[label="",style="solid", color="burlywood", weight=3]; 2257[label="vxw50/True",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2257[label="",style="solid", color="burlywood", weight=9]; 2257 -> 1523[label="",style="solid", color="burlywood", weight=3]; 1465 -> 34[label="",style="dashed", color="red", weight=0]; 1465[label="vxw110 == vxw100",fontsize=16,color="magenta"];1465 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1464[label="compare2 vxw110 vxw100 vxw51",fontsize=16,color="burlywood",shape="triangle"];2258[label="vxw51/False",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2258[label="",style="solid", color="burlywood", weight=9]; 2258 -> 1526[label="",style="solid", color="burlywood", weight=3]; 2259[label="vxw51/True",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2259[label="",style="solid", color="burlywood", weight=9]; 2259 -> 1527[label="",style="solid", color="burlywood", weight=3]; 1466[label="Integer vxw1100 * vxw101",fontsize=16,color="burlywood",shape="box"];2260[label="vxw101/Integer vxw1010",fontsize=10,color="white",style="solid",shape="box"];1466 -> 2260[label="",style="solid", color="burlywood", weight=9]; 2260 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1467[label="vxw100",fontsize=16,color="green",shape="box"];1468[label="vxw111",fontsize=16,color="green",shape="box"];1469[label="vxw110",fontsize=16,color="green",shape="box"];1470[label="vxw101",fontsize=16,color="green",shape="box"];1471[label="vxw100",fontsize=16,color="green",shape="box"];1472[label="vxw111",fontsize=16,color="green",shape="box"];1473[label="vxw100",fontsize=16,color="green",shape="box"];1474[label="Succ vxw1100",fontsize=16,color="green",shape="box"];1475 -> 1258[label="",style="dashed", color="red", weight=0]; 1475[label="primCmpNat Zero (Succ vxw1000)",fontsize=16,color="magenta"];1475 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1476[label="EQ",fontsize=16,color="green",shape="box"];1477[label="GT",fontsize=16,color="green",shape="box"];1478[label="EQ",fontsize=16,color="green",shape="box"];1479[label="Succ vxw1100",fontsize=16,color="green",shape="box"];1480[label="vxw100",fontsize=16,color="green",shape="box"];1481[label="LT",fontsize=16,color="green",shape="box"];1482[label="EQ",fontsize=16,color="green",shape="box"];1483 -> 1258[label="",style="dashed", color="red", weight=0]; 1483[label="primCmpNat (Succ vxw1000) Zero",fontsize=16,color="magenta"];1483 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1484[label="EQ",fontsize=16,color="green",shape="box"];1485 -> 822[label="",style="dashed", color="red", weight=0]; 1485[label="compare (vxw110 * Pos vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1485 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1486 -> 822[label="",style="dashed", color="red", weight=0]; 1486[label="compare (vxw110 * Pos vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1486 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1487 -> 822[label="",style="dashed", color="red", weight=0]; 1487[label="compare (vxw110 * Neg vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1487 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1488 -> 822[label="",style="dashed", color="red", weight=0]; 1488[label="compare (vxw110 * Neg vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1488 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1489 -> 822[label="",style="dashed", color="red", weight=0]; 1489[label="compare (vxw110 * Pos vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1489 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1490 -> 822[label="",style="dashed", color="red", weight=0]; 1490[label="compare (vxw110 * Pos vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1490 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1491 -> 822[label="",style="dashed", color="red", weight=0]; 1491[label="compare (vxw110 * Neg vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1491 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1492 -> 822[label="",style="dashed", color="red", weight=0]; 1492[label="compare (vxw110 * Neg vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1492 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1494[label="compare vxw110 vxw100",fontsize=16,color="blue",shape="box"];2261[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2261[label="",style="solid", color="blue", weight=9]; 2261 -> 1549[label="",style="solid", color="blue", weight=3]; 2262[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2262[label="",style="solid", color="blue", weight=9]; 2262 -> 1550[label="",style="solid", color="blue", weight=3]; 2263[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2263[label="",style="solid", color="blue", weight=9]; 2263 -> 1551[label="",style="solid", color="blue", weight=3]; 2264[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2264[label="",style="solid", color="blue", weight=9]; 2264 -> 1552[label="",style="solid", color="blue", weight=3]; 2265[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2265[label="",style="solid", color="blue", weight=9]; 2265 -> 1553[label="",style="solid", color="blue", weight=3]; 2266[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2266[label="",style="solid", color="blue", weight=9]; 2266 -> 1554[label="",style="solid", color="blue", weight=3]; 2267[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2267[label="",style="solid", color="blue", weight=9]; 2267 -> 1555[label="",style="solid", color="blue", weight=3]; 2268[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2268[label="",style="solid", color="blue", weight=9]; 2268 -> 1556[label="",style="solid", color="blue", weight=3]; 2269[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2269[label="",style="solid", color="blue", weight=9]; 2269 -> 1557[label="",style="solid", color="blue", weight=3]; 2270[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2270[label="",style="solid", color="blue", weight=9]; 2270 -> 1558[label="",style="solid", color="blue", weight=3]; 2271[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2271[label="",style="solid", color="blue", weight=9]; 2271 -> 1559[label="",style="solid", color="blue", weight=3]; 2272[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2272[label="",style="solid", color="blue", weight=9]; 2272 -> 1560[label="",style="solid", color="blue", weight=3]; 2273[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2273[label="",style="solid", color="blue", weight=9]; 2273 -> 1561[label="",style="solid", color="blue", weight=3]; 2274[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2274[label="",style="solid", color="blue", weight=9]; 2274 -> 1562[label="",style="solid", color="blue", weight=3]; 1495[label="vxw44",fontsize=16,color="green",shape="box"];1493[label="primCompAux0 vxw55 vxw56",fontsize=16,color="burlywood",shape="triangle"];2275[label="vxw56/LT",fontsize=10,color="white",style="solid",shape="box"];1493 -> 2275[label="",style="solid", color="burlywood", weight=9]; 2275 -> 1563[label="",style="solid", color="burlywood", weight=3]; 2276[label="vxw56/EQ",fontsize=10,color="white",style="solid",shape="box"];1493 -> 2276[label="",style="solid", color="burlywood", weight=9]; 2276 -> 1564[label="",style="solid", color="burlywood", weight=3]; 2277[label="vxw56/GT",fontsize=10,color="white",style="solid",shape="box"];1493 -> 2277[label="",style="solid", color="burlywood", weight=9]; 2277 -> 1565[label="",style="solid", color="burlywood", weight=3]; 1496[label="Succ vxw400100",fontsize=16,color="green",shape="box"];1497[label="vxw30000",fontsize=16,color="green",shape="box"];1498[label="primPlusNat (Succ vxw450) (Succ vxw400100)",fontsize=16,color="black",shape="box"];1498 -> 1566[label="",style="solid", color="black", weight=3]; 1499[label="primPlusNat Zero (Succ vxw400100)",fontsize=16,color="black",shape="box"];1499 -> 1567[label="",style="solid", color="black", weight=3]; 1500 -> 1258[label="",style="dashed", color="red", weight=0]; 1500[label="primCmpNat vxw1100 vxw1000",fontsize=16,color="magenta"];1500 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1501[label="GT",fontsize=16,color="green",shape="box"];1502[label="LT",fontsize=16,color="green",shape="box"];1503[label="EQ",fontsize=16,color="green",shape="box"];1504[label="vxw110",fontsize=16,color="green",shape="box"];1505[label="vxw100",fontsize=16,color="green",shape="box"];1506[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1506 -> 1570[label="",style="solid", color="black", weight=3]; 1507[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1507 -> 1571[label="",style="solid", color="black", weight=3]; 1508[label="vxw110",fontsize=16,color="green",shape="box"];1509[label="vxw100",fontsize=16,color="green",shape="box"];1510[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1510 -> 1572[label="",style="solid", color="black", weight=3]; 1511[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1511 -> 1573[label="",style="solid", color="black", weight=3]; 1512[label="vxw110",fontsize=16,color="green",shape="box"];1513[label="vxw100",fontsize=16,color="green",shape="box"];1514[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1514 -> 1574[label="",style="solid", color="black", weight=3]; 1515[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1515 -> 1575[label="",style="solid", color="black", weight=3]; 1516[label="vxw110",fontsize=16,color="green",shape="box"];1517[label="vxw100",fontsize=16,color="green",shape="box"];1518[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1518 -> 1576[label="",style="solid", color="black", weight=3]; 1519[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1519 -> 1577[label="",style="solid", color="black", weight=3]; 1520[label="vxw110",fontsize=16,color="green",shape="box"];1521[label="vxw100",fontsize=16,color="green",shape="box"];1522[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1522 -> 1578[label="",style="solid", color="black", weight=3]; 1523[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1523 -> 1579[label="",style="solid", color="black", weight=3]; 1524[label="vxw110",fontsize=16,color="green",shape="box"];1525[label="vxw100",fontsize=16,color="green",shape="box"];1526[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1526 -> 1580[label="",style="solid", color="black", weight=3]; 1527[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1527 -> 1581[label="",style="solid", color="black", weight=3]; 1528[label="Integer vxw1100 * Integer vxw1010",fontsize=16,color="black",shape="box"];1528 -> 1582[label="",style="solid", color="black", weight=3]; 1529[label="Succ vxw1000",fontsize=16,color="green",shape="box"];1530[label="Zero",fontsize=16,color="green",shape="box"];1531[label="Zero",fontsize=16,color="green",shape="box"];1532[label="Succ vxw1000",fontsize=16,color="green",shape="box"];1533 -> 433[label="",style="dashed", color="red", weight=0]; 1533[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1533 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1534 -> 433[label="",style="dashed", color="red", weight=0]; 1534[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1534 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1535 -> 433[label="",style="dashed", color="red", weight=0]; 1535[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1535 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1536 -> 433[label="",style="dashed", color="red", weight=0]; 1536[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1536 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1537 -> 433[label="",style="dashed", color="red", weight=0]; 1537[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1537 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1538 -> 433[label="",style="dashed", color="red", weight=0]; 1538[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1538 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1539 -> 433[label="",style="dashed", color="red", weight=0]; 1539[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1539 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1540 -> 433[label="",style="dashed", color="red", weight=0]; 1540[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1540 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1541 -> 433[label="",style="dashed", color="red", weight=0]; 1541[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1541 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1542 -> 433[label="",style="dashed", color="red", weight=0]; 1542[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1542 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1543 -> 433[label="",style="dashed", color="red", weight=0]; 1543[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1543 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1544 -> 433[label="",style="dashed", color="red", weight=0]; 1544[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1544 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1545 -> 433[label="",style="dashed", color="red", weight=0]; 1545[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1545 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1546 -> 433[label="",style="dashed", color="red", weight=0]; 1546[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1546 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1547 -> 433[label="",style="dashed", color="red", weight=0]; 1547[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1547 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1548 -> 433[label="",style="dashed", color="red", weight=0]; 1548[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1548 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1110[label="",style="dashed", color="red", weight=0]; 1549[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1549 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1550 -> 814[label="",style="dashed", color="red", weight=0]; 1550[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1550 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1551 -> 818[label="",style="dashed", color="red", weight=0]; 1551[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1551 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1116[label="",style="dashed", color="red", weight=0]; 1552[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1552 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1118[label="",style="dashed", color="red", weight=0]; 1553[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1553 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1554 -> 820[label="",style="dashed", color="red", weight=0]; 1554[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1554 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1122[label="",style="dashed", color="red", weight=0]; 1555[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1555 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1556 -> 822[label="",style="dashed", color="red", weight=0]; 1556[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1556 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1126[label="",style="dashed", color="red", weight=0]; 1557[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1557 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1558 -> 824[label="",style="dashed", color="red", weight=0]; 1558[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1558 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1559 -> 826[label="",style="dashed", color="red", weight=0]; 1559[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1559 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1132[label="",style="dashed", color="red", weight=0]; 1560[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1560 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1561 -> 828[label="",style="dashed", color="red", weight=0]; 1561[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1561 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1562 -> 830[label="",style="dashed", color="red", weight=0]; 1562[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1562 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1563[label="primCompAux0 vxw55 LT",fontsize=16,color="black",shape="box"];1563 -> 1643[label="",style="solid", color="black", weight=3]; 1564[label="primCompAux0 vxw55 EQ",fontsize=16,color="black",shape="box"];1564 -> 1644[label="",style="solid", color="black", weight=3]; 1565[label="primCompAux0 vxw55 GT",fontsize=16,color="black",shape="box"];1565 -> 1645[label="",style="solid", color="black", weight=3]; 1566[label="Succ (Succ (primPlusNat vxw450 vxw400100))",fontsize=16,color="green",shape="box"];1566 -> 1646[label="",style="dashed", color="green", weight=3]; 1567[label="Succ vxw400100",fontsize=16,color="green",shape="box"];1568[label="vxw1000",fontsize=16,color="green",shape="box"];1569[label="vxw1100",fontsize=16,color="green",shape="box"];1570 -> 1647[label="",style="dashed", color="red", weight=0]; 1570[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1570 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1571[label="EQ",fontsize=16,color="green",shape="box"];1572 -> 1649[label="",style="dashed", color="red", weight=0]; 1572[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1572 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1573[label="EQ",fontsize=16,color="green",shape="box"];1574 -> 1651[label="",style="dashed", color="red", weight=0]; 1574[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1574 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1575[label="EQ",fontsize=16,color="green",shape="box"];1576 -> 1653[label="",style="dashed", color="red", weight=0]; 1576[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1576 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1577[label="EQ",fontsize=16,color="green",shape="box"];1578 -> 1655[label="",style="dashed", color="red", weight=0]; 1578[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1578 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1579[label="EQ",fontsize=16,color="green",shape="box"];1580 -> 1657[label="",style="dashed", color="red", weight=0]; 1580[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1580 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1581[label="EQ",fontsize=16,color="green",shape="box"];1582[label="Integer (primMulInt vxw1100 vxw1010)",fontsize=16,color="green",shape="box"];1582 -> 1659[label="",style="dashed", color="green", weight=3]; 1583[label="vxw110",fontsize=16,color="green",shape="box"];1584[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1585[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1586[label="vxw100",fontsize=16,color="green",shape="box"];1587[label="vxw110",fontsize=16,color="green",shape="box"];1588[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1589[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1590[label="vxw100",fontsize=16,color="green",shape="box"];1591[label="vxw110",fontsize=16,color="green",shape="box"];1592[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1593[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1594[label="vxw100",fontsize=16,color="green",shape="box"];1595[label="vxw110",fontsize=16,color="green",shape="box"];1596[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1597[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1598[label="vxw100",fontsize=16,color="green",shape="box"];1599[label="vxw110",fontsize=16,color="green",shape="box"];1600[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1601[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1602[label="vxw100",fontsize=16,color="green",shape="box"];1603[label="vxw110",fontsize=16,color="green",shape="box"];1604[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1605[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1606[label="vxw100",fontsize=16,color="green",shape="box"];1607[label="vxw110",fontsize=16,color="green",shape="box"];1608[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1609[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1610[label="vxw100",fontsize=16,color="green",shape="box"];1611[label="vxw110",fontsize=16,color="green",shape="box"];1612[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1613[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1614[label="vxw100",fontsize=16,color="green",shape="box"];1615[label="vxw110",fontsize=16,color="green",shape="box"];1616[label="vxw100",fontsize=16,color="green",shape="box"];1617[label="vxw110",fontsize=16,color="green",shape="box"];1618[label="vxw100",fontsize=16,color="green",shape="box"];1619[label="vxw110",fontsize=16,color="green",shape="box"];1620[label="vxw100",fontsize=16,color="green",shape="box"];1621[label="vxw110",fontsize=16,color="green",shape="box"];1622[label="vxw100",fontsize=16,color="green",shape="box"];1623[label="vxw110",fontsize=16,color="green",shape="box"];1624[label="vxw100",fontsize=16,color="green",shape="box"];1625[label="vxw110",fontsize=16,color="green",shape="box"];1626[label="vxw100",fontsize=16,color="green",shape="box"];1627[label="vxw110",fontsize=16,color="green",shape="box"];1628[label="vxw100",fontsize=16,color="green",shape="box"];1629[label="vxw110",fontsize=16,color="green",shape="box"];1630[label="vxw100",fontsize=16,color="green",shape="box"];1631[label="vxw110",fontsize=16,color="green",shape="box"];1632[label="vxw100",fontsize=16,color="green",shape="box"];1633[label="vxw110",fontsize=16,color="green",shape="box"];1634[label="vxw100",fontsize=16,color="green",shape="box"];1635[label="vxw110",fontsize=16,color="green",shape="box"];1636[label="vxw100",fontsize=16,color="green",shape="box"];1637[label="vxw110",fontsize=16,color="green",shape="box"];1638[label="vxw100",fontsize=16,color="green",shape="box"];1639[label="vxw110",fontsize=16,color="green",shape="box"];1640[label="vxw100",fontsize=16,color="green",shape="box"];1641[label="vxw110",fontsize=16,color="green",shape="box"];1642[label="vxw100",fontsize=16,color="green",shape="box"];1643[label="LT",fontsize=16,color="green",shape="box"];1644[label="vxw55",fontsize=16,color="green",shape="box"];1645[label="GT",fontsize=16,color="green",shape="box"];1646[label="primPlusNat vxw450 vxw400100",fontsize=16,color="burlywood",shape="triangle"];2278[label="vxw450/Succ vxw4500",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2278[label="",style="solid", color="burlywood", weight=9]; 2278 -> 1660[label="",style="solid", color="burlywood", weight=3]; 2279[label="vxw450/Zero",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2279[label="",style="solid", color="burlywood", weight=9]; 2279 -> 1661[label="",style="solid", color="burlywood", weight=3]; 1648 -> 239[label="",style="dashed", color="red", weight=0]; 1648[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1648 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1647[label="compare1 vxw110 vxw100 vxw57",fontsize=16,color="burlywood",shape="triangle"];2280[label="vxw57/False",fontsize=10,color="white",style="solid",shape="box"];1647 -> 2280[label="",style="solid", color="burlywood", weight=9]; 2280 -> 1664[label="",style="solid", color="burlywood", weight=3]; 2281[label="vxw57/True",fontsize=10,color="white",style="solid",shape="box"];1647 -> 2281[label="",style="solid", color="burlywood", weight=9]; 2281 -> 1665[label="",style="solid", color="burlywood", weight=3]; 1650 -> 242[label="",style="dashed", color="red", weight=0]; 1650[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1650 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1649[label="compare1 vxw110 vxw100 vxw58",fontsize=16,color="burlywood",shape="triangle"];2282[label="vxw58/False",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2282[label="",style="solid", color="burlywood", weight=9]; 2282 -> 1668[label="",style="solid", color="burlywood", weight=3]; 2283[label="vxw58/True",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2283[label="",style="solid", color="burlywood", weight=9]; 2283 -> 1669[label="",style="solid", color="burlywood", weight=3]; 1652 -> 243[label="",style="dashed", color="red", weight=0]; 1652[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1652 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1651[label="compare1 vxw110 vxw100 vxw59",fontsize=16,color="burlywood",shape="triangle"];2284[label="vxw59/False",fontsize=10,color="white",style="solid",shape="box"];1651 -> 2284[label="",style="solid", color="burlywood", weight=9]; 2284 -> 1672[label="",style="solid", color="burlywood", weight=3]; 2285[label="vxw59/True",fontsize=10,color="white",style="solid",shape="box"];1651 -> 2285[label="",style="solid", color="burlywood", weight=9]; 2285 -> 1673[label="",style="solid", color="burlywood", weight=3]; 1654 -> 245[label="",style="dashed", color="red", weight=0]; 1654[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1654 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1653[label="compare1 vxw110 vxw100 vxw60",fontsize=16,color="burlywood",shape="triangle"];2286[label="vxw60/False",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2286[label="",style="solid", color="burlywood", weight=9]; 2286 -> 1676[label="",style="solid", color="burlywood", weight=3]; 2287[label="vxw60/True",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2287[label="",style="solid", color="burlywood", weight=9]; 2287 -> 1677[label="",style="solid", color="burlywood", weight=3]; 1656 -> 247[label="",style="dashed", color="red", weight=0]; 1656[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1656 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1655[label="compare1 vxw110 vxw100 vxw61",fontsize=16,color="burlywood",shape="triangle"];2288[label="vxw61/False",fontsize=10,color="white",style="solid",shape="box"];1655 -> 2288[label="",style="solid", color="burlywood", weight=9]; 2288 -> 1680[label="",style="solid", color="burlywood", weight=3]; 2289[label="vxw61/True",fontsize=10,color="white",style="solid",shape="box"];1655 -> 2289[label="",style="solid", color="burlywood", weight=9]; 2289 -> 1681[label="",style="solid", color="burlywood", weight=3]; 1658 -> 250[label="",style="dashed", color="red", weight=0]; 1658[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1658 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1657[label="compare1 vxw110 vxw100 vxw62",fontsize=16,color="burlywood",shape="triangle"];2290[label="vxw62/False",fontsize=10,color="white",style="solid",shape="box"];1657 -> 2290[label="",style="solid", color="burlywood", weight=9]; 2290 -> 1684[label="",style="solid", color="burlywood", weight=3]; 2291[label="vxw62/True",fontsize=10,color="white",style="solid",shape="box"];1657 -> 2291[label="",style="solid", color="burlywood", weight=9]; 2291 -> 1685[label="",style="solid", color="burlywood", weight=3]; 1659 -> 586[label="",style="dashed", color="red", weight=0]; 1659[label="primMulInt vxw1100 vxw1010",fontsize=16,color="magenta"];1659 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1660[label="primPlusNat (Succ vxw4500) vxw400100",fontsize=16,color="burlywood",shape="box"];2292[label="vxw400100/Succ vxw4001000",fontsize=10,color="white",style="solid",shape="box"];1660 -> 2292[label="",style="solid", color="burlywood", weight=9]; 2292 -> 1688[label="",style="solid", color="burlywood", weight=3]; 2293[label="vxw400100/Zero",fontsize=10,color="white",style="solid",shape="box"];1660 -> 2293[label="",style="solid", color="burlywood", weight=9]; 2293 -> 1689[label="",style="solid", color="burlywood", weight=3]; 1661[label="primPlusNat Zero vxw400100",fontsize=16,color="burlywood",shape="box"];2294[label="vxw400100/Succ vxw4001000",fontsize=10,color="white",style="solid",shape="box"];1661 -> 2294[label="",style="solid", color="burlywood", weight=9]; 2294 -> 1690[label="",style="solid", color="burlywood", weight=3]; 2295[label="vxw400100/Zero",fontsize=10,color="white",style="solid",shape="box"];1661 -> 2295[label="",style="solid", color="burlywood", weight=9]; 2295 -> 1691[label="",style="solid", color="burlywood", weight=3]; 1662[label="vxw110",fontsize=16,color="green",shape="box"];1663[label="vxw100",fontsize=16,color="green",shape="box"];1664[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1664 -> 1692[label="",style="solid", color="black", weight=3]; 1665[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1665 -> 1693[label="",style="solid", color="black", weight=3]; 1666[label="vxw110",fontsize=16,color="green",shape="box"];1667[label="vxw100",fontsize=16,color="green",shape="box"];1668[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1668 -> 1694[label="",style="solid", color="black", weight=3]; 1669[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1669 -> 1695[label="",style="solid", color="black", weight=3]; 1670[label="vxw110",fontsize=16,color="green",shape="box"];1671[label="vxw100",fontsize=16,color="green",shape="box"];1672[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1672 -> 1696[label="",style="solid", color="black", weight=3]; 1673[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1673 -> 1697[label="",style="solid", color="black", weight=3]; 1674[label="vxw110",fontsize=16,color="green",shape="box"];1675[label="vxw100",fontsize=16,color="green",shape="box"];1676[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1676 -> 1698[label="",style="solid", color="black", weight=3]; 1677[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1677 -> 1699[label="",style="solid", color="black", weight=3]; 1678[label="vxw110",fontsize=16,color="green",shape="box"];1679[label="vxw100",fontsize=16,color="green",shape="box"];1680[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1680 -> 1700[label="",style="solid", color="black", weight=3]; 1681[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1681 -> 1701[label="",style="solid", color="black", weight=3]; 1682[label="vxw110",fontsize=16,color="green",shape="box"];1683[label="vxw100",fontsize=16,color="green",shape="box"];1684[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1684 -> 1702[label="",style="solid", color="black", weight=3]; 1685[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1685 -> 1703[label="",style="solid", color="black", weight=3]; 1686[label="vxw1100",fontsize=16,color="green",shape="box"];1687[label="vxw1010",fontsize=16,color="green",shape="box"];1688[label="primPlusNat (Succ vxw4500) (Succ vxw4001000)",fontsize=16,color="black",shape="box"];1688 -> 1704[label="",style="solid", color="black", weight=3]; 1689[label="primPlusNat (Succ vxw4500) Zero",fontsize=16,color="black",shape="box"];1689 -> 1705[label="",style="solid", color="black", weight=3]; 1690[label="primPlusNat Zero (Succ vxw4001000)",fontsize=16,color="black",shape="box"];1690 -> 1706[label="",style="solid", color="black", weight=3]; 1691[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1691 -> 1707[label="",style="solid", color="black", weight=3]; 1692[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1692 -> 1708[label="",style="solid", color="black", weight=3]; 1693[label="LT",fontsize=16,color="green",shape="box"];1694[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1694 -> 1709[label="",style="solid", color="black", weight=3]; 1695[label="LT",fontsize=16,color="green",shape="box"];1696[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1696 -> 1710[label="",style="solid", color="black", weight=3]; 1697[label="LT",fontsize=16,color="green",shape="box"];1698[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1698 -> 1711[label="",style="solid", color="black", weight=3]; 1699[label="LT",fontsize=16,color="green",shape="box"];1700[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1700 -> 1712[label="",style="solid", color="black", weight=3]; 1701[label="LT",fontsize=16,color="green",shape="box"];1702[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1702 -> 1713[label="",style="solid", color="black", weight=3]; 1703[label="LT",fontsize=16,color="green",shape="box"];1704[label="Succ (Succ (primPlusNat vxw4500 vxw4001000))",fontsize=16,color="green",shape="box"];1704 -> 1714[label="",style="dashed", color="green", weight=3]; 1705[label="Succ vxw4500",fontsize=16,color="green",shape="box"];1706[label="Succ vxw4001000",fontsize=16,color="green",shape="box"];1707[label="Zero",fontsize=16,color="green",shape="box"];1708[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1708 -> 1715[label="",style="solid", color="black", weight=3]; 1709[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1709 -> 1716[label="",style="solid", color="black", weight=3]; 1710[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1710 -> 1717[label="",style="solid", color="black", weight=3]; 1711[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1711 -> 1718[label="",style="solid", color="black", weight=3]; 1712[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1712 -> 1719[label="",style="solid", color="black", weight=3]; 1713[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1713 -> 1720[label="",style="solid", color="black", weight=3]; 1714 -> 1646[label="",style="dashed", color="red", weight=0]; 1714[label="primPlusNat vxw4500 vxw4001000",fontsize=16,color="magenta"];1714 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1714 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1715[label="GT",fontsize=16,color="green",shape="box"];1716[label="GT",fontsize=16,color="green",shape="box"];1717[label="GT",fontsize=16,color="green",shape="box"];1718[label="GT",fontsize=16,color="green",shape="box"];1719[label="GT",fontsize=16,color="green",shape="box"];1720[label="GT",fontsize=16,color="green",shape="box"];1721[label="vxw4001000",fontsize=16,color="green",shape="box"];1722[label="vxw4500",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_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_Maybe, bae), hg) -> new_lt2(vxw110, vxw100, bae) new_ltEs(Left(vxw110), Left(vxw100), app(ty_[], cb), bc) -> new_ltEs3(vxw110, vxw100, cb) new_primCompAux(vxw110, vxw100, vxw44, app(ty_Maybe, beb)) -> new_compare4(vxw110, vxw100, beb) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_@2, ee), ef), dh, ea) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee, ef), ee, ef) new_lt2(vxw110, vxw100, eg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, eg), eg) new_compare20(vxw110, vxw100, False, eb, ec, ed) -> new_ltEs0(vxw110, vxw100, eb, ec, ed) new_compare21(vxw110, vxw100, False, ee, ef) -> new_ltEs1(vxw110, vxw100, ee, ef) new_ltEs2(Just(vxw110), Just(vxw100), app(ty_[], bda)) -> new_ltEs3(vxw110, vxw100, bda) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs0(vxw112, vxw102, gf, gg, gh) new_ltEs(Right(vxw110), Right(vxw100), cc, app(ty_Maybe, dd)) -> new_ltEs2(vxw110, vxw100, dd) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_Either, he), hf), hg) -> new_lt(vxw110, vxw100, he, hf) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(app(ty_Either, bah), bba)) -> new_ltEs(vxw111, vxw101, bah, bba) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs0(vxw111, vxw101, bbb, bbc, bbd) new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_@2, bcf), bcg)) -> new_ltEs1(vxw110, vxw100, bcf, bcg) new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare5(vxw111, vxw101, bdb), bdb) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_Maybe, eg), dh, ea) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, eg), eg) new_ltEs(Right(vxw110), Right(vxw100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs(vxw110, vxw100, cd, ce) new_ltEs(Right(vxw110), Right(vxw100), cc, app(ty_[], de)) -> new_ltEs3(vxw110, vxw100, de) new_compare3(vxw110, vxw100, ee, ef) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee, ef), ee, ef) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_[], eh), dh, ea) -> new_compare(vxw110, vxw100, eh) new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(app(ty_Either, gd), ge)) -> new_ltEs(vxw112, vxw102, gd, ge) new_ltEs2(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(vxw110, vxw100, bcc, bcd, bce) new_lt(vxw110, vxw100, df, dg) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, df, dg), df, dg) new_lt3(vxw110, vxw100, eh) -> new_compare(vxw110, vxw100, eh) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(app(ty_@2, fh), ga), ea) -> new_lt1(vxw111, vxw101, fh, ga) new_lt0(vxw110, vxw100, eb, ec, ed) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec, ed), eb, ec, ed) new_compare1(vxw110, vxw100, eb, ec, ed) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec, ed), eb, ec, ed) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(app(ty_@2, bbe), bbf)) -> new_ltEs1(vxw111, vxw101, bbe, bbf) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(app(app(ty_@3, fd), ff), fg), ea) -> new_lt0(vxw111, vxw101, fd, ff, fg) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(app(ty_Either, fb), fc), ea) -> new_lt(vxw111, vxw101, fb, fc) new_ltEs(Right(vxw110), Right(vxw100), cc, app(app(ty_@2, db), dc)) -> new_ltEs1(vxw110, vxw100, db, dc) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(ty_[], gc), ea) -> new_lt3(vxw111, vxw101, gc) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(app(ty_@2, ha), hb)) -> new_ltEs1(vxw112, vxw102, ha, hb) new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare5(vxw111, vxw101, bdb), bdb) new_primCompAux(vxw110, vxw100, vxw44, app(ty_[], bec)) -> new_compare(vxw110, vxw100, bec) new_primCompAux(vxw110, vxw100, vxw44, app(app(ty_@2, bdh), bea)) -> new_compare3(vxw110, vxw100, bdh, bea) new_ltEs(Left(vxw110), Left(vxw100), app(app(ty_Either, ba), bb), bc) -> new_ltEs(vxw110, vxw100, ba, bb) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(ty_Maybe, hc)) -> new_ltEs2(vxw112, vxw102, hc) new_primCompAux(vxw110, vxw100, vxw44, app(app(ty_Either, bdc), bdd)) -> new_compare0(vxw110, vxw100, bdc, bdd) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(ty_[], bbh)) -> new_ltEs3(vxw111, vxw101, bbh) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_@2, bac), bad), hg) -> new_lt1(vxw110, vxw100, bac, bad) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(ty_[], hd)) -> new_ltEs3(vxw112, vxw102, hd) new_compare4(vxw110, vxw100, eg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, eg), eg) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(app(ty_@3, eb), ec), ed), dh, ea) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec, ed), eb, ec, ed) new_compare22(vxw110, vxw100, False, eg) -> new_ltEs2(vxw110, vxw100, eg) new_compare0(vxw110, vxw100, df, dg) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, df, dg), df, dg) new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_Either, df), dg), dh, ea) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, df, dg), df, dg) new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(ty_Maybe, gb), ea) -> new_lt2(vxw111, vxw101, gb) new_compare2(vxw110, vxw100, False, df, dg) -> new_ltEs(vxw110, vxw100, df, dg) new_ltEs(Left(vxw110), Left(vxw100), app(app(app(ty_@3, bd), be), bf), bc) -> new_ltEs0(vxw110, vxw100, bd, be, bf) new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_Either, bca), bcb)) -> new_ltEs(vxw110, vxw100, bca, bcb) new_ltEs(Left(vxw110), Left(vxw100), app(app(ty_@2, bg), bh), bc) -> new_ltEs1(vxw110, vxw100, bg, bh) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(ty_Maybe, bbg)) -> new_ltEs2(vxw111, vxw101, bbg) new_ltEs2(Just(vxw110), Just(vxw100), app(ty_Maybe, bch)) -> new_ltEs2(vxw110, vxw100, bch) new_primCompAux(vxw110, vxw100, vxw44, app(app(app(ty_@3, bde), bdf), bdg)) -> new_compare1(vxw110, vxw100, bde, bdf, bdg) new_ltEs(Right(vxw110), Right(vxw100), cc, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs0(vxw110, vxw100, cf, cg, da) new_ltEs(Left(vxw110), Left(vxw100), app(ty_Maybe, ca), bc) -> new_ltEs2(vxw110, vxw100, ca) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(app(ty_@3, hh), baa), bab), hg) -> new_lt0(vxw110, vxw100, hh, baa, bab) new_lt1(vxw110, vxw100, ee, ef) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee, ef), ee, ef) new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_[], baf), hg) -> new_lt3(vxw110, vxw100, baf) The TRS R consists of the following rules: new_compare17(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare15(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_ltEs9(Just(vxw110), Just(vxw100), app(ty_Ratio, cdg)) -> new_ltEs5(vxw110, vxw100, cdg) new_ltEs19(vxw111, vxw101, ty_Integer) -> new_ltEs11(vxw111, vxw101) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT new_ltEs10(Right(vxw110), Right(vxw100), cc, ty_Integer) -> new_ltEs11(vxw110, vxw100) new_pePe(True, vxw43) -> True new_esEs27(vxw110, vxw100, ty_Char) -> new_esEs16(vxw110, vxw100) new_esEs10(vxw300, vxw4000, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, ty_Bool) -> new_ltEs7(vxw111, vxw101) new_esEs25(vxw300, vxw4000, app(ty_[], cga)) -> new_esEs13(vxw300, vxw4000, cga) new_esEs4(Left(vxw300), Right(vxw4000), dad, cha) -> False new_esEs4(Right(vxw300), Left(vxw4000), dad, cha) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare9(vxw110, vxw100, app(app(ty_@2, bdh), bea)) -> new_compare14(vxw110, vxw100, bdh, bea) new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT new_esEs20(vxw302, vxw4002, ty_@0) -> new_esEs19(vxw302, vxw4002) new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) new_compare26(vxw110, vxw100, True, ee, ef) -> EQ new_esEs24(vxw300, vxw4000, ty_Int) -> new_esEs11(vxw300, vxw4000) new_esEs21(vxw301, vxw4001, app(app(ty_@2, cbd), cbe)) -> new_esEs6(vxw301, vxw4001, cbd, cbe) new_ltEs9(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs15(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Maybe, cea)) -> new_esEs7(vxw300, vxw4000, cea) new_esEs25(vxw300, vxw4000, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_lt11(vxw111, vxw101, ty_Ordering) -> new_lt12(vxw111, vxw101) new_esEs22(vxw300, vxw4000, app(app(ty_Either, ccd), cce)) -> new_esEs4(vxw300, vxw4000, ccd, cce) new_compare113(vxw110, vxw100, False, ee, ef) -> GT new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) new_ltEs9(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs8(vxw110, vxw100) new_compare111(vxw110, vxw100, True, df, dg) -> LT new_ltEs10(Right(vxw110), Right(vxw100), cc, ty_Bool) -> new_ltEs7(vxw110, vxw100) new_esEs28(vxw110, vxw100, app(ty_Maybe, bae)) -> new_esEs7(vxw110, vxw100, bae) new_esEs22(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) new_esEs7(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs11(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, app(ty_Maybe, bbg)) -> new_ltEs9(vxw111, vxw101, bbg) new_ltEs13(GT, GT) -> True new_lt18(vxw110, vxw100, eh) -> new_esEs8(new_compare5(vxw110, vxw100, eh), LT) new_compare19(@0, @0) -> EQ new_esEs10(vxw300, vxw4000, app(ty_[], bgf)) -> new_esEs13(vxw300, vxw4000, bgf) new_esEs15(False, False) -> True new_ltEs9(Just(vxw110), Just(vxw100), app(app(ty_@2, bcf), bcg)) -> new_ltEs14(vxw110, vxw100, bcf, bcg) new_compare9(vxw110, vxw100, ty_Bool) -> new_compare16(vxw110, vxw100) new_esEs21(vxw301, vxw4001, app(ty_[], cbf)) -> new_esEs13(vxw301, vxw4001, cbf) new_esEs20(vxw302, vxw4002, ty_Double) -> new_esEs18(vxw302, vxw4002) new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False new_esEs8(GT, GT) -> True new_esEs4(Right(vxw300), Right(vxw4000), dad, ty_Bool) -> new_esEs15(vxw300, vxw4000) new_ltEs13(EQ, GT) -> True new_ltEs19(vxw111, vxw101, app(ty_[], bbh)) -> new_ltEs6(vxw111, vxw101, bbh) new_esEs20(vxw302, vxw4002, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs5(vxw302, vxw4002, caf, cag, cah) new_ltEs13(EQ, EQ) -> True new_esEs28(vxw110, vxw100, app(ty_Ratio, dca)) -> new_esEs14(vxw110, vxw100, dca) new_esEs8(EQ, EQ) -> True new_compare18(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare15(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare18(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare15(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_ltEs18(vxw112, vxw102, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs4(vxw112, vxw102, gf, gg, gh) new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_compare8(vxw110, vxw100, eg) -> new_compare27(vxw110, vxw100, new_esEs7(vxw110, vxw100, eg), eg) new_ltEs10(Left(vxw110), Left(vxw100), ty_Int, bc) -> new_ltEs15(vxw110, vxw100) new_lt11(vxw111, vxw101, ty_Float) -> new_lt17(vxw111, vxw101) new_not(True) -> False new_esEs9(vxw301, vxw4001, app(ty_[], bfd)) -> new_esEs13(vxw301, vxw4001, bfd) new_primCompAux00(vxw55, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(vxw112, vxw102, ty_Ordering) -> new_ltEs13(vxw112, vxw102) new_esEs7(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs5(vxw300, vxw4000, ceh, cfa, cfb) new_ltEs10(Left(vxw110), Left(vxw100), ty_@0, bc) -> new_ltEs8(vxw110, vxw100) new_esEs10(vxw300, vxw4000, app(app(ty_@2, bgd), bge)) -> new_esEs6(vxw300, vxw4000, bgd, bge) new_compare26(vxw110, vxw100, False, ee, ef) -> new_compare113(vxw110, vxw100, new_ltEs14(vxw110, vxw100, ee, ef), ee, ef) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Ratio, ceg)) -> new_esEs14(vxw300, vxw4000, ceg) new_compare9(vxw110, vxw100, ty_Int) -> new_compare15(vxw110, vxw100) new_esEs10(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_compare27(vxw110, vxw100, True, eg) -> EQ new_primEqNat0(Succ(vxw3000), Zero) -> False new_primEqNat0(Zero, Succ(vxw40000)) -> False new_compare112(vxw110, vxw100, False) -> GT new_esEs12(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) new_esEs13([], [], cfc) -> True new_ltEs4(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, ea) -> new_pePe(new_lt10(vxw110, vxw100, fa), new_asAs(new_esEs27(vxw110, vxw100, fa), new_pePe(new_lt11(vxw111, vxw101, dh), new_asAs(new_esEs26(vxw111, vxw101, dh), new_ltEs18(vxw112, vxw102, ea))))) new_esEs25(vxw300, vxw4000, ty_@0) -> new_esEs19(vxw300, vxw4000) new_compare9(vxw110, vxw100, ty_Integer) -> new_compare6(vxw110, vxw100) new_compare114(vxw110, vxw100, False, eg) -> GT new_esEs25(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) new_ltEs9(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs17(vxw110, vxw100) new_lt16(vxw110, vxw100) -> new_esEs8(new_compare17(vxw110, vxw100), LT) new_esEs28(vxw110, vxw100, ty_Int) -> new_esEs11(vxw110, vxw100) new_lt10(vxw110, vxw100, ty_Integer) -> new_lt4(vxw110, vxw100) new_lt11(vxw111, vxw101, app(app(ty_@2, fh), ga)) -> new_lt15(vxw111, vxw101, fh, ga) new_esEs26(vxw111, vxw101, ty_Float) -> new_esEs17(vxw111, vxw101) new_esEs7(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs19(vxw300, vxw4000) new_lt20(vxw110, vxw100, app(app(app(ty_@3, hh), baa), bab)) -> new_lt13(vxw110, vxw100, hh, baa, bab) new_primCompAux00(vxw55, GT) -> GT new_esEs25(vxw300, vxw4000, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs5(vxw300, vxw4000, cgc, cgd, cge) new_ltEs19(vxw111, vxw101, ty_Char) -> new_ltEs12(vxw111, vxw101) new_lt11(vxw111, vxw101, ty_Integer) -> new_lt4(vxw111, vxw101) new_esEs20(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) new_esEs4(Left(vxw300), Left(vxw4000), app(app(ty_@2, che), chf), cha) -> new_esEs6(vxw300, vxw4000, che, chf) new_esEs23(vxw301, vxw4001, ty_Int) -> new_esEs11(vxw301, vxw4001) new_ltEs18(vxw112, vxw102, ty_Double) -> new_ltEs16(vxw112, vxw102) new_compare6(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) new_lt20(vxw110, vxw100, ty_@0) -> new_lt19(vxw110, vxw100) new_esEs4(Left(vxw300), Left(vxw4000), ty_Int, cha) -> new_esEs11(vxw300, vxw4000) new_ltEs10(Right(vxw110), Right(vxw100), cc, app(ty_Maybe, dd)) -> new_ltEs9(vxw110, vxw100, dd) new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT new_ltEs10(Left(vxw110), Left(vxw100), ty_Float, bc) -> new_ltEs17(vxw110, vxw100) new_ltEs10(Right(vxw110), Left(vxw100), cc, bc) -> False new_lt10(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), dad, ty_Double) -> new_esEs18(vxw300, vxw4000) new_esEs4(Right(vxw300), Right(vxw4000), dad, app(ty_[], dbb)) -> new_esEs13(vxw300, vxw4000, dbb) new_esEs4(Right(vxw300), Right(vxw4000), dad, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_esEs6(@2(vxw300, vxw301), @2(vxw4000, vxw4001), bee, bef) -> new_asAs(new_esEs10(vxw300, vxw4000, bee), new_esEs9(vxw301, vxw4001, bef)) new_lt20(vxw110, vxw100, app(app(ty_Either, he), hf)) -> new_lt8(vxw110, vxw100, he, hf) new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Maybe, ca), bc) -> new_ltEs9(vxw110, vxw100, ca) new_compare115(vxw110, vxw100, True) -> LT new_lt17(vxw110, vxw100) -> new_esEs8(new_compare18(vxw110, vxw100), LT) new_esEs26(vxw111, vxw101, ty_Char) -> new_esEs16(vxw111, vxw101) new_primPlusNat1(Succ(vxw4500), Succ(vxw4001000)) -> Succ(Succ(new_primPlusNat1(vxw4500, vxw4001000))) new_compare9(vxw110, vxw100, app(app(ty_Either, bdc), bdd)) -> new_compare10(vxw110, vxw100, bdc, bdd) new_compare5(:(vxw110, vxw111), [], bdb) -> GT new_primCmpNat0(Zero, Succ(vxw1000)) -> LT new_esEs4(Left(vxw300), Left(vxw4000), app(ty_[], chg), cha) -> new_esEs13(vxw300, vxw4000, chg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs18(vxw300, vxw4000) new_ltEs13(LT, GT) -> True new_compare25(vxw110, vxw100, False) -> new_compare112(vxw110, vxw100, new_ltEs7(vxw110, vxw100)) new_esEs9(vxw301, vxw4001, app(app(ty_@2, bfb), bfc)) -> new_esEs6(vxw301, vxw4001, bfb, bfc) new_ltEs17(vxw11, vxw10) -> new_not(new_esEs8(new_compare18(vxw11, vxw10), GT)) new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs5(vxw301, vxw4001, cbh, cca, ccb) new_primCmpNat0(Succ(vxw1100), Zero) -> GT new_compare110(vxw110, vxw100, False, eb, ec, ed) -> GT new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs19(vxw301, vxw4001) new_esEs4(Left(vxw300), Left(vxw4000), ty_Double, cha) -> new_esEs18(vxw300, vxw4000) new_pePe(False, vxw43) -> vxw43 new_esEs22(vxw300, vxw4000, app(app(ty_@2, ccf), ccg)) -> new_esEs6(vxw300, vxw4000, ccf, ccg) new_esEs7(Nothing, Just(vxw4000), cdh) -> False new_esEs7(Just(vxw300), Nothing, cdh) -> False new_lt10(vxw110, vxw100, ty_Ordering) -> new_lt12(vxw110, vxw100) new_esEs26(vxw111, vxw101, ty_Integer) -> new_esEs12(vxw111, vxw101) new_esEs22(vxw300, vxw4000, app(ty_Ratio, cda)) -> new_esEs14(vxw300, vxw4000, cda) new_lt20(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_lt9(vxw110, vxw100) -> new_esEs8(new_compare16(vxw110, vxw100), LT) new_esEs4(Left(vxw300), Left(vxw4000), ty_Ordering, cha) -> new_esEs8(vxw300, vxw4000) new_ltEs14(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, hg) -> new_pePe(new_lt20(vxw110, vxw100, bag), new_asAs(new_esEs28(vxw110, vxw100, bag), new_ltEs19(vxw111, vxw101, hg))) new_esEs4(Left(vxw300), Left(vxw4000), ty_Float, cha) -> new_esEs17(vxw300, vxw4000) new_primCompAux0(vxw110, vxw100, vxw44, bdb) -> new_primCompAux00(vxw44, new_compare9(vxw110, vxw100, bdb)) new_lt8(vxw110, vxw100, df, dg) -> new_esEs8(new_compare10(vxw110, vxw100, df, dg), LT) new_esEs21(vxw301, vxw4001, app(app(ty_Either, cbb), cbc)) -> new_esEs4(vxw301, vxw4001, cbb, cbc) new_esEs10(vxw300, vxw4000, app(ty_Maybe, bga)) -> new_esEs7(vxw300, vxw4000, bga) new_lt15(vxw110, vxw100, ee, ef) -> new_esEs8(new_compare14(vxw110, vxw100, ee, ef), LT) new_ltEs18(vxw112, vxw102, ty_Integer) -> new_ltEs11(vxw112, vxw102) new_ltEs9(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs13(vxw110, vxw100) new_ltEs18(vxw112, vxw102, ty_Char) -> new_ltEs12(vxw112, vxw102) new_ltEs19(vxw111, vxw101, ty_Double) -> new_ltEs16(vxw111, vxw101) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) new_esEs28(vxw110, vxw100, ty_Char) -> new_esEs16(vxw110, vxw100) new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False new_compare17(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare15(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_esEs7(Nothing, Nothing, cdh) -> True new_ltEs10(Right(vxw110), Right(vxw100), cc, ty_Double) -> new_ltEs16(vxw110, vxw100) new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) new_lt13(vxw110, vxw100, eb, ec, ed) -> new_esEs8(new_compare12(vxw110, vxw100, eb, ec, ed), LT) new_esEs7(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs12(vxw300, vxw4000) new_ltEs18(vxw112, vxw102, ty_Bool) -> new_ltEs7(vxw112, vxw102) new_esEs26(vxw111, vxw101, app(ty_[], gc)) -> new_esEs13(vxw111, vxw101, gc) new_ltEs9(Just(vxw110), Just(vxw100), app(ty_[], bda)) -> new_ltEs6(vxw110, vxw100, bda) new_esEs20(vxw302, vxw4002, app(ty_Ratio, cae)) -> new_esEs14(vxw302, vxw4002, cae) new_compare9(vxw110, vxw100, app(app(app(ty_@3, bde), bdf), bdg)) -> new_compare12(vxw110, vxw100, bde, bdf, bdg) new_ltEs11(vxw11, vxw10) -> new_not(new_esEs8(new_compare6(vxw11, vxw10), GT)) new_compare5([], :(vxw100, vxw101), bdb) -> LT new_compare7(vxw110, vxw100) -> new_compare23(vxw110, vxw100, new_esEs8(vxw110, vxw100)) new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Ratio, dbg), bc) -> new_ltEs5(vxw110, vxw100, dbg) new_esEs15(True, True) -> True new_ltEs19(vxw111, vxw101, app(app(ty_@2, bbe), bbf)) -> new_ltEs14(vxw111, vxw101, bbe, bbf) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_[], cef)) -> new_esEs13(vxw300, vxw4000, cef) new_esEs25(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs19(@0, @0) -> True new_esEs9(vxw301, vxw4001, ty_Double) -> new_esEs18(vxw301, vxw4001) new_esEs24(vxw300, vxw4000, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs17(vxw301, vxw4001) new_compare15(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT new_esEs17(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs11(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_ltEs10(Right(vxw110), Right(vxw100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs10(vxw110, vxw100, cd, ce) new_primMulInt(Pos(vxw3000), Pos(vxw40010)) -> Pos(new_primMulNat0(vxw3000, vxw40010)) new_esEs25(vxw300, vxw4000, app(ty_Maybe, cfd)) -> new_esEs7(vxw300, vxw4000, cfd) new_esEs10(vxw300, vxw4000, ty_Int) -> new_esEs11(vxw300, vxw4000) new_compare18(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare15(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_esEs13(:(vxw300, vxw301), [], cfc) -> False new_esEs13([], :(vxw4000, vxw4001), cfc) -> False new_esEs26(vxw111, vxw101, app(app(ty_@2, fh), ga)) -> new_esEs6(vxw111, vxw101, fh, ga) new_esEs9(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) new_esEs4(Left(vxw300), Left(vxw4000), ty_@0, cha) -> new_esEs19(vxw300, vxw4000) new_primMulNat0(Succ(vxw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw400100)) -> Zero new_esEs26(vxw111, vxw101, ty_Bool) -> new_esEs15(vxw111, vxw101) new_esEs10(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) new_primPlusNat0(Zero, vxw400100) -> Succ(vxw400100) new_esEs13(:(vxw300, vxw301), :(vxw4000, vxw4001), cfc) -> new_asAs(new_esEs25(vxw300, vxw4000, cfc), new_esEs13(vxw301, vxw4001, cfc)) new_compare5(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux0(vxw110, vxw100, new_compare5(vxw111, vxw101, bdb), bdb) new_esEs22(vxw300, vxw4000, app(ty_Maybe, ccc)) -> new_esEs7(vxw300, vxw4000, ccc) new_ltEs18(vxw112, vxw102, ty_@0) -> new_ltEs8(vxw112, vxw102) new_ltEs10(Left(vxw110), Left(vxw100), ty_Ordering, bc) -> new_ltEs13(vxw110, vxw100) new_esEs10(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, app(ty_Ratio, dcb)) -> new_ltEs5(vxw111, vxw101, dcb) new_esEs20(vxw302, vxw4002, ty_Int) -> new_esEs11(vxw302, vxw4002) new_esEs10(vxw300, vxw4000, app(app(ty_Either, bgb), bgc)) -> new_esEs4(vxw300, vxw4000, bgb, bgc) new_compare9(vxw110, vxw100, ty_Ordering) -> new_compare7(vxw110, vxw100) new_esEs27(vxw110, vxw100, ty_Bool) -> new_esEs15(vxw110, vxw100) new_lt6(vxw110, vxw100) -> new_esEs8(new_compare15(vxw110, vxw100), LT) new_esEs10(vxw300, vxw4000, ty_@0) -> new_esEs19(vxw300, vxw4000) new_compare9(vxw110, vxw100, app(ty_[], bec)) -> new_compare5(vxw110, vxw100, bec) new_esEs8(LT, LT) -> True new_lt11(vxw111, vxw101, ty_Int) -> new_lt6(vxw111, vxw101) new_ltEs9(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs11(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), dad, ty_Char) -> new_esEs16(vxw300, vxw4000) new_ltEs7(False, True) -> True new_ltEs9(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs7(vxw110, vxw100) new_ltEs13(GT, LT) -> False new_esEs28(vxw110, vxw100, ty_Bool) -> new_esEs15(vxw110, vxw100) new_esEs9(vxw301, vxw4001, ty_Float) -> new_esEs17(vxw301, vxw4001) new_esEs7(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_ltEs6(vxw11, vxw10, bdb) -> new_not(new_esEs8(new_compare5(vxw11, vxw10, bdb), GT)) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_@2, ced), cee)) -> new_esEs6(vxw300, vxw4000, ced, cee) new_primPlusNat1(Succ(vxw4500), Zero) -> Succ(vxw4500) new_primPlusNat1(Zero, Succ(vxw4001000)) -> Succ(vxw4001000) new_lt11(vxw111, vxw101, app(app(app(ty_@3, fd), ff), fg)) -> new_lt13(vxw111, vxw101, fd, ff, fg) new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs11(vxw301, vxw4001) new_lt10(vxw110, vxw100, ty_Int) -> new_lt6(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), dad, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs5(vxw300, vxw4000, dbd, dbe, dbf) new_esEs4(Right(vxw300), Right(vxw4000), dad, app(ty_Ratio, dbc)) -> new_esEs14(vxw300, vxw4000, dbc) new_ltEs9(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs12(vxw110, vxw100) new_ltEs7(True, False) -> False new_ltEs9(Just(vxw110), Just(vxw100), app(app(ty_Either, bca), bcb)) -> new_ltEs10(vxw110, vxw100, bca, bcb) new_ltEs18(vxw112, vxw102, app(ty_Maybe, hc)) -> new_ltEs9(vxw112, vxw102, hc) new_lt10(vxw110, vxw100, app(app(app(ty_@3, eb), ec), ed)) -> new_lt13(vxw110, vxw100, eb, ec, ed) new_ltEs10(Right(vxw110), Right(vxw100), cc, app(ty_[], de)) -> new_ltEs6(vxw110, vxw100, de) new_esEs9(vxw301, vxw4001, app(app(ty_Either, beh), bfa)) -> new_esEs4(vxw301, vxw4001, beh, bfa) new_primMulInt(Neg(vxw3000), Neg(vxw40010)) -> Pos(new_primMulNat0(vxw3000, vxw40010)) new_ltEs7(False, False) -> True new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) new_esEs9(vxw301, vxw4001, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(vxw301, vxw4001, bff, bfg, bfh) new_esEs9(vxw301, vxw4001, app(ty_Ratio, bfe)) -> new_esEs14(vxw301, vxw4001, bfe) new_lt20(vxw110, vxw100, ty_Ordering) -> new_lt12(vxw110, vxw100) new_esEs25(vxw300, vxw4000, app(app(ty_@2, cfg), cfh)) -> new_esEs6(vxw300, vxw4000, cfg, cfh) new_ltEs13(GT, EQ) -> False new_ltEs10(Left(vxw110), Left(vxw100), ty_Char, bc) -> new_ltEs12(vxw110, vxw100) new_esEs14(:%(vxw300, vxw301), :%(vxw4000, vxw4001), cde) -> new_asAs(new_esEs24(vxw300, vxw4000, cde), new_esEs23(vxw301, vxw4001, cde)) new_ltEs19(vxw111, vxw101, ty_@0) -> new_ltEs8(vxw111, vxw101) new_esEs22(vxw300, vxw4000, ty_@0) -> new_esEs19(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(vxw300, vxw4000, bgh, bha, bhb) new_esEs9(vxw301, vxw4001, ty_@0) -> new_esEs19(vxw301, vxw4001) new_esEs10(vxw300, vxw4000, app(ty_Ratio, bgg)) -> new_esEs14(vxw300, vxw4000, bgg) new_compare16(vxw110, vxw100) -> new_compare25(vxw110, vxw100, new_esEs15(vxw110, vxw100)) new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs18(vxw301, vxw4001) new_ltEs10(Left(vxw110), Left(vxw100), ty_Bool, bc) -> new_ltEs7(vxw110, vxw100) new_compare112(vxw110, vxw100, True) -> LT new_ltEs10(Left(vxw110), Left(vxw100), ty_Integer, bc) -> new_ltEs11(vxw110, vxw100) new_ltEs10(Right(vxw110), Right(vxw100), cc, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs4(vxw110, vxw100, cf, cg, da) new_compare113(vxw110, vxw100, True, ee, ef) -> LT new_compare14(vxw110, vxw100, ee, ef) -> new_compare26(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee, ef), ee, ef) new_esEs5(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bhd, bhe, bhf) -> new_asAs(new_esEs22(vxw300, vxw4000, bhd), new_asAs(new_esEs21(vxw301, vxw4001, bhe), new_esEs20(vxw302, vxw4002, bhf))) new_lt11(vxw111, vxw101, ty_@0) -> new_lt19(vxw111, vxw101) new_compare23(vxw110, vxw100, False) -> new_compare115(vxw110, vxw100, new_ltEs13(vxw110, vxw100)) new_lt10(vxw110, vxw100, ty_Char) -> new_lt7(vxw110, vxw100) new_compare115(vxw110, vxw100, False) -> GT new_primMulInt(Pos(vxw3000), Neg(vxw40010)) -> Neg(new_primMulNat0(vxw3000, vxw40010)) new_primMulInt(Neg(vxw3000), Pos(vxw40010)) -> Neg(new_primMulNat0(vxw3000, vxw40010)) new_esEs4(Left(vxw300), Left(vxw4000), ty_Bool, cha) -> new_esEs15(vxw300, vxw4000) new_esEs22(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_ltEs8(vxw11, vxw10) -> new_not(new_esEs8(new_compare19(vxw11, vxw10), GT)) new_esEs22(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_Either, ba), bb), bc) -> new_ltEs10(vxw110, vxw100, ba, bb) new_lt5(vxw110, vxw100, eg) -> new_esEs8(new_compare8(vxw110, vxw100, eg), LT) new_lt10(vxw110, vxw100, ty_Bool) -> new_lt9(vxw110, vxw100) new_esEs22(vxw300, vxw4000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(vxw300, vxw4000, cdb, cdc, cdd) new_ltEs18(vxw112, vxw102, app(app(ty_@2, ha), hb)) -> new_ltEs14(vxw112, vxw102, ha, hb) new_lt19(vxw110, vxw100) -> new_esEs8(new_compare19(vxw110, vxw100), LT) new_compare5([], [], bdb) -> EQ new_sr0(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) new_esEs21(vxw301, vxw4001, app(ty_Ratio, cbg)) -> new_esEs14(vxw301, vxw4001, cbg) new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_@2, bg), bh), bc) -> new_ltEs14(vxw110, vxw100, bg, bh) new_esEs4(Left(vxw300), Left(vxw4000), app(ty_Maybe, chb), cha) -> new_esEs7(vxw300, vxw4000, chb) new_compare24(vxw110, vxw100, True, eb, ec, ed) -> EQ new_compare18(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare15(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_lt20(vxw110, vxw100, ty_Double) -> new_lt16(vxw110, vxw100) new_lt10(vxw110, vxw100, app(ty_Ratio, cgf)) -> new_lt14(vxw110, vxw100, cgf) new_esEs25(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) new_ltEs10(Left(vxw110), Right(vxw100), cc, bc) -> True new_lt10(vxw110, vxw100, ty_Double) -> new_lt16(vxw110, vxw100) new_compare114(vxw110, vxw100, True, eg) -> LT new_ltEs9(Nothing, Just(vxw100), cdf) -> True new_ltEs10(Right(vxw110), Right(vxw100), cc, ty_Int) -> new_ltEs15(vxw110, vxw100) new_asAs(True, vxw35) -> vxw35 new_esEs25(vxw300, vxw4000, app(ty_Ratio, cgb)) -> new_esEs14(vxw300, vxw4000, cgb) new_esEs27(vxw110, vxw100, app(ty_[], eh)) -> new_esEs13(vxw110, vxw100, eh) new_ltEs19(vxw111, vxw101, ty_Int) -> new_ltEs15(vxw111, vxw101) new_lt10(vxw110, vxw100, app(ty_[], eh)) -> new_lt18(vxw110, vxw100, eh) new_esEs16(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) new_esEs4(Left(vxw300), Left(vxw4000), app(app(ty_Either, chc), chd), cha) -> new_esEs4(vxw300, vxw4000, chc, chd) new_esEs27(vxw110, vxw100, ty_Integer) -> new_esEs12(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), dad, app(ty_Maybe, dae)) -> new_esEs7(vxw300, vxw4000, dae) new_esEs4(Right(vxw300), Right(vxw4000), dad, app(app(ty_@2, dah), dba)) -> new_esEs6(vxw300, vxw4000, dah, dba) new_esEs9(vxw301, vxw4001, app(ty_Maybe, beg)) -> new_esEs7(vxw301, vxw4001, beg) new_compare111(vxw110, vxw100, False, df, dg) -> GT new_esEs7(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs17(vxw300, vxw4000) new_compare9(vxw110, vxw100, ty_Double) -> new_compare17(vxw110, vxw100) new_esEs22(vxw300, vxw4000, ty_Int) -> new_esEs11(vxw300, vxw4000) new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) new_lt20(vxw110, vxw100, ty_Char) -> new_lt7(vxw110, vxw100) new_esEs9(vxw301, vxw4001, ty_Int) -> new_esEs11(vxw301, vxw4001) new_primCompAux00(vxw55, EQ) -> vxw55 new_esEs20(vxw302, vxw4002, app(app(ty_Either, bhh), caa)) -> new_esEs4(vxw302, vxw4002, bhh, caa) new_sr(vxw300, vxw4001) -> new_primMulInt(vxw300, vxw4001) new_lt7(vxw110, vxw100) -> new_esEs8(new_compare11(vxw110, vxw100), LT) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_Either, ceb), cec)) -> new_esEs4(vxw300, vxw4000, ceb, cec) new_esEs27(vxw110, vxw100, app(app(ty_@2, ee), ef)) -> new_esEs6(vxw110, vxw100, ee, ef) new_compare23(vxw110, vxw100, True) -> EQ new_lt14(vxw110, vxw100, cgf) -> new_esEs8(new_compare13(vxw110, vxw100, cgf), LT) new_ltEs9(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs4(vxw110, vxw100, bcc, bcd, bce) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) new_lt20(vxw110, vxw100, ty_Int) -> new_lt6(vxw110, vxw100) new_ltEs12(vxw11, vxw10) -> new_not(new_esEs8(new_compare11(vxw11, vxw10), GT)) new_ltEs10(Right(vxw110), Right(vxw100), cc, ty_@0) -> new_ltEs8(vxw110, vxw100) new_esEs25(vxw300, vxw4000, app(app(ty_Either, cfe), cff)) -> new_esEs4(vxw300, vxw4000, cfe, cff) new_ltEs18(vxw112, vxw102, app(ty_Ratio, cgh)) -> new_ltEs5(vxw112, vxw102, cgh) new_ltEs18(vxw112, vxw102, ty_Int) -> new_ltEs15(vxw112, vxw102) new_ltEs13(EQ, LT) -> False new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs16(vxw301, vxw4001) new_esEs4(Right(vxw300), Right(vxw4000), dad, app(app(ty_Either, daf), dag)) -> new_esEs4(vxw300, vxw4000, daf, dag) new_esEs28(vxw110, vxw100, app(app(ty_@2, bac), bad)) -> new_esEs6(vxw110, vxw100, bac, bad) new_esEs7(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs15(vxw300, vxw4000) new_esEs28(vxw110, vxw100, ty_Integer) -> new_esEs12(vxw110, vxw100) new_lt11(vxw111, vxw101, app(ty_[], gc)) -> new_lt18(vxw111, vxw101, gc) new_esEs23(vxw301, vxw4001, ty_Integer) -> new_esEs12(vxw301, vxw4001) new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False new_ltEs7(True, True) -> True new_esEs20(vxw302, vxw4002, ty_Char) -> new_esEs16(vxw302, vxw4002) new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs21(vxw301, vxw4001, app(ty_Maybe, cba)) -> new_esEs7(vxw301, vxw4001, cba) new_ltEs18(vxw112, vxw102, app(ty_[], hd)) -> new_ltEs6(vxw112, vxw102, hd) new_esEs25(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) new_lt11(vxw111, vxw101, app(ty_Maybe, gb)) -> new_lt5(vxw111, vxw101, gb) new_compare9(vxw110, vxw100, ty_Char) -> new_compare11(vxw110, vxw100) new_ltEs10(Right(vxw110), Right(vxw100), cc, ty_Float) -> new_ltEs17(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), dad, ty_Int) -> new_esEs11(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, ty_Ordering) -> new_ltEs13(vxw111, vxw101) new_esEs4(Left(vxw300), Left(vxw4000), ty_Integer, cha) -> new_esEs12(vxw300, vxw4000) new_lt20(vxw110, vxw100, ty_Bool) -> new_lt9(vxw110, vxw100) new_esEs26(vxw111, vxw101, ty_Ordering) -> new_esEs8(vxw111, vxw101) new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False new_ltEs9(Just(vxw110), Just(vxw100), app(ty_Maybe, bch)) -> new_ltEs9(vxw110, vxw100, bch) new_ltEs18(vxw112, vxw102, app(app(ty_Either, gd), ge)) -> new_ltEs10(vxw112, vxw102, gd, ge) new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) new_lt20(vxw110, vxw100, app(ty_Ratio, dca)) -> new_lt14(vxw110, vxw100, dca) new_esEs28(vxw110, vxw100, app(ty_[], baf)) -> new_esEs13(vxw110, vxw100, baf) new_esEs20(vxw302, vxw4002, ty_Float) -> new_esEs17(vxw302, vxw4002) new_lt4(vxw110, vxw100) -> new_esEs8(new_compare6(vxw110, vxw100), LT) new_esEs26(vxw111, vxw101, app(ty_Maybe, gb)) -> new_esEs7(vxw111, vxw101, gb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs25(vxw300, vxw4000, ty_Int) -> new_esEs11(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs4(vxw111, vxw101, bbb, bbc, bbd) new_esEs22(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) new_lt20(vxw110, vxw100, ty_Integer) -> new_lt4(vxw110, vxw100) new_compare110(vxw110, vxw100, True, eb, ec, ed) -> LT new_ltEs15(vxw11, vxw10) -> new_not(new_esEs8(new_compare15(vxw11, vxw10), GT)) new_esEs27(vxw110, vxw100, app(ty_Maybe, eg)) -> new_esEs7(vxw110, vxw100, eg) new_lt20(vxw110, vxw100, app(app(ty_@2, bac), bad)) -> new_lt15(vxw110, vxw100, bac, bad) new_lt11(vxw111, vxw101, ty_Char) -> new_lt7(vxw111, vxw101) new_compare9(vxw110, vxw100, app(ty_Maybe, beb)) -> new_compare8(vxw110, vxw100, beb) new_compare9(vxw110, vxw100, ty_@0) -> new_compare19(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), dad, ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_not(False) -> True new_lt11(vxw111, vxw101, ty_Double) -> new_lt16(vxw111, vxw101) new_esEs4(Right(vxw300), Right(vxw4000), dad, ty_Float) -> new_esEs17(vxw300, vxw4000) new_ltEs10(Right(vxw110), Right(vxw100), cc, app(ty_Ratio, dbh)) -> new_ltEs5(vxw110, vxw100, dbh) new_compare27(vxw110, vxw100, False, eg) -> new_compare114(vxw110, vxw100, new_ltEs9(vxw110, vxw100, eg), eg) new_esEs20(vxw302, vxw4002, app(ty_Maybe, bhg)) -> new_esEs7(vxw302, vxw4002, bhg) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs13(LT, LT) -> True new_esEs22(vxw300, vxw4000, app(ty_[], cch)) -> new_esEs13(vxw300, vxw4000, cch) new_esEs7(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs16(vxw300, vxw4000) new_compare9(vxw110, vxw100, ty_Float) -> new_compare18(vxw110, vxw100) new_compare9(vxw110, vxw100, app(ty_Ratio, bed)) -> new_compare13(vxw110, vxw100, bed) new_esEs20(vxw302, vxw4002, app(app(ty_@2, cab), cac)) -> new_esEs6(vxw302, vxw4002, cab, cac) new_esEs28(vxw110, vxw100, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs5(vxw110, vxw100, hh, baa, bab) new_esEs20(vxw302, vxw4002, ty_Bool) -> new_esEs15(vxw302, vxw4002) new_compare25(vxw110, vxw100, True) -> EQ new_lt10(vxw110, vxw100, app(ty_Maybe, eg)) -> new_lt5(vxw110, vxw100, eg) new_esEs28(vxw110, vxw100, ty_@0) -> new_esEs19(vxw110, vxw100) new_primPlusNat0(Succ(vxw450), vxw400100) -> Succ(Succ(new_primPlusNat1(vxw450, vxw400100))) new_ltEs5(vxw11, vxw10, bhc) -> new_not(new_esEs8(new_compare13(vxw11, vxw10, bhc), GT)) new_esEs27(vxw110, vxw100, ty_Int) -> new_esEs11(vxw110, vxw100) new_ltEs19(vxw111, vxw101, app(app(ty_Either, bah), bba)) -> new_ltEs10(vxw111, vxw101, bah, bba) new_compare12(vxw110, vxw100, eb, ec, ed) -> new_compare24(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec, ed), eb, ec, ed) new_esEs4(Right(vxw300), Right(vxw4000), dad, ty_@0) -> new_esEs19(vxw300, vxw4000) new_ltEs10(Right(vxw110), Right(vxw100), cc, app(app(ty_@2, db), dc)) -> new_ltEs14(vxw110, vxw100, db, dc) new_ltEs18(vxw112, vxw102, ty_Float) -> new_ltEs17(vxw112, vxw102) new_esEs4(Left(vxw300), Left(vxw4000), app(ty_Ratio, chh), cha) -> new_esEs14(vxw300, vxw4000, chh) new_lt10(vxw110, vxw100, ty_@0) -> new_lt19(vxw110, vxw100) new_ltEs16(vxw11, vxw10) -> new_not(new_esEs8(new_compare17(vxw11, vxw10), GT)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(vxw300, vxw4000, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_esEs25(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) new_compare13(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare6(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) new_primPlusNat1(Zero, Zero) -> Zero new_esEs28(vxw110, vxw100, ty_Double) -> new_esEs18(vxw110, vxw100) new_esEs9(vxw301, vxw4001, ty_Char) -> new_esEs16(vxw301, vxw4001) new_ltEs10(Left(vxw110), Left(vxw100), app(app(app(ty_@3, bd), be), bf), bc) -> new_ltEs4(vxw110, vxw100, bd, be, bf) new_esEs9(vxw301, vxw4001, ty_Integer) -> new_esEs12(vxw301, vxw4001) new_lt10(vxw110, vxw100, app(app(ty_Either, df), dg)) -> new_lt8(vxw110, vxw100, df, dg) new_esEs28(vxw110, vxw100, app(app(ty_Either, he), hf)) -> new_esEs4(vxw110, vxw100, he, hf) new_esEs27(vxw110, vxw100, app(ty_Ratio, cgf)) -> new_esEs14(vxw110, vxw100, cgf) new_compare24(vxw110, vxw100, False, eb, ec, ed) -> new_compare110(vxw110, vxw100, new_ltEs4(vxw110, vxw100, eb, ec, ed), eb, ec, ed) new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs12(vxw301, vxw4001) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_compare10(vxw110, vxw100, df, dg) -> new_compare28(vxw110, vxw100, new_esEs4(vxw110, vxw100, df, dg), df, dg) new_esEs26(vxw111, vxw101, app(app(ty_Either, fb), fc)) -> new_esEs4(vxw111, vxw101, fb, fc) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(vxw111, vxw101, ty_Double) -> new_esEs18(vxw111, vxw101) new_lt20(vxw110, vxw100, app(ty_[], baf)) -> new_lt18(vxw110, vxw100, baf) new_esEs26(vxw111, vxw101, ty_@0) -> new_esEs19(vxw111, vxw101) new_primMulNat0(Succ(vxw30000), Succ(vxw400100)) -> new_primPlusNat0(new_primMulNat0(vxw30000, Succ(vxw400100)), vxw400100) new_esEs18(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs11(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_esEs22(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) new_lt10(vxw110, vxw100, app(app(ty_@2, ee), ef)) -> new_lt15(vxw110, vxw100, ee, ef) new_esEs27(vxw110, vxw100, ty_Float) -> new_esEs17(vxw110, vxw100) new_ltEs13(LT, EQ) -> True new_esEs26(vxw111, vxw101, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs5(vxw111, vxw101, fd, ff, fg) new_esEs20(vxw302, vxw4002, ty_Integer) -> new_esEs12(vxw302, vxw4002) new_esEs26(vxw111, vxw101, app(ty_Ratio, cgg)) -> new_esEs14(vxw111, vxw101, cgg) new_compare13(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare15(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) new_ltEs10(Left(vxw110), Left(vxw100), app(ty_[], cb), bc) -> new_ltEs6(vxw110, vxw100, cb) new_esEs28(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) new_compare28(vxw110, vxw100, False, df, dg) -> new_compare111(vxw110, vxw100, new_ltEs10(vxw110, vxw100, df, dg), df, dg) new_esEs27(vxw110, vxw100, ty_Double) -> new_esEs18(vxw110, vxw100) new_esEs4(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, daa), dab), dac), cha) -> new_esEs5(vxw300, vxw4000, daa, dab, dac) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Zero, Zero) -> True new_ltEs9(Just(vxw110), Nothing, cdf) -> False new_ltEs9(Nothing, Nothing, cdf) -> True new_esEs9(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) new_ltEs10(Left(vxw110), Left(vxw100), ty_Double, bc) -> new_ltEs16(vxw110, vxw100) new_ltEs10(Right(vxw110), Right(vxw100), cc, ty_Ordering) -> new_ltEs13(vxw110, vxw100) new_lt11(vxw111, vxw101, app(app(ty_Either, fb), fc)) -> new_lt8(vxw111, vxw101, fb, fc) new_lt11(vxw111, vxw101, app(ty_Ratio, cgg)) -> new_lt14(vxw111, vxw101, cgg) new_asAs(False, vxw35) -> False new_ltEs10(Right(vxw110), Right(vxw100), cc, ty_Char) -> new_ltEs12(vxw110, vxw100) new_ltEs9(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs16(vxw110, vxw100) new_esEs26(vxw111, vxw101, ty_Int) -> new_esEs11(vxw111, vxw101) new_compare28(vxw110, vxw100, True, df, dg) -> EQ new_esEs27(vxw110, vxw100, app(app(ty_Either, df), dg)) -> new_esEs4(vxw110, vxw100, df, dg) new_compare17(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare15(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare17(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare15(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs4(Left(vxw300), Left(vxw4000), ty_Char, cha) -> new_esEs16(vxw300, vxw4000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs27(vxw110, vxw100, ty_@0) -> new_esEs19(vxw110, vxw100) new_esEs28(vxw110, vxw100, ty_Float) -> new_esEs17(vxw110, vxw100) new_lt20(vxw110, vxw100, app(ty_Maybe, bae)) -> new_lt5(vxw110, vxw100, bae) new_esEs20(vxw302, vxw4002, app(ty_[], cad)) -> new_esEs13(vxw302, vxw4002, cad) new_esEs11(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) new_ltEs19(vxw111, vxw101, ty_Float) -> new_ltEs17(vxw111, vxw101) new_lt11(vxw111, vxw101, ty_Bool) -> new_lt9(vxw111, vxw101) new_esEs27(vxw110, vxw100, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs5(vxw110, vxw100, eb, ec, ed) new_lt12(vxw110, vxw100) -> new_esEs8(new_compare7(vxw110, vxw100), LT) The set Q consists of the following terms: new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs8(EQ, EQ) new_esEs9(x0, x1, ty_Float) new_compare11(Char(x0), Char(x1)) new_compare26(x0, x1, True, x2, x3) new_compare114(x0, x1, True, x2) new_esEs26(x0, x1, ty_@0) new_compare10(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt14(x0, x1, x2) new_lt10(x0, x1, ty_Double) new_ltEs6(x0, x1, x2) new_primCompAux00(x0, LT) new_primPlusNat1(Zero, Zero) new_esEs25(x0, x1, ty_Int) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs18(x0, x1, ty_@0) new_compare115(x0, x1, True) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs18(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_ltEs10(Right(x0), Right(x1), x2, ty_Float) new_esEs14(:%(x0, x1), :%(x2, x3), x4) new_ltEs8(x0, x1) new_primMulNat0(Succ(x0), Zero) new_sr0(Integer(x0), Integer(x1)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_compare9(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs13(EQ, EQ) new_esEs25(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Float) new_ltEs16(x0, x1) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Char) new_ltEs9(Nothing, Just(x0), x1) new_ltEs10(Right(x0), Left(x1), x2, x3) new_ltEs10(Left(x0), Right(x1), x2, x3) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare9(x0, x1, ty_Integer) new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) new_pePe(True, x0) new_lt20(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt20(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_sr(x0, x1) new_esEs27(x0, x1, ty_@0) new_compare113(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt11(x0, x1, ty_@0) new_lt12(x0, x1) new_compare6(Integer(x0), Integer(x1)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Double) new_lt11(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt10(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare5([], [], x0) new_ltEs19(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt11(x0, x1, ty_Int) new_ltEs7(False, True) new_ltEs7(True, False) new_esEs15(False, False) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_primPlusNat1(Succ(x0), Zero) new_compare9(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare114(x0, x1, False, x2) new_compare9(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Integer) new_esEs12(Integer(x0), Integer(x1)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(x0, x1, False, x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare5([], :(x0, x1), x2) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_@0) new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_esEs16(Char(x0), Char(x1)) new_compare9(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare5(:(x0, x1), :(x2, x3), x4) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Integer) new_lt10(x0, x1, ty_Bool) new_compare15(x0, x1) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs7(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Double) new_lt9(x0, x1) new_esEs20(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_primPlusNat1(Zero, Succ(x0)) new_esEs20(x0, x1, ty_Int) new_esEs25(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs7(False, False) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Float) new_compare25(x0, x1, False) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare24(x0, x1, True, x2, x3, x4) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs8(GT, GT) new_esEs26(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs27(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(Right(x0), Right(x1), x2, ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, LT) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs18(x0, x1, ty_Int) new_lt10(x0, x1, ty_Char) new_compare12(x0, x1, x2, x3, x4) new_ltEs19(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare13(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs15(True, True) new_lt5(x0, x1, x2) new_esEs26(x0, x1, ty_Int) new_ltEs9(Just(x0), Just(x1), ty_Int) new_compare9(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(@0, @0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs7(Nothing, Just(x0), x1) new_ltEs18(x0, x1, ty_Float) new_lt10(x0, x1, app(ty_Ratio, x2)) new_compare115(x0, x1, False) new_esEs22(x0, x1, ty_Bool) new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Double) new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) new_esEs21(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, ty_Double) new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) new_esEs22(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Right(x0), Right(x1), x2, ty_Char) new_compare9(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare9(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Int) new_lt4(x0, x1) new_lt16(x0, x1) new_primCompAux00(x0, GT) new_compare27(x0, x1, True, x2) new_ltEs9(Just(x0), Just(x1), ty_Float) new_primMulNat0(Zero, Succ(x0)) new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Succ(x0)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_compare7(x0, x1) new_asAs(False, x0) new_compare111(x0, x1, True, x2, x3) new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, x2, x3, x4) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Double) new_compare16(x0, x1) new_esEs9(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, x2, x3) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, ty_Float) new_esEs13(:(x0, x1), :(x2, x3), x4) new_primMulNat0(Zero, Zero) new_ltEs15(x0, x1) new_esEs13([], [], x0) new_primCompAux0(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs17(x0, x1) new_esEs28(x0, x1, ty_Char) new_ltEs10(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primMulInt(Pos(x0), Pos(x1)) new_lt10(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs22(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Succ(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), ty_Int) new_compare8(x0, x1, x2) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, True, x2, x3, x4) new_esEs28(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Ordering) new_primMulInt(Neg(x0), Neg(x1)) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(ty_[], x2)) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs9(Just(x0), Just(x1), ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_[], x2)) new_compare13(:%(x0, x1), :%(x2, x3), ty_Integer) new_not(True) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Left(x0), Left(x1), ty_Char, x2) new_ltEs9(Just(x0), Just(x1), ty_Bool) new_esEs27(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_lt8(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt15(x0, x1, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare112(x0, x1, True) new_esEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) new_lt10(x0, x1, ty_Integer) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs9(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(LT, LT) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs21(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Integer) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs11(x0, x1) new_compare28(x0, x1, True, x2, x3) new_esEs9(x0, x1, ty_@0) new_compare23(x0, x1, False) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs11(x0, x1) new_compare24(x0, x1, False, x2, x3, x4) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True) new_ltEs9(Just(x0), Just(x1), ty_Integer) new_ltEs10(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_@0) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Double) new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_compare9(x0, x1, ty_Float) new_lt11(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs10(Right(x0), Right(x1), x2, ty_@0) new_esEs28(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_ltEs13(GT, GT) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare111(x0, x1, False, x2, x3) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare27(x0, x1, False, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Integer) new_lt11(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_compare28(x0, x1, False, x2, x3) new_compare113(x0, x1, False, x2, x3) new_lt6(x0, x1) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(False, True) new_esEs15(True, False) new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_not(False) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Bool) new_ltEs7(True, True) new_ltEs9(Just(x0), Just(x1), ty_Double) new_lt18(x0, x1, x2) new_esEs13([], :(x0, x1), x2) new_ltEs5(x0, x1, x2) new_ltEs9(Just(x0), Just(x1), ty_@0) new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primCompAux00(x0, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs13(:(x0, x1), [], x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_compare9(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs12(x0, x1) new_esEs21(x0, x1, ty_Int) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs19(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_pePe(False, x0) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_Char) new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Integer) new_esEs19(@0, @0) new_ltEs9(Just(x0), Nothing, x1) new_lt7(x0, x1) new_esEs9(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, False) new_compare110(x0, x1, False, x2, x3, x4) new_compare9(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt11(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpNat0(Zero, Zero) new_esEs25(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs21(x0, x1, ty_Float) new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs9(Nothing, Nothing, x0) new_compare9(x0, x1, app(ty_Maybe, x2)) new_compare5(:(x0, x1), [], 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_lt2(vxw110, vxw100, eg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, eg), eg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare5(vxw111, vxw101, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *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_compare4(vxw110, vxw100, eg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, eg), eg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare5(vxw111, vxw101, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare21(vxw110, vxw100, False, ee, ef) -> new_ltEs1(vxw110, vxw100, ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare22(vxw110, vxw100, False, eg) -> new_ltEs2(vxw110, vxw100, eg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(app(ty_@2, ha), hb)) -> new_ltEs1(vxw112, vxw102, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(app(ty_Either, gd), ge)) -> new_ltEs(vxw112, vxw102, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs0(vxw112, vxw102, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(ty_Maybe, gb), ea) -> new_lt2(vxw111, vxw101, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_Maybe, bae), hg) -> new_lt2(vxw110, vxw100, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(app(ty_@3, eb), ec), ed), dh, ea) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec, ed), eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(app(ty_@2, bbe), bbf)) -> new_ltEs1(vxw111, vxw101, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(app(ty_Either, bah), bba)) -> new_ltEs(vxw111, vxw101, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs0(vxw111, vxw101, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_@2, ee), ef), dh, ea) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee, ef), ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(ty_Maybe, hc)) -> new_ltEs2(vxw112, vxw102, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(ty_Maybe, bbg)) -> new_ltEs2(vxw111, vxw101, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_@2, 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(app(ty_Either, bca), bcb)) -> new_ltEs(vxw110, vxw100, bca, bcb) 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, bcc), bcd), bce)) -> new_ltEs0(vxw110, vxw100, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *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_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_lt(vxw110, vxw100, df, dg) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, df, dg), df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare2(vxw110, vxw100, False, df, dg) -> new_ltEs(vxw110, vxw100, df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare20(vxw110, vxw100, False, eb, ec, ed) -> new_ltEs0(vxw110, vxw100, eb, ec, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, dh, app(ty_[], hd)) -> new_ltEs3(vxw112, vxw102, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), bag, app(ty_[], bbh)) -> new_ltEs3(vxw111, vxw101, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(vxw110, vxw100, vxw44, app(app(ty_@2, 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_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(app(ty_Either, fb), fc), ea) -> new_lt(vxw111, vxw101, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_Either, he), hf), hg) -> new_lt(vxw110, vxw100, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(ty_[], gc), ea) -> new_lt3(vxw111, vxw101, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_[], baf), hg) -> new_lt3(vxw110, vxw100, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt1(vxw110, vxw100, ee, ef) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee, ef), ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare3(vxw110, vxw100, ee, ef) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee, ef), ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(app(app(ty_@3, fd), ff), fg), ea) -> new_lt0(vxw111, vxw101, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(app(ty_@3, hh), baa), bab), hg) -> new_lt0(vxw110, vxw100, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_@2, bac), bad), hg) -> new_lt1(vxw110, vxw100, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(vxw110, vxw100, vxw44, app(app(app(ty_@3, bde), bdf), bdg)) -> new_compare1(vxw110, vxw100, bde, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_lt0(vxw110, vxw100, eb, ec, ed) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec, ed), eb, ec, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare1(vxw110, vxw100, eb, ec, ed) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec, ed), eb, ec, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_lt3(vxw110, vxw100, eh) -> new_compare(vxw110, vxw100, eh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare0(vxw110, vxw100, df, dg) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, df, dg), df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_[], eh), dh, ea) -> new_compare(vxw110, vxw100, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vxw110, vxw100, vxw44, app(ty_[], bec)) -> new_compare(vxw110, vxw100, bec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vxw110, vxw100, vxw44, app(ty_Maybe, beb)) -> new_compare4(vxw110, vxw100, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vxw110, vxw100, vxw44, app(app(ty_Either, bdc), bdd)) -> new_compare0(vxw110, vxw100, bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_Maybe, eg), dh, ea) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_Either, df), dg), dh, ea) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, df, dg), df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs0(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), fa, app(app(ty_@2, fh), ga), ea) -> new_lt1(vxw111, vxw101, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Right(vxw110), Right(vxw100), cc, app(app(ty_@2, db), dc)) -> new_ltEs1(vxw110, vxw100, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vxw110), Left(vxw100), app(app(ty_@2, bg), bh), bc) -> new_ltEs1(vxw110, vxw100, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vxw110), Right(vxw100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs(vxw110, vxw100, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vxw110), Left(vxw100), app(app(ty_Either, ba), bb), bc) -> new_ltEs(vxw110, vxw100, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Left(vxw110), Left(vxw100), app(app(app(ty_@3, bd), be), bf), bc) -> new_ltEs0(vxw110, vxw100, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vxw110), Right(vxw100), cc, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs0(vxw110, vxw100, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Right(vxw110), Right(vxw100), cc, app(ty_Maybe, dd)) -> new_ltEs2(vxw110, vxw100, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vxw110), Left(vxw100), app(ty_Maybe, ca), bc) -> new_ltEs2(vxw110, vxw100, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Left(vxw110), Left(vxw100), app(ty_[], cb), bc) -> new_ltEs3(vxw110, vxw100, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vxw110), Right(vxw100), cc, app(ty_[], de)) -> new_ltEs3(vxw110, vxw100, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vxw30000), Succ(vxw400100)) -> new_primMulNat(vxw30000, Succ(vxw400100)) 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(vxw30000), Succ(vxw400100)) -> new_primMulNat(vxw30000, Succ(vxw400100)) 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_insertBy(Just(vxw30), :(Nothing, vxw41), ba) -> new_insertBy(Just(vxw30), vxw41, ba) new_insertBy00(vxw19, vxw20, vxw21, False, bc) -> new_insertBy(Just(vxw20), vxw21, bc) new_insertBy0(vxw10, vxw11, vxw12, False, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, bb), bb) new_insertBy(Just(vxw30), :(Just(vxw400), vxw41), ba) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, ba), ba) The TRS R consists of the following rules: new_compare17(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare15(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_ltEs9(Just(vxw110), Just(vxw100), app(ty_Ratio, bed)) -> new_ltEs5(vxw110, vxw100, bed) new_ltEs19(vxw111, vxw101, ty_Integer) -> new_ltEs11(vxw111, vxw101) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT new_ltEs10(Right(vxw110), Right(vxw100), cge, ty_Integer) -> new_ltEs11(vxw110, vxw100) new_pePe(True, vxw43) -> True new_esEs27(vxw110, vxw100, ty_Char) -> new_esEs16(vxw110, vxw100) new_esEs10(vxw300, vxw4000, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, ty_Bool) -> new_ltEs7(vxw111, vxw101) new_esEs25(vxw300, vxw4000, app(ty_[], bgh)) -> new_esEs13(vxw300, vxw4000, bgh) new_esEs4(Left(vxw300), Right(vxw4000), ge, gf) -> False new_esEs4(Right(vxw300), Left(vxw4000), ge, gf) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare9(vxw110, vxw100, app(app(ty_@2, cd), ce)) -> new_compare14(vxw110, vxw100, cd, ce) new_esEs29(vxw30, vxw400, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(vxw30, vxw400, ha, hb, hc) new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT new_esEs20(vxw302, vxw4002, ty_@0) -> new_esEs19(vxw302, vxw4002) new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) new_compare26(vxw110, vxw100, True, bdd, bde) -> EQ new_esEs29(vxw30, vxw400, ty_@0) -> new_esEs19(vxw30, vxw400) new_esEs24(vxw300, vxw4000, ty_Int) -> new_esEs11(vxw300, vxw4000) new_esEs21(vxw301, vxw4001, app(app(ty_@2, bbc), bbd)) -> new_esEs6(vxw301, vxw4001, bbc, bbd) new_ltEs9(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs15(vxw110, vxw100) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Maybe, bfa)) -> new_esEs7(vxw300, vxw4000, bfa) new_esEs25(vxw300, vxw4000, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_lt11(vxw111, vxw101, ty_Ordering) -> new_lt12(vxw111, vxw101) new_esEs22(vxw300, vxw4000, app(app(ty_Either, bcc), bcd)) -> new_esEs4(vxw300, vxw4000, bcc, bcd) new_compare113(vxw110, vxw100, False, bdd, bde) -> GT new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) new_ltEs9(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs8(vxw110, vxw100) new_compare111(vxw110, vxw100, True, hd, he) -> LT new_ltEs10(Right(vxw110), Right(vxw100), cge, ty_Bool) -> new_ltEs7(vxw110, vxw100) new_esEs28(vxw110, vxw100, app(ty_Maybe, dbb)) -> new_esEs7(vxw110, vxw100, dbb) new_esEs22(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) new_esEs7(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs11(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, app(ty_Maybe, dcd)) -> new_ltEs9(vxw111, vxw101, dcd) new_ltEs13(GT, GT) -> True new_lt18(vxw110, vxw100, caa) -> new_esEs8(new_compare5(vxw110, vxw100, caa), LT) new_compare19(@0, @0) -> EQ new_esEs10(vxw300, vxw4000, app(ty_[], ff)) -> new_esEs13(vxw300, vxw4000, ff) new_esEs15(False, False) -> True new_ltEs9(Just(vxw110), Just(vxw100), app(app(ty_@2, bee), bef)) -> new_ltEs14(vxw110, vxw100, bee, bef) new_compare9(vxw110, vxw100, ty_Bool) -> new_compare16(vxw110, vxw100) new_esEs21(vxw301, vxw4001, app(ty_[], bbe)) -> new_esEs13(vxw301, vxw4001, bbe) new_esEs20(vxw302, vxw4002, ty_Double) -> new_esEs18(vxw302, vxw4002) new_ltEs20(vxw11, vxw10, app(ty_Maybe, bdf)) -> new_ltEs9(vxw11, vxw10, bdf) new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False new_esEs8(GT, GT) -> True new_esEs4(Right(vxw300), Right(vxw4000), ge, ty_Bool) -> new_esEs15(vxw300, vxw4000) new_ltEs13(EQ, GT) -> True new_ltEs19(vxw111, vxw101, app(ty_[], dce)) -> new_ltEs6(vxw111, vxw101, dce) new_esEs20(vxw302, vxw4002, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(vxw302, vxw4002, bae, baf, bag) new_ltEs13(EQ, EQ) -> True new_esEs28(vxw110, vxw100, app(ty_Ratio, dag)) -> new_esEs14(vxw110, vxw100, dag) new_esEs8(EQ, EQ) -> True new_compare18(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare15(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare18(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare15(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_ltEs18(vxw112, vxw102, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs4(vxw112, vxw102, cbf, cbg, cbh) new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_compare8(vxw110, vxw100, bd) -> new_compare27(vxw110, vxw100, new_esEs7(vxw110, vxw100, bd), bd) new_ltEs10(Left(vxw110), Left(vxw100), ty_Int, cfd) -> new_ltEs15(vxw110, vxw100) new_lt11(vxw111, vxw101, ty_Float) -> new_lt17(vxw111, vxw101) new_not(True) -> False new_esEs9(vxw301, vxw4001, app(ty_[], ec)) -> new_esEs13(vxw301, vxw4001, ec) new_primCompAux00(vxw55, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(vxw112, vxw102, ty_Ordering) -> new_ltEs13(vxw112, vxw102) new_esEs7(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs5(vxw300, vxw4000, bfh, bga, bgb) new_ltEs10(Left(vxw110), Left(vxw100), ty_@0, cfd) -> new_ltEs8(vxw110, vxw100) new_esEs10(vxw300, vxw4000, app(app(ty_@2, fc), fd)) -> new_esEs6(vxw300, vxw4000, fc, fd) new_esEs29(vxw30, vxw400, ty_Int) -> new_esEs11(vxw30, vxw400) new_compare26(vxw110, vxw100, False, bdd, bde) -> new_compare113(vxw110, vxw100, new_ltEs14(vxw110, vxw100, bdd, bde), bdd, bde) new_esEs29(vxw30, vxw400, app(ty_[], gg)) -> new_esEs13(vxw30, vxw400, gg) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Ratio, bfg)) -> new_esEs14(vxw300, vxw4000, bfg) new_compare9(vxw110, vxw100, ty_Int) -> new_compare15(vxw110, vxw100) new_esEs10(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_compare27(vxw110, vxw100, True, bd) -> EQ new_ltEs20(vxw11, vxw10, ty_Char) -> new_ltEs12(vxw11, vxw10) new_primEqNat0(Succ(vxw3000), Zero) -> False new_primEqNat0(Zero, Succ(vxw40000)) -> False new_esEs29(vxw30, vxw400, ty_Integer) -> new_esEs12(vxw30, vxw400) new_compare112(vxw110, vxw100, False) -> GT new_esEs12(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) new_esEs13([], [], gg) -> True new_ltEs4(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), bhe, bhf, bhg) -> new_pePe(new_lt10(vxw110, vxw100, bhe), new_asAs(new_esEs27(vxw110, vxw100, bhe), new_pePe(new_lt11(vxw111, vxw101, bhf), new_asAs(new_esEs26(vxw111, vxw101, bhf), new_ltEs18(vxw112, vxw102, bhg))))) new_esEs25(vxw300, vxw4000, ty_@0) -> new_esEs19(vxw300, vxw4000) new_compare9(vxw110, vxw100, ty_Integer) -> new_compare6(vxw110, vxw100) new_compare114(vxw110, vxw100, False, bd) -> GT new_esEs25(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) new_ltEs9(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs17(vxw110, vxw100) new_lt16(vxw110, vxw100) -> new_esEs8(new_compare17(vxw110, vxw100), LT) new_esEs28(vxw110, vxw100, ty_Int) -> new_esEs11(vxw110, vxw100) new_lt10(vxw110, vxw100, ty_Integer) -> new_lt4(vxw110, vxw100) new_lt11(vxw111, vxw101, app(app(ty_@2, cah), cba)) -> new_lt15(vxw111, vxw101, cah, cba) new_esEs26(vxw111, vxw101, ty_Float) -> new_esEs17(vxw111, vxw101) new_esEs7(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs19(vxw300, vxw4000) new_ltEs20(vxw11, vxw10, ty_Integer) -> new_ltEs11(vxw11, vxw10) new_ltEs20(vxw11, vxw10, ty_Bool) -> new_ltEs7(vxw11, vxw10) new_lt20(vxw110, vxw100, app(app(app(ty_@3, dad), dae), daf)) -> new_lt13(vxw110, vxw100, dad, dae, daf) new_primCompAux00(vxw55, GT) -> GT new_esEs25(vxw300, vxw4000, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs5(vxw300, vxw4000, bhb, bhc, bhd) new_ltEs19(vxw111, vxw101, ty_Char) -> new_ltEs12(vxw111, vxw101) new_lt11(vxw111, vxw101, ty_Integer) -> new_lt4(vxw111, vxw101) new_esEs20(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) new_esEs4(Left(vxw300), Left(vxw4000), app(app(ty_@2, cda), cdb), gf) -> new_esEs6(vxw300, vxw4000, cda, cdb) new_esEs23(vxw301, vxw4001, ty_Int) -> new_esEs11(vxw301, vxw4001) new_ltEs18(vxw112, vxw102, ty_Double) -> new_ltEs16(vxw112, vxw102) new_compare6(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) new_esEs29(vxw30, vxw400, ty_Double) -> new_esEs18(vxw30, vxw400) new_lt20(vxw110, vxw100, ty_@0) -> new_lt19(vxw110, vxw100) new_esEs4(Left(vxw300), Left(vxw4000), ty_Int, gf) -> new_esEs11(vxw300, vxw4000) new_ltEs10(Right(vxw110), Right(vxw100), cge, app(ty_Maybe, chf)) -> new_ltEs9(vxw110, vxw100, chf) new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT new_ltEs10(Left(vxw110), Left(vxw100), ty_Float, cfd) -> new_ltEs17(vxw110, vxw100) new_ltEs10(Right(vxw110), Left(vxw100), cge, cfd) -> False new_lt10(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), ge, ty_Double) -> new_esEs18(vxw300, vxw4000) new_esEs4(Right(vxw300), Right(vxw4000), ge, app(ty_[], cee)) -> new_esEs13(vxw300, vxw4000, cee) new_esEs4(Right(vxw300), Right(vxw4000), ge, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_esEs6(@2(vxw300, vxw301), @2(vxw4000, vxw4001), dd, de) -> new_asAs(new_esEs10(vxw300, vxw4000, dd), new_esEs9(vxw301, vxw4001, de)) new_lt20(vxw110, vxw100, app(app(ty_Either, dab), dac)) -> new_lt8(vxw110, vxw100, dab, dac) new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Maybe, cgc), cfd) -> new_ltEs9(vxw110, vxw100, cgc) new_compare115(vxw110, vxw100, True) -> LT new_lt17(vxw110, vxw100) -> new_esEs8(new_compare18(vxw110, vxw100), LT) new_esEs26(vxw111, vxw101, ty_Char) -> new_esEs16(vxw111, vxw101) new_primPlusNat1(Succ(vxw4500), Succ(vxw4001000)) -> Succ(Succ(new_primPlusNat1(vxw4500, vxw4001000))) new_compare9(vxw110, vxw100, app(app(ty_Either, bf), bg)) -> new_compare10(vxw110, vxw100, bf, bg) new_compare5(:(vxw110, vxw111), [], be) -> GT new_primCmpNat0(Zero, Succ(vxw1000)) -> LT new_esEs4(Left(vxw300), Left(vxw4000), app(ty_[], cdc), gf) -> new_esEs13(vxw300, vxw4000, cdc) new_esEs7(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs18(vxw300, vxw4000) new_ltEs13(LT, GT) -> True new_compare25(vxw110, vxw100, False) -> new_compare112(vxw110, vxw100, new_ltEs7(vxw110, vxw100)) new_esEs9(vxw301, vxw4001, app(app(ty_@2, ea), eb)) -> new_esEs6(vxw301, vxw4001, ea, eb) new_ltEs17(vxw11, vxw10) -> new_not(new_esEs8(new_compare18(vxw11, vxw10), GT)) new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(vxw301, vxw4001, bbg, bbh, bca) new_primCmpNat0(Succ(vxw1100), Zero) -> GT new_compare110(vxw110, vxw100, False, da, db, dc) -> GT new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs19(vxw301, vxw4001) new_esEs4(Left(vxw300), Left(vxw4000), ty_Double, gf) -> new_esEs18(vxw300, vxw4000) new_pePe(False, vxw43) -> vxw43 new_esEs22(vxw300, vxw4000, app(app(ty_@2, bce), bcf)) -> new_esEs6(vxw300, vxw4000, bce, bcf) new_esEs7(Nothing, Just(vxw4000), gd) -> False new_esEs7(Just(vxw300), Nothing, gd) -> False new_lt10(vxw110, vxw100, ty_Ordering) -> new_lt12(vxw110, vxw100) new_esEs26(vxw111, vxw101, ty_Integer) -> new_esEs12(vxw111, vxw101) new_esEs22(vxw300, vxw4000, app(ty_Ratio, bch)) -> new_esEs14(vxw300, vxw4000, bch) new_lt20(vxw110, vxw100, ty_Float) -> new_lt17(vxw110, vxw100) new_lt9(vxw110, vxw100) -> new_esEs8(new_compare16(vxw110, vxw100), LT) new_esEs4(Left(vxw300), Left(vxw4000), ty_Ordering, gf) -> new_esEs8(vxw300, vxw4000) new_ltEs14(@2(vxw110, vxw111), @2(vxw100, vxw101), chh, daa) -> new_pePe(new_lt20(vxw110, vxw100, chh), new_asAs(new_esEs28(vxw110, vxw100, chh), new_ltEs19(vxw111, vxw101, daa))) new_esEs4(Left(vxw300), Left(vxw4000), ty_Float, gf) -> new_esEs17(vxw300, vxw4000) new_primCompAux0(vxw110, vxw100, vxw44, be) -> new_primCompAux00(vxw44, new_compare9(vxw110, vxw100, be)) new_lt8(vxw110, vxw100, hd, he) -> new_esEs8(new_compare10(vxw110, vxw100, hd, he), LT) new_esEs21(vxw301, vxw4001, app(app(ty_Either, bba), bbb)) -> new_esEs4(vxw301, vxw4001, bba, bbb) new_esEs10(vxw300, vxw4000, app(ty_Maybe, eh)) -> new_esEs7(vxw300, vxw4000, eh) new_lt15(vxw110, vxw100, bdd, bde) -> new_esEs8(new_compare14(vxw110, vxw100, bdd, bde), LT) new_ltEs18(vxw112, vxw102, ty_Integer) -> new_ltEs11(vxw112, vxw102) new_ltEs9(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs13(vxw110, vxw100) new_ltEs18(vxw112, vxw102, ty_Char) -> new_ltEs12(vxw112, vxw102) new_ltEs19(vxw111, vxw101, ty_Double) -> new_ltEs16(vxw111, vxw101) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) new_esEs28(vxw110, vxw100, ty_Char) -> new_esEs16(vxw110, vxw100) new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False new_compare17(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare15(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_esEs7(Nothing, Nothing, gd) -> True new_ltEs10(Right(vxw110), Right(vxw100), cge, ty_Double) -> new_ltEs16(vxw110, vxw100) new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) new_lt13(vxw110, vxw100, da, db, dc) -> new_esEs8(new_compare12(vxw110, vxw100, da, db, dc), LT) new_esEs7(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs12(vxw300, vxw4000) new_ltEs18(vxw112, vxw102, ty_Bool) -> new_ltEs7(vxw112, vxw102) new_esEs26(vxw111, vxw101, app(ty_[], cbc)) -> new_esEs13(vxw111, vxw101, cbc) new_ltEs9(Just(vxw110), Just(vxw100), app(ty_[], beh)) -> new_ltEs6(vxw110, vxw100, beh) new_esEs20(vxw302, vxw4002, app(ty_Ratio, bad)) -> new_esEs14(vxw302, vxw4002, bad) new_compare9(vxw110, vxw100, app(app(app(ty_@3, bh), ca), cb)) -> new_compare12(vxw110, vxw100, bh, ca, cb) new_ltEs11(vxw11, vxw10) -> new_not(new_esEs8(new_compare6(vxw11, vxw10), GT)) new_compare5([], :(vxw100, vxw101), be) -> LT new_compare7(vxw110, vxw100) -> new_compare23(vxw110, vxw100, new_esEs8(vxw110, vxw100)) new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Ratio, cfh), cfd) -> new_ltEs5(vxw110, vxw100, cfh) new_esEs15(True, True) -> True new_ltEs19(vxw111, vxw101, app(app(ty_@2, dcb), dcc)) -> new_ltEs14(vxw111, vxw101, dcb, dcc) new_esEs29(vxw30, vxw400, ty_Bool) -> new_esEs15(vxw30, vxw400) new_esEs7(Just(vxw300), Just(vxw4000), app(ty_[], bff)) -> new_esEs13(vxw300, vxw4000, bff) new_esEs25(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs19(@0, @0) -> True new_ltEs20(vxw11, vxw10, ty_Double) -> new_ltEs16(vxw11, vxw10) new_esEs9(vxw301, vxw4001, ty_Double) -> new_esEs18(vxw301, vxw4001) new_esEs24(vxw300, vxw4000, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs17(vxw301, vxw4001) new_compare15(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT new_esEs17(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs11(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_ltEs10(Right(vxw110), Right(vxw100), cge, app(app(ty_Either, cgf), cgg)) -> new_ltEs10(vxw110, vxw100, cgf, cgg) new_primMulInt(Pos(vxw3000), Pos(vxw40010)) -> Pos(new_primMulNat0(vxw3000, vxw40010)) new_esEs25(vxw300, vxw4000, app(ty_Maybe, bgc)) -> new_esEs7(vxw300, vxw4000, bgc) new_esEs10(vxw300, vxw4000, ty_Int) -> new_esEs11(vxw300, vxw4000) new_compare18(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare15(new_sr(vxw110, Neg(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_esEs13(:(vxw300, vxw301), [], gg) -> False new_esEs13([], :(vxw4000, vxw4001), gg) -> False new_esEs26(vxw111, vxw101, app(app(ty_@2, cah), cba)) -> new_esEs6(vxw111, vxw101, cah, cba) new_esEs9(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) new_esEs4(Left(vxw300), Left(vxw4000), ty_@0, gf) -> new_esEs19(vxw300, vxw4000) new_primMulNat0(Succ(vxw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw400100)) -> Zero new_esEs26(vxw111, vxw101, ty_Bool) -> new_esEs15(vxw111, vxw101) new_esEs10(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) new_primPlusNat0(Zero, vxw400100) -> Succ(vxw400100) new_esEs13(:(vxw300, vxw301), :(vxw4000, vxw4001), gg) -> new_asAs(new_esEs25(vxw300, vxw4000, gg), new_esEs13(vxw301, vxw4001, gg)) new_compare5(:(vxw110, vxw111), :(vxw100, vxw101), be) -> new_primCompAux0(vxw110, vxw100, new_compare5(vxw111, vxw101, be), be) new_esEs22(vxw300, vxw4000, app(ty_Maybe, bcb)) -> new_esEs7(vxw300, vxw4000, bcb) new_ltEs18(vxw112, vxw102, ty_@0) -> new_ltEs8(vxw112, vxw102) new_ltEs10(Left(vxw110), Left(vxw100), ty_Ordering, cfd) -> new_ltEs13(vxw110, vxw100) new_esEs10(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, app(ty_Ratio, dca)) -> new_ltEs5(vxw111, vxw101, dca) new_esEs20(vxw302, vxw4002, ty_Int) -> new_esEs11(vxw302, vxw4002) new_esEs10(vxw300, vxw4000, app(app(ty_Either, fa), fb)) -> new_esEs4(vxw300, vxw4000, fa, fb) new_compare9(vxw110, vxw100, ty_Ordering) -> new_compare7(vxw110, vxw100) new_esEs27(vxw110, vxw100, ty_Bool) -> new_esEs15(vxw110, vxw100) new_lt6(vxw110, vxw100) -> new_esEs8(new_compare15(vxw110, vxw100), LT) new_esEs10(vxw300, vxw4000, ty_@0) -> new_esEs19(vxw300, vxw4000) new_compare9(vxw110, vxw100, app(ty_[], cg)) -> new_compare5(vxw110, vxw100, cg) new_esEs8(LT, LT) -> True new_lt11(vxw111, vxw101, ty_Int) -> new_lt6(vxw111, vxw101) new_ltEs9(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs11(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), ge, ty_Char) -> new_esEs16(vxw300, vxw4000) new_ltEs7(False, True) -> True new_ltEs9(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs7(vxw110, vxw100) new_ltEs13(GT, LT) -> False new_esEs28(vxw110, vxw100, ty_Bool) -> new_esEs15(vxw110, vxw100) new_esEs9(vxw301, vxw4001, ty_Float) -> new_esEs17(vxw301, vxw4001) new_esEs7(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_ltEs6(vxw11, vxw10, be) -> new_not(new_esEs8(new_compare5(vxw11, vxw10, be), GT)) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_@2, bfd), bfe)) -> new_esEs6(vxw300, vxw4000, bfd, bfe) new_primPlusNat1(Succ(vxw4500), Zero) -> Succ(vxw4500) new_primPlusNat1(Zero, Succ(vxw4001000)) -> Succ(vxw4001000) new_lt11(vxw111, vxw101, app(app(app(ty_@3, cad), cae), caf)) -> new_lt13(vxw111, vxw101, cad, cae, caf) new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs11(vxw301, vxw4001) new_lt10(vxw110, vxw100, ty_Int) -> new_lt6(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), ge, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs5(vxw300, vxw4000, ceg, ceh, cfa) new_ltEs20(vxw11, vxw10, app(app(ty_@2, chh), daa)) -> new_ltEs14(vxw11, vxw10, chh, daa) new_esEs4(Right(vxw300), Right(vxw4000), ge, app(ty_Ratio, cef)) -> new_esEs14(vxw300, vxw4000, cef) new_ltEs9(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs12(vxw110, vxw100) new_ltEs7(True, False) -> False new_ltEs9(Just(vxw110), Just(vxw100), app(app(ty_Either, bdg), bdh)) -> new_ltEs10(vxw110, vxw100, bdg, bdh) new_ltEs18(vxw112, vxw102, app(ty_Maybe, ccd)) -> new_ltEs9(vxw112, vxw102, ccd) new_lt10(vxw110, vxw100, app(app(app(ty_@3, da), db), dc)) -> new_lt13(vxw110, vxw100, da, db, dc) new_ltEs10(Right(vxw110), Right(vxw100), cge, app(ty_[], chg)) -> new_ltEs6(vxw110, vxw100, chg) new_esEs9(vxw301, vxw4001, app(app(ty_Either, dg), dh)) -> new_esEs4(vxw301, vxw4001, dg, dh) new_primMulInt(Neg(vxw3000), Neg(vxw40010)) -> Pos(new_primMulNat0(vxw3000, vxw40010)) new_ltEs7(False, False) -> True new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) new_esEs9(vxw301, vxw4001, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs5(vxw301, vxw4001, ee, ef, eg) new_esEs9(vxw301, vxw4001, app(ty_Ratio, ed)) -> new_esEs14(vxw301, vxw4001, ed) new_lt20(vxw110, vxw100, ty_Ordering) -> new_lt12(vxw110, vxw100) new_esEs25(vxw300, vxw4000, app(app(ty_@2, bgf), bgg)) -> new_esEs6(vxw300, vxw4000, bgf, bgg) new_ltEs13(GT, EQ) -> False new_ltEs10(Left(vxw110), Left(vxw100), ty_Char, cfd) -> new_ltEs12(vxw110, vxw100) new_esEs14(:%(vxw300, vxw301), :%(vxw4000, vxw4001), gh) -> new_asAs(new_esEs24(vxw300, vxw4000, gh), new_esEs23(vxw301, vxw4001, gh)) new_ltEs19(vxw111, vxw101, ty_@0) -> new_ltEs8(vxw111, vxw101) new_esEs22(vxw300, vxw4000, ty_@0) -> new_esEs19(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(vxw300, vxw4000, fh, ga, gb) new_esEs9(vxw301, vxw4001, ty_@0) -> new_esEs19(vxw301, vxw4001) new_esEs10(vxw300, vxw4000, app(ty_Ratio, fg)) -> new_esEs14(vxw300, vxw4000, fg) new_compare16(vxw110, vxw100) -> new_compare25(vxw110, vxw100, new_esEs15(vxw110, vxw100)) new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs18(vxw301, vxw4001) new_ltEs10(Left(vxw110), Left(vxw100), ty_Bool, cfd) -> new_ltEs7(vxw110, vxw100) new_compare112(vxw110, vxw100, True) -> LT new_ltEs10(Left(vxw110), Left(vxw100), ty_Integer, cfd) -> new_ltEs11(vxw110, vxw100) new_ltEs10(Right(vxw110), Right(vxw100), cge, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs4(vxw110, vxw100, cgh, cha, chb) new_compare113(vxw110, vxw100, True, bdd, bde) -> LT new_compare14(vxw110, vxw100, bdd, bde) -> new_compare26(vxw110, vxw100, new_esEs6(vxw110, vxw100, bdd, bde), bdd, bde) new_esEs5(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), ha, hb, hc) -> new_asAs(new_esEs22(vxw300, vxw4000, ha), new_asAs(new_esEs21(vxw301, vxw4001, hb), new_esEs20(vxw302, vxw4002, hc))) new_lt11(vxw111, vxw101, ty_@0) -> new_lt19(vxw111, vxw101) new_compare23(vxw110, vxw100, False) -> new_compare115(vxw110, vxw100, new_ltEs13(vxw110, vxw100)) new_lt10(vxw110, vxw100, ty_Char) -> new_lt7(vxw110, vxw100) new_compare115(vxw110, vxw100, False) -> GT new_ltEs20(vxw11, vxw10, ty_Int) -> new_ltEs15(vxw11, vxw10) new_primMulInt(Pos(vxw3000), Neg(vxw40010)) -> Neg(new_primMulNat0(vxw3000, vxw40010)) new_primMulInt(Neg(vxw3000), Pos(vxw40010)) -> Neg(new_primMulNat0(vxw3000, vxw40010)) new_esEs4(Left(vxw300), Left(vxw4000), ty_Bool, gf) -> new_esEs15(vxw300, vxw4000) new_esEs22(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_ltEs20(vxw11, vxw10, ty_@0) -> new_ltEs8(vxw11, vxw10) new_ltEs8(vxw11, vxw10) -> new_not(new_esEs8(new_compare19(vxw11, vxw10), GT)) new_esEs22(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_Either, cfb), cfc), cfd) -> new_ltEs10(vxw110, vxw100, cfb, cfc) new_lt5(vxw110, vxw100, bd) -> new_esEs8(new_compare8(vxw110, vxw100, bd), LT) new_lt10(vxw110, vxw100, ty_Bool) -> new_lt9(vxw110, vxw100) new_esEs22(vxw300, vxw4000, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs5(vxw300, vxw4000, bda, bdb, bdc) new_ltEs18(vxw112, vxw102, app(app(ty_@2, ccb), ccc)) -> new_ltEs14(vxw112, vxw102, ccb, ccc) new_ltEs20(vxw11, vxw10, app(ty_Ratio, gc)) -> new_ltEs5(vxw11, vxw10, gc) new_lt19(vxw110, vxw100) -> new_esEs8(new_compare19(vxw110, vxw100), LT) new_compare5([], [], be) -> EQ new_sr0(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) new_esEs21(vxw301, vxw4001, app(ty_Ratio, bbf)) -> new_esEs14(vxw301, vxw4001, bbf) new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_@2, cga), cgb), cfd) -> new_ltEs14(vxw110, vxw100, cga, cgb) new_esEs29(vxw30, vxw400, ty_Char) -> new_esEs16(vxw30, vxw400) new_esEs4(Left(vxw300), Left(vxw4000), app(ty_Maybe, ccf), gf) -> new_esEs7(vxw300, vxw4000, ccf) new_compare24(vxw110, vxw100, True, da, db, dc) -> EQ new_compare18(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare15(new_sr(vxw110, Pos(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_lt20(vxw110, vxw100, ty_Double) -> new_lt16(vxw110, vxw100) new_lt10(vxw110, vxw100, app(ty_Ratio, bhh)) -> new_lt14(vxw110, vxw100, bhh) new_esEs25(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) new_ltEs10(Left(vxw110), Right(vxw100), cge, cfd) -> True new_lt10(vxw110, vxw100, ty_Double) -> new_lt16(vxw110, vxw100) new_compare114(vxw110, vxw100, True, bd) -> LT new_ltEs9(Nothing, Just(vxw100), bdf) -> True new_ltEs10(Right(vxw110), Right(vxw100), cge, ty_Int) -> new_ltEs15(vxw110, vxw100) new_asAs(True, vxw35) -> vxw35 new_esEs25(vxw300, vxw4000, app(ty_Ratio, bha)) -> new_esEs14(vxw300, vxw4000, bha) new_esEs27(vxw110, vxw100, app(ty_[], caa)) -> new_esEs13(vxw110, vxw100, caa) new_ltEs19(vxw111, vxw101, ty_Int) -> new_ltEs15(vxw111, vxw101) new_esEs29(vxw30, vxw400, ty_Float) -> new_esEs17(vxw30, vxw400) new_lt10(vxw110, vxw100, app(ty_[], caa)) -> new_lt18(vxw110, vxw100, caa) new_esEs16(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) new_esEs4(Left(vxw300), Left(vxw4000), app(app(ty_Either, ccg), cch), gf) -> new_esEs4(vxw300, vxw4000, ccg, cch) new_ltEs20(vxw11, vxw10, app(app(ty_Either, cge), cfd)) -> new_ltEs10(vxw11, vxw10, cge, cfd) new_esEs27(vxw110, vxw100, ty_Integer) -> new_esEs12(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), ge, app(ty_Maybe, cdh)) -> new_esEs7(vxw300, vxw4000, cdh) new_esEs4(Right(vxw300), Right(vxw4000), ge, app(app(ty_@2, cec), ced)) -> new_esEs6(vxw300, vxw4000, cec, ced) new_esEs9(vxw301, vxw4001, app(ty_Maybe, df)) -> new_esEs7(vxw301, vxw4001, df) new_compare111(vxw110, vxw100, False, hd, he) -> GT new_esEs7(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs17(vxw300, vxw4000) new_compare9(vxw110, vxw100, ty_Double) -> new_compare17(vxw110, vxw100) new_esEs22(vxw300, vxw4000, ty_Int) -> new_esEs11(vxw300, vxw4000) new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) new_lt20(vxw110, vxw100, ty_Char) -> new_lt7(vxw110, vxw100) new_esEs9(vxw301, vxw4001, ty_Int) -> new_esEs11(vxw301, vxw4001) new_primCompAux00(vxw55, EQ) -> vxw55 new_esEs20(vxw302, vxw4002, app(app(ty_Either, hg), hh)) -> new_esEs4(vxw302, vxw4002, hg, hh) new_sr(vxw300, vxw4001) -> new_primMulInt(vxw300, vxw4001) new_lt7(vxw110, vxw100) -> new_esEs8(new_compare11(vxw110, vxw100), LT) new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_Either, bfb), bfc)) -> new_esEs4(vxw300, vxw4000, bfb, bfc) new_esEs27(vxw110, vxw100, app(app(ty_@2, bdd), bde)) -> new_esEs6(vxw110, vxw100, bdd, bde) new_compare23(vxw110, vxw100, True) -> EQ new_lt14(vxw110, vxw100, bhh) -> new_esEs8(new_compare13(vxw110, vxw100, bhh), LT) new_ltEs9(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs4(vxw110, vxw100, bea, beb, bec) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) new_lt20(vxw110, vxw100, ty_Int) -> new_lt6(vxw110, vxw100) new_ltEs12(vxw11, vxw10) -> new_not(new_esEs8(new_compare11(vxw11, vxw10), GT)) new_ltEs10(Right(vxw110), Right(vxw100), cge, ty_@0) -> new_ltEs8(vxw110, vxw100) new_esEs25(vxw300, vxw4000, app(app(ty_Either, bgd), bge)) -> new_esEs4(vxw300, vxw4000, bgd, bge) new_ltEs18(vxw112, vxw102, app(ty_Ratio, cca)) -> new_ltEs5(vxw112, vxw102, cca) new_ltEs18(vxw112, vxw102, ty_Int) -> new_ltEs15(vxw112, vxw102) new_ltEs13(EQ, LT) -> False new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs16(vxw301, vxw4001) new_esEs4(Right(vxw300), Right(vxw4000), ge, app(app(ty_Either, cea), ceb)) -> new_esEs4(vxw300, vxw4000, cea, ceb) new_esEs29(vxw30, vxw400, app(ty_Ratio, gh)) -> new_esEs14(vxw30, vxw400, gh) new_esEs28(vxw110, vxw100, app(app(ty_@2, dah), dba)) -> new_esEs6(vxw110, vxw100, dah, dba) new_esEs7(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs15(vxw300, vxw4000) new_esEs28(vxw110, vxw100, ty_Integer) -> new_esEs12(vxw110, vxw100) new_lt11(vxw111, vxw101, app(ty_[], cbc)) -> new_lt18(vxw111, vxw101, cbc) new_esEs23(vxw301, vxw4001, ty_Integer) -> new_esEs12(vxw301, vxw4001) new_esEs29(vxw30, vxw400, app(app(ty_Either, ge), gf)) -> new_esEs4(vxw30, vxw400, ge, gf) new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False new_ltEs7(True, True) -> True new_esEs20(vxw302, vxw4002, ty_Char) -> new_esEs16(vxw302, vxw4002) new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs21(vxw301, vxw4001, app(ty_Maybe, bah)) -> new_esEs7(vxw301, vxw4001, bah) new_ltEs18(vxw112, vxw102, app(ty_[], cce)) -> new_ltEs6(vxw112, vxw102, cce) new_esEs25(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) new_lt11(vxw111, vxw101, app(ty_Maybe, cbb)) -> new_lt5(vxw111, vxw101, cbb) new_compare9(vxw110, vxw100, ty_Char) -> new_compare11(vxw110, vxw100) new_ltEs10(Right(vxw110), Right(vxw100), cge, ty_Float) -> new_ltEs17(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), ge, ty_Int) -> new_esEs11(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, ty_Ordering) -> new_ltEs13(vxw111, vxw101) new_esEs4(Left(vxw300), Left(vxw4000), ty_Integer, gf) -> new_esEs12(vxw300, vxw4000) new_lt20(vxw110, vxw100, ty_Bool) -> new_lt9(vxw110, vxw100) new_esEs26(vxw111, vxw101, ty_Ordering) -> new_esEs8(vxw111, vxw101) new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False new_ltEs9(Just(vxw110), Just(vxw100), app(ty_Maybe, beg)) -> new_ltEs9(vxw110, vxw100, beg) new_ltEs18(vxw112, vxw102, app(app(ty_Either, cbd), cbe)) -> new_ltEs10(vxw112, vxw102, cbd, cbe) new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) new_lt20(vxw110, vxw100, app(ty_Ratio, dag)) -> new_lt14(vxw110, vxw100, dag) new_esEs28(vxw110, vxw100, app(ty_[], dbc)) -> new_esEs13(vxw110, vxw100, dbc) new_esEs20(vxw302, vxw4002, ty_Float) -> new_esEs17(vxw302, vxw4002) new_lt4(vxw110, vxw100) -> new_esEs8(new_compare6(vxw110, vxw100), LT) new_esEs26(vxw111, vxw101, app(ty_Maybe, cbb)) -> new_esEs7(vxw111, vxw101, cbb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs25(vxw300, vxw4000, ty_Int) -> new_esEs11(vxw300, vxw4000) new_ltEs19(vxw111, vxw101, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs4(vxw111, vxw101, dbf, dbg, dbh) new_esEs22(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) new_ltEs20(vxw11, vxw10, ty_Ordering) -> new_ltEs13(vxw11, vxw10) new_lt20(vxw110, vxw100, ty_Integer) -> new_lt4(vxw110, vxw100) new_compare110(vxw110, vxw100, True, da, db, dc) -> LT new_ltEs15(vxw11, vxw10) -> new_not(new_esEs8(new_compare15(vxw11, vxw10), GT)) new_esEs27(vxw110, vxw100, app(ty_Maybe, bd)) -> new_esEs7(vxw110, vxw100, bd) new_lt20(vxw110, vxw100, app(app(ty_@2, dah), dba)) -> new_lt15(vxw110, vxw100, dah, dba) new_lt11(vxw111, vxw101, ty_Char) -> new_lt7(vxw111, vxw101) new_compare9(vxw110, vxw100, app(ty_Maybe, cf)) -> new_compare8(vxw110, vxw100, cf) new_compare9(vxw110, vxw100, ty_@0) -> new_compare19(vxw110, vxw100) new_esEs4(Right(vxw300), Right(vxw4000), ge, ty_Ordering) -> new_esEs8(vxw300, vxw4000) new_not(False) -> True new_lt11(vxw111, vxw101, ty_Double) -> new_lt16(vxw111, vxw101) new_esEs4(Right(vxw300), Right(vxw4000), ge, ty_Float) -> new_esEs17(vxw300, vxw4000) new_ltEs10(Right(vxw110), Right(vxw100), cge, app(ty_Ratio, chc)) -> new_ltEs5(vxw110, vxw100, chc) new_compare27(vxw110, vxw100, False, bd) -> new_compare114(vxw110, vxw100, new_ltEs9(vxw110, vxw100, bd), bd) new_esEs20(vxw302, vxw4002, app(ty_Maybe, hf)) -> new_esEs7(vxw302, vxw4002, hf) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs13(LT, LT) -> True new_esEs22(vxw300, vxw4000, app(ty_[], bcg)) -> new_esEs13(vxw300, vxw4000, bcg) new_esEs7(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs16(vxw300, vxw4000) new_compare9(vxw110, vxw100, ty_Float) -> new_compare18(vxw110, vxw100) new_compare9(vxw110, vxw100, app(ty_Ratio, cc)) -> new_compare13(vxw110, vxw100, cc) new_esEs20(vxw302, vxw4002, app(app(ty_@2, baa), bab)) -> new_esEs6(vxw302, vxw4002, baa, bab) new_esEs28(vxw110, vxw100, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs5(vxw110, vxw100, dad, dae, daf) new_esEs20(vxw302, vxw4002, ty_Bool) -> new_esEs15(vxw302, vxw4002) new_compare25(vxw110, vxw100, True) -> EQ new_lt10(vxw110, vxw100, app(ty_Maybe, bd)) -> new_lt5(vxw110, vxw100, bd) new_esEs28(vxw110, vxw100, ty_@0) -> new_esEs19(vxw110, vxw100) new_primPlusNat0(Succ(vxw450), vxw400100) -> Succ(Succ(new_primPlusNat1(vxw450, vxw400100))) new_ltEs5(vxw11, vxw10, gc) -> new_not(new_esEs8(new_compare13(vxw11, vxw10, gc), GT)) new_esEs27(vxw110, vxw100, ty_Int) -> new_esEs11(vxw110, vxw100) new_ltEs19(vxw111, vxw101, app(app(ty_Either, dbd), dbe)) -> new_ltEs10(vxw111, vxw101, dbd, dbe) new_compare12(vxw110, vxw100, da, db, dc) -> new_compare24(vxw110, vxw100, new_esEs5(vxw110, vxw100, da, db, dc), da, db, dc) new_esEs4(Right(vxw300), Right(vxw4000), ge, ty_@0) -> new_esEs19(vxw300, vxw4000) new_ltEs10(Right(vxw110), Right(vxw100), cge, app(app(ty_@2, chd), che)) -> new_ltEs14(vxw110, vxw100, chd, che) new_ltEs20(vxw11, vxw10, app(ty_[], be)) -> new_ltEs6(vxw11, vxw10, be) new_esEs29(vxw30, vxw400, app(app(ty_@2, dd), de)) -> new_esEs6(vxw30, vxw400, dd, de) new_ltEs18(vxw112, vxw102, ty_Float) -> new_ltEs17(vxw112, vxw102) new_esEs4(Left(vxw300), Left(vxw4000), app(ty_Ratio, cdd), gf) -> new_esEs14(vxw300, vxw4000, cdd) new_lt10(vxw110, vxw100, ty_@0) -> new_lt19(vxw110, vxw100) new_ltEs16(vxw11, vxw10) -> new_not(new_esEs8(new_compare17(vxw11, vxw10), GT)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(vxw300, vxw4000, ty_Integer) -> new_esEs12(vxw300, vxw4000) new_esEs25(vxw300, vxw4000, ty_Double) -> new_esEs18(vxw300, vxw4000) new_compare13(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare6(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) new_primPlusNat1(Zero, Zero) -> Zero new_esEs28(vxw110, vxw100, ty_Double) -> new_esEs18(vxw110, vxw100) new_esEs9(vxw301, vxw4001, ty_Char) -> new_esEs16(vxw301, vxw4001) new_ltEs10(Left(vxw110), Left(vxw100), app(app(app(ty_@3, cfe), cff), cfg), cfd) -> new_ltEs4(vxw110, vxw100, cfe, cff, cfg) new_esEs9(vxw301, vxw4001, ty_Integer) -> new_esEs12(vxw301, vxw4001) new_lt10(vxw110, vxw100, app(app(ty_Either, hd), he)) -> new_lt8(vxw110, vxw100, hd, he) new_esEs28(vxw110, vxw100, app(app(ty_Either, dab), dac)) -> new_esEs4(vxw110, vxw100, dab, dac) new_esEs27(vxw110, vxw100, app(ty_Ratio, bhh)) -> new_esEs14(vxw110, vxw100, bhh) new_compare24(vxw110, vxw100, False, da, db, dc) -> new_compare110(vxw110, vxw100, new_ltEs4(vxw110, vxw100, da, db, dc), da, db, dc) new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs12(vxw301, vxw4001) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_compare10(vxw110, vxw100, hd, he) -> new_compare28(vxw110, vxw100, new_esEs4(vxw110, vxw100, hd, he), hd, he) new_esEs26(vxw111, vxw101, app(app(ty_Either, cab), cac)) -> new_esEs4(vxw111, vxw101, cab, cac) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(vxw111, vxw101, ty_Double) -> new_esEs18(vxw111, vxw101) new_lt20(vxw110, vxw100, app(ty_[], dbc)) -> new_lt18(vxw110, vxw100, dbc) new_esEs26(vxw111, vxw101, ty_@0) -> new_esEs19(vxw111, vxw101) new_primMulNat0(Succ(vxw30000), Succ(vxw400100)) -> new_primPlusNat0(new_primMulNat0(vxw30000, Succ(vxw400100)), vxw400100) new_esEs18(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs11(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_esEs22(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, ty_Bool) -> new_esEs15(vxw300, vxw4000) new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) new_lt10(vxw110, vxw100, app(app(ty_@2, bdd), bde)) -> new_lt15(vxw110, vxw100, bdd, bde) new_esEs27(vxw110, vxw100, ty_Float) -> new_esEs17(vxw110, vxw100) new_ltEs13(LT, EQ) -> True new_esEs26(vxw111, vxw101, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(vxw111, vxw101, cad, cae, caf) new_esEs20(vxw302, vxw4002, ty_Integer) -> new_esEs12(vxw302, vxw4002) new_esEs26(vxw111, vxw101, app(ty_Ratio, cag)) -> new_esEs14(vxw111, vxw101, cag) new_compare13(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare15(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) new_ltEs10(Left(vxw110), Left(vxw100), app(ty_[], cgd), cfd) -> new_ltEs6(vxw110, vxw100, cgd) new_esEs28(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) new_compare28(vxw110, vxw100, False, hd, he) -> new_compare111(vxw110, vxw100, new_ltEs10(vxw110, vxw100, hd, he), hd, he) new_esEs27(vxw110, vxw100, ty_Double) -> new_esEs18(vxw110, vxw100) new_esEs4(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, cde), cdf), cdg), gf) -> new_esEs5(vxw300, vxw4000, cde, cdf, cdg) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Zero, Zero) -> True new_ltEs9(Just(vxw110), Nothing, bdf) -> False new_ltEs9(Nothing, Nothing, bdf) -> True new_esEs9(vxw301, vxw4001, ty_Bool) -> new_esEs15(vxw301, vxw4001) new_ltEs10(Left(vxw110), Left(vxw100), ty_Double, cfd) -> new_ltEs16(vxw110, vxw100) new_esEs29(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) new_ltEs10(Right(vxw110), Right(vxw100), cge, ty_Ordering) -> new_ltEs13(vxw110, vxw100) new_lt11(vxw111, vxw101, app(app(ty_Either, cab), cac)) -> new_lt8(vxw111, vxw101, cab, cac) new_lt11(vxw111, vxw101, app(ty_Ratio, cag)) -> new_lt14(vxw111, vxw101, cag) new_asAs(False, vxw35) -> False new_ltEs10(Right(vxw110), Right(vxw100), cge, ty_Char) -> new_ltEs12(vxw110, vxw100) new_ltEs20(vxw11, vxw10, ty_Float) -> new_ltEs17(vxw11, vxw10) new_ltEs9(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs16(vxw110, vxw100) new_esEs26(vxw111, vxw101, ty_Int) -> new_esEs11(vxw111, vxw101) new_esEs29(vxw30, vxw400, app(ty_Maybe, gd)) -> new_esEs7(vxw30, vxw400, gd) new_compare28(vxw110, vxw100, True, hd, he) -> EQ new_esEs27(vxw110, vxw100, app(app(ty_Either, hd), he)) -> new_esEs4(vxw110, vxw100, hd, he) new_compare17(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare15(new_sr(vxw110, Pos(vxw1010)), new_sr(Neg(vxw1110), vxw100)) new_compare17(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare15(new_sr(vxw110, Neg(vxw1010)), new_sr(Pos(vxw1110), vxw100)) new_esEs4(Left(vxw300), Left(vxw4000), ty_Char, gf) -> new_esEs16(vxw300, vxw4000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs20(vxw11, vxw10, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs4(vxw11, vxw10, bhe, bhf, bhg) new_esEs27(vxw110, vxw100, ty_@0) -> new_esEs19(vxw110, vxw100) new_esEs28(vxw110, vxw100, ty_Float) -> new_esEs17(vxw110, vxw100) new_lt20(vxw110, vxw100, app(ty_Maybe, dbb)) -> new_lt5(vxw110, vxw100, dbb) new_esEs20(vxw302, vxw4002, app(ty_[], bac)) -> new_esEs13(vxw302, vxw4002, bac) new_esEs11(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) new_ltEs19(vxw111, vxw101, ty_Float) -> new_ltEs17(vxw111, vxw101) new_lt11(vxw111, vxw101, ty_Bool) -> new_lt9(vxw111, vxw101) new_esEs27(vxw110, vxw100, app(app(app(ty_@3, da), db), dc)) -> new_esEs5(vxw110, vxw100, da, db, dc) new_lt12(vxw110, vxw100) -> new_esEs8(new_compare7(vxw110, vxw100), LT) The set Q consists of the following terms: new_esEs9(x0, x1, app(ty_[], x2)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs8(EQ, EQ) new_esEs9(x0, x1, ty_Float) new_compare11(Char(x0), Char(x1)) new_esEs26(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt15(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_Bool) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, LT) new_compare110(x0, x1, False, x2, x3, x4) new_primPlusNat1(Zero, Zero) new_lt11(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Ordering) new_lt10(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, ty_@0) new_compare115(x0, x1, True) new_lt18(x0, x1, x2) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_compare9(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_ltEs8(x0, x1) new_primMulNat0(Succ(x0), Zero) new_sr0(Integer(x0), Integer(x1)) new_lt20(x0, x1, ty_Ordering) new_lt11(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare9(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs13(EQ, EQ) new_esEs25(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs26(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare5(:(x0, x1), [], x2) new_ltEs18(x0, x1, ty_Char) new_lt5(x0, x1, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True, x2, x3) new_compare9(x0, x1, ty_Integer) new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare114(x0, x1, True, x2) new_ltEs9(Nothing, Nothing, x0) new_pePe(True, x0) new_lt20(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Integer) new_compare14(x0, x1, x2, x3) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_ltEs18(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_sr(x0, x1) new_esEs27(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, True, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt11(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_lt12(x0, x1) new_compare6(Integer(x0), Integer(x1)) new_esEs7(Nothing, Nothing, x0) new_lt11(x0, x1, ty_Double) new_lt11(x0, x1, ty_Char) new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt10(x0, x1, ty_Ordering) new_lt8(x0, x1, x2, x3) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_lt11(x0, x1, ty_Int) new_ltEs7(False, True) new_ltEs7(True, False) new_esEs15(False, False) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Bool) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Zero) new_compare9(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_esEs12(Integer(x0), Integer(x1)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(True, x0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_esEs13([], [], x0) new_ltEs20(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare12(x0, x1, x2, x3, x4) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs16(Char(x0), Char(x1)) new_compare9(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3, x4) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, ty_Integer) new_lt10(x0, x1, ty_Bool) new_compare15(x0, x1) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt14(x0, x1, x2) new_lt9(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs17(Float(x0, x1), Float(x2, x3)) new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_primPlusNat1(Zero, Succ(x0)) new_esEs20(x0, x1, ty_Int) new_esEs25(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs7(False, False) new_esEs20(x0, x1, ty_Float) new_compare25(x0, x1, False) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_@0) new_compare113(x0, x1, False, x2, x3) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(GT, GT) new_esEs26(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs27(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_lt20(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(LT, LT) new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Right(x0), Right(x1), x2, ty_Double) new_lt10(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_@0) new_compare13(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs15(True, True) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_ltEs10(Left(x0), Left(x1), ty_Double, x2) new_ltEs9(Just(x0), Just(x1), ty_Int) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(@0, @0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs18(x0, x1, ty_Float) new_compare115(x0, x1, False) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Double) new_compare8(x0, x1, x2) new_esEs21(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(Left(x0), Left(x1), ty_@0, x2) new_ltEs5(x0, x1, x2) new_esEs22(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare9(x0, x1, ty_@0) new_lt10(x0, x1, ty_Int) new_lt4(x0, x1) new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt16(x0, x1) new_primCompAux00(x0, GT) new_ltEs9(Just(x0), Just(x1), ty_Float) new_primMulNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_esEs9(x0, x1, ty_Double) new_compare7(x0, x1) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_asAs(False, x0) new_ltEs20(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Double) new_compare16(x0, x1) new_ltEs9(Just(x0), Just(x1), ty_Char) new_compare24(x0, x1, False, x2, x3, x4) new_lt11(x0, x1, ty_Float) new_compare5([], [], x0) new_primMulNat0(Zero, Zero) new_ltEs15(x0, x1) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(x0, x1) new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs28(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) new_lt10(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs22(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, ty_Char) new_compare27(x0, x1, False, x2) new_esEs10(x0, x1, ty_Ordering) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs28(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_@0) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Ordering) new_primMulInt(Neg(x0), Neg(x1)) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt11(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Right(x0), Right(x1), x2, ty_Float) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Just(x0), Just(x1), ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_compare13(:%(x0, x1), :%(x2, x3), ty_Integer) new_not(True) new_lt17(x0, x1) new_compare28(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_ltEs9(Just(x0), Just(x1), ty_Bool) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs27(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs10(x0, x1, ty_Char) new_ltEs10(Right(x0), Right(x1), x2, ty_@0) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(x0, x1, ty_Int) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_compare112(x0, x1, True) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_compare5(:(x0, x1), :(x2, x3), x4) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs13(LT, LT) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs21(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_esEs9(x0, x1, ty_@0) new_ltEs9(Just(x0), Nothing, x1) new_compare23(x0, x1, False) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs11(x0, x1) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs10(Right(x0), Left(x1), x2, x3) new_ltEs10(Left(x0), Right(x1), x2, x3) new_compare25(x0, x1, True) new_ltEs9(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs20(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Succ(x0), Zero) new_ltEs10(Right(x0), Right(x1), x2, ty_Char) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs20(x0, x1, ty_Double) new_primPlusNat0(Zero, x0) new_compare9(x0, x1, ty_Float) new_lt11(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare24(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(GT, GT) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs29(x0, x1, ty_Char) new_esEs8(LT, GT) new_esEs8(GT, LT) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_ltEs10(Left(x0), Left(x1), ty_Char, x2) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, False, x2, x3) new_esEs7(Nothing, Just(x0), x1) new_ltEs10(Right(x0), Right(x1), x2, ty_Int) new_ltEs18(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt10(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs23(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_lt6(x0, x1) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Nothing, x1) new_esEs25(x0, x1, ty_Integer) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(False, True) new_esEs15(True, False) new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) new_primEqNat0(Zero, Zero) new_esEs13(:(x0, x1), [], x2) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13([], :(x0, x1), x2) new_compare114(x0, x1, False, x2) new_ltEs20(x0, x1, ty_Char) new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_not(False) new_lt19(x0, x1) new_lt13(x0, x1, x2, x3, x4) new_ltEs10(Left(x0), Left(x1), ty_Float, x2) new_esEs14(:%(x0, x1), :%(x2, x3), x4) new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_ltEs7(True, True) new_ltEs9(Just(x0), Just(x1), ty_Double) new_ltEs9(Nothing, Just(x0), x1) new_ltEs9(Just(x0), Just(x1), ty_@0) new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare5([], :(x0, x1), x2) new_primCompAux00(x0, EQ) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs22(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_compare9(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs12(x0, x1) new_esEs21(x0, x1, ty_Int) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs19(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_pePe(False, x0) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_compare26(x0, x1, False, x2, x3) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Integer) new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs19(@0, @0) new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare9(x0, x1, app(ty_[], x2)) new_lt7(x0, x1) new_esEs9(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Int) new_compare112(x0, x1, False) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs10(Left(x0), Left(x1), ty_Int, x2) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare9(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare113(x0, x1, True, x2, x3) new_lt11(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_esEs25(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs21(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) 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_insertBy(Just(vxw30), :(Nothing, vxw41), ba) -> new_insertBy(Just(vxw30), vxw41, ba) The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3 *new_insertBy(Just(vxw30), :(Just(vxw400), vxw41), ba) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, ba), ba) The graph contains the following edges 2 > 1, 1 > 2, 2 > 3, 3 >= 5 *new_insertBy00(vxw19, vxw20, vxw21, False, bc) -> new_insertBy(Just(vxw20), vxw21, bc) The graph contains the following edges 3 >= 2, 5 >= 3 *new_insertBy0(vxw10, vxw11, vxw12, False, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, bb), bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 5 >= 5 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(ty_Either, bcc), bcd), bcb) -> new_esEs1(vxw301, vxw4001, bcc, bcd) new_esEs0(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vxw300, vxw4000, db, dc, dd) new_esEs1(Left(vxw300), Left(vxw4000), app(app(ty_Either, dg), dh), df) -> new_esEs1(vxw300, vxw4000, dg, dh) new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, be), bf)) -> new_esEs2(vxw300, vxw4000, be, bf) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, bac), bad), bae), he) -> new_esEs3(vxw300, vxw4000, bac, bad, bae) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(ty_Maybe, bah)) -> new_esEs0(vxw302, vxw4002, bah) new_esEs1(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ed), ee), ef), df) -> new_esEs3(vxw300, vxw4000, ed, ee, ef) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bdd), bde), bag, bcb) -> new_esEs1(vxw300, vxw4000, bdd, bde) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, bea), beb), bec), bag, bcb) -> new_esEs3(vxw300, vxw4000, bea, beb, bec) new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, bh), ca), cb)) -> new_esEs3(vxw300, vxw4000, bh, ca, cb) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(app(ty_@2, gf), gg)) -> new_esEs2(vxw301, vxw4001, gf, gg) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(ty_[], gh)) -> new_esEs(vxw301, vxw4001, gh) new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), ba) -> new_esEs(vxw301, vxw4001, ba) new_esEs0(Just(vxw300), Just(vxw4000), app(ty_[], da)) -> new_esEs(vxw300, vxw4000, da) new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bg)) -> new_esEs(vxw300, vxw4000, bg) new_esEs0(Just(vxw300), Just(vxw4000), app(app(ty_@2, cf), cg)) -> new_esEs2(vxw300, vxw4000, cf, cg) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, hd), he) -> new_esEs0(vxw300, vxw4000, hd) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs3(vxw302, vxw4002, bbf, bbg, bbh) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(ty_Maybe, bca), bcb) -> new_esEs0(vxw301, vxw4001, bca) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, hh), baa), he) -> new_esEs2(vxw300, vxw4000, hh, baa) new_esEs1(Right(vxw300), Right(vxw4000), eg, app(app(ty_@2, fc), fd)) -> new_esEs2(vxw300, vxw4000, fc, fd) new_esEs1(Right(vxw300), Right(vxw4000), eg, app(ty_Maybe, eh)) -> new_esEs0(vxw300, vxw4000, eh) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, bdc), bag, bcb) -> new_esEs0(vxw300, vxw4000, bdc) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(ty_Either, bba), bbb)) -> new_esEs1(vxw302, vxw4002, bba, bbb) new_esEs1(Left(vxw300), Left(vxw4000), app(ty_[], ec), df) -> new_esEs(vxw300, vxw4000, ec) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vxw301, vxw4001, bce, bcf) new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, bc), bd)) -> new_esEs1(vxw300, vxw4000, bc, bd) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vxw302, vxw4002, bbc, bbd) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vxw301, vxw4001, ha, hb, hc) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(app(ty_@3, bch), bda), bdb), bcb) -> new_esEs3(vxw301, vxw4001, bch, bda, bdb) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(ty_Maybe, gc)) -> new_esEs0(vxw301, vxw4001, gc) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(ty_[], bcg), bcb) -> new_esEs(vxw301, vxw4001, bcg) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, bdf), bdg), bag, bcb) -> new_esEs2(vxw300, vxw4000, bdf, bdg) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(ty_[], bbe)) -> new_esEs(vxw302, vxw4002, bbe) new_esEs1(Left(vxw300), Left(vxw4000), app(app(ty_@2, ea), eb), df) -> new_esEs2(vxw300, vxw4000, ea, eb) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], bab), he) -> new_esEs(vxw300, vxw4000, bab) new_esEs0(Just(vxw300), Just(vxw4000), app(app(ty_Either, cd), ce)) -> new_esEs1(vxw300, vxw4000, cd, ce) new_esEs0(Just(vxw300), Just(vxw4000), app(ty_Maybe, cc)) -> new_esEs0(vxw300, vxw4000, cc) new_esEs1(Right(vxw300), Right(vxw4000), eg, app(ty_[], ff)) -> new_esEs(vxw300, vxw4000, ff) new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bdh), bag, bcb) -> new_esEs(vxw300, vxw4000, bdh) new_esEs1(Right(vxw300), Right(vxw4000), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(vxw300, vxw4000, fg, fh, ga) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, hf), hg), he) -> new_esEs1(vxw300, vxw4000, hf, hg) new_esEs1(Left(vxw300), Left(vxw4000), app(ty_Maybe, de), df) -> new_esEs0(vxw300, vxw4000, de) new_esEs1(Right(vxw300), Right(vxw4000), eg, app(app(ty_Either, fa), fb)) -> new_esEs1(vxw300, vxw4000, fa, fb) new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(app(ty_Either, gd), ge)) -> new_esEs1(vxw301, vxw4001, gd, ge) new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bb)) -> new_esEs0(vxw300, vxw4000, bb) R is empty. Q is empty. 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_esEs0(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vxw300, vxw4000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, bh), ca), cb)) -> new_esEs3(vxw300, vxw4000, bh, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Just(vxw300), Just(vxw4000), app(ty_Maybe, cc)) -> new_esEs0(vxw300, vxw4000, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bb)) -> new_esEs0(vxw300, vxw4000, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(vxw300), Just(vxw4000), app(app(ty_Either, cd), ce)) -> new_esEs1(vxw300, vxw4000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, bc), bd)) -> new_esEs1(vxw300, vxw4000, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(vxw300), Just(vxw4000), app(ty_[], da)) -> new_esEs(vxw300, vxw4000, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(vxw300), Just(vxw4000), app(app(ty_@2, cf), cg)) -> new_esEs2(vxw300, vxw4000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, be), bf)) -> new_esEs2(vxw300, vxw4000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ed), ee), ef), df) -> new_esEs3(vxw300, vxw4000, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Right(vxw300), Right(vxw4000), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(vxw300, vxw4000, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(Right(vxw300), Right(vxw4000), eg, app(ty_Maybe, eh)) -> new_esEs0(vxw300, vxw4000, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(vxw300), Left(vxw4000), app(ty_Maybe, de), df) -> new_esEs0(vxw300, vxw4000, de) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Left(vxw300), Left(vxw4000), app(app(ty_Either, dg), dh), df) -> new_esEs1(vxw300, vxw4000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vxw300), Right(vxw4000), eg, app(app(ty_Either, fa), fb)) -> new_esEs1(vxw300, vxw4000, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vxw300), Left(vxw4000), app(ty_[], ec), df) -> new_esEs(vxw300, vxw4000, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Right(vxw300), Right(vxw4000), eg, app(ty_[], ff)) -> new_esEs(vxw300, vxw4000, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Right(vxw300), Right(vxw4000), eg, app(app(ty_@2, fc), fd)) -> new_esEs2(vxw300, vxw4000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vxw300), Left(vxw4000), app(app(ty_@2, ea), eb), df) -> new_esEs2(vxw300, vxw4000, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, bea), beb), bec), bag, bcb) -> new_esEs3(vxw300, vxw4000, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs3(vxw302, vxw4002, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(app(ty_@3, bch), bda), bdb), bcb) -> new_esEs3(vxw301, vxw4001, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, bac), bad), bae), he) -> new_esEs3(vxw300, vxw4000, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vxw301, vxw4001, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(ty_Maybe, bah)) -> new_esEs0(vxw302, vxw4002, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(ty_Maybe, bca), bcb) -> new_esEs0(vxw301, vxw4001, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, bdc), bag, bcb) -> new_esEs0(vxw300, vxw4000, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(ty_Either, bcc), bcd), bcb) -> new_esEs1(vxw301, vxw4001, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bdd), bde), bag, bcb) -> new_esEs1(vxw300, vxw4000, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(ty_Either, bba), bbb)) -> new_esEs1(vxw302, vxw4002, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(ty_[], bcg), bcb) -> new_esEs(vxw301, vxw4001, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(ty_[], bbe)) -> new_esEs(vxw302, vxw4002, bbe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bdh), bag, bcb) -> new_esEs(vxw300, vxw4000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vxw301, vxw4001, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vxw302, vxw4002, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, bdf), bdg), bag, bcb) -> new_esEs2(vxw300, vxw4000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, hd), he) -> new_esEs0(vxw300, vxw4000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(ty_Maybe, gc)) -> new_esEs0(vxw301, vxw4001, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, hf), hg), he) -> new_esEs1(vxw300, vxw4000, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(app(ty_Either, gd), ge)) -> new_esEs1(vxw301, vxw4001, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(ty_[], gh)) -> new_esEs(vxw301, vxw4001, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], bab), he) -> new_esEs(vxw300, vxw4000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), gb, app(app(ty_@2, gf), gg)) -> new_esEs2(vxw301, vxw4001, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, hh), baa), he) -> new_esEs2(vxw300, vxw4000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), ba) -> new_esEs(vxw301, vxw4001, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bg)) -> new_esEs(vxw300, vxw4000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vxw4500), Succ(vxw4001000)) -> new_primPlusNat(vxw4500, vxw4001000) R is empty. Q is empty. 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_primPlusNat(Succ(vxw4500), Succ(vxw4001000)) -> new_primPlusNat(vxw4500, vxw4001000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES ---------------------------------------- (33) 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. ---------------------------------------- (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_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (35) YES