/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/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, 4 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 94 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 ---------------------------------------- (0) Obligation: mainModule Main module Main where { 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; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { 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 Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { 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; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "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 zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " 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 vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { 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 zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " 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 "reduce2D vwv vww = gcd vwv vww; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Main where { 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 Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="compare",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="compare vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];1661[label="vwx3/Nothing",fontsize=10,color="white",style="solid",shape="box"];6 -> 1661[label="",style="solid", color="burlywood", weight=9]; 1661 -> 7[label="",style="solid", color="burlywood", weight=3]; 1662[label="vwx3/Just vwx30",fontsize=10,color="white",style="solid",shape="box"];6 -> 1662[label="",style="solid", color="burlywood", weight=9]; 1662 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="compare2 Nothing vwx4 (Nothing == vwx4)",fontsize=16,color="burlywood",shape="box"];1663[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];7 -> 1663[label="",style="solid", color="burlywood", weight=9]; 1663 -> 9[label="",style="solid", color="burlywood", weight=3]; 1664[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];7 -> 1664[label="",style="solid", color="burlywood", weight=9]; 1664 -> 10[label="",style="solid", color="burlywood", weight=3]; 8[label="compare2 (Just vwx30) vwx4 (Just vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];1665[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];8 -> 1665[label="",style="solid", color="burlywood", weight=9]; 1665 -> 11[label="",style="solid", color="burlywood", weight=3]; 1666[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];8 -> 1666[label="",style="solid", color="burlywood", weight=9]; 1666 -> 12[label="",style="solid", color="burlywood", weight=3]; 9[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];9 -> 13[label="",style="solid", color="black", weight=3]; 10[label="compare2 Nothing (Just vwx40) (Nothing == Just vwx40)",fontsize=16,color="black",shape="box"];10 -> 14[label="",style="solid", color="black", weight=3]; 11[label="compare2 (Just vwx30) Nothing (Just vwx30 == Nothing)",fontsize=16,color="black",shape="box"];11 -> 15[label="",style="solid", color="black", weight=3]; 12[label="compare2 (Just vwx30) (Just vwx40) (Just vwx30 == Just vwx40)",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 13[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];13 -> 17[label="",style="solid", color="black", weight=3]; 14[label="compare2 Nothing (Just vwx40) False",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 15[label="compare2 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 16 -> 20[label="",style="dashed", color="red", weight=0]; 16[label="compare2 (Just vwx30) (Just vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];16 -> 21[label="",style="dashed", color="magenta", weight=3]; 16 -> 22[label="",style="dashed", color="magenta", weight=3]; 16 -> 23[label="",style="dashed", color="magenta", weight=3]; 17[label="EQ",fontsize=16,color="green",shape="box"];18[label="compare1 Nothing (Just vwx40) (Nothing <= Just vwx40)",fontsize=16,color="black",shape="box"];18 -> 24[label="",style="solid", color="black", weight=3]; 19[label="compare1 (Just vwx30) Nothing (Just vwx30 <= Nothing)",fontsize=16,color="black",shape="box"];19 -> 25[label="",style="solid", color="black", weight=3]; 21[label="vwx40",fontsize=16,color="green",shape="box"];22[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];1667[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1667[label="",style="solid", color="blue", weight=9]; 1667 -> 26[label="",style="solid", color="blue", weight=3]; 1668[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1668[label="",style="solid", color="blue", weight=9]; 1668 -> 27[label="",style="solid", color="blue", weight=3]; 1669[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1669[label="",style="solid", color="blue", weight=9]; 1669 -> 28[label="",style="solid", color="blue", weight=3]; 1670[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1670[label="",style="solid", color="blue", weight=9]; 1670 -> 29[label="",style="solid", color="blue", weight=3]; 1671[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1671[label="",style="solid", color="blue", weight=9]; 1671 -> 30[label="",style="solid", color="blue", weight=3]; 1672[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1672[label="",style="solid", color="blue", weight=9]; 1672 -> 31[label="",style="solid", color="blue", weight=3]; 1673[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1673[label="",style="solid", color="blue", weight=9]; 1673 -> 32[label="",style="solid", color="blue", weight=3]; 1674[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1674[label="",style="solid", color="blue", weight=9]; 1674 -> 33[label="",style="solid", color="blue", weight=3]; 1675[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1675[label="",style="solid", color="blue", weight=9]; 1675 -> 34[label="",style="solid", color="blue", weight=3]; 1676[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1676[label="",style="solid", color="blue", weight=9]; 1676 -> 35[label="",style="solid", color="blue", weight=3]; 1677[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1677[label="",style="solid", color="blue", weight=9]; 1677 -> 36[label="",style="solid", color="blue", weight=3]; 1678[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1678[label="",style="solid", color="blue", weight=9]; 1678 -> 37[label="",style="solid", color="blue", weight=3]; 1679[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1679[label="",style="solid", color="blue", weight=9]; 1679 -> 38[label="",style="solid", color="blue", weight=3]; 1680[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 1680[label="",style="solid", color="blue", weight=9]; 1680 -> 39[label="",style="solid", color="blue", weight=3]; 23[label="vwx30",fontsize=16,color="green",shape="box"];20[label="compare2 (Just vwx9) (Just vwx10) vwx11",fontsize=16,color="burlywood",shape="triangle"];1681[label="vwx11/False",fontsize=10,color="white",style="solid",shape="box"];20 -> 1681[label="",style="solid", color="burlywood", weight=9]; 1681 -> 40[label="",style="solid", color="burlywood", weight=3]; 1682[label="vwx11/True",fontsize=10,color="white",style="solid",shape="box"];20 -> 1682[label="",style="solid", color="burlywood", weight=9]; 1682 -> 41[label="",style="solid", color="burlywood", weight=3]; 24[label="compare1 Nothing (Just vwx40) True",fontsize=16,color="black",shape="box"];24 -> 42[label="",style="solid", color="black", weight=3]; 25[label="compare1 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];25 -> 43[label="",style="solid", color="black", weight=3]; 26[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1683[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];26 -> 1683[label="",style="solid", color="burlywood", weight=9]; 1683 -> 44[label="",style="solid", color="burlywood", weight=3]; 1684[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];26 -> 1684[label="",style="solid", color="burlywood", weight=9]; 1684 -> 45[label="",style="solid", color="burlywood", weight=3]; 27[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1685[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];27 -> 1685[label="",style="solid", color="burlywood", weight=9]; 1685 -> 46[label="",style="solid", color="burlywood", weight=3]; 1686[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];27 -> 1686[label="",style="solid", color="burlywood", weight=9]; 1686 -> 47[label="",style="solid", color="burlywood", weight=3]; 1687[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];27 -> 1687[label="",style="solid", color="burlywood", weight=9]; 1687 -> 48[label="",style="solid", color="burlywood", weight=3]; 28[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1688[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];28 -> 1688[label="",style="solid", color="burlywood", weight=9]; 1688 -> 49[label="",style="solid", color="burlywood", weight=3]; 29[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];29 -> 50[label="",style="solid", color="black", weight=3]; 30[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1689[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];30 -> 1689[label="",style="solid", color="burlywood", weight=9]; 1689 -> 51[label="",style="solid", color="burlywood", weight=3]; 1690[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];30 -> 1690[label="",style="solid", color="burlywood", weight=9]; 1690 -> 52[label="",style="solid", color="burlywood", weight=3]; 31[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1691[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];31 -> 1691[label="",style="solid", color="burlywood", weight=9]; 1691 -> 53[label="",style="solid", color="burlywood", weight=3]; 1692[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];31 -> 1692[label="",style="solid", color="burlywood", weight=9]; 1692 -> 54[label="",style="solid", color="burlywood", weight=3]; 32[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1693[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];32 -> 1693[label="",style="solid", color="burlywood", weight=9]; 1693 -> 55[label="",style="solid", color="burlywood", weight=3]; 33[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1694[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];33 -> 1694[label="",style="solid", color="burlywood", weight=9]; 1694 -> 56[label="",style="solid", color="burlywood", weight=3]; 34[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1695[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];34 -> 1695[label="",style="solid", color="burlywood", weight=9]; 1695 -> 57[label="",style="solid", color="burlywood", weight=3]; 35[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1696[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];35 -> 1696[label="",style="solid", color="burlywood", weight=9]; 1696 -> 58[label="",style="solid", color="burlywood", weight=3]; 1697[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];35 -> 1697[label="",style="solid", color="burlywood", weight=9]; 1697 -> 59[label="",style="solid", color="burlywood", weight=3]; 36[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];36 -> 60[label="",style="solid", color="black", weight=3]; 37[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];37 -> 61[label="",style="solid", color="black", weight=3]; 38[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1698[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];38 -> 1698[label="",style="solid", color="burlywood", weight=9]; 1698 -> 62[label="",style="solid", color="burlywood", weight=3]; 39[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];39 -> 63[label="",style="solid", color="black", weight=3]; 40[label="compare2 (Just vwx9) (Just vwx10) False",fontsize=16,color="black",shape="box"];40 -> 64[label="",style="solid", color="black", weight=3]; 41[label="compare2 (Just vwx9) (Just vwx10) True",fontsize=16,color="black",shape="box"];41 -> 65[label="",style="solid", color="black", weight=3]; 42[label="LT",fontsize=16,color="green",shape="box"];43[label="compare0 (Just vwx30) Nothing otherwise",fontsize=16,color="black",shape="box"];43 -> 66[label="",style="solid", color="black", weight=3]; 44[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];1699[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];44 -> 1699[label="",style="solid", color="burlywood", weight=9]; 1699 -> 67[label="",style="solid", color="burlywood", weight=3]; 1700[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];44 -> 1700[label="",style="solid", color="burlywood", weight=9]; 1700 -> 68[label="",style="solid", color="burlywood", weight=3]; 45[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];1701[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];45 -> 1701[label="",style="solid", color="burlywood", weight=9]; 1701 -> 69[label="",style="solid", color="burlywood", weight=3]; 1702[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];45 -> 1702[label="",style="solid", color="burlywood", weight=9]; 1702 -> 70[label="",style="solid", color="burlywood", weight=3]; 46[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];1703[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];46 -> 1703[label="",style="solid", color="burlywood", weight=9]; 1703 -> 71[label="",style="solid", color="burlywood", weight=3]; 1704[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];46 -> 1704[label="",style="solid", color="burlywood", weight=9]; 1704 -> 72[label="",style="solid", color="burlywood", weight=3]; 1705[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];46 -> 1705[label="",style="solid", color="burlywood", weight=9]; 1705 -> 73[label="",style="solid", color="burlywood", weight=3]; 47[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];1706[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];47 -> 1706[label="",style="solid", color="burlywood", weight=9]; 1706 -> 74[label="",style="solid", color="burlywood", weight=3]; 1707[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];47 -> 1707[label="",style="solid", color="burlywood", weight=9]; 1707 -> 75[label="",style="solid", color="burlywood", weight=3]; 1708[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];47 -> 1708[label="",style="solid", color="burlywood", weight=9]; 1708 -> 76[label="",style="solid", color="burlywood", weight=3]; 48[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];1709[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];48 -> 1709[label="",style="solid", color="burlywood", weight=9]; 1709 -> 77[label="",style="solid", color="burlywood", weight=3]; 1710[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];48 -> 1710[label="",style="solid", color="burlywood", weight=9]; 1710 -> 78[label="",style="solid", color="burlywood", weight=3]; 1711[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];48 -> 1711[label="",style="solid", color="burlywood", weight=9]; 1711 -> 79[label="",style="solid", color="burlywood", weight=3]; 49[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];1712[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];49 -> 1712[label="",style="solid", color="burlywood", weight=9]; 1712 -> 80[label="",style="solid", color="burlywood", weight=3]; 50[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1713[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];50 -> 1713[label="",style="solid", color="burlywood", weight=9]; 1713 -> 81[label="",style="solid", color="burlywood", weight=3]; 51[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];1714[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];51 -> 1714[label="",style="solid", color="burlywood", weight=9]; 1714 -> 82[label="",style="solid", color="burlywood", weight=3]; 1715[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];51 -> 1715[label="",style="solid", color="burlywood", weight=9]; 1715 -> 83[label="",style="solid", color="burlywood", weight=3]; 52[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];1716[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];52 -> 1716[label="",style="solid", color="burlywood", weight=9]; 1716 -> 84[label="",style="solid", color="burlywood", weight=3]; 1717[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];52 -> 1717[label="",style="solid", color="burlywood", weight=9]; 1717 -> 85[label="",style="solid", color="burlywood", weight=3]; 53[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];1718[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];53 -> 1718[label="",style="solid", color="burlywood", weight=9]; 1718 -> 86[label="",style="solid", color="burlywood", weight=3]; 1719[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];53 -> 1719[label="",style="solid", color="burlywood", weight=9]; 1719 -> 87[label="",style="solid", color="burlywood", weight=3]; 54[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];1720[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];54 -> 1720[label="",style="solid", color="burlywood", weight=9]; 1720 -> 88[label="",style="solid", color="burlywood", weight=3]; 1721[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];54 -> 1721[label="",style="solid", color="burlywood", weight=9]; 1721 -> 89[label="",style="solid", color="burlywood", weight=3]; 55[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];1722[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];55 -> 1722[label="",style="solid", color="burlywood", weight=9]; 1722 -> 90[label="",style="solid", color="burlywood", weight=3]; 56[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];1723[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];56 -> 1723[label="",style="solid", color="burlywood", weight=9]; 1723 -> 91[label="",style="solid", color="burlywood", weight=3]; 57[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];1724[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];57 -> 1724[label="",style="solid", color="burlywood", weight=9]; 1724 -> 92[label="",style="solid", color="burlywood", weight=3]; 58[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];1725[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];58 -> 1725[label="",style="solid", color="burlywood", weight=9]; 1725 -> 93[label="",style="solid", color="burlywood", weight=3]; 1726[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];58 -> 1726[label="",style="solid", color="burlywood", weight=9]; 1726 -> 94[label="",style="solid", color="burlywood", weight=3]; 59[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];1727[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];59 -> 1727[label="",style="solid", color="burlywood", weight=9]; 1727 -> 95[label="",style="solid", color="burlywood", weight=3]; 1728[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];59 -> 1728[label="",style="solid", color="burlywood", weight=9]; 1728 -> 96[label="",style="solid", color="burlywood", weight=3]; 60[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1729[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];60 -> 1729[label="",style="solid", color="burlywood", weight=9]; 1729 -> 97[label="",style="solid", color="burlywood", weight=3]; 61[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1730[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];61 -> 1730[label="",style="solid", color="burlywood", weight=9]; 1730 -> 98[label="",style="solid", color="burlywood", weight=3]; 1731[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];61 -> 1731[label="",style="solid", color="burlywood", weight=9]; 1731 -> 99[label="",style="solid", color="burlywood", weight=3]; 62[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];1732[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];62 -> 1732[label="",style="solid", color="burlywood", weight=9]; 1732 -> 100[label="",style="solid", color="burlywood", weight=3]; 63[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1733[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];63 -> 1733[label="",style="solid", color="burlywood", weight=9]; 1733 -> 101[label="",style="solid", color="burlywood", weight=3]; 64 -> 141[label="",style="dashed", color="red", weight=0]; 64[label="compare1 (Just vwx9) (Just vwx10) (Just vwx9 <= Just vwx10)",fontsize=16,color="magenta"];64 -> 142[label="",style="dashed", color="magenta", weight=3]; 64 -> 143[label="",style="dashed", color="magenta", weight=3]; 64 -> 144[label="",style="dashed", color="magenta", weight=3]; 65[label="EQ",fontsize=16,color="green",shape="box"];66[label="compare0 (Just vwx30) Nothing True",fontsize=16,color="black",shape="box"];66 -> 103[label="",style="solid", color="black", weight=3]; 67[label="False == False",fontsize=16,color="black",shape="box"];67 -> 104[label="",style="solid", color="black", weight=3]; 68[label="False == True",fontsize=16,color="black",shape="box"];68 -> 105[label="",style="solid", color="black", weight=3]; 69[label="True == False",fontsize=16,color="black",shape="box"];69 -> 106[label="",style="solid", color="black", weight=3]; 70[label="True == True",fontsize=16,color="black",shape="box"];70 -> 107[label="",style="solid", color="black", weight=3]; 71[label="LT == LT",fontsize=16,color="black",shape="box"];71 -> 108[label="",style="solid", color="black", weight=3]; 72[label="LT == EQ",fontsize=16,color="black",shape="box"];72 -> 109[label="",style="solid", color="black", weight=3]; 73[label="LT == GT",fontsize=16,color="black",shape="box"];73 -> 110[label="",style="solid", color="black", weight=3]; 74[label="EQ == LT",fontsize=16,color="black",shape="box"];74 -> 111[label="",style="solid", color="black", weight=3]; 75[label="EQ == EQ",fontsize=16,color="black",shape="box"];75 -> 112[label="",style="solid", color="black", weight=3]; 76[label="EQ == GT",fontsize=16,color="black",shape="box"];76 -> 113[label="",style="solid", color="black", weight=3]; 77[label="GT == LT",fontsize=16,color="black",shape="box"];77 -> 114[label="",style="solid", color="black", weight=3]; 78[label="GT == EQ",fontsize=16,color="black",shape="box"];78 -> 115[label="",style="solid", color="black", weight=3]; 79[label="GT == GT",fontsize=16,color="black",shape="box"];79 -> 116[label="",style="solid", color="black", weight=3]; 80[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];80 -> 117[label="",style="solid", color="black", weight=3]; 81[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1734[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];81 -> 1734[label="",style="solid", color="burlywood", weight=9]; 1734 -> 118[label="",style="solid", color="burlywood", weight=3]; 82[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];82 -> 119[label="",style="solid", color="black", weight=3]; 83[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];83 -> 120[label="",style="solid", color="black", weight=3]; 84[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];84 -> 121[label="",style="solid", color="black", weight=3]; 85[label="[] == []",fontsize=16,color="black",shape="box"];85 -> 122[label="",style="solid", color="black", weight=3]; 86[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];86 -> 123[label="",style="solid", color="black", weight=3]; 87[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];87 -> 124[label="",style="solid", color="black", weight=3]; 88[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];88 -> 125[label="",style="solid", color="black", weight=3]; 89[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];89 -> 126[label="",style="solid", color="black", weight=3]; 90[label="() == ()",fontsize=16,color="black",shape="box"];90 -> 127[label="",style="solid", color="black", weight=3]; 91[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];91 -> 128[label="",style="solid", color="black", weight=3]; 92[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];92 -> 129[label="",style="solid", color="black", weight=3]; 93[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];93 -> 130[label="",style="solid", color="black", weight=3]; 94[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];94 -> 131[label="",style="solid", color="black", weight=3]; 95[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];95 -> 132[label="",style="solid", color="black", weight=3]; 96[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];96 -> 133[label="",style="solid", color="black", weight=3]; 97[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1735[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];97 -> 1735[label="",style="solid", color="burlywood", weight=9]; 1735 -> 134[label="",style="solid", color="burlywood", weight=3]; 98[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1736[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];98 -> 1736[label="",style="solid", color="burlywood", weight=9]; 1736 -> 135[label="",style="solid", color="burlywood", weight=3]; 1737[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];98 -> 1737[label="",style="solid", color="burlywood", weight=9]; 1737 -> 136[label="",style="solid", color="burlywood", weight=3]; 99[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1738[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];99 -> 1738[label="",style="solid", color="burlywood", weight=9]; 1738 -> 137[label="",style="solid", color="burlywood", weight=3]; 1739[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];99 -> 1739[label="",style="solid", color="burlywood", weight=9]; 1739 -> 138[label="",style="solid", color="burlywood", weight=3]; 100[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];100 -> 139[label="",style="solid", color="black", weight=3]; 101[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1740[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];101 -> 1740[label="",style="solid", color="burlywood", weight=9]; 1740 -> 140[label="",style="solid", color="burlywood", weight=3]; 142[label="vwx10",fontsize=16,color="green",shape="box"];143[label="vwx9",fontsize=16,color="green",shape="box"];144[label="Just vwx9 <= Just vwx10",fontsize=16,color="black",shape="box"];144 -> 148[label="",style="solid", color="black", weight=3]; 141[label="compare1 (Just vwx16) (Just vwx17) vwx18",fontsize=16,color="burlywood",shape="triangle"];1741[label="vwx18/False",fontsize=10,color="white",style="solid",shape="box"];141 -> 1741[label="",style="solid", color="burlywood", weight=9]; 1741 -> 149[label="",style="solid", color="burlywood", weight=3]; 1742[label="vwx18/True",fontsize=10,color="white",style="solid",shape="box"];141 -> 1742[label="",style="solid", color="burlywood", weight=9]; 1742 -> 150[label="",style="solid", color="burlywood", weight=3]; 103[label="GT",fontsize=16,color="green",shape="box"];104[label="True",fontsize=16,color="green",shape="box"];105[label="False",fontsize=16,color="green",shape="box"];106[label="False",fontsize=16,color="green",shape="box"];107[label="True",fontsize=16,color="green",shape="box"];108[label="True",fontsize=16,color="green",shape="box"];109[label="False",fontsize=16,color="green",shape="box"];110[label="False",fontsize=16,color="green",shape="box"];111[label="False",fontsize=16,color="green",shape="box"];112[label="True",fontsize=16,color="green",shape="box"];113[label="False",fontsize=16,color="green",shape="box"];114[label="False",fontsize=16,color="green",shape="box"];115[label="False",fontsize=16,color="green",shape="box"];116[label="True",fontsize=16,color="green",shape="box"];117 -> 61[label="",style="dashed", color="red", weight=0]; 117[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];117 -> 151[label="",style="dashed", color="magenta", weight=3]; 117 -> 152[label="",style="dashed", color="magenta", weight=3]; 118[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];118 -> 153[label="",style="solid", color="black", weight=3]; 119 -> 237[label="",style="dashed", color="red", weight=0]; 119[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];119 -> 238[label="",style="dashed", color="magenta", weight=3]; 119 -> 239[label="",style="dashed", color="magenta", weight=3]; 120[label="False",fontsize=16,color="green",shape="box"];121[label="False",fontsize=16,color="green",shape="box"];122[label="True",fontsize=16,color="green",shape="box"];123[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1743[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1743[label="",style="solid", color="blue", weight=9]; 1743 -> 165[label="",style="solid", color="blue", weight=3]; 1744[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1744[label="",style="solid", color="blue", weight=9]; 1744 -> 166[label="",style="solid", color="blue", weight=3]; 1745[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1745[label="",style="solid", color="blue", weight=9]; 1745 -> 167[label="",style="solid", color="blue", weight=3]; 1746[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1746[label="",style="solid", color="blue", weight=9]; 1746 -> 168[label="",style="solid", color="blue", weight=3]; 1747[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1747[label="",style="solid", color="blue", weight=9]; 1747 -> 169[label="",style="solid", color="blue", weight=3]; 1748[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1748[label="",style="solid", color="blue", weight=9]; 1748 -> 170[label="",style="solid", color="blue", weight=3]; 1749[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1749[label="",style="solid", color="blue", weight=9]; 1749 -> 171[label="",style="solid", color="blue", weight=3]; 1750[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1750[label="",style="solid", color="blue", weight=9]; 1750 -> 172[label="",style="solid", color="blue", weight=3]; 1751[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1751[label="",style="solid", color="blue", weight=9]; 1751 -> 173[label="",style="solid", color="blue", weight=3]; 1752[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1752[label="",style="solid", color="blue", weight=9]; 1752 -> 174[label="",style="solid", color="blue", weight=3]; 1753[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1753[label="",style="solid", color="blue", weight=9]; 1753 -> 175[label="",style="solid", color="blue", weight=3]; 1754[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1754[label="",style="solid", color="blue", weight=9]; 1754 -> 176[label="",style="solid", color="blue", weight=3]; 1755[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1755[label="",style="solid", color="blue", weight=9]; 1755 -> 177[label="",style="solid", color="blue", weight=3]; 1756[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 1756[label="",style="solid", color="blue", weight=9]; 1756 -> 178[label="",style="solid", color="blue", weight=3]; 124[label="False",fontsize=16,color="green",shape="box"];125[label="False",fontsize=16,color="green",shape="box"];126[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1757[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1757[label="",style="solid", color="blue", weight=9]; 1757 -> 179[label="",style="solid", color="blue", weight=3]; 1758[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1758[label="",style="solid", color="blue", weight=9]; 1758 -> 180[label="",style="solid", color="blue", weight=3]; 1759[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1759[label="",style="solid", color="blue", weight=9]; 1759 -> 181[label="",style="solid", color="blue", weight=3]; 1760[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1760[label="",style="solid", color="blue", weight=9]; 1760 -> 182[label="",style="solid", color="blue", weight=3]; 1761[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1761[label="",style="solid", color="blue", weight=9]; 1761 -> 183[label="",style="solid", color="blue", weight=3]; 1762[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1762[label="",style="solid", color="blue", weight=9]; 1762 -> 184[label="",style="solid", color="blue", weight=3]; 1763[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1763[label="",style="solid", color="blue", weight=9]; 1763 -> 185[label="",style="solid", color="blue", weight=3]; 1764[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1764[label="",style="solid", color="blue", weight=9]; 1764 -> 186[label="",style="solid", color="blue", weight=3]; 1765[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1765[label="",style="solid", color="blue", weight=9]; 1765 -> 187[label="",style="solid", color="blue", weight=3]; 1766[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1766[label="",style="solid", color="blue", weight=9]; 1766 -> 188[label="",style="solid", color="blue", weight=3]; 1767[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1767[label="",style="solid", color="blue", weight=9]; 1767 -> 189[label="",style="solid", color="blue", weight=3]; 1768[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1768[label="",style="solid", color="blue", weight=9]; 1768 -> 190[label="",style="solid", color="blue", weight=3]; 1769[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1769[label="",style="solid", color="blue", weight=9]; 1769 -> 191[label="",style="solid", color="blue", weight=3]; 1770[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];126 -> 1770[label="",style="solid", color="blue", weight=9]; 1770 -> 192[label="",style="solid", color="blue", weight=3]; 127[label="True",fontsize=16,color="green",shape="box"];128 -> 237[label="",style="dashed", color="red", weight=0]; 128[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];128 -> 240[label="",style="dashed", color="magenta", weight=3]; 128 -> 241[label="",style="dashed", color="magenta", weight=3]; 129 -> 237[label="",style="dashed", color="red", weight=0]; 129[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];129 -> 242[label="",style="dashed", color="magenta", weight=3]; 129 -> 243[label="",style="dashed", color="magenta", weight=3]; 130[label="True",fontsize=16,color="green",shape="box"];131[label="False",fontsize=16,color="green",shape="box"];132[label="False",fontsize=16,color="green",shape="box"];133[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1771[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1771[label="",style="solid", color="blue", weight=9]; 1771 -> 193[label="",style="solid", color="blue", weight=3]; 1772[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1772[label="",style="solid", color="blue", weight=9]; 1772 -> 194[label="",style="solid", color="blue", weight=3]; 1773[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1773[label="",style="solid", color="blue", weight=9]; 1773 -> 195[label="",style="solid", color="blue", weight=3]; 1774[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1774[label="",style="solid", color="blue", weight=9]; 1774 -> 196[label="",style="solid", color="blue", weight=3]; 1775[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1775[label="",style="solid", color="blue", weight=9]; 1775 -> 197[label="",style="solid", color="blue", weight=3]; 1776[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1776[label="",style="solid", color="blue", weight=9]; 1776 -> 198[label="",style="solid", color="blue", weight=3]; 1777[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1777[label="",style="solid", color="blue", weight=9]; 1777 -> 199[label="",style="solid", color="blue", weight=3]; 1778[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1778[label="",style="solid", color="blue", weight=9]; 1778 -> 200[label="",style="solid", color="blue", weight=3]; 1779[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1779[label="",style="solid", color="blue", weight=9]; 1779 -> 201[label="",style="solid", color="blue", weight=3]; 1780[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1780[label="",style="solid", color="blue", weight=9]; 1780 -> 202[label="",style="solid", color="blue", weight=3]; 1781[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1781[label="",style="solid", color="blue", weight=9]; 1781 -> 203[label="",style="solid", color="blue", weight=3]; 1782[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1782[label="",style="solid", color="blue", weight=9]; 1782 -> 204[label="",style="solid", color="blue", weight=3]; 1783[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1783[label="",style="solid", color="blue", weight=9]; 1783 -> 205[label="",style="solid", color="blue", weight=3]; 1784[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1784[label="",style="solid", color="blue", weight=9]; 1784 -> 206[label="",style="solid", color="blue", weight=3]; 134[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];134 -> 207[label="",style="solid", color="black", weight=3]; 135[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];1785[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];135 -> 1785[label="",style="solid", color="burlywood", weight=9]; 1785 -> 208[label="",style="solid", color="burlywood", weight=3]; 1786[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];135 -> 1786[label="",style="solid", color="burlywood", weight=9]; 1786 -> 209[label="",style="solid", color="burlywood", weight=3]; 136[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];1787[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];136 -> 1787[label="",style="solid", color="burlywood", weight=9]; 1787 -> 210[label="",style="solid", color="burlywood", weight=3]; 1788[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];136 -> 1788[label="",style="solid", color="burlywood", weight=9]; 1788 -> 211[label="",style="solid", color="burlywood", weight=3]; 137[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];1789[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];137 -> 1789[label="",style="solid", color="burlywood", weight=9]; 1789 -> 212[label="",style="solid", color="burlywood", weight=3]; 1790[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];137 -> 1790[label="",style="solid", color="burlywood", weight=9]; 1790 -> 213[label="",style="solid", color="burlywood", weight=3]; 138[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];1791[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];138 -> 1791[label="",style="solid", color="burlywood", weight=9]; 1791 -> 214[label="",style="solid", color="burlywood", weight=3]; 1792[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];138 -> 1792[label="",style="solid", color="burlywood", weight=9]; 1792 -> 215[label="",style="solid", color="burlywood", weight=3]; 139 -> 237[label="",style="dashed", color="red", weight=0]; 139[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];139 -> 244[label="",style="dashed", color="magenta", weight=3]; 139 -> 245[label="",style="dashed", color="magenta", weight=3]; 140[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];140 -> 216[label="",style="solid", color="black", weight=3]; 148[label="vwx9 <= vwx10",fontsize=16,color="blue",shape="box"];1793[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1793[label="",style="solid", color="blue", weight=9]; 1793 -> 217[label="",style="solid", color="blue", weight=3]; 1794[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1794[label="",style="solid", color="blue", weight=9]; 1794 -> 218[label="",style="solid", color="blue", weight=3]; 1795[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1795[label="",style="solid", color="blue", weight=9]; 1795 -> 219[label="",style="solid", color="blue", weight=3]; 1796[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1796[label="",style="solid", color="blue", weight=9]; 1796 -> 220[label="",style="solid", color="blue", weight=3]; 1797[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1797[label="",style="solid", color="blue", weight=9]; 1797 -> 221[label="",style="solid", color="blue", weight=3]; 1798[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1798[label="",style="solid", color="blue", weight=9]; 1798 -> 222[label="",style="solid", color="blue", weight=3]; 1799[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1799[label="",style="solid", color="blue", weight=9]; 1799 -> 223[label="",style="solid", color="blue", weight=3]; 1800[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1800[label="",style="solid", color="blue", weight=9]; 1800 -> 224[label="",style="solid", color="blue", weight=3]; 1801[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1801[label="",style="solid", color="blue", weight=9]; 1801 -> 225[label="",style="solid", color="blue", weight=3]; 1802[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1802[label="",style="solid", color="blue", weight=9]; 1802 -> 226[label="",style="solid", color="blue", weight=3]; 1803[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1803[label="",style="solid", color="blue", weight=9]; 1803 -> 227[label="",style="solid", color="blue", weight=3]; 1804[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1804[label="",style="solid", color="blue", weight=9]; 1804 -> 228[label="",style="solid", color="blue", weight=3]; 1805[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1805[label="",style="solid", color="blue", weight=9]; 1805 -> 229[label="",style="solid", color="blue", weight=3]; 1806[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];148 -> 1806[label="",style="solid", color="blue", weight=9]; 1806 -> 230[label="",style="solid", color="blue", weight=3]; 149[label="compare1 (Just vwx16) (Just vwx17) False",fontsize=16,color="black",shape="box"];149 -> 231[label="",style="solid", color="black", weight=3]; 150[label="compare1 (Just vwx16) (Just vwx17) True",fontsize=16,color="black",shape="box"];150 -> 232[label="",style="solid", color="black", weight=3]; 151[label="vwx400",fontsize=16,color="green",shape="box"];152[label="vwx300",fontsize=16,color="green",shape="box"];153[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];1807[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];153 -> 1807[label="",style="solid", color="burlywood", weight=9]; 1807 -> 233[label="",style="solid", color="burlywood", weight=3]; 1808[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];153 -> 1808[label="",style="solid", color="burlywood", weight=9]; 1808 -> 234[label="",style="solid", color="burlywood", weight=3]; 238 -> 30[label="",style="dashed", color="red", weight=0]; 238[label="vwx301 == vwx401",fontsize=16,color="magenta"];238 -> 250[label="",style="dashed", color="magenta", weight=3]; 238 -> 251[label="",style="dashed", color="magenta", weight=3]; 239[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1809[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1809[label="",style="solid", color="blue", weight=9]; 1809 -> 252[label="",style="solid", color="blue", weight=3]; 1810[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1810[label="",style="solid", color="blue", weight=9]; 1810 -> 253[label="",style="solid", color="blue", weight=3]; 1811[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1811[label="",style="solid", color="blue", weight=9]; 1811 -> 254[label="",style="solid", color="blue", weight=3]; 1812[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1812[label="",style="solid", color="blue", weight=9]; 1812 -> 255[label="",style="solid", color="blue", weight=3]; 1813[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1813[label="",style="solid", color="blue", weight=9]; 1813 -> 256[label="",style="solid", color="blue", weight=3]; 1814[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1814[label="",style="solid", color="blue", weight=9]; 1814 -> 257[label="",style="solid", color="blue", weight=3]; 1815[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1815[label="",style="solid", color="blue", weight=9]; 1815 -> 258[label="",style="solid", color="blue", weight=3]; 1816[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1816[label="",style="solid", color="blue", weight=9]; 1816 -> 259[label="",style="solid", color="blue", weight=3]; 1817[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1817[label="",style="solid", color="blue", weight=9]; 1817 -> 260[label="",style="solid", color="blue", weight=3]; 1818[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1818[label="",style="solid", color="blue", weight=9]; 1818 -> 261[label="",style="solid", color="blue", weight=3]; 1819[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1819[label="",style="solid", color="blue", weight=9]; 1819 -> 262[label="",style="solid", color="blue", weight=3]; 1820[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1820[label="",style="solid", color="blue", weight=9]; 1820 -> 263[label="",style="solid", color="blue", weight=3]; 1821[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1821[label="",style="solid", color="blue", weight=9]; 1821 -> 264[label="",style="solid", color="blue", weight=3]; 1822[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 1822[label="",style="solid", color="blue", weight=9]; 1822 -> 265[label="",style="solid", color="blue", weight=3]; 237[label="vwx23 && vwx24",fontsize=16,color="burlywood",shape="triangle"];1823[label="vwx23/False",fontsize=10,color="white",style="solid",shape="box"];237 -> 1823[label="",style="solid", color="burlywood", weight=9]; 1823 -> 266[label="",style="solid", color="burlywood", weight=3]; 1824[label="vwx23/True",fontsize=10,color="white",style="solid",shape="box"];237 -> 1824[label="",style="solid", color="burlywood", weight=9]; 1824 -> 267[label="",style="solid", color="burlywood", weight=3]; 165 -> 26[label="",style="dashed", color="red", weight=0]; 165[label="vwx300 == vwx400",fontsize=16,color="magenta"];165 -> 268[label="",style="dashed", color="magenta", weight=3]; 165 -> 269[label="",style="dashed", color="magenta", weight=3]; 166 -> 27[label="",style="dashed", color="red", weight=0]; 166[label="vwx300 == vwx400",fontsize=16,color="magenta"];166 -> 270[label="",style="dashed", color="magenta", weight=3]; 166 -> 271[label="",style="dashed", color="magenta", weight=3]; 167 -> 28[label="",style="dashed", color="red", weight=0]; 167[label="vwx300 == vwx400",fontsize=16,color="magenta"];167 -> 272[label="",style="dashed", color="magenta", weight=3]; 167 -> 273[label="",style="dashed", color="magenta", weight=3]; 168 -> 29[label="",style="dashed", color="red", weight=0]; 168[label="vwx300 == vwx400",fontsize=16,color="magenta"];168 -> 274[label="",style="dashed", color="magenta", weight=3]; 168 -> 275[label="",style="dashed", color="magenta", weight=3]; 169 -> 30[label="",style="dashed", color="red", weight=0]; 169[label="vwx300 == vwx400",fontsize=16,color="magenta"];169 -> 276[label="",style="dashed", color="magenta", weight=3]; 169 -> 277[label="",style="dashed", color="magenta", weight=3]; 170 -> 31[label="",style="dashed", color="red", weight=0]; 170[label="vwx300 == vwx400",fontsize=16,color="magenta"];170 -> 278[label="",style="dashed", color="magenta", weight=3]; 170 -> 279[label="",style="dashed", color="magenta", weight=3]; 171 -> 32[label="",style="dashed", color="red", weight=0]; 171[label="vwx300 == vwx400",fontsize=16,color="magenta"];171 -> 280[label="",style="dashed", color="magenta", weight=3]; 171 -> 281[label="",style="dashed", color="magenta", weight=3]; 172 -> 33[label="",style="dashed", color="red", weight=0]; 172[label="vwx300 == vwx400",fontsize=16,color="magenta"];172 -> 282[label="",style="dashed", color="magenta", weight=3]; 172 -> 283[label="",style="dashed", color="magenta", weight=3]; 173 -> 34[label="",style="dashed", color="red", weight=0]; 173[label="vwx300 == vwx400",fontsize=16,color="magenta"];173 -> 284[label="",style="dashed", color="magenta", weight=3]; 173 -> 285[label="",style="dashed", color="magenta", weight=3]; 174 -> 35[label="",style="dashed", color="red", weight=0]; 174[label="vwx300 == vwx400",fontsize=16,color="magenta"];174 -> 286[label="",style="dashed", color="magenta", weight=3]; 174 -> 287[label="",style="dashed", color="magenta", weight=3]; 175 -> 36[label="",style="dashed", color="red", weight=0]; 175[label="vwx300 == vwx400",fontsize=16,color="magenta"];175 -> 288[label="",style="dashed", color="magenta", weight=3]; 175 -> 289[label="",style="dashed", color="magenta", weight=3]; 176 -> 37[label="",style="dashed", color="red", weight=0]; 176[label="vwx300 == vwx400",fontsize=16,color="magenta"];176 -> 290[label="",style="dashed", color="magenta", weight=3]; 176 -> 291[label="",style="dashed", color="magenta", weight=3]; 177 -> 38[label="",style="dashed", color="red", weight=0]; 177[label="vwx300 == vwx400",fontsize=16,color="magenta"];177 -> 292[label="",style="dashed", color="magenta", weight=3]; 177 -> 293[label="",style="dashed", color="magenta", weight=3]; 178 -> 39[label="",style="dashed", color="red", weight=0]; 178[label="vwx300 == vwx400",fontsize=16,color="magenta"];178 -> 294[label="",style="dashed", color="magenta", weight=3]; 178 -> 295[label="",style="dashed", color="magenta", weight=3]; 179 -> 26[label="",style="dashed", color="red", weight=0]; 179[label="vwx300 == vwx400",fontsize=16,color="magenta"];179 -> 296[label="",style="dashed", color="magenta", weight=3]; 179 -> 297[label="",style="dashed", color="magenta", weight=3]; 180 -> 27[label="",style="dashed", color="red", weight=0]; 180[label="vwx300 == vwx400",fontsize=16,color="magenta"];180 -> 298[label="",style="dashed", color="magenta", weight=3]; 180 -> 299[label="",style="dashed", color="magenta", weight=3]; 181 -> 28[label="",style="dashed", color="red", weight=0]; 181[label="vwx300 == vwx400",fontsize=16,color="magenta"];181 -> 300[label="",style="dashed", color="magenta", weight=3]; 181 -> 301[label="",style="dashed", color="magenta", weight=3]; 182 -> 29[label="",style="dashed", color="red", weight=0]; 182[label="vwx300 == vwx400",fontsize=16,color="magenta"];182 -> 302[label="",style="dashed", color="magenta", weight=3]; 182 -> 303[label="",style="dashed", color="magenta", weight=3]; 183 -> 30[label="",style="dashed", color="red", weight=0]; 183[label="vwx300 == vwx400",fontsize=16,color="magenta"];183 -> 304[label="",style="dashed", color="magenta", weight=3]; 183 -> 305[label="",style="dashed", color="magenta", weight=3]; 184 -> 31[label="",style="dashed", color="red", weight=0]; 184[label="vwx300 == vwx400",fontsize=16,color="magenta"];184 -> 306[label="",style="dashed", color="magenta", weight=3]; 184 -> 307[label="",style="dashed", color="magenta", weight=3]; 185 -> 32[label="",style="dashed", color="red", weight=0]; 185[label="vwx300 == vwx400",fontsize=16,color="magenta"];185 -> 308[label="",style="dashed", color="magenta", weight=3]; 185 -> 309[label="",style="dashed", color="magenta", weight=3]; 186 -> 33[label="",style="dashed", color="red", weight=0]; 186[label="vwx300 == vwx400",fontsize=16,color="magenta"];186 -> 310[label="",style="dashed", color="magenta", weight=3]; 186 -> 311[label="",style="dashed", color="magenta", weight=3]; 187 -> 34[label="",style="dashed", color="red", weight=0]; 187[label="vwx300 == vwx400",fontsize=16,color="magenta"];187 -> 312[label="",style="dashed", color="magenta", weight=3]; 187 -> 313[label="",style="dashed", color="magenta", weight=3]; 188 -> 35[label="",style="dashed", color="red", weight=0]; 188[label="vwx300 == vwx400",fontsize=16,color="magenta"];188 -> 314[label="",style="dashed", color="magenta", weight=3]; 188 -> 315[label="",style="dashed", color="magenta", weight=3]; 189 -> 36[label="",style="dashed", color="red", weight=0]; 189[label="vwx300 == vwx400",fontsize=16,color="magenta"];189 -> 316[label="",style="dashed", color="magenta", weight=3]; 189 -> 317[label="",style="dashed", color="magenta", weight=3]; 190 -> 37[label="",style="dashed", color="red", weight=0]; 190[label="vwx300 == vwx400",fontsize=16,color="magenta"];190 -> 318[label="",style="dashed", color="magenta", weight=3]; 190 -> 319[label="",style="dashed", color="magenta", weight=3]; 191 -> 38[label="",style="dashed", color="red", weight=0]; 191[label="vwx300 == vwx400",fontsize=16,color="magenta"];191 -> 320[label="",style="dashed", color="magenta", weight=3]; 191 -> 321[label="",style="dashed", color="magenta", weight=3]; 192 -> 39[label="",style="dashed", color="red", weight=0]; 192[label="vwx300 == vwx400",fontsize=16,color="magenta"];192 -> 322[label="",style="dashed", color="magenta", weight=3]; 192 -> 323[label="",style="dashed", color="magenta", weight=3]; 240[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];1825[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 1825[label="",style="solid", color="blue", weight=9]; 1825 -> 324[label="",style="solid", color="blue", weight=3]; 1826[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 1826[label="",style="solid", color="blue", weight=9]; 1826 -> 325[label="",style="solid", color="blue", weight=3]; 241[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1827[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];241 -> 1827[label="",style="solid", color="blue", weight=9]; 1827 -> 326[label="",style="solid", color="blue", weight=3]; 1828[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];241 -> 1828[label="",style="solid", color="blue", weight=9]; 1828 -> 327[label="",style="solid", color="blue", weight=3]; 242[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];1829[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1829[label="",style="solid", color="blue", weight=9]; 1829 -> 328[label="",style="solid", color="blue", weight=3]; 1830[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1830[label="",style="solid", color="blue", weight=9]; 1830 -> 329[label="",style="solid", color="blue", weight=3]; 1831[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1831[label="",style="solid", color="blue", weight=9]; 1831 -> 330[label="",style="solid", color="blue", weight=3]; 1832[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1832[label="",style="solid", color="blue", weight=9]; 1832 -> 331[label="",style="solid", color="blue", weight=3]; 1833[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1833[label="",style="solid", color="blue", weight=9]; 1833 -> 332[label="",style="solid", color="blue", weight=3]; 1834[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1834[label="",style="solid", color="blue", weight=9]; 1834 -> 333[label="",style="solid", color="blue", weight=3]; 1835[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1835[label="",style="solid", color="blue", weight=9]; 1835 -> 334[label="",style="solid", color="blue", weight=3]; 1836[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1836[label="",style="solid", color="blue", weight=9]; 1836 -> 335[label="",style="solid", color="blue", weight=3]; 1837[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1837[label="",style="solid", color="blue", weight=9]; 1837 -> 336[label="",style="solid", color="blue", weight=3]; 1838[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1838[label="",style="solid", color="blue", weight=9]; 1838 -> 337[label="",style="solid", color="blue", weight=3]; 1839[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1839[label="",style="solid", color="blue", weight=9]; 1839 -> 338[label="",style="solid", color="blue", weight=3]; 1840[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1840[label="",style="solid", color="blue", weight=9]; 1840 -> 339[label="",style="solid", color="blue", weight=3]; 1841[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1841[label="",style="solid", color="blue", weight=9]; 1841 -> 340[label="",style="solid", color="blue", weight=3]; 1842[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 1842[label="",style="solid", color="blue", weight=9]; 1842 -> 341[label="",style="solid", color="blue", weight=3]; 243[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1843[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1843[label="",style="solid", color="blue", weight=9]; 1843 -> 342[label="",style="solid", color="blue", weight=3]; 1844[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1844[label="",style="solid", color="blue", weight=9]; 1844 -> 343[label="",style="solid", color="blue", weight=3]; 1845[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1845[label="",style="solid", color="blue", weight=9]; 1845 -> 344[label="",style="solid", color="blue", weight=3]; 1846[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1846[label="",style="solid", color="blue", weight=9]; 1846 -> 345[label="",style="solid", color="blue", weight=3]; 1847[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1847[label="",style="solid", color="blue", weight=9]; 1847 -> 346[label="",style="solid", color="blue", weight=3]; 1848[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1848[label="",style="solid", color="blue", weight=9]; 1848 -> 347[label="",style="solid", color="blue", weight=3]; 1849[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1849[label="",style="solid", color="blue", weight=9]; 1849 -> 348[label="",style="solid", color="blue", weight=3]; 1850[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1850[label="",style="solid", color="blue", weight=9]; 1850 -> 349[label="",style="solid", color="blue", weight=3]; 1851[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1851[label="",style="solid", color="blue", weight=9]; 1851 -> 350[label="",style="solid", color="blue", weight=3]; 1852[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1852[label="",style="solid", color="blue", weight=9]; 1852 -> 351[label="",style="solid", color="blue", weight=3]; 1853[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1853[label="",style="solid", color="blue", weight=9]; 1853 -> 352[label="",style="solid", color="blue", weight=3]; 1854[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1854[label="",style="solid", color="blue", weight=9]; 1854 -> 353[label="",style="solid", color="blue", weight=3]; 1855[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1855[label="",style="solid", color="blue", weight=9]; 1855 -> 354[label="",style="solid", color="blue", weight=3]; 1856[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];243 -> 1856[label="",style="solid", color="blue", weight=9]; 1856 -> 355[label="",style="solid", color="blue", weight=3]; 193 -> 26[label="",style="dashed", color="red", weight=0]; 193[label="vwx300 == vwx400",fontsize=16,color="magenta"];193 -> 356[label="",style="dashed", color="magenta", weight=3]; 193 -> 357[label="",style="dashed", color="magenta", weight=3]; 194 -> 27[label="",style="dashed", color="red", weight=0]; 194[label="vwx300 == vwx400",fontsize=16,color="magenta"];194 -> 358[label="",style="dashed", color="magenta", weight=3]; 194 -> 359[label="",style="dashed", color="magenta", weight=3]; 195 -> 28[label="",style="dashed", color="red", weight=0]; 195[label="vwx300 == vwx400",fontsize=16,color="magenta"];195 -> 360[label="",style="dashed", color="magenta", weight=3]; 195 -> 361[label="",style="dashed", color="magenta", weight=3]; 196 -> 29[label="",style="dashed", color="red", weight=0]; 196[label="vwx300 == vwx400",fontsize=16,color="magenta"];196 -> 362[label="",style="dashed", color="magenta", weight=3]; 196 -> 363[label="",style="dashed", color="magenta", weight=3]; 197 -> 30[label="",style="dashed", color="red", weight=0]; 197[label="vwx300 == vwx400",fontsize=16,color="magenta"];197 -> 364[label="",style="dashed", color="magenta", weight=3]; 197 -> 365[label="",style="dashed", color="magenta", weight=3]; 198 -> 31[label="",style="dashed", color="red", weight=0]; 198[label="vwx300 == vwx400",fontsize=16,color="magenta"];198 -> 366[label="",style="dashed", color="magenta", weight=3]; 198 -> 367[label="",style="dashed", color="magenta", weight=3]; 199 -> 32[label="",style="dashed", color="red", weight=0]; 199[label="vwx300 == vwx400",fontsize=16,color="magenta"];199 -> 368[label="",style="dashed", color="magenta", weight=3]; 199 -> 369[label="",style="dashed", color="magenta", weight=3]; 200 -> 33[label="",style="dashed", color="red", weight=0]; 200[label="vwx300 == vwx400",fontsize=16,color="magenta"];200 -> 370[label="",style="dashed", color="magenta", weight=3]; 200 -> 371[label="",style="dashed", color="magenta", weight=3]; 201 -> 34[label="",style="dashed", color="red", weight=0]; 201[label="vwx300 == vwx400",fontsize=16,color="magenta"];201 -> 372[label="",style="dashed", color="magenta", weight=3]; 201 -> 373[label="",style="dashed", color="magenta", weight=3]; 202 -> 35[label="",style="dashed", color="red", weight=0]; 202[label="vwx300 == vwx400",fontsize=16,color="magenta"];202 -> 374[label="",style="dashed", color="magenta", weight=3]; 202 -> 375[label="",style="dashed", color="magenta", weight=3]; 203 -> 36[label="",style="dashed", color="red", weight=0]; 203[label="vwx300 == vwx400",fontsize=16,color="magenta"];203 -> 376[label="",style="dashed", color="magenta", weight=3]; 203 -> 377[label="",style="dashed", color="magenta", weight=3]; 204 -> 37[label="",style="dashed", color="red", weight=0]; 204[label="vwx300 == vwx400",fontsize=16,color="magenta"];204 -> 378[label="",style="dashed", color="magenta", weight=3]; 204 -> 379[label="",style="dashed", color="magenta", weight=3]; 205 -> 38[label="",style="dashed", color="red", weight=0]; 205[label="vwx300 == vwx400",fontsize=16,color="magenta"];205 -> 380[label="",style="dashed", color="magenta", weight=3]; 205 -> 381[label="",style="dashed", color="magenta", weight=3]; 206 -> 39[label="",style="dashed", color="red", weight=0]; 206[label="vwx300 == vwx400",fontsize=16,color="magenta"];206 -> 382[label="",style="dashed", color="magenta", weight=3]; 206 -> 383[label="",style="dashed", color="magenta", weight=3]; 207 -> 37[label="",style="dashed", color="red", weight=0]; 207[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];207 -> 384[label="",style="dashed", color="magenta", weight=3]; 207 -> 385[label="",style="dashed", color="magenta", weight=3]; 208[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1857[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];208 -> 1857[label="",style="solid", color="burlywood", weight=9]; 1857 -> 386[label="",style="solid", color="burlywood", weight=3]; 1858[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];208 -> 1858[label="",style="solid", color="burlywood", weight=9]; 1858 -> 387[label="",style="solid", color="burlywood", weight=3]; 209[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];209 -> 388[label="",style="solid", color="black", weight=3]; 210[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1859[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];210 -> 1859[label="",style="solid", color="burlywood", weight=9]; 1859 -> 389[label="",style="solid", color="burlywood", weight=3]; 1860[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];210 -> 1860[label="",style="solid", color="burlywood", weight=9]; 1860 -> 390[label="",style="solid", color="burlywood", weight=3]; 211[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1861[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];211 -> 1861[label="",style="solid", color="burlywood", weight=9]; 1861 -> 391[label="",style="solid", color="burlywood", weight=3]; 1862[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];211 -> 1862[label="",style="solid", color="burlywood", weight=9]; 1862 -> 392[label="",style="solid", color="burlywood", weight=3]; 212[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];212 -> 393[label="",style="solid", color="black", weight=3]; 213[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1863[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];213 -> 1863[label="",style="solid", color="burlywood", weight=9]; 1863 -> 394[label="",style="solid", color="burlywood", weight=3]; 1864[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];213 -> 1864[label="",style="solid", color="burlywood", weight=9]; 1864 -> 395[label="",style="solid", color="burlywood", weight=3]; 214[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1865[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];214 -> 1865[label="",style="solid", color="burlywood", weight=9]; 1865 -> 396[label="",style="solid", color="burlywood", weight=3]; 1866[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];214 -> 1866[label="",style="solid", color="burlywood", weight=9]; 1866 -> 397[label="",style="solid", color="burlywood", weight=3]; 215[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1867[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];215 -> 1867[label="",style="solid", color="burlywood", weight=9]; 1867 -> 398[label="",style="solid", color="burlywood", weight=3]; 1868[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];215 -> 1868[label="",style="solid", color="burlywood", weight=9]; 1868 -> 399[label="",style="solid", color="burlywood", weight=3]; 244 -> 237[label="",style="dashed", color="red", weight=0]; 244[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];244 -> 400[label="",style="dashed", color="magenta", weight=3]; 244 -> 401[label="",style="dashed", color="magenta", weight=3]; 245[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1869[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1869[label="",style="solid", color="blue", weight=9]; 1869 -> 402[label="",style="solid", color="blue", weight=3]; 1870[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1870[label="",style="solid", color="blue", weight=9]; 1870 -> 403[label="",style="solid", color="blue", weight=3]; 1871[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1871[label="",style="solid", color="blue", weight=9]; 1871 -> 404[label="",style="solid", color="blue", weight=3]; 1872[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1872[label="",style="solid", color="blue", weight=9]; 1872 -> 405[label="",style="solid", color="blue", weight=3]; 1873[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1873[label="",style="solid", color="blue", weight=9]; 1873 -> 406[label="",style="solid", color="blue", weight=3]; 1874[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1874[label="",style="solid", color="blue", weight=9]; 1874 -> 407[label="",style="solid", color="blue", weight=3]; 1875[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1875[label="",style="solid", color="blue", weight=9]; 1875 -> 408[label="",style="solid", color="blue", weight=3]; 1876[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1876[label="",style="solid", color="blue", weight=9]; 1876 -> 409[label="",style="solid", color="blue", weight=3]; 1877[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1877[label="",style="solid", color="blue", weight=9]; 1877 -> 410[label="",style="solid", color="blue", weight=3]; 1878[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1878[label="",style="solid", color="blue", weight=9]; 1878 -> 411[label="",style="solid", color="blue", weight=3]; 1879[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1879[label="",style="solid", color="blue", weight=9]; 1879 -> 412[label="",style="solid", color="blue", weight=3]; 1880[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1880[label="",style="solid", color="blue", weight=9]; 1880 -> 413[label="",style="solid", color="blue", weight=3]; 1881[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1881[label="",style="solid", color="blue", weight=9]; 1881 -> 414[label="",style="solid", color="blue", weight=3]; 1882[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 1882[label="",style="solid", color="blue", weight=9]; 1882 -> 415[label="",style="solid", color="blue", weight=3]; 216 -> 37[label="",style="dashed", color="red", weight=0]; 216[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];216 -> 416[label="",style="dashed", color="magenta", weight=3]; 216 -> 417[label="",style="dashed", color="magenta", weight=3]; 217[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];217 -> 418[label="",style="solid", color="black", weight=3]; 218[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];218 -> 419[label="",style="solid", color="black", weight=3]; 219[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];1883[label="vwx9/(vwx90,vwx91)",fontsize=10,color="white",style="solid",shape="box"];219 -> 1883[label="",style="solid", color="burlywood", weight=9]; 1883 -> 420[label="",style="solid", color="burlywood", weight=3]; 220[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];220 -> 421[label="",style="solid", color="black", weight=3]; 221[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];221 -> 422[label="",style="solid", color="black", weight=3]; 222[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];1884[label="vwx9/Nothing",fontsize=10,color="white",style="solid",shape="box"];222 -> 1884[label="",style="solid", color="burlywood", weight=9]; 1884 -> 423[label="",style="solid", color="burlywood", weight=3]; 1885[label="vwx9/Just vwx90",fontsize=10,color="white",style="solid",shape="box"];222 -> 1885[label="",style="solid", color="burlywood", weight=9]; 1885 -> 424[label="",style="solid", color="burlywood", weight=3]; 223[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];1886[label="vwx9/False",fontsize=10,color="white",style="solid",shape="box"];223 -> 1886[label="",style="solid", color="burlywood", weight=9]; 1886 -> 425[label="",style="solid", color="burlywood", weight=3]; 1887[label="vwx9/True",fontsize=10,color="white",style="solid",shape="box"];223 -> 1887[label="",style="solid", color="burlywood", weight=9]; 1887 -> 426[label="",style="solid", color="burlywood", weight=3]; 224[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];224 -> 427[label="",style="solid", color="black", weight=3]; 225[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];1888[label="vwx9/Left vwx90",fontsize=10,color="white",style="solid",shape="box"];225 -> 1888[label="",style="solid", color="burlywood", weight=9]; 1888 -> 428[label="",style="solid", color="burlywood", weight=3]; 1889[label="vwx9/Right vwx90",fontsize=10,color="white",style="solid",shape="box"];225 -> 1889[label="",style="solid", color="burlywood", weight=9]; 1889 -> 429[label="",style="solid", color="burlywood", weight=3]; 226[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];1890[label="vwx9/(vwx90,vwx91,vwx92)",fontsize=10,color="white",style="solid",shape="box"];226 -> 1890[label="",style="solid", color="burlywood", weight=9]; 1890 -> 430[label="",style="solid", color="burlywood", weight=3]; 227[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];227 -> 431[label="",style="solid", color="black", weight=3]; 228[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];1891[label="vwx9/LT",fontsize=10,color="white",style="solid",shape="box"];228 -> 1891[label="",style="solid", color="burlywood", weight=9]; 1891 -> 432[label="",style="solid", color="burlywood", weight=3]; 1892[label="vwx9/EQ",fontsize=10,color="white",style="solid",shape="box"];228 -> 1892[label="",style="solid", color="burlywood", weight=9]; 1892 -> 433[label="",style="solid", color="burlywood", weight=3]; 1893[label="vwx9/GT",fontsize=10,color="white",style="solid",shape="box"];228 -> 1893[label="",style="solid", color="burlywood", weight=9]; 1893 -> 434[label="",style="solid", color="burlywood", weight=3]; 229[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];229 -> 435[label="",style="solid", color="black", weight=3]; 230[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];230 -> 436[label="",style="solid", color="black", weight=3]; 231[label="compare0 (Just vwx16) (Just vwx17) otherwise",fontsize=16,color="black",shape="box"];231 -> 437[label="",style="solid", color="black", weight=3]; 232[label="LT",fontsize=16,color="green",shape="box"];233[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];1894[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];233 -> 1894[label="",style="solid", color="burlywood", weight=9]; 1894 -> 438[label="",style="solid", color="burlywood", weight=3]; 1895[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];233 -> 1895[label="",style="solid", color="burlywood", weight=9]; 1895 -> 439[label="",style="solid", color="burlywood", weight=3]; 234[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];1896[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];234 -> 1896[label="",style="solid", color="burlywood", weight=9]; 1896 -> 440[label="",style="solid", color="burlywood", weight=3]; 1897[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];234 -> 1897[label="",style="solid", color="burlywood", weight=9]; 1897 -> 441[label="",style="solid", color="burlywood", weight=3]; 250[label="vwx401",fontsize=16,color="green",shape="box"];251[label="vwx301",fontsize=16,color="green",shape="box"];252 -> 26[label="",style="dashed", color="red", weight=0]; 252[label="vwx300 == vwx400",fontsize=16,color="magenta"];252 -> 442[label="",style="dashed", color="magenta", weight=3]; 252 -> 443[label="",style="dashed", color="magenta", weight=3]; 253 -> 27[label="",style="dashed", color="red", weight=0]; 253[label="vwx300 == vwx400",fontsize=16,color="magenta"];253 -> 444[label="",style="dashed", color="magenta", weight=3]; 253 -> 445[label="",style="dashed", color="magenta", weight=3]; 254 -> 28[label="",style="dashed", color="red", weight=0]; 254[label="vwx300 == vwx400",fontsize=16,color="magenta"];254 -> 446[label="",style="dashed", color="magenta", weight=3]; 254 -> 447[label="",style="dashed", color="magenta", weight=3]; 255 -> 29[label="",style="dashed", color="red", weight=0]; 255[label="vwx300 == vwx400",fontsize=16,color="magenta"];255 -> 448[label="",style="dashed", color="magenta", weight=3]; 255 -> 449[label="",style="dashed", color="magenta", weight=3]; 256 -> 30[label="",style="dashed", color="red", weight=0]; 256[label="vwx300 == vwx400",fontsize=16,color="magenta"];256 -> 450[label="",style="dashed", color="magenta", weight=3]; 256 -> 451[label="",style="dashed", color="magenta", weight=3]; 257 -> 31[label="",style="dashed", color="red", weight=0]; 257[label="vwx300 == vwx400",fontsize=16,color="magenta"];257 -> 452[label="",style="dashed", color="magenta", weight=3]; 257 -> 453[label="",style="dashed", color="magenta", weight=3]; 258 -> 32[label="",style="dashed", color="red", weight=0]; 258[label="vwx300 == vwx400",fontsize=16,color="magenta"];258 -> 454[label="",style="dashed", color="magenta", weight=3]; 258 -> 455[label="",style="dashed", color="magenta", weight=3]; 259 -> 33[label="",style="dashed", color="red", weight=0]; 259[label="vwx300 == vwx400",fontsize=16,color="magenta"];259 -> 456[label="",style="dashed", color="magenta", weight=3]; 259 -> 457[label="",style="dashed", color="magenta", weight=3]; 260 -> 34[label="",style="dashed", color="red", weight=0]; 260[label="vwx300 == vwx400",fontsize=16,color="magenta"];260 -> 458[label="",style="dashed", color="magenta", weight=3]; 260 -> 459[label="",style="dashed", color="magenta", weight=3]; 261 -> 35[label="",style="dashed", color="red", weight=0]; 261[label="vwx300 == vwx400",fontsize=16,color="magenta"];261 -> 460[label="",style="dashed", color="magenta", weight=3]; 261 -> 461[label="",style="dashed", color="magenta", weight=3]; 262 -> 36[label="",style="dashed", color="red", weight=0]; 262[label="vwx300 == vwx400",fontsize=16,color="magenta"];262 -> 462[label="",style="dashed", color="magenta", weight=3]; 262 -> 463[label="",style="dashed", color="magenta", weight=3]; 263 -> 37[label="",style="dashed", color="red", weight=0]; 263[label="vwx300 == vwx400",fontsize=16,color="magenta"];263 -> 464[label="",style="dashed", color="magenta", weight=3]; 263 -> 465[label="",style="dashed", color="magenta", weight=3]; 264 -> 38[label="",style="dashed", color="red", weight=0]; 264[label="vwx300 == vwx400",fontsize=16,color="magenta"];264 -> 466[label="",style="dashed", color="magenta", weight=3]; 264 -> 467[label="",style="dashed", color="magenta", weight=3]; 265 -> 39[label="",style="dashed", color="red", weight=0]; 265[label="vwx300 == vwx400",fontsize=16,color="magenta"];265 -> 468[label="",style="dashed", color="magenta", weight=3]; 265 -> 469[label="",style="dashed", color="magenta", weight=3]; 266[label="False && vwx24",fontsize=16,color="black",shape="box"];266 -> 470[label="",style="solid", color="black", weight=3]; 267[label="True && vwx24",fontsize=16,color="black",shape="box"];267 -> 471[label="",style="solid", color="black", weight=3]; 268[label="vwx400",fontsize=16,color="green",shape="box"];269[label="vwx300",fontsize=16,color="green",shape="box"];270[label="vwx400",fontsize=16,color="green",shape="box"];271[label="vwx300",fontsize=16,color="green",shape="box"];272[label="vwx400",fontsize=16,color="green",shape="box"];273[label="vwx300",fontsize=16,color="green",shape="box"];274[label="vwx400",fontsize=16,color="green",shape="box"];275[label="vwx300",fontsize=16,color="green",shape="box"];276[label="vwx400",fontsize=16,color="green",shape="box"];277[label="vwx300",fontsize=16,color="green",shape="box"];278[label="vwx400",fontsize=16,color="green",shape="box"];279[label="vwx300",fontsize=16,color="green",shape="box"];280[label="vwx400",fontsize=16,color="green",shape="box"];281[label="vwx300",fontsize=16,color="green",shape="box"];282[label="vwx400",fontsize=16,color="green",shape="box"];283[label="vwx300",fontsize=16,color="green",shape="box"];284[label="vwx400",fontsize=16,color="green",shape="box"];285[label="vwx300",fontsize=16,color="green",shape="box"];286[label="vwx400",fontsize=16,color="green",shape="box"];287[label="vwx300",fontsize=16,color="green",shape="box"];288[label="vwx400",fontsize=16,color="green",shape="box"];289[label="vwx300",fontsize=16,color="green",shape="box"];290[label="vwx400",fontsize=16,color="green",shape="box"];291[label="vwx300",fontsize=16,color="green",shape="box"];292[label="vwx400",fontsize=16,color="green",shape="box"];293[label="vwx300",fontsize=16,color="green",shape="box"];294[label="vwx400",fontsize=16,color="green",shape="box"];295[label="vwx300",fontsize=16,color="green",shape="box"];296[label="vwx400",fontsize=16,color="green",shape="box"];297[label="vwx300",fontsize=16,color="green",shape="box"];298[label="vwx400",fontsize=16,color="green",shape="box"];299[label="vwx300",fontsize=16,color="green",shape="box"];300[label="vwx400",fontsize=16,color="green",shape="box"];301[label="vwx300",fontsize=16,color="green",shape="box"];302[label="vwx400",fontsize=16,color="green",shape="box"];303[label="vwx300",fontsize=16,color="green",shape="box"];304[label="vwx400",fontsize=16,color="green",shape="box"];305[label="vwx300",fontsize=16,color="green",shape="box"];306[label="vwx400",fontsize=16,color="green",shape="box"];307[label="vwx300",fontsize=16,color="green",shape="box"];308[label="vwx400",fontsize=16,color="green",shape="box"];309[label="vwx300",fontsize=16,color="green",shape="box"];310[label="vwx400",fontsize=16,color="green",shape="box"];311[label="vwx300",fontsize=16,color="green",shape="box"];312[label="vwx400",fontsize=16,color="green",shape="box"];313[label="vwx300",fontsize=16,color="green",shape="box"];314[label="vwx400",fontsize=16,color="green",shape="box"];315[label="vwx300",fontsize=16,color="green",shape="box"];316[label="vwx400",fontsize=16,color="green",shape="box"];317[label="vwx300",fontsize=16,color="green",shape="box"];318[label="vwx400",fontsize=16,color="green",shape="box"];319[label="vwx300",fontsize=16,color="green",shape="box"];320[label="vwx400",fontsize=16,color="green",shape="box"];321[label="vwx300",fontsize=16,color="green",shape="box"];322[label="vwx400",fontsize=16,color="green",shape="box"];323[label="vwx300",fontsize=16,color="green",shape="box"];324 -> 28[label="",style="dashed", color="red", weight=0]; 324[label="vwx301 == vwx401",fontsize=16,color="magenta"];324 -> 472[label="",style="dashed", color="magenta", weight=3]; 324 -> 473[label="",style="dashed", color="magenta", weight=3]; 325 -> 37[label="",style="dashed", color="red", weight=0]; 325[label="vwx301 == vwx401",fontsize=16,color="magenta"];325 -> 474[label="",style="dashed", color="magenta", weight=3]; 325 -> 475[label="",style="dashed", color="magenta", weight=3]; 326 -> 28[label="",style="dashed", color="red", weight=0]; 326[label="vwx300 == vwx400",fontsize=16,color="magenta"];326 -> 476[label="",style="dashed", color="magenta", weight=3]; 326 -> 477[label="",style="dashed", color="magenta", weight=3]; 327 -> 37[label="",style="dashed", color="red", weight=0]; 327[label="vwx300 == vwx400",fontsize=16,color="magenta"];327 -> 478[label="",style="dashed", color="magenta", weight=3]; 327 -> 479[label="",style="dashed", color="magenta", weight=3]; 328 -> 26[label="",style="dashed", color="red", weight=0]; 328[label="vwx301 == vwx401",fontsize=16,color="magenta"];328 -> 480[label="",style="dashed", color="magenta", weight=3]; 328 -> 481[label="",style="dashed", color="magenta", weight=3]; 329 -> 27[label="",style="dashed", color="red", weight=0]; 329[label="vwx301 == vwx401",fontsize=16,color="magenta"];329 -> 482[label="",style="dashed", color="magenta", weight=3]; 329 -> 483[label="",style="dashed", color="magenta", weight=3]; 330 -> 28[label="",style="dashed", color="red", weight=0]; 330[label="vwx301 == vwx401",fontsize=16,color="magenta"];330 -> 484[label="",style="dashed", color="magenta", weight=3]; 330 -> 485[label="",style="dashed", color="magenta", weight=3]; 331 -> 29[label="",style="dashed", color="red", weight=0]; 331[label="vwx301 == vwx401",fontsize=16,color="magenta"];331 -> 486[label="",style="dashed", color="magenta", weight=3]; 331 -> 487[label="",style="dashed", color="magenta", weight=3]; 332 -> 30[label="",style="dashed", color="red", weight=0]; 332[label="vwx301 == vwx401",fontsize=16,color="magenta"];332 -> 488[label="",style="dashed", color="magenta", weight=3]; 332 -> 489[label="",style="dashed", color="magenta", weight=3]; 333 -> 31[label="",style="dashed", color="red", weight=0]; 333[label="vwx301 == vwx401",fontsize=16,color="magenta"];333 -> 490[label="",style="dashed", color="magenta", weight=3]; 333 -> 491[label="",style="dashed", color="magenta", weight=3]; 334 -> 32[label="",style="dashed", color="red", weight=0]; 334[label="vwx301 == vwx401",fontsize=16,color="magenta"];334 -> 492[label="",style="dashed", color="magenta", weight=3]; 334 -> 493[label="",style="dashed", color="magenta", weight=3]; 335 -> 33[label="",style="dashed", color="red", weight=0]; 335[label="vwx301 == vwx401",fontsize=16,color="magenta"];335 -> 494[label="",style="dashed", color="magenta", weight=3]; 335 -> 495[label="",style="dashed", color="magenta", weight=3]; 336 -> 34[label="",style="dashed", color="red", weight=0]; 336[label="vwx301 == vwx401",fontsize=16,color="magenta"];336 -> 496[label="",style="dashed", color="magenta", weight=3]; 336 -> 497[label="",style="dashed", color="magenta", weight=3]; 337 -> 35[label="",style="dashed", color="red", weight=0]; 337[label="vwx301 == vwx401",fontsize=16,color="magenta"];337 -> 498[label="",style="dashed", color="magenta", weight=3]; 337 -> 499[label="",style="dashed", color="magenta", weight=3]; 338 -> 36[label="",style="dashed", color="red", weight=0]; 338[label="vwx301 == vwx401",fontsize=16,color="magenta"];338 -> 500[label="",style="dashed", color="magenta", weight=3]; 338 -> 501[label="",style="dashed", color="magenta", weight=3]; 339 -> 37[label="",style="dashed", color="red", weight=0]; 339[label="vwx301 == vwx401",fontsize=16,color="magenta"];339 -> 502[label="",style="dashed", color="magenta", weight=3]; 339 -> 503[label="",style="dashed", color="magenta", weight=3]; 340 -> 38[label="",style="dashed", color="red", weight=0]; 340[label="vwx301 == vwx401",fontsize=16,color="magenta"];340 -> 504[label="",style="dashed", color="magenta", weight=3]; 340 -> 505[label="",style="dashed", color="magenta", weight=3]; 341 -> 39[label="",style="dashed", color="red", weight=0]; 341[label="vwx301 == vwx401",fontsize=16,color="magenta"];341 -> 506[label="",style="dashed", color="magenta", weight=3]; 341 -> 507[label="",style="dashed", color="magenta", weight=3]; 342 -> 26[label="",style="dashed", color="red", weight=0]; 342[label="vwx300 == vwx400",fontsize=16,color="magenta"];342 -> 508[label="",style="dashed", color="magenta", weight=3]; 342 -> 509[label="",style="dashed", color="magenta", weight=3]; 343 -> 27[label="",style="dashed", color="red", weight=0]; 343[label="vwx300 == vwx400",fontsize=16,color="magenta"];343 -> 510[label="",style="dashed", color="magenta", weight=3]; 343 -> 511[label="",style="dashed", color="magenta", weight=3]; 344 -> 28[label="",style="dashed", color="red", weight=0]; 344[label="vwx300 == vwx400",fontsize=16,color="magenta"];344 -> 512[label="",style="dashed", color="magenta", weight=3]; 344 -> 513[label="",style="dashed", color="magenta", weight=3]; 345 -> 29[label="",style="dashed", color="red", weight=0]; 345[label="vwx300 == vwx400",fontsize=16,color="magenta"];345 -> 514[label="",style="dashed", color="magenta", weight=3]; 345 -> 515[label="",style="dashed", color="magenta", weight=3]; 346 -> 30[label="",style="dashed", color="red", weight=0]; 346[label="vwx300 == vwx400",fontsize=16,color="magenta"];346 -> 516[label="",style="dashed", color="magenta", weight=3]; 346 -> 517[label="",style="dashed", color="magenta", weight=3]; 347 -> 31[label="",style="dashed", color="red", weight=0]; 347[label="vwx300 == vwx400",fontsize=16,color="magenta"];347 -> 518[label="",style="dashed", color="magenta", weight=3]; 347 -> 519[label="",style="dashed", color="magenta", weight=3]; 348 -> 32[label="",style="dashed", color="red", weight=0]; 348[label="vwx300 == vwx400",fontsize=16,color="magenta"];348 -> 520[label="",style="dashed", color="magenta", weight=3]; 348 -> 521[label="",style="dashed", color="magenta", weight=3]; 349 -> 33[label="",style="dashed", color="red", weight=0]; 349[label="vwx300 == vwx400",fontsize=16,color="magenta"];349 -> 522[label="",style="dashed", color="magenta", weight=3]; 349 -> 523[label="",style="dashed", color="magenta", weight=3]; 350 -> 34[label="",style="dashed", color="red", weight=0]; 350[label="vwx300 == vwx400",fontsize=16,color="magenta"];350 -> 524[label="",style="dashed", color="magenta", weight=3]; 350 -> 525[label="",style="dashed", color="magenta", weight=3]; 351 -> 35[label="",style="dashed", color="red", weight=0]; 351[label="vwx300 == vwx400",fontsize=16,color="magenta"];351 -> 526[label="",style="dashed", color="magenta", weight=3]; 351 -> 527[label="",style="dashed", color="magenta", weight=3]; 352 -> 36[label="",style="dashed", color="red", weight=0]; 352[label="vwx300 == vwx400",fontsize=16,color="magenta"];352 -> 528[label="",style="dashed", color="magenta", weight=3]; 352 -> 529[label="",style="dashed", color="magenta", weight=3]; 353 -> 37[label="",style="dashed", color="red", weight=0]; 353[label="vwx300 == vwx400",fontsize=16,color="magenta"];353 -> 530[label="",style="dashed", color="magenta", weight=3]; 353 -> 531[label="",style="dashed", color="magenta", weight=3]; 354 -> 38[label="",style="dashed", color="red", weight=0]; 354[label="vwx300 == vwx400",fontsize=16,color="magenta"];354 -> 532[label="",style="dashed", color="magenta", weight=3]; 354 -> 533[label="",style="dashed", color="magenta", weight=3]; 355 -> 39[label="",style="dashed", color="red", weight=0]; 355[label="vwx300 == vwx400",fontsize=16,color="magenta"];355 -> 534[label="",style="dashed", color="magenta", weight=3]; 355 -> 535[label="",style="dashed", color="magenta", weight=3]; 356[label="vwx400",fontsize=16,color="green",shape="box"];357[label="vwx300",fontsize=16,color="green",shape="box"];358[label="vwx400",fontsize=16,color="green",shape="box"];359[label="vwx300",fontsize=16,color="green",shape="box"];360[label="vwx400",fontsize=16,color="green",shape="box"];361[label="vwx300",fontsize=16,color="green",shape="box"];362[label="vwx400",fontsize=16,color="green",shape="box"];363[label="vwx300",fontsize=16,color="green",shape="box"];364[label="vwx400",fontsize=16,color="green",shape="box"];365[label="vwx300",fontsize=16,color="green",shape="box"];366[label="vwx400",fontsize=16,color="green",shape="box"];367[label="vwx300",fontsize=16,color="green",shape="box"];368[label="vwx400",fontsize=16,color="green",shape="box"];369[label="vwx300",fontsize=16,color="green",shape="box"];370[label="vwx400",fontsize=16,color="green",shape="box"];371[label="vwx300",fontsize=16,color="green",shape="box"];372[label="vwx400",fontsize=16,color="green",shape="box"];373[label="vwx300",fontsize=16,color="green",shape="box"];374[label="vwx400",fontsize=16,color="green",shape="box"];375[label="vwx300",fontsize=16,color="green",shape="box"];376[label="vwx400",fontsize=16,color="green",shape="box"];377[label="vwx300",fontsize=16,color="green",shape="box"];378[label="vwx400",fontsize=16,color="green",shape="box"];379[label="vwx300",fontsize=16,color="green",shape="box"];380[label="vwx400",fontsize=16,color="green",shape="box"];381[label="vwx300",fontsize=16,color="green",shape="box"];382[label="vwx400",fontsize=16,color="green",shape="box"];383[label="vwx300",fontsize=16,color="green",shape="box"];384[label="vwx301 * vwx400",fontsize=16,color="black",shape="triangle"];384 -> 536[label="",style="solid", color="black", weight=3]; 385 -> 384[label="",style="dashed", color="red", weight=0]; 385[label="vwx300 * vwx401",fontsize=16,color="magenta"];385 -> 537[label="",style="dashed", color="magenta", weight=3]; 385 -> 538[label="",style="dashed", color="magenta", weight=3]; 386[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];386 -> 539[label="",style="solid", color="black", weight=3]; 387[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];387 -> 540[label="",style="solid", color="black", weight=3]; 388[label="False",fontsize=16,color="green",shape="box"];389[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];389 -> 541[label="",style="solid", color="black", weight=3]; 390[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];390 -> 542[label="",style="solid", color="black", weight=3]; 391[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];391 -> 543[label="",style="solid", color="black", weight=3]; 392[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];392 -> 544[label="",style="solid", color="black", weight=3]; 393[label="False",fontsize=16,color="green",shape="box"];394[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];394 -> 545[label="",style="solid", color="black", weight=3]; 395[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];395 -> 546[label="",style="solid", color="black", weight=3]; 396[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];396 -> 547[label="",style="solid", color="black", weight=3]; 397[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];397 -> 548[label="",style="solid", color="black", weight=3]; 398[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];398 -> 549[label="",style="solid", color="black", weight=3]; 399[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];399 -> 550[label="",style="solid", color="black", weight=3]; 400[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];1898[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1898[label="",style="solid", color="blue", weight=9]; 1898 -> 551[label="",style="solid", color="blue", weight=3]; 1899[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1899[label="",style="solid", color="blue", weight=9]; 1899 -> 552[label="",style="solid", color="blue", weight=3]; 1900[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1900[label="",style="solid", color="blue", weight=9]; 1900 -> 553[label="",style="solid", color="blue", weight=3]; 1901[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1901[label="",style="solid", color="blue", weight=9]; 1901 -> 554[label="",style="solid", color="blue", weight=3]; 1902[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1902[label="",style="solid", color="blue", weight=9]; 1902 -> 555[label="",style="solid", color="blue", weight=3]; 1903[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1903[label="",style="solid", color="blue", weight=9]; 1903 -> 556[label="",style="solid", color="blue", weight=3]; 1904[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1904[label="",style="solid", color="blue", weight=9]; 1904 -> 557[label="",style="solid", color="blue", weight=3]; 1905[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1905[label="",style="solid", color="blue", weight=9]; 1905 -> 558[label="",style="solid", color="blue", weight=3]; 1906[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1906[label="",style="solid", color="blue", weight=9]; 1906 -> 559[label="",style="solid", color="blue", weight=3]; 1907[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1907[label="",style="solid", color="blue", weight=9]; 1907 -> 560[label="",style="solid", color="blue", weight=3]; 1908[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1908[label="",style="solid", color="blue", weight=9]; 1908 -> 561[label="",style="solid", color="blue", weight=3]; 1909[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1909[label="",style="solid", color="blue", weight=9]; 1909 -> 562[label="",style="solid", color="blue", weight=3]; 1910[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1910[label="",style="solid", color="blue", weight=9]; 1910 -> 563[label="",style="solid", color="blue", weight=3]; 1911[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 1911[label="",style="solid", color="blue", weight=9]; 1911 -> 564[label="",style="solid", color="blue", weight=3]; 401[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];1912[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1912[label="",style="solid", color="blue", weight=9]; 1912 -> 565[label="",style="solid", color="blue", weight=3]; 1913[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1913[label="",style="solid", color="blue", weight=9]; 1913 -> 566[label="",style="solid", color="blue", weight=3]; 1914[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1914[label="",style="solid", color="blue", weight=9]; 1914 -> 567[label="",style="solid", color="blue", weight=3]; 1915[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1915[label="",style="solid", color="blue", weight=9]; 1915 -> 568[label="",style="solid", color="blue", weight=3]; 1916[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1916[label="",style="solid", color="blue", weight=9]; 1916 -> 569[label="",style="solid", color="blue", weight=3]; 1917[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1917[label="",style="solid", color="blue", weight=9]; 1917 -> 570[label="",style="solid", color="blue", weight=3]; 1918[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1918[label="",style="solid", color="blue", weight=9]; 1918 -> 571[label="",style="solid", color="blue", weight=3]; 1919[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1919[label="",style="solid", color="blue", weight=9]; 1919 -> 572[label="",style="solid", color="blue", weight=3]; 1920[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1920[label="",style="solid", color="blue", weight=9]; 1920 -> 573[label="",style="solid", color="blue", weight=3]; 1921[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1921[label="",style="solid", color="blue", weight=9]; 1921 -> 574[label="",style="solid", color="blue", weight=3]; 1922[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1922[label="",style="solid", color="blue", weight=9]; 1922 -> 575[label="",style="solid", color="blue", weight=3]; 1923[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1923[label="",style="solid", color="blue", weight=9]; 1923 -> 576[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"];401 -> 1924[label="",style="solid", color="blue", weight=9]; 1924 -> 577[label="",style="solid", color="blue", weight=3]; 1925[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 1925[label="",style="solid", color="blue", weight=9]; 1925 -> 578[label="",style="solid", color="blue", weight=3]; 402 -> 26[label="",style="dashed", color="red", weight=0]; 402[label="vwx300 == vwx400",fontsize=16,color="magenta"];402 -> 579[label="",style="dashed", color="magenta", weight=3]; 402 -> 580[label="",style="dashed", color="magenta", weight=3]; 403 -> 27[label="",style="dashed", color="red", weight=0]; 403[label="vwx300 == vwx400",fontsize=16,color="magenta"];403 -> 581[label="",style="dashed", color="magenta", weight=3]; 403 -> 582[label="",style="dashed", color="magenta", weight=3]; 404 -> 28[label="",style="dashed", color="red", weight=0]; 404[label="vwx300 == vwx400",fontsize=16,color="magenta"];404 -> 583[label="",style="dashed", color="magenta", weight=3]; 404 -> 584[label="",style="dashed", color="magenta", weight=3]; 405 -> 29[label="",style="dashed", color="red", weight=0]; 405[label="vwx300 == vwx400",fontsize=16,color="magenta"];405 -> 585[label="",style="dashed", color="magenta", weight=3]; 405 -> 586[label="",style="dashed", color="magenta", weight=3]; 406 -> 30[label="",style="dashed", color="red", weight=0]; 406[label="vwx300 == vwx400",fontsize=16,color="magenta"];406 -> 587[label="",style="dashed", color="magenta", weight=3]; 406 -> 588[label="",style="dashed", color="magenta", weight=3]; 407 -> 31[label="",style="dashed", color="red", weight=0]; 407[label="vwx300 == vwx400",fontsize=16,color="magenta"];407 -> 589[label="",style="dashed", color="magenta", weight=3]; 407 -> 590[label="",style="dashed", color="magenta", weight=3]; 408 -> 32[label="",style="dashed", color="red", weight=0]; 408[label="vwx300 == vwx400",fontsize=16,color="magenta"];408 -> 591[label="",style="dashed", color="magenta", weight=3]; 408 -> 592[label="",style="dashed", color="magenta", weight=3]; 409 -> 33[label="",style="dashed", color="red", weight=0]; 409[label="vwx300 == vwx400",fontsize=16,color="magenta"];409 -> 593[label="",style="dashed", color="magenta", weight=3]; 409 -> 594[label="",style="dashed", color="magenta", weight=3]; 410 -> 34[label="",style="dashed", color="red", weight=0]; 410[label="vwx300 == vwx400",fontsize=16,color="magenta"];410 -> 595[label="",style="dashed", color="magenta", weight=3]; 410 -> 596[label="",style="dashed", color="magenta", weight=3]; 411 -> 35[label="",style="dashed", color="red", weight=0]; 411[label="vwx300 == vwx400",fontsize=16,color="magenta"];411 -> 597[label="",style="dashed", color="magenta", weight=3]; 411 -> 598[label="",style="dashed", color="magenta", weight=3]; 412 -> 36[label="",style="dashed", color="red", weight=0]; 412[label="vwx300 == vwx400",fontsize=16,color="magenta"];412 -> 599[label="",style="dashed", color="magenta", weight=3]; 412 -> 600[label="",style="dashed", color="magenta", weight=3]; 413 -> 37[label="",style="dashed", color="red", weight=0]; 413[label="vwx300 == vwx400",fontsize=16,color="magenta"];413 -> 601[label="",style="dashed", color="magenta", weight=3]; 413 -> 602[label="",style="dashed", color="magenta", weight=3]; 414 -> 38[label="",style="dashed", color="red", weight=0]; 414[label="vwx300 == vwx400",fontsize=16,color="magenta"];414 -> 603[label="",style="dashed", color="magenta", weight=3]; 414 -> 604[label="",style="dashed", color="magenta", weight=3]; 415 -> 39[label="",style="dashed", color="red", weight=0]; 415[label="vwx300 == vwx400",fontsize=16,color="magenta"];415 -> 605[label="",style="dashed", color="magenta", weight=3]; 415 -> 606[label="",style="dashed", color="magenta", weight=3]; 416 -> 384[label="",style="dashed", color="red", weight=0]; 416[label="vwx301 * vwx400",fontsize=16,color="magenta"];416 -> 607[label="",style="dashed", color="magenta", weight=3]; 416 -> 608[label="",style="dashed", color="magenta", weight=3]; 417 -> 384[label="",style="dashed", color="red", weight=0]; 417[label="vwx300 * vwx401",fontsize=16,color="magenta"];417 -> 609[label="",style="dashed", color="magenta", weight=3]; 417 -> 610[label="",style="dashed", color="magenta", weight=3]; 418[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];418 -> 611[label="",style="solid", color="black", weight=3]; 419[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];419 -> 612[label="",style="solid", color="black", weight=3]; 420[label="(vwx90,vwx91) <= vwx10",fontsize=16,color="burlywood",shape="box"];1926[label="vwx10/(vwx100,vwx101)",fontsize=10,color="white",style="solid",shape="box"];420 -> 1926[label="",style="solid", color="burlywood", weight=9]; 1926 -> 613[label="",style="solid", color="burlywood", weight=3]; 421[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];421 -> 614[label="",style="solid", color="black", weight=3]; 422[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];422 -> 615[label="",style="solid", color="black", weight=3]; 423[label="Nothing <= vwx10",fontsize=16,color="burlywood",shape="box"];1927[label="vwx10/Nothing",fontsize=10,color="white",style="solid",shape="box"];423 -> 1927[label="",style="solid", color="burlywood", weight=9]; 1927 -> 616[label="",style="solid", color="burlywood", weight=3]; 1928[label="vwx10/Just vwx100",fontsize=10,color="white",style="solid",shape="box"];423 -> 1928[label="",style="solid", color="burlywood", weight=9]; 1928 -> 617[label="",style="solid", color="burlywood", weight=3]; 424[label="Just vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];1929[label="vwx10/Nothing",fontsize=10,color="white",style="solid",shape="box"];424 -> 1929[label="",style="solid", color="burlywood", weight=9]; 1929 -> 618[label="",style="solid", color="burlywood", weight=3]; 1930[label="vwx10/Just vwx100",fontsize=10,color="white",style="solid",shape="box"];424 -> 1930[label="",style="solid", color="burlywood", weight=9]; 1930 -> 619[label="",style="solid", color="burlywood", weight=3]; 425[label="False <= vwx10",fontsize=16,color="burlywood",shape="box"];1931[label="vwx10/False",fontsize=10,color="white",style="solid",shape="box"];425 -> 1931[label="",style="solid", color="burlywood", weight=9]; 1931 -> 620[label="",style="solid", color="burlywood", weight=3]; 1932[label="vwx10/True",fontsize=10,color="white",style="solid",shape="box"];425 -> 1932[label="",style="solid", color="burlywood", weight=9]; 1932 -> 621[label="",style="solid", color="burlywood", weight=3]; 426[label="True <= vwx10",fontsize=16,color="burlywood",shape="box"];1933[label="vwx10/False",fontsize=10,color="white",style="solid",shape="box"];426 -> 1933[label="",style="solid", color="burlywood", weight=9]; 1933 -> 622[label="",style="solid", color="burlywood", weight=3]; 1934[label="vwx10/True",fontsize=10,color="white",style="solid",shape="box"];426 -> 1934[label="",style="solid", color="burlywood", weight=9]; 1934 -> 623[label="",style="solid", color="burlywood", weight=3]; 427[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];427 -> 624[label="",style="solid", color="black", weight=3]; 428[label="Left vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];1935[label="vwx10/Left vwx100",fontsize=10,color="white",style="solid",shape="box"];428 -> 1935[label="",style="solid", color="burlywood", weight=9]; 1935 -> 625[label="",style="solid", color="burlywood", weight=3]; 1936[label="vwx10/Right vwx100",fontsize=10,color="white",style="solid",shape="box"];428 -> 1936[label="",style="solid", color="burlywood", weight=9]; 1936 -> 626[label="",style="solid", color="burlywood", weight=3]; 429[label="Right vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];1937[label="vwx10/Left vwx100",fontsize=10,color="white",style="solid",shape="box"];429 -> 1937[label="",style="solid", color="burlywood", weight=9]; 1937 -> 627[label="",style="solid", color="burlywood", weight=3]; 1938[label="vwx10/Right vwx100",fontsize=10,color="white",style="solid",shape="box"];429 -> 1938[label="",style="solid", color="burlywood", weight=9]; 1938 -> 628[label="",style="solid", color="burlywood", weight=3]; 430[label="(vwx90,vwx91,vwx92) <= vwx10",fontsize=16,color="burlywood",shape="box"];1939[label="vwx10/(vwx100,vwx101,vwx102)",fontsize=10,color="white",style="solid",shape="box"];430 -> 1939[label="",style="solid", color="burlywood", weight=9]; 1939 -> 629[label="",style="solid", color="burlywood", weight=3]; 431[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];431 -> 630[label="",style="solid", color="black", weight=3]; 432[label="LT <= vwx10",fontsize=16,color="burlywood",shape="box"];1940[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];432 -> 1940[label="",style="solid", color="burlywood", weight=9]; 1940 -> 631[label="",style="solid", color="burlywood", weight=3]; 1941[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];432 -> 1941[label="",style="solid", color="burlywood", weight=9]; 1941 -> 632[label="",style="solid", color="burlywood", weight=3]; 1942[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];432 -> 1942[label="",style="solid", color="burlywood", weight=9]; 1942 -> 633[label="",style="solid", color="burlywood", weight=3]; 433[label="EQ <= vwx10",fontsize=16,color="burlywood",shape="box"];1943[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];433 -> 1943[label="",style="solid", color="burlywood", weight=9]; 1943 -> 634[label="",style="solid", color="burlywood", weight=3]; 1944[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];433 -> 1944[label="",style="solid", color="burlywood", weight=9]; 1944 -> 635[label="",style="solid", color="burlywood", weight=3]; 1945[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];433 -> 1945[label="",style="solid", color="burlywood", weight=9]; 1945 -> 636[label="",style="solid", color="burlywood", weight=3]; 434[label="GT <= vwx10",fontsize=16,color="burlywood",shape="box"];1946[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];434 -> 1946[label="",style="solid", color="burlywood", weight=9]; 1946 -> 637[label="",style="solid", color="burlywood", weight=3]; 1947[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];434 -> 1947[label="",style="solid", color="burlywood", weight=9]; 1947 -> 638[label="",style="solid", color="burlywood", weight=3]; 1948[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];434 -> 1948[label="",style="solid", color="burlywood", weight=9]; 1948 -> 639[label="",style="solid", color="burlywood", weight=3]; 435[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];435 -> 640[label="",style="solid", color="black", weight=3]; 436[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];436 -> 641[label="",style="solid", color="black", weight=3]; 437[label="compare0 (Just vwx16) (Just vwx17) True",fontsize=16,color="black",shape="box"];437 -> 642[label="",style="solid", color="black", weight=3]; 438[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];438 -> 643[label="",style="solid", color="black", weight=3]; 439[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];439 -> 644[label="",style="solid", color="black", weight=3]; 440[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];440 -> 645[label="",style="solid", color="black", weight=3]; 441[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];441 -> 646[label="",style="solid", color="black", weight=3]; 442[label="vwx400",fontsize=16,color="green",shape="box"];443[label="vwx300",fontsize=16,color="green",shape="box"];444[label="vwx400",fontsize=16,color="green",shape="box"];445[label="vwx300",fontsize=16,color="green",shape="box"];446[label="vwx400",fontsize=16,color="green",shape="box"];447[label="vwx300",fontsize=16,color="green",shape="box"];448[label="vwx400",fontsize=16,color="green",shape="box"];449[label="vwx300",fontsize=16,color="green",shape="box"];450[label="vwx400",fontsize=16,color="green",shape="box"];451[label="vwx300",fontsize=16,color="green",shape="box"];452[label="vwx400",fontsize=16,color="green",shape="box"];453[label="vwx300",fontsize=16,color="green",shape="box"];454[label="vwx400",fontsize=16,color="green",shape="box"];455[label="vwx300",fontsize=16,color="green",shape="box"];456[label="vwx400",fontsize=16,color="green",shape="box"];457[label="vwx300",fontsize=16,color="green",shape="box"];458[label="vwx400",fontsize=16,color="green",shape="box"];459[label="vwx300",fontsize=16,color="green",shape="box"];460[label="vwx400",fontsize=16,color="green",shape="box"];461[label="vwx300",fontsize=16,color="green",shape="box"];462[label="vwx400",fontsize=16,color="green",shape="box"];463[label="vwx300",fontsize=16,color="green",shape="box"];464[label="vwx400",fontsize=16,color="green",shape="box"];465[label="vwx300",fontsize=16,color="green",shape="box"];466[label="vwx400",fontsize=16,color="green",shape="box"];467[label="vwx300",fontsize=16,color="green",shape="box"];468[label="vwx400",fontsize=16,color="green",shape="box"];469[label="vwx300",fontsize=16,color="green",shape="box"];470[label="False",fontsize=16,color="green",shape="box"];471[label="vwx24",fontsize=16,color="green",shape="box"];472[label="vwx401",fontsize=16,color="green",shape="box"];473[label="vwx301",fontsize=16,color="green",shape="box"];474[label="vwx401",fontsize=16,color="green",shape="box"];475[label="vwx301",fontsize=16,color="green",shape="box"];476[label="vwx400",fontsize=16,color="green",shape="box"];477[label="vwx300",fontsize=16,color="green",shape="box"];478[label="vwx400",fontsize=16,color="green",shape="box"];479[label="vwx300",fontsize=16,color="green",shape="box"];480[label="vwx401",fontsize=16,color="green",shape="box"];481[label="vwx301",fontsize=16,color="green",shape="box"];482[label="vwx401",fontsize=16,color="green",shape="box"];483[label="vwx301",fontsize=16,color="green",shape="box"];484[label="vwx401",fontsize=16,color="green",shape="box"];485[label="vwx301",fontsize=16,color="green",shape="box"];486[label="vwx401",fontsize=16,color="green",shape="box"];487[label="vwx301",fontsize=16,color="green",shape="box"];488[label="vwx401",fontsize=16,color="green",shape="box"];489[label="vwx301",fontsize=16,color="green",shape="box"];490[label="vwx401",fontsize=16,color="green",shape="box"];491[label="vwx301",fontsize=16,color="green",shape="box"];492[label="vwx401",fontsize=16,color="green",shape="box"];493[label="vwx301",fontsize=16,color="green",shape="box"];494[label="vwx401",fontsize=16,color="green",shape="box"];495[label="vwx301",fontsize=16,color="green",shape="box"];496[label="vwx401",fontsize=16,color="green",shape="box"];497[label="vwx301",fontsize=16,color="green",shape="box"];498[label="vwx401",fontsize=16,color="green",shape="box"];499[label="vwx301",fontsize=16,color="green",shape="box"];500[label="vwx401",fontsize=16,color="green",shape="box"];501[label="vwx301",fontsize=16,color="green",shape="box"];502[label="vwx401",fontsize=16,color="green",shape="box"];503[label="vwx301",fontsize=16,color="green",shape="box"];504[label="vwx401",fontsize=16,color="green",shape="box"];505[label="vwx301",fontsize=16,color="green",shape="box"];506[label="vwx401",fontsize=16,color="green",shape="box"];507[label="vwx301",fontsize=16,color="green",shape="box"];508[label="vwx400",fontsize=16,color="green",shape="box"];509[label="vwx300",fontsize=16,color="green",shape="box"];510[label="vwx400",fontsize=16,color="green",shape="box"];511[label="vwx300",fontsize=16,color="green",shape="box"];512[label="vwx400",fontsize=16,color="green",shape="box"];513[label="vwx300",fontsize=16,color="green",shape="box"];514[label="vwx400",fontsize=16,color="green",shape="box"];515[label="vwx300",fontsize=16,color="green",shape="box"];516[label="vwx400",fontsize=16,color="green",shape="box"];517[label="vwx300",fontsize=16,color="green",shape="box"];518[label="vwx400",fontsize=16,color="green",shape="box"];519[label="vwx300",fontsize=16,color="green",shape="box"];520[label="vwx400",fontsize=16,color="green",shape="box"];521[label="vwx300",fontsize=16,color="green",shape="box"];522[label="vwx400",fontsize=16,color="green",shape="box"];523[label="vwx300",fontsize=16,color="green",shape="box"];524[label="vwx400",fontsize=16,color="green",shape="box"];525[label="vwx300",fontsize=16,color="green",shape="box"];526[label="vwx400",fontsize=16,color="green",shape="box"];527[label="vwx300",fontsize=16,color="green",shape="box"];528[label="vwx400",fontsize=16,color="green",shape="box"];529[label="vwx300",fontsize=16,color="green",shape="box"];530[label="vwx400",fontsize=16,color="green",shape="box"];531[label="vwx300",fontsize=16,color="green",shape="box"];532[label="vwx400",fontsize=16,color="green",shape="box"];533[label="vwx300",fontsize=16,color="green",shape="box"];534[label="vwx400",fontsize=16,color="green",shape="box"];535[label="vwx300",fontsize=16,color="green",shape="box"];536[label="primMulInt vwx301 vwx400",fontsize=16,color="burlywood",shape="triangle"];1949[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];536 -> 1949[label="",style="solid", color="burlywood", weight=9]; 1949 -> 647[label="",style="solid", color="burlywood", weight=3]; 1950[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];536 -> 1950[label="",style="solid", color="burlywood", weight=9]; 1950 -> 648[label="",style="solid", color="burlywood", weight=3]; 537[label="vwx300",fontsize=16,color="green",shape="box"];538[label="vwx401",fontsize=16,color="green",shape="box"];539 -> 153[label="",style="dashed", color="red", weight=0]; 539[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];539 -> 649[label="",style="dashed", color="magenta", weight=3]; 539 -> 650[label="",style="dashed", color="magenta", weight=3]; 540[label="False",fontsize=16,color="green",shape="box"];541[label="False",fontsize=16,color="green",shape="box"];542[label="True",fontsize=16,color="green",shape="box"];543[label="False",fontsize=16,color="green",shape="box"];544[label="True",fontsize=16,color="green",shape="box"];545 -> 153[label="",style="dashed", color="red", weight=0]; 545[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];545 -> 651[label="",style="dashed", color="magenta", weight=3]; 545 -> 652[label="",style="dashed", color="magenta", weight=3]; 546[label="False",fontsize=16,color="green",shape="box"];547[label="False",fontsize=16,color="green",shape="box"];548[label="True",fontsize=16,color="green",shape="box"];549[label="False",fontsize=16,color="green",shape="box"];550[label="True",fontsize=16,color="green",shape="box"];551 -> 26[label="",style="dashed", color="red", weight=0]; 551[label="vwx302 == vwx402",fontsize=16,color="magenta"];551 -> 653[label="",style="dashed", color="magenta", weight=3]; 551 -> 654[label="",style="dashed", color="magenta", weight=3]; 552 -> 27[label="",style="dashed", color="red", weight=0]; 552[label="vwx302 == vwx402",fontsize=16,color="magenta"];552 -> 655[label="",style="dashed", color="magenta", weight=3]; 552 -> 656[label="",style="dashed", color="magenta", weight=3]; 553 -> 28[label="",style="dashed", color="red", weight=0]; 553[label="vwx302 == vwx402",fontsize=16,color="magenta"];553 -> 657[label="",style="dashed", color="magenta", weight=3]; 553 -> 658[label="",style="dashed", color="magenta", weight=3]; 554 -> 29[label="",style="dashed", color="red", weight=0]; 554[label="vwx302 == vwx402",fontsize=16,color="magenta"];554 -> 659[label="",style="dashed", color="magenta", weight=3]; 554 -> 660[label="",style="dashed", color="magenta", weight=3]; 555 -> 30[label="",style="dashed", color="red", weight=0]; 555[label="vwx302 == vwx402",fontsize=16,color="magenta"];555 -> 661[label="",style="dashed", color="magenta", weight=3]; 555 -> 662[label="",style="dashed", color="magenta", weight=3]; 556 -> 31[label="",style="dashed", color="red", weight=0]; 556[label="vwx302 == vwx402",fontsize=16,color="magenta"];556 -> 663[label="",style="dashed", color="magenta", weight=3]; 556 -> 664[label="",style="dashed", color="magenta", weight=3]; 557 -> 32[label="",style="dashed", color="red", weight=0]; 557[label="vwx302 == vwx402",fontsize=16,color="magenta"];557 -> 665[label="",style="dashed", color="magenta", weight=3]; 557 -> 666[label="",style="dashed", color="magenta", weight=3]; 558 -> 33[label="",style="dashed", color="red", weight=0]; 558[label="vwx302 == vwx402",fontsize=16,color="magenta"];558 -> 667[label="",style="dashed", color="magenta", weight=3]; 558 -> 668[label="",style="dashed", color="magenta", weight=3]; 559 -> 34[label="",style="dashed", color="red", weight=0]; 559[label="vwx302 == vwx402",fontsize=16,color="magenta"];559 -> 669[label="",style="dashed", color="magenta", weight=3]; 559 -> 670[label="",style="dashed", color="magenta", weight=3]; 560 -> 35[label="",style="dashed", color="red", weight=0]; 560[label="vwx302 == vwx402",fontsize=16,color="magenta"];560 -> 671[label="",style="dashed", color="magenta", weight=3]; 560 -> 672[label="",style="dashed", color="magenta", weight=3]; 561 -> 36[label="",style="dashed", color="red", weight=0]; 561[label="vwx302 == vwx402",fontsize=16,color="magenta"];561 -> 673[label="",style="dashed", color="magenta", weight=3]; 561 -> 674[label="",style="dashed", color="magenta", weight=3]; 562 -> 37[label="",style="dashed", color="red", weight=0]; 562[label="vwx302 == vwx402",fontsize=16,color="magenta"];562 -> 675[label="",style="dashed", color="magenta", weight=3]; 562 -> 676[label="",style="dashed", color="magenta", weight=3]; 563 -> 38[label="",style="dashed", color="red", weight=0]; 563[label="vwx302 == vwx402",fontsize=16,color="magenta"];563 -> 677[label="",style="dashed", color="magenta", weight=3]; 563 -> 678[label="",style="dashed", color="magenta", weight=3]; 564 -> 39[label="",style="dashed", color="red", weight=0]; 564[label="vwx302 == vwx402",fontsize=16,color="magenta"];564 -> 679[label="",style="dashed", color="magenta", weight=3]; 564 -> 680[label="",style="dashed", color="magenta", weight=3]; 565 -> 26[label="",style="dashed", color="red", weight=0]; 565[label="vwx301 == vwx401",fontsize=16,color="magenta"];565 -> 681[label="",style="dashed", color="magenta", weight=3]; 565 -> 682[label="",style="dashed", color="magenta", weight=3]; 566 -> 27[label="",style="dashed", color="red", weight=0]; 566[label="vwx301 == vwx401",fontsize=16,color="magenta"];566 -> 683[label="",style="dashed", color="magenta", weight=3]; 566 -> 684[label="",style="dashed", color="magenta", weight=3]; 567 -> 28[label="",style="dashed", color="red", weight=0]; 567[label="vwx301 == vwx401",fontsize=16,color="magenta"];567 -> 685[label="",style="dashed", color="magenta", weight=3]; 567 -> 686[label="",style="dashed", color="magenta", weight=3]; 568 -> 29[label="",style="dashed", color="red", weight=0]; 568[label="vwx301 == vwx401",fontsize=16,color="magenta"];568 -> 687[label="",style="dashed", color="magenta", weight=3]; 568 -> 688[label="",style="dashed", color="magenta", weight=3]; 569 -> 30[label="",style="dashed", color="red", weight=0]; 569[label="vwx301 == vwx401",fontsize=16,color="magenta"];569 -> 689[label="",style="dashed", color="magenta", weight=3]; 569 -> 690[label="",style="dashed", color="magenta", weight=3]; 570 -> 31[label="",style="dashed", color="red", weight=0]; 570[label="vwx301 == vwx401",fontsize=16,color="magenta"];570 -> 691[label="",style="dashed", color="magenta", weight=3]; 570 -> 692[label="",style="dashed", color="magenta", weight=3]; 571 -> 32[label="",style="dashed", color="red", weight=0]; 571[label="vwx301 == vwx401",fontsize=16,color="magenta"];571 -> 693[label="",style="dashed", color="magenta", weight=3]; 571 -> 694[label="",style="dashed", color="magenta", weight=3]; 572 -> 33[label="",style="dashed", color="red", weight=0]; 572[label="vwx301 == vwx401",fontsize=16,color="magenta"];572 -> 695[label="",style="dashed", color="magenta", weight=3]; 572 -> 696[label="",style="dashed", color="magenta", weight=3]; 573 -> 34[label="",style="dashed", color="red", weight=0]; 573[label="vwx301 == vwx401",fontsize=16,color="magenta"];573 -> 697[label="",style="dashed", color="magenta", weight=3]; 573 -> 698[label="",style="dashed", color="magenta", weight=3]; 574 -> 35[label="",style="dashed", color="red", weight=0]; 574[label="vwx301 == vwx401",fontsize=16,color="magenta"];574 -> 699[label="",style="dashed", color="magenta", weight=3]; 574 -> 700[label="",style="dashed", color="magenta", weight=3]; 575 -> 36[label="",style="dashed", color="red", weight=0]; 575[label="vwx301 == vwx401",fontsize=16,color="magenta"];575 -> 701[label="",style="dashed", color="magenta", weight=3]; 575 -> 702[label="",style="dashed", color="magenta", weight=3]; 576 -> 37[label="",style="dashed", color="red", weight=0]; 576[label="vwx301 == vwx401",fontsize=16,color="magenta"];576 -> 703[label="",style="dashed", color="magenta", weight=3]; 576 -> 704[label="",style="dashed", color="magenta", weight=3]; 577 -> 38[label="",style="dashed", color="red", weight=0]; 577[label="vwx301 == vwx401",fontsize=16,color="magenta"];577 -> 705[label="",style="dashed", color="magenta", weight=3]; 577 -> 706[label="",style="dashed", color="magenta", weight=3]; 578 -> 39[label="",style="dashed", color="red", weight=0]; 578[label="vwx301 == vwx401",fontsize=16,color="magenta"];578 -> 707[label="",style="dashed", color="magenta", weight=3]; 578 -> 708[label="",style="dashed", color="magenta", weight=3]; 579[label="vwx400",fontsize=16,color="green",shape="box"];580[label="vwx300",fontsize=16,color="green",shape="box"];581[label="vwx400",fontsize=16,color="green",shape="box"];582[label="vwx300",fontsize=16,color="green",shape="box"];583[label="vwx400",fontsize=16,color="green",shape="box"];584[label="vwx300",fontsize=16,color="green",shape="box"];585[label="vwx400",fontsize=16,color="green",shape="box"];586[label="vwx300",fontsize=16,color="green",shape="box"];587[label="vwx400",fontsize=16,color="green",shape="box"];588[label="vwx300",fontsize=16,color="green",shape="box"];589[label="vwx400",fontsize=16,color="green",shape="box"];590[label="vwx300",fontsize=16,color="green",shape="box"];591[label="vwx400",fontsize=16,color="green",shape="box"];592[label="vwx300",fontsize=16,color="green",shape="box"];593[label="vwx400",fontsize=16,color="green",shape="box"];594[label="vwx300",fontsize=16,color="green",shape="box"];595[label="vwx400",fontsize=16,color="green",shape="box"];596[label="vwx300",fontsize=16,color="green",shape="box"];597[label="vwx400",fontsize=16,color="green",shape="box"];598[label="vwx300",fontsize=16,color="green",shape="box"];599[label="vwx400",fontsize=16,color="green",shape="box"];600[label="vwx300",fontsize=16,color="green",shape="box"];601[label="vwx400",fontsize=16,color="green",shape="box"];602[label="vwx300",fontsize=16,color="green",shape="box"];603[label="vwx400",fontsize=16,color="green",shape="box"];604[label="vwx300",fontsize=16,color="green",shape="box"];605[label="vwx400",fontsize=16,color="green",shape="box"];606[label="vwx300",fontsize=16,color="green",shape="box"];607[label="vwx301",fontsize=16,color="green",shape="box"];608[label="vwx400",fontsize=16,color="green",shape="box"];609[label="vwx300",fontsize=16,color="green",shape="box"];610[label="vwx401",fontsize=16,color="green",shape="box"];611 -> 709[label="",style="dashed", color="red", weight=0]; 611[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];611 -> 710[label="",style="dashed", color="magenta", weight=3]; 612 -> 709[label="",style="dashed", color="red", weight=0]; 612[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];612 -> 711[label="",style="dashed", color="magenta", weight=3]; 613[label="(vwx90,vwx91) <= (vwx100,vwx101)",fontsize=16,color="black",shape="box"];613 -> 718[label="",style="solid", color="black", weight=3]; 614 -> 709[label="",style="dashed", color="red", weight=0]; 614[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];614 -> 712[label="",style="dashed", color="magenta", weight=3]; 615 -> 709[label="",style="dashed", color="red", weight=0]; 615[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];615 -> 713[label="",style="dashed", color="magenta", weight=3]; 616[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];616 -> 719[label="",style="solid", color="black", weight=3]; 617[label="Nothing <= Just vwx100",fontsize=16,color="black",shape="box"];617 -> 720[label="",style="solid", color="black", weight=3]; 618[label="Just vwx90 <= Nothing",fontsize=16,color="black",shape="box"];618 -> 721[label="",style="solid", color="black", weight=3]; 619[label="Just vwx90 <= Just vwx100",fontsize=16,color="black",shape="box"];619 -> 722[label="",style="solid", color="black", weight=3]; 620[label="False <= False",fontsize=16,color="black",shape="box"];620 -> 723[label="",style="solid", color="black", weight=3]; 621[label="False <= True",fontsize=16,color="black",shape="box"];621 -> 724[label="",style="solid", color="black", weight=3]; 622[label="True <= False",fontsize=16,color="black",shape="box"];622 -> 725[label="",style="solid", color="black", weight=3]; 623[label="True <= True",fontsize=16,color="black",shape="box"];623 -> 726[label="",style="solid", color="black", weight=3]; 624 -> 709[label="",style="dashed", color="red", weight=0]; 624[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];624 -> 714[label="",style="dashed", color="magenta", weight=3]; 625[label="Left vwx90 <= Left vwx100",fontsize=16,color="black",shape="box"];625 -> 727[label="",style="solid", color="black", weight=3]; 626[label="Left vwx90 <= Right vwx100",fontsize=16,color="black",shape="box"];626 -> 728[label="",style="solid", color="black", weight=3]; 627[label="Right vwx90 <= Left vwx100",fontsize=16,color="black",shape="box"];627 -> 729[label="",style="solid", color="black", weight=3]; 628[label="Right vwx90 <= Right vwx100",fontsize=16,color="black",shape="box"];628 -> 730[label="",style="solid", color="black", weight=3]; 629[label="(vwx90,vwx91,vwx92) <= (vwx100,vwx101,vwx102)",fontsize=16,color="black",shape="box"];629 -> 731[label="",style="solid", color="black", weight=3]; 630 -> 709[label="",style="dashed", color="red", weight=0]; 630[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];630 -> 715[label="",style="dashed", color="magenta", weight=3]; 631[label="LT <= LT",fontsize=16,color="black",shape="box"];631 -> 732[label="",style="solid", color="black", weight=3]; 632[label="LT <= EQ",fontsize=16,color="black",shape="box"];632 -> 733[label="",style="solid", color="black", weight=3]; 633[label="LT <= GT",fontsize=16,color="black",shape="box"];633 -> 734[label="",style="solid", color="black", weight=3]; 634[label="EQ <= LT",fontsize=16,color="black",shape="box"];634 -> 735[label="",style="solid", color="black", weight=3]; 635[label="EQ <= EQ",fontsize=16,color="black",shape="box"];635 -> 736[label="",style="solid", color="black", weight=3]; 636[label="EQ <= GT",fontsize=16,color="black",shape="box"];636 -> 737[label="",style="solid", color="black", weight=3]; 637[label="GT <= LT",fontsize=16,color="black",shape="box"];637 -> 738[label="",style="solid", color="black", weight=3]; 638[label="GT <= EQ",fontsize=16,color="black",shape="box"];638 -> 739[label="",style="solid", color="black", weight=3]; 639[label="GT <= GT",fontsize=16,color="black",shape="box"];639 -> 740[label="",style="solid", color="black", weight=3]; 640 -> 709[label="",style="dashed", color="red", weight=0]; 640[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];640 -> 716[label="",style="dashed", color="magenta", weight=3]; 641 -> 709[label="",style="dashed", color="red", weight=0]; 641[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];641 -> 717[label="",style="dashed", color="magenta", weight=3]; 642[label="GT",fontsize=16,color="green",shape="box"];643 -> 153[label="",style="dashed", color="red", weight=0]; 643[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];643 -> 741[label="",style="dashed", color="magenta", weight=3]; 643 -> 742[label="",style="dashed", color="magenta", weight=3]; 644[label="False",fontsize=16,color="green",shape="box"];645[label="False",fontsize=16,color="green",shape="box"];646[label="True",fontsize=16,color="green",shape="box"];647[label="primMulInt (Pos vwx3010) vwx400",fontsize=16,color="burlywood",shape="box"];1951[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];647 -> 1951[label="",style="solid", color="burlywood", weight=9]; 1951 -> 743[label="",style="solid", color="burlywood", weight=3]; 1952[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];647 -> 1952[label="",style="solid", color="burlywood", weight=9]; 1952 -> 744[label="",style="solid", color="burlywood", weight=3]; 648[label="primMulInt (Neg vwx3010) vwx400",fontsize=16,color="burlywood",shape="box"];1953[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];648 -> 1953[label="",style="solid", color="burlywood", weight=9]; 1953 -> 745[label="",style="solid", color="burlywood", weight=3]; 1954[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];648 -> 1954[label="",style="solid", color="burlywood", weight=9]; 1954 -> 746[label="",style="solid", color="burlywood", weight=3]; 649[label="vwx4000",fontsize=16,color="green",shape="box"];650[label="vwx3000",fontsize=16,color="green",shape="box"];651[label="vwx4000",fontsize=16,color="green",shape="box"];652[label="vwx3000",fontsize=16,color="green",shape="box"];653[label="vwx402",fontsize=16,color="green",shape="box"];654[label="vwx302",fontsize=16,color="green",shape="box"];655[label="vwx402",fontsize=16,color="green",shape="box"];656[label="vwx302",fontsize=16,color="green",shape="box"];657[label="vwx402",fontsize=16,color="green",shape="box"];658[label="vwx302",fontsize=16,color="green",shape="box"];659[label="vwx402",fontsize=16,color="green",shape="box"];660[label="vwx302",fontsize=16,color="green",shape="box"];661[label="vwx402",fontsize=16,color="green",shape="box"];662[label="vwx302",fontsize=16,color="green",shape="box"];663[label="vwx402",fontsize=16,color="green",shape="box"];664[label="vwx302",fontsize=16,color="green",shape="box"];665[label="vwx402",fontsize=16,color="green",shape="box"];666[label="vwx302",fontsize=16,color="green",shape="box"];667[label="vwx402",fontsize=16,color="green",shape="box"];668[label="vwx302",fontsize=16,color="green",shape="box"];669[label="vwx402",fontsize=16,color="green",shape="box"];670[label="vwx302",fontsize=16,color="green",shape="box"];671[label="vwx402",fontsize=16,color="green",shape="box"];672[label="vwx302",fontsize=16,color="green",shape="box"];673[label="vwx402",fontsize=16,color="green",shape="box"];674[label="vwx302",fontsize=16,color="green",shape="box"];675[label="vwx402",fontsize=16,color="green",shape="box"];676[label="vwx302",fontsize=16,color="green",shape="box"];677[label="vwx402",fontsize=16,color="green",shape="box"];678[label="vwx302",fontsize=16,color="green",shape="box"];679[label="vwx402",fontsize=16,color="green",shape="box"];680[label="vwx302",fontsize=16,color="green",shape="box"];681[label="vwx401",fontsize=16,color="green",shape="box"];682[label="vwx301",fontsize=16,color="green",shape="box"];683[label="vwx401",fontsize=16,color="green",shape="box"];684[label="vwx301",fontsize=16,color="green",shape="box"];685[label="vwx401",fontsize=16,color="green",shape="box"];686[label="vwx301",fontsize=16,color="green",shape="box"];687[label="vwx401",fontsize=16,color="green",shape="box"];688[label="vwx301",fontsize=16,color="green",shape="box"];689[label="vwx401",fontsize=16,color="green",shape="box"];690[label="vwx301",fontsize=16,color="green",shape="box"];691[label="vwx401",fontsize=16,color="green",shape="box"];692[label="vwx301",fontsize=16,color="green",shape="box"];693[label="vwx401",fontsize=16,color="green",shape="box"];694[label="vwx301",fontsize=16,color="green",shape="box"];695[label="vwx401",fontsize=16,color="green",shape="box"];696[label="vwx301",fontsize=16,color="green",shape="box"];697[label="vwx401",fontsize=16,color="green",shape="box"];698[label="vwx301",fontsize=16,color="green",shape="box"];699[label="vwx401",fontsize=16,color="green",shape="box"];700[label="vwx301",fontsize=16,color="green",shape="box"];701[label="vwx401",fontsize=16,color="green",shape="box"];702[label="vwx301",fontsize=16,color="green",shape="box"];703[label="vwx401",fontsize=16,color="green",shape="box"];704[label="vwx301",fontsize=16,color="green",shape="box"];705[label="vwx401",fontsize=16,color="green",shape="box"];706[label="vwx301",fontsize=16,color="green",shape="box"];707[label="vwx401",fontsize=16,color="green",shape="box"];708[label="vwx301",fontsize=16,color="green",shape="box"];710 -> 27[label="",style="dashed", color="red", weight=0]; 710[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];710 -> 747[label="",style="dashed", color="magenta", weight=3]; 710 -> 748[label="",style="dashed", color="magenta", weight=3]; 709[label="not vwx25",fontsize=16,color="burlywood",shape="triangle"];1955[label="vwx25/False",fontsize=10,color="white",style="solid",shape="box"];709 -> 1955[label="",style="solid", color="burlywood", weight=9]; 1955 -> 749[label="",style="solid", color="burlywood", weight=3]; 1956[label="vwx25/True",fontsize=10,color="white",style="solid",shape="box"];709 -> 1956[label="",style="solid", color="burlywood", weight=9]; 1956 -> 750[label="",style="solid", color="burlywood", weight=3]; 711 -> 27[label="",style="dashed", color="red", weight=0]; 711[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];711 -> 751[label="",style="dashed", color="magenta", weight=3]; 711 -> 752[label="",style="dashed", color="magenta", weight=3]; 718 -> 822[label="",style="dashed", color="red", weight=0]; 718[label="vwx90 < vwx100 || vwx90 == vwx100 && vwx91 <= vwx101",fontsize=16,color="magenta"];718 -> 823[label="",style="dashed", color="magenta", weight=3]; 718 -> 824[label="",style="dashed", color="magenta", weight=3]; 712 -> 27[label="",style="dashed", color="red", weight=0]; 712[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];712 -> 753[label="",style="dashed", color="magenta", weight=3]; 712 -> 754[label="",style="dashed", color="magenta", weight=3]; 713 -> 27[label="",style="dashed", color="red", weight=0]; 713[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];713 -> 755[label="",style="dashed", color="magenta", weight=3]; 713 -> 756[label="",style="dashed", color="magenta", weight=3]; 719[label="True",fontsize=16,color="green",shape="box"];720[label="True",fontsize=16,color="green",shape="box"];721[label="False",fontsize=16,color="green",shape="box"];722[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];1957[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1957[label="",style="solid", color="blue", weight=9]; 1957 -> 770[label="",style="solid", color="blue", weight=3]; 1958[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1958[label="",style="solid", color="blue", weight=9]; 1958 -> 771[label="",style="solid", color="blue", weight=3]; 1959[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1959[label="",style="solid", color="blue", weight=9]; 1959 -> 772[label="",style="solid", color="blue", weight=3]; 1960[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1960[label="",style="solid", color="blue", weight=9]; 1960 -> 773[label="",style="solid", color="blue", weight=3]; 1961[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1961[label="",style="solid", color="blue", weight=9]; 1961 -> 774[label="",style="solid", color="blue", weight=3]; 1962[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1962[label="",style="solid", color="blue", weight=9]; 1962 -> 775[label="",style="solid", color="blue", weight=3]; 1963[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1963[label="",style="solid", color="blue", weight=9]; 1963 -> 776[label="",style="solid", color="blue", weight=3]; 1964[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1964[label="",style="solid", color="blue", weight=9]; 1964 -> 777[label="",style="solid", color="blue", weight=3]; 1965[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1965[label="",style="solid", color="blue", weight=9]; 1965 -> 778[label="",style="solid", color="blue", weight=3]; 1966[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1966[label="",style="solid", color="blue", weight=9]; 1966 -> 779[label="",style="solid", color="blue", weight=3]; 1967[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1967[label="",style="solid", color="blue", weight=9]; 1967 -> 780[label="",style="solid", color="blue", weight=3]; 1968[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1968[label="",style="solid", color="blue", weight=9]; 1968 -> 781[label="",style="solid", color="blue", weight=3]; 1969[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1969[label="",style="solid", color="blue", weight=9]; 1969 -> 782[label="",style="solid", color="blue", weight=3]; 1970[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 1970[label="",style="solid", color="blue", weight=9]; 1970 -> 783[label="",style="solid", color="blue", weight=3]; 723[label="True",fontsize=16,color="green",shape="box"];724[label="True",fontsize=16,color="green",shape="box"];725[label="False",fontsize=16,color="green",shape="box"];726[label="True",fontsize=16,color="green",shape="box"];714 -> 27[label="",style="dashed", color="red", weight=0]; 714[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];714 -> 757[label="",style="dashed", color="magenta", weight=3]; 714 -> 758[label="",style="dashed", color="magenta", weight=3]; 727[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];1971[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1971[label="",style="solid", color="blue", weight=9]; 1971 -> 784[label="",style="solid", color="blue", weight=3]; 1972[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1972[label="",style="solid", color="blue", weight=9]; 1972 -> 785[label="",style="solid", color="blue", weight=3]; 1973[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1973[label="",style="solid", color="blue", weight=9]; 1973 -> 786[label="",style="solid", color="blue", weight=3]; 1974[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1974[label="",style="solid", color="blue", weight=9]; 1974 -> 787[label="",style="solid", color="blue", weight=3]; 1975[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1975[label="",style="solid", color="blue", weight=9]; 1975 -> 788[label="",style="solid", color="blue", weight=3]; 1976[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1976[label="",style="solid", color="blue", weight=9]; 1976 -> 789[label="",style="solid", color="blue", weight=3]; 1977[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1977[label="",style="solid", color="blue", weight=9]; 1977 -> 790[label="",style="solid", color="blue", weight=3]; 1978[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1978[label="",style="solid", color="blue", weight=9]; 1978 -> 791[label="",style="solid", color="blue", weight=3]; 1979[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1979[label="",style="solid", color="blue", weight=9]; 1979 -> 792[label="",style="solid", color="blue", weight=3]; 1980[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1980[label="",style="solid", color="blue", weight=9]; 1980 -> 793[label="",style="solid", color="blue", weight=3]; 1981[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1981[label="",style="solid", color="blue", weight=9]; 1981 -> 794[label="",style="solid", color="blue", weight=3]; 1982[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1982[label="",style="solid", color="blue", weight=9]; 1982 -> 795[label="",style="solid", color="blue", weight=3]; 1983[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1983[label="",style="solid", color="blue", weight=9]; 1983 -> 796[label="",style="solid", color="blue", weight=3]; 1984[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];727 -> 1984[label="",style="solid", color="blue", weight=9]; 1984 -> 797[label="",style="solid", color="blue", weight=3]; 728[label="True",fontsize=16,color="green",shape="box"];729[label="False",fontsize=16,color="green",shape="box"];730[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];1985[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1985[label="",style="solid", color="blue", weight=9]; 1985 -> 798[label="",style="solid", color="blue", weight=3]; 1986[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1986[label="",style="solid", color="blue", weight=9]; 1986 -> 799[label="",style="solid", color="blue", weight=3]; 1987[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1987[label="",style="solid", color="blue", weight=9]; 1987 -> 800[label="",style="solid", color="blue", weight=3]; 1988[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1988[label="",style="solid", color="blue", weight=9]; 1988 -> 801[label="",style="solid", color="blue", weight=3]; 1989[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1989[label="",style="solid", color="blue", weight=9]; 1989 -> 802[label="",style="solid", color="blue", weight=3]; 1990[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1990[label="",style="solid", color="blue", weight=9]; 1990 -> 803[label="",style="solid", color="blue", weight=3]; 1991[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1991[label="",style="solid", color="blue", weight=9]; 1991 -> 804[label="",style="solid", color="blue", weight=3]; 1992[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1992[label="",style="solid", color="blue", weight=9]; 1992 -> 805[label="",style="solid", color="blue", weight=3]; 1993[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1993[label="",style="solid", color="blue", weight=9]; 1993 -> 806[label="",style="solid", color="blue", weight=3]; 1994[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1994[label="",style="solid", color="blue", weight=9]; 1994 -> 807[label="",style="solid", color="blue", weight=3]; 1995[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1995[label="",style="solid", color="blue", weight=9]; 1995 -> 808[label="",style="solid", color="blue", weight=3]; 1996[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1996[label="",style="solid", color="blue", weight=9]; 1996 -> 809[label="",style="solid", color="blue", weight=3]; 1997[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1997[label="",style="solid", color="blue", weight=9]; 1997 -> 810[label="",style="solid", color="blue", weight=3]; 1998[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];730 -> 1998[label="",style="solid", color="blue", weight=9]; 1998 -> 811[label="",style="solid", color="blue", weight=3]; 731 -> 822[label="",style="dashed", color="red", weight=0]; 731[label="vwx90 < vwx100 || vwx90 == vwx100 && (vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102)",fontsize=16,color="magenta"];731 -> 825[label="",style="dashed", color="magenta", weight=3]; 731 -> 826[label="",style="dashed", color="magenta", weight=3]; 715 -> 27[label="",style="dashed", color="red", weight=0]; 715[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];715 -> 759[label="",style="dashed", color="magenta", weight=3]; 715 -> 760[label="",style="dashed", color="magenta", weight=3]; 732[label="True",fontsize=16,color="green",shape="box"];733[label="True",fontsize=16,color="green",shape="box"];734[label="True",fontsize=16,color="green",shape="box"];735[label="False",fontsize=16,color="green",shape="box"];736[label="True",fontsize=16,color="green",shape="box"];737[label="True",fontsize=16,color="green",shape="box"];738[label="False",fontsize=16,color="green",shape="box"];739[label="False",fontsize=16,color="green",shape="box"];740[label="True",fontsize=16,color="green",shape="box"];716 -> 27[label="",style="dashed", color="red", weight=0]; 716[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];716 -> 761[label="",style="dashed", color="magenta", weight=3]; 716 -> 762[label="",style="dashed", color="magenta", weight=3]; 717 -> 27[label="",style="dashed", color="red", weight=0]; 717[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];717 -> 763[label="",style="dashed", color="magenta", weight=3]; 717 -> 764[label="",style="dashed", color="magenta", weight=3]; 741[label="vwx4000",fontsize=16,color="green",shape="box"];742[label="vwx3000",fontsize=16,color="green",shape="box"];743[label="primMulInt (Pos vwx3010) (Pos vwx4000)",fontsize=16,color="black",shape="box"];743 -> 812[label="",style="solid", color="black", weight=3]; 744[label="primMulInt (Pos vwx3010) (Neg vwx4000)",fontsize=16,color="black",shape="box"];744 -> 813[label="",style="solid", color="black", weight=3]; 745[label="primMulInt (Neg vwx3010) (Pos vwx4000)",fontsize=16,color="black",shape="box"];745 -> 814[label="",style="solid", color="black", weight=3]; 746[label="primMulInt (Neg vwx3010) (Neg vwx4000)",fontsize=16,color="black",shape="box"];746 -> 815[label="",style="solid", color="black", weight=3]; 747[label="GT",fontsize=16,color="green",shape="box"];748[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];1999[label="vwx9/vwx90 :% vwx91",fontsize=10,color="white",style="solid",shape="box"];748 -> 1999[label="",style="solid", color="burlywood", weight=9]; 1999 -> 816[label="",style="solid", color="burlywood", weight=3]; 749[label="not False",fontsize=16,color="black",shape="box"];749 -> 817[label="",style="solid", color="black", weight=3]; 750[label="not True",fontsize=16,color="black",shape="box"];750 -> 818[label="",style="solid", color="black", weight=3]; 751[label="GT",fontsize=16,color="green",shape="box"];752[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2000[label="vwx9/Integer vwx90",fontsize=10,color="white",style="solid",shape="box"];752 -> 2000[label="",style="solid", color="burlywood", weight=9]; 2000 -> 819[label="",style="solid", color="burlywood", weight=3]; 823 -> 237[label="",style="dashed", color="red", weight=0]; 823[label="vwx90 == vwx100 && vwx91 <= vwx101",fontsize=16,color="magenta"];823 -> 829[label="",style="dashed", color="magenta", weight=3]; 823 -> 830[label="",style="dashed", color="magenta", weight=3]; 824[label="vwx90 < vwx100",fontsize=16,color="blue",shape="box"];2001[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2001[label="",style="solid", color="blue", weight=9]; 2001 -> 831[label="",style="solid", color="blue", weight=3]; 2002[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2002[label="",style="solid", color="blue", weight=9]; 2002 -> 832[label="",style="solid", color="blue", weight=3]; 2003[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2003[label="",style="solid", color="blue", weight=9]; 2003 -> 833[label="",style="solid", color="blue", weight=3]; 2004[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2004[label="",style="solid", color="blue", weight=9]; 2004 -> 834[label="",style="solid", color="blue", weight=3]; 2005[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2005[label="",style="solid", color="blue", weight=9]; 2005 -> 835[label="",style="solid", color="blue", weight=3]; 2006[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2006[label="",style="solid", color="blue", weight=9]; 2006 -> 836[label="",style="solid", color="blue", weight=3]; 2007[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2007[label="",style="solid", color="blue", weight=9]; 2007 -> 837[label="",style="solid", color="blue", weight=3]; 2008[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2008[label="",style="solid", color="blue", weight=9]; 2008 -> 838[label="",style="solid", color="blue", weight=3]; 2009[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2009[label="",style="solid", color="blue", weight=9]; 2009 -> 839[label="",style="solid", color="blue", weight=3]; 2010[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2010[label="",style="solid", color="blue", weight=9]; 2010 -> 840[label="",style="solid", color="blue", weight=3]; 2011[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2011[label="",style="solid", color="blue", weight=9]; 2011 -> 841[label="",style="solid", color="blue", weight=3]; 2012[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2012[label="",style="solid", color="blue", weight=9]; 2012 -> 842[label="",style="solid", color="blue", weight=3]; 2013[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2013[label="",style="solid", color="blue", weight=9]; 2013 -> 843[label="",style="solid", color="blue", weight=3]; 2014[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2014[label="",style="solid", color="blue", weight=9]; 2014 -> 844[label="",style="solid", color="blue", weight=3]; 822[label="vwx30 || vwx31",fontsize=16,color="burlywood",shape="triangle"];2015[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];822 -> 2015[label="",style="solid", color="burlywood", weight=9]; 2015 -> 845[label="",style="solid", color="burlywood", weight=3]; 2016[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];822 -> 2016[label="",style="solid", color="burlywood", weight=9]; 2016 -> 846[label="",style="solid", color="burlywood", weight=3]; 753[label="GT",fontsize=16,color="green",shape="box"];754[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2017[label="vwx9/vwx90 : vwx91",fontsize=10,color="white",style="solid",shape="box"];754 -> 2017[label="",style="solid", color="burlywood", weight=9]; 2017 -> 847[label="",style="solid", color="burlywood", weight=3]; 2018[label="vwx9/[]",fontsize=10,color="white",style="solid",shape="box"];754 -> 2018[label="",style="solid", color="burlywood", weight=9]; 2018 -> 848[label="",style="solid", color="burlywood", weight=3]; 755[label="GT",fontsize=16,color="green",shape="box"];756[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];756 -> 849[label="",style="solid", color="black", weight=3]; 770 -> 217[label="",style="dashed", color="red", weight=0]; 770[label="vwx90 <= vwx100",fontsize=16,color="magenta"];770 -> 850[label="",style="dashed", color="magenta", weight=3]; 770 -> 851[label="",style="dashed", color="magenta", weight=3]; 771 -> 218[label="",style="dashed", color="red", weight=0]; 771[label="vwx90 <= vwx100",fontsize=16,color="magenta"];771 -> 852[label="",style="dashed", color="magenta", weight=3]; 771 -> 853[label="",style="dashed", color="magenta", weight=3]; 772 -> 219[label="",style="dashed", color="red", weight=0]; 772[label="vwx90 <= vwx100",fontsize=16,color="magenta"];772 -> 854[label="",style="dashed", color="magenta", weight=3]; 772 -> 855[label="",style="dashed", color="magenta", weight=3]; 773 -> 220[label="",style="dashed", color="red", weight=0]; 773[label="vwx90 <= vwx100",fontsize=16,color="magenta"];773 -> 856[label="",style="dashed", color="magenta", weight=3]; 773 -> 857[label="",style="dashed", color="magenta", weight=3]; 774 -> 221[label="",style="dashed", color="red", weight=0]; 774[label="vwx90 <= vwx100",fontsize=16,color="magenta"];774 -> 858[label="",style="dashed", color="magenta", weight=3]; 774 -> 859[label="",style="dashed", color="magenta", weight=3]; 775 -> 222[label="",style="dashed", color="red", weight=0]; 775[label="vwx90 <= vwx100",fontsize=16,color="magenta"];775 -> 860[label="",style="dashed", color="magenta", weight=3]; 775 -> 861[label="",style="dashed", color="magenta", weight=3]; 776 -> 223[label="",style="dashed", color="red", weight=0]; 776[label="vwx90 <= vwx100",fontsize=16,color="magenta"];776 -> 862[label="",style="dashed", color="magenta", weight=3]; 776 -> 863[label="",style="dashed", color="magenta", weight=3]; 777 -> 224[label="",style="dashed", color="red", weight=0]; 777[label="vwx90 <= vwx100",fontsize=16,color="magenta"];777 -> 864[label="",style="dashed", color="magenta", weight=3]; 777 -> 865[label="",style="dashed", color="magenta", weight=3]; 778 -> 225[label="",style="dashed", color="red", weight=0]; 778[label="vwx90 <= vwx100",fontsize=16,color="magenta"];778 -> 866[label="",style="dashed", color="magenta", weight=3]; 778 -> 867[label="",style="dashed", color="magenta", weight=3]; 779 -> 226[label="",style="dashed", color="red", weight=0]; 779[label="vwx90 <= vwx100",fontsize=16,color="magenta"];779 -> 868[label="",style="dashed", color="magenta", weight=3]; 779 -> 869[label="",style="dashed", color="magenta", weight=3]; 780 -> 227[label="",style="dashed", color="red", weight=0]; 780[label="vwx90 <= vwx100",fontsize=16,color="magenta"];780 -> 870[label="",style="dashed", color="magenta", weight=3]; 780 -> 871[label="",style="dashed", color="magenta", weight=3]; 781 -> 228[label="",style="dashed", color="red", weight=0]; 781[label="vwx90 <= vwx100",fontsize=16,color="magenta"];781 -> 872[label="",style="dashed", color="magenta", weight=3]; 781 -> 873[label="",style="dashed", color="magenta", weight=3]; 782 -> 229[label="",style="dashed", color="red", weight=0]; 782[label="vwx90 <= vwx100",fontsize=16,color="magenta"];782 -> 874[label="",style="dashed", color="magenta", weight=3]; 782 -> 875[label="",style="dashed", color="magenta", weight=3]; 783 -> 230[label="",style="dashed", color="red", weight=0]; 783[label="vwx90 <= vwx100",fontsize=16,color="magenta"];783 -> 876[label="",style="dashed", color="magenta", weight=3]; 783 -> 877[label="",style="dashed", color="magenta", weight=3]; 757[label="GT",fontsize=16,color="green",shape="box"];758[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2019[label="vwx9/()",fontsize=10,color="white",style="solid",shape="box"];758 -> 2019[label="",style="solid", color="burlywood", weight=9]; 2019 -> 878[label="",style="solid", color="burlywood", weight=3]; 784 -> 217[label="",style="dashed", color="red", weight=0]; 784[label="vwx90 <= vwx100",fontsize=16,color="magenta"];784 -> 879[label="",style="dashed", color="magenta", weight=3]; 784 -> 880[label="",style="dashed", color="magenta", weight=3]; 785 -> 218[label="",style="dashed", color="red", weight=0]; 785[label="vwx90 <= vwx100",fontsize=16,color="magenta"];785 -> 881[label="",style="dashed", color="magenta", weight=3]; 785 -> 882[label="",style="dashed", color="magenta", weight=3]; 786 -> 219[label="",style="dashed", color="red", weight=0]; 786[label="vwx90 <= vwx100",fontsize=16,color="magenta"];786 -> 883[label="",style="dashed", color="magenta", weight=3]; 786 -> 884[label="",style="dashed", color="magenta", weight=3]; 787 -> 220[label="",style="dashed", color="red", weight=0]; 787[label="vwx90 <= vwx100",fontsize=16,color="magenta"];787 -> 885[label="",style="dashed", color="magenta", weight=3]; 787 -> 886[label="",style="dashed", color="magenta", weight=3]; 788 -> 221[label="",style="dashed", color="red", weight=0]; 788[label="vwx90 <= vwx100",fontsize=16,color="magenta"];788 -> 887[label="",style="dashed", color="magenta", weight=3]; 788 -> 888[label="",style="dashed", color="magenta", weight=3]; 789 -> 222[label="",style="dashed", color="red", weight=0]; 789[label="vwx90 <= vwx100",fontsize=16,color="magenta"];789 -> 889[label="",style="dashed", color="magenta", weight=3]; 789 -> 890[label="",style="dashed", color="magenta", weight=3]; 790 -> 223[label="",style="dashed", color="red", weight=0]; 790[label="vwx90 <= vwx100",fontsize=16,color="magenta"];790 -> 891[label="",style="dashed", color="magenta", weight=3]; 790 -> 892[label="",style="dashed", color="magenta", weight=3]; 791 -> 224[label="",style="dashed", color="red", weight=0]; 791[label="vwx90 <= vwx100",fontsize=16,color="magenta"];791 -> 893[label="",style="dashed", color="magenta", weight=3]; 791 -> 894[label="",style="dashed", color="magenta", weight=3]; 792 -> 225[label="",style="dashed", color="red", weight=0]; 792[label="vwx90 <= vwx100",fontsize=16,color="magenta"];792 -> 895[label="",style="dashed", color="magenta", weight=3]; 792 -> 896[label="",style="dashed", color="magenta", weight=3]; 793 -> 226[label="",style="dashed", color="red", weight=0]; 793[label="vwx90 <= vwx100",fontsize=16,color="magenta"];793 -> 897[label="",style="dashed", color="magenta", weight=3]; 793 -> 898[label="",style="dashed", color="magenta", weight=3]; 794 -> 227[label="",style="dashed", color="red", weight=0]; 794[label="vwx90 <= vwx100",fontsize=16,color="magenta"];794 -> 899[label="",style="dashed", color="magenta", weight=3]; 794 -> 900[label="",style="dashed", color="magenta", weight=3]; 795 -> 228[label="",style="dashed", color="red", weight=0]; 795[label="vwx90 <= vwx100",fontsize=16,color="magenta"];795 -> 901[label="",style="dashed", color="magenta", weight=3]; 795 -> 902[label="",style="dashed", color="magenta", weight=3]; 796 -> 229[label="",style="dashed", color="red", weight=0]; 796[label="vwx90 <= vwx100",fontsize=16,color="magenta"];796 -> 903[label="",style="dashed", color="magenta", weight=3]; 796 -> 904[label="",style="dashed", color="magenta", weight=3]; 797 -> 230[label="",style="dashed", color="red", weight=0]; 797[label="vwx90 <= vwx100",fontsize=16,color="magenta"];797 -> 905[label="",style="dashed", color="magenta", weight=3]; 797 -> 906[label="",style="dashed", color="magenta", weight=3]; 798 -> 217[label="",style="dashed", color="red", weight=0]; 798[label="vwx90 <= vwx100",fontsize=16,color="magenta"];798 -> 907[label="",style="dashed", color="magenta", weight=3]; 798 -> 908[label="",style="dashed", color="magenta", weight=3]; 799 -> 218[label="",style="dashed", color="red", weight=0]; 799[label="vwx90 <= vwx100",fontsize=16,color="magenta"];799 -> 909[label="",style="dashed", color="magenta", weight=3]; 799 -> 910[label="",style="dashed", color="magenta", weight=3]; 800 -> 219[label="",style="dashed", color="red", weight=0]; 800[label="vwx90 <= vwx100",fontsize=16,color="magenta"];800 -> 911[label="",style="dashed", color="magenta", weight=3]; 800 -> 912[label="",style="dashed", color="magenta", weight=3]; 801 -> 220[label="",style="dashed", color="red", weight=0]; 801[label="vwx90 <= vwx100",fontsize=16,color="magenta"];801 -> 913[label="",style="dashed", color="magenta", weight=3]; 801 -> 914[label="",style="dashed", color="magenta", weight=3]; 802 -> 221[label="",style="dashed", color="red", weight=0]; 802[label="vwx90 <= vwx100",fontsize=16,color="magenta"];802 -> 915[label="",style="dashed", color="magenta", weight=3]; 802 -> 916[label="",style="dashed", color="magenta", weight=3]; 803 -> 222[label="",style="dashed", color="red", weight=0]; 803[label="vwx90 <= vwx100",fontsize=16,color="magenta"];803 -> 917[label="",style="dashed", color="magenta", weight=3]; 803 -> 918[label="",style="dashed", color="magenta", weight=3]; 804 -> 223[label="",style="dashed", color="red", weight=0]; 804[label="vwx90 <= vwx100",fontsize=16,color="magenta"];804 -> 919[label="",style="dashed", color="magenta", weight=3]; 804 -> 920[label="",style="dashed", color="magenta", weight=3]; 805 -> 224[label="",style="dashed", color="red", weight=0]; 805[label="vwx90 <= vwx100",fontsize=16,color="magenta"];805 -> 921[label="",style="dashed", color="magenta", weight=3]; 805 -> 922[label="",style="dashed", color="magenta", weight=3]; 806 -> 225[label="",style="dashed", color="red", weight=0]; 806[label="vwx90 <= vwx100",fontsize=16,color="magenta"];806 -> 923[label="",style="dashed", color="magenta", weight=3]; 806 -> 924[label="",style="dashed", color="magenta", weight=3]; 807 -> 226[label="",style="dashed", color="red", weight=0]; 807[label="vwx90 <= vwx100",fontsize=16,color="magenta"];807 -> 925[label="",style="dashed", color="magenta", weight=3]; 807 -> 926[label="",style="dashed", color="magenta", weight=3]; 808 -> 227[label="",style="dashed", color="red", weight=0]; 808[label="vwx90 <= vwx100",fontsize=16,color="magenta"];808 -> 927[label="",style="dashed", color="magenta", weight=3]; 808 -> 928[label="",style="dashed", color="magenta", weight=3]; 809 -> 228[label="",style="dashed", color="red", weight=0]; 809[label="vwx90 <= vwx100",fontsize=16,color="magenta"];809 -> 929[label="",style="dashed", color="magenta", weight=3]; 809 -> 930[label="",style="dashed", color="magenta", weight=3]; 810 -> 229[label="",style="dashed", color="red", weight=0]; 810[label="vwx90 <= vwx100",fontsize=16,color="magenta"];810 -> 931[label="",style="dashed", color="magenta", weight=3]; 810 -> 932[label="",style="dashed", color="magenta", weight=3]; 811 -> 230[label="",style="dashed", color="red", weight=0]; 811[label="vwx90 <= vwx100",fontsize=16,color="magenta"];811 -> 933[label="",style="dashed", color="magenta", weight=3]; 811 -> 934[label="",style="dashed", color="magenta", weight=3]; 825 -> 237[label="",style="dashed", color="red", weight=0]; 825[label="vwx90 == vwx100 && (vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102)",fontsize=16,color="magenta"];825 -> 935[label="",style="dashed", color="magenta", weight=3]; 825 -> 936[label="",style="dashed", color="magenta", weight=3]; 826[label="vwx90 < vwx100",fontsize=16,color="blue",shape="box"];2020[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2020[label="",style="solid", color="blue", weight=9]; 2020 -> 937[label="",style="solid", color="blue", weight=3]; 2021[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2021[label="",style="solid", color="blue", weight=9]; 2021 -> 938[label="",style="solid", color="blue", weight=3]; 2022[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2022[label="",style="solid", color="blue", weight=9]; 2022 -> 939[label="",style="solid", color="blue", weight=3]; 2023[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2023[label="",style="solid", color="blue", weight=9]; 2023 -> 940[label="",style="solid", color="blue", weight=3]; 2024[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2024[label="",style="solid", color="blue", weight=9]; 2024 -> 941[label="",style="solid", color="blue", weight=3]; 2025[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2025[label="",style="solid", color="blue", weight=9]; 2025 -> 942[label="",style="solid", color="blue", weight=3]; 2026[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2026[label="",style="solid", color="blue", weight=9]; 2026 -> 943[label="",style="solid", color="blue", weight=3]; 2027[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2027[label="",style="solid", color="blue", weight=9]; 2027 -> 944[label="",style="solid", color="blue", weight=3]; 2028[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2028[label="",style="solid", color="blue", weight=9]; 2028 -> 945[label="",style="solid", color="blue", weight=3]; 2029[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2029[label="",style="solid", color="blue", weight=9]; 2029 -> 946[label="",style="solid", color="blue", weight=3]; 2030[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2030[label="",style="solid", color="blue", weight=9]; 2030 -> 947[label="",style="solid", color="blue", weight=3]; 2031[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2031[label="",style="solid", color="blue", weight=9]; 2031 -> 948[label="",style="solid", color="blue", weight=3]; 2032[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2032[label="",style="solid", color="blue", weight=9]; 2032 -> 949[label="",style="solid", color="blue", weight=3]; 2033[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];826 -> 2033[label="",style="solid", color="blue", weight=9]; 2033 -> 950[label="",style="solid", color="blue", weight=3]; 759[label="GT",fontsize=16,color="green",shape="box"];760[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];760 -> 951[label="",style="solid", color="black", weight=3]; 761[label="GT",fontsize=16,color="green",shape="box"];762[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];762 -> 952[label="",style="solid", color="black", weight=3]; 763[label="GT",fontsize=16,color="green",shape="box"];764[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];764 -> 953[label="",style="solid", color="black", weight=3]; 812[label="Pos (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];812 -> 954[label="",style="dashed", color="green", weight=3]; 813[label="Neg (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];813 -> 955[label="",style="dashed", color="green", weight=3]; 814[label="Neg (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];814 -> 956[label="",style="dashed", color="green", weight=3]; 815[label="Pos (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];815 -> 957[label="",style="dashed", color="green", weight=3]; 816[label="compare (vwx90 :% vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];2034[label="vwx10/vwx100 :% vwx101",fontsize=10,color="white",style="solid",shape="box"];816 -> 2034[label="",style="solid", color="burlywood", weight=9]; 2034 -> 958[label="",style="solid", color="burlywood", weight=3]; 817[label="True",fontsize=16,color="green",shape="box"];818[label="False",fontsize=16,color="green",shape="box"];819[label="compare (Integer vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];2035[label="vwx10/Integer vwx100",fontsize=10,color="white",style="solid",shape="box"];819 -> 2035[label="",style="solid", color="burlywood", weight=9]; 2035 -> 959[label="",style="solid", color="burlywood", weight=3]; 829[label="vwx91 <= vwx101",fontsize=16,color="blue",shape="box"];2036[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2036[label="",style="solid", color="blue", weight=9]; 2036 -> 960[label="",style="solid", color="blue", weight=3]; 2037[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2037[label="",style="solid", color="blue", weight=9]; 2037 -> 961[label="",style="solid", color="blue", weight=3]; 2038[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2038[label="",style="solid", color="blue", weight=9]; 2038 -> 962[label="",style="solid", color="blue", weight=3]; 2039[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2039[label="",style="solid", color="blue", weight=9]; 2039 -> 963[label="",style="solid", color="blue", weight=3]; 2040[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2040[label="",style="solid", color="blue", weight=9]; 2040 -> 964[label="",style="solid", color="blue", weight=3]; 2041[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2041[label="",style="solid", color="blue", weight=9]; 2041 -> 965[label="",style="solid", color="blue", weight=3]; 2042[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2042[label="",style="solid", color="blue", weight=9]; 2042 -> 966[label="",style="solid", color="blue", weight=3]; 2043[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2043[label="",style="solid", color="blue", weight=9]; 2043 -> 967[label="",style="solid", color="blue", weight=3]; 2044[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2044[label="",style="solid", color="blue", weight=9]; 2044 -> 968[label="",style="solid", color="blue", weight=3]; 2045[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2045[label="",style="solid", color="blue", weight=9]; 2045 -> 969[label="",style="solid", color="blue", weight=3]; 2046[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2046[label="",style="solid", color="blue", weight=9]; 2046 -> 970[label="",style="solid", color="blue", weight=3]; 2047[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2047[label="",style="solid", color="blue", weight=9]; 2047 -> 971[label="",style="solid", color="blue", weight=3]; 2048[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2048[label="",style="solid", color="blue", weight=9]; 2048 -> 972[label="",style="solid", color="blue", weight=3]; 2049[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];829 -> 2049[label="",style="solid", color="blue", weight=9]; 2049 -> 973[label="",style="solid", color="blue", weight=3]; 830[label="vwx90 == vwx100",fontsize=16,color="blue",shape="box"];2050[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2050[label="",style="solid", color="blue", weight=9]; 2050 -> 974[label="",style="solid", color="blue", weight=3]; 2051[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2051[label="",style="solid", color="blue", weight=9]; 2051 -> 975[label="",style="solid", color="blue", weight=3]; 2052[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2052[label="",style="solid", color="blue", weight=9]; 2052 -> 976[label="",style="solid", color="blue", weight=3]; 2053[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2053[label="",style="solid", color="blue", weight=9]; 2053 -> 977[label="",style="solid", color="blue", weight=3]; 2054[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2054[label="",style="solid", color="blue", weight=9]; 2054 -> 978[label="",style="solid", color="blue", weight=3]; 2055[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2055[label="",style="solid", color="blue", weight=9]; 2055 -> 979[label="",style="solid", color="blue", weight=3]; 2056[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2056[label="",style="solid", color="blue", weight=9]; 2056 -> 980[label="",style="solid", color="blue", weight=3]; 2057[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2057[label="",style="solid", color="blue", weight=9]; 2057 -> 981[label="",style="solid", color="blue", weight=3]; 2058[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2058[label="",style="solid", color="blue", weight=9]; 2058 -> 982[label="",style="solid", color="blue", weight=3]; 2059[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2059[label="",style="solid", color="blue", weight=9]; 2059 -> 983[label="",style="solid", color="blue", weight=3]; 2060[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2060[label="",style="solid", color="blue", weight=9]; 2060 -> 984[label="",style="solid", color="blue", weight=3]; 2061[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2061[label="",style="solid", color="blue", weight=9]; 2061 -> 985[label="",style="solid", color="blue", weight=3]; 2062[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2062[label="",style="solid", color="blue", weight=9]; 2062 -> 986[label="",style="solid", color="blue", weight=3]; 2063[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];830 -> 2063[label="",style="solid", color="blue", weight=9]; 2063 -> 987[label="",style="solid", color="blue", weight=3]; 831[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];831 -> 988[label="",style="solid", color="black", weight=3]; 832[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];832 -> 989[label="",style="solid", color="black", weight=3]; 833[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];833 -> 990[label="",style="solid", color="black", weight=3]; 834[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];834 -> 991[label="",style="solid", color="black", weight=3]; 835[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];835 -> 992[label="",style="solid", color="black", weight=3]; 836[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];836 -> 993[label="",style="solid", color="black", weight=3]; 837[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];837 -> 994[label="",style="solid", color="black", weight=3]; 838[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];838 -> 995[label="",style="solid", color="black", weight=3]; 839[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];839 -> 996[label="",style="solid", color="black", weight=3]; 840[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];840 -> 997[label="",style="solid", color="black", weight=3]; 841[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];841 -> 998[label="",style="solid", color="black", weight=3]; 842[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];842 -> 999[label="",style="solid", color="black", weight=3]; 843[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];843 -> 1000[label="",style="solid", color="black", weight=3]; 844[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];844 -> 1001[label="",style="solid", color="black", weight=3]; 845[label="False || vwx31",fontsize=16,color="black",shape="box"];845 -> 1002[label="",style="solid", color="black", weight=3]; 846[label="True || vwx31",fontsize=16,color="black",shape="box"];846 -> 1003[label="",style="solid", color="black", weight=3]; 847[label="compare (vwx90 : vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];2064[label="vwx10/vwx100 : vwx101",fontsize=10,color="white",style="solid",shape="box"];847 -> 2064[label="",style="solid", color="burlywood", weight=9]; 2064 -> 1004[label="",style="solid", color="burlywood", weight=3]; 2065[label="vwx10/[]",fontsize=10,color="white",style="solid",shape="box"];847 -> 2065[label="",style="solid", color="burlywood", weight=9]; 2065 -> 1005[label="",style="solid", color="burlywood", weight=3]; 848[label="compare [] vwx10",fontsize=16,color="burlywood",shape="box"];2066[label="vwx10/vwx100 : vwx101",fontsize=10,color="white",style="solid",shape="box"];848 -> 2066[label="",style="solid", color="burlywood", weight=9]; 2066 -> 1006[label="",style="solid", color="burlywood", weight=3]; 2067[label="vwx10/[]",fontsize=10,color="white",style="solid",shape="box"];848 -> 2067[label="",style="solid", color="burlywood", weight=9]; 2067 -> 1007[label="",style="solid", color="burlywood", weight=3]; 849[label="primCmpFloat vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];2068[label="vwx9/Float vwx90 vwx91",fontsize=10,color="white",style="solid",shape="box"];849 -> 2068[label="",style="solid", color="burlywood", weight=9]; 2068 -> 1008[label="",style="solid", color="burlywood", weight=3]; 850[label="vwx100",fontsize=16,color="green",shape="box"];851[label="vwx90",fontsize=16,color="green",shape="box"];852[label="vwx100",fontsize=16,color="green",shape="box"];853[label="vwx90",fontsize=16,color="green",shape="box"];854[label="vwx100",fontsize=16,color="green",shape="box"];855[label="vwx90",fontsize=16,color="green",shape="box"];856[label="vwx100",fontsize=16,color="green",shape="box"];857[label="vwx90",fontsize=16,color="green",shape="box"];858[label="vwx100",fontsize=16,color="green",shape="box"];859[label="vwx90",fontsize=16,color="green",shape="box"];860[label="vwx100",fontsize=16,color="green",shape="box"];861[label="vwx90",fontsize=16,color="green",shape="box"];862[label="vwx100",fontsize=16,color="green",shape="box"];863[label="vwx90",fontsize=16,color="green",shape="box"];864[label="vwx100",fontsize=16,color="green",shape="box"];865[label="vwx90",fontsize=16,color="green",shape="box"];866[label="vwx100",fontsize=16,color="green",shape="box"];867[label="vwx90",fontsize=16,color="green",shape="box"];868[label="vwx100",fontsize=16,color="green",shape="box"];869[label="vwx90",fontsize=16,color="green",shape="box"];870[label="vwx100",fontsize=16,color="green",shape="box"];871[label="vwx90",fontsize=16,color="green",shape="box"];872[label="vwx100",fontsize=16,color="green",shape="box"];873[label="vwx90",fontsize=16,color="green",shape="box"];874[label="vwx100",fontsize=16,color="green",shape="box"];875[label="vwx90",fontsize=16,color="green",shape="box"];876[label="vwx100",fontsize=16,color="green",shape="box"];877[label="vwx90",fontsize=16,color="green",shape="box"];878[label="compare () vwx10",fontsize=16,color="burlywood",shape="box"];2069[label="vwx10/()",fontsize=10,color="white",style="solid",shape="box"];878 -> 2069[label="",style="solid", color="burlywood", weight=9]; 2069 -> 1009[label="",style="solid", color="burlywood", weight=3]; 879[label="vwx100",fontsize=16,color="green",shape="box"];880[label="vwx90",fontsize=16,color="green",shape="box"];881[label="vwx100",fontsize=16,color="green",shape="box"];882[label="vwx90",fontsize=16,color="green",shape="box"];883[label="vwx100",fontsize=16,color="green",shape="box"];884[label="vwx90",fontsize=16,color="green",shape="box"];885[label="vwx100",fontsize=16,color="green",shape="box"];886[label="vwx90",fontsize=16,color="green",shape="box"];887[label="vwx100",fontsize=16,color="green",shape="box"];888[label="vwx90",fontsize=16,color="green",shape="box"];889[label="vwx100",fontsize=16,color="green",shape="box"];890[label="vwx90",fontsize=16,color="green",shape="box"];891[label="vwx100",fontsize=16,color="green",shape="box"];892[label="vwx90",fontsize=16,color="green",shape="box"];893[label="vwx100",fontsize=16,color="green",shape="box"];894[label="vwx90",fontsize=16,color="green",shape="box"];895[label="vwx100",fontsize=16,color="green",shape="box"];896[label="vwx90",fontsize=16,color="green",shape="box"];897[label="vwx100",fontsize=16,color="green",shape="box"];898[label="vwx90",fontsize=16,color="green",shape="box"];899[label="vwx100",fontsize=16,color="green",shape="box"];900[label="vwx90",fontsize=16,color="green",shape="box"];901[label="vwx100",fontsize=16,color="green",shape="box"];902[label="vwx90",fontsize=16,color="green",shape="box"];903[label="vwx100",fontsize=16,color="green",shape="box"];904[label="vwx90",fontsize=16,color="green",shape="box"];905[label="vwx100",fontsize=16,color="green",shape="box"];906[label="vwx90",fontsize=16,color="green",shape="box"];907[label="vwx100",fontsize=16,color="green",shape="box"];908[label="vwx90",fontsize=16,color="green",shape="box"];909[label="vwx100",fontsize=16,color="green",shape="box"];910[label="vwx90",fontsize=16,color="green",shape="box"];911[label="vwx100",fontsize=16,color="green",shape="box"];912[label="vwx90",fontsize=16,color="green",shape="box"];913[label="vwx100",fontsize=16,color="green",shape="box"];914[label="vwx90",fontsize=16,color="green",shape="box"];915[label="vwx100",fontsize=16,color="green",shape="box"];916[label="vwx90",fontsize=16,color="green",shape="box"];917[label="vwx100",fontsize=16,color="green",shape="box"];918[label="vwx90",fontsize=16,color="green",shape="box"];919[label="vwx100",fontsize=16,color="green",shape="box"];920[label="vwx90",fontsize=16,color="green",shape="box"];921[label="vwx100",fontsize=16,color="green",shape="box"];922[label="vwx90",fontsize=16,color="green",shape="box"];923[label="vwx100",fontsize=16,color="green",shape="box"];924[label="vwx90",fontsize=16,color="green",shape="box"];925[label="vwx100",fontsize=16,color="green",shape="box"];926[label="vwx90",fontsize=16,color="green",shape="box"];927[label="vwx100",fontsize=16,color="green",shape="box"];928[label="vwx90",fontsize=16,color="green",shape="box"];929[label="vwx100",fontsize=16,color="green",shape="box"];930[label="vwx90",fontsize=16,color="green",shape="box"];931[label="vwx100",fontsize=16,color="green",shape="box"];932[label="vwx90",fontsize=16,color="green",shape="box"];933[label="vwx100",fontsize=16,color="green",shape="box"];934[label="vwx90",fontsize=16,color="green",shape="box"];935 -> 822[label="",style="dashed", color="red", weight=0]; 935[label="vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102",fontsize=16,color="magenta"];935 -> 1010[label="",style="dashed", color="magenta", weight=3]; 935 -> 1011[label="",style="dashed", color="magenta", weight=3]; 936[label="vwx90 == vwx100",fontsize=16,color="blue",shape="box"];2070[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2070[label="",style="solid", color="blue", weight=9]; 2070 -> 1012[label="",style="solid", color="blue", weight=3]; 2071[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2071[label="",style="solid", color="blue", weight=9]; 2071 -> 1013[label="",style="solid", color="blue", weight=3]; 2072[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2072[label="",style="solid", color="blue", weight=9]; 2072 -> 1014[label="",style="solid", color="blue", weight=3]; 2073[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2073[label="",style="solid", color="blue", weight=9]; 2073 -> 1015[label="",style="solid", color="blue", weight=3]; 2074[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2074[label="",style="solid", color="blue", weight=9]; 2074 -> 1016[label="",style="solid", color="blue", weight=3]; 2075[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2075[label="",style="solid", color="blue", weight=9]; 2075 -> 1017[label="",style="solid", color="blue", weight=3]; 2076[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2076[label="",style="solid", color="blue", weight=9]; 2076 -> 1018[label="",style="solid", color="blue", weight=3]; 2077[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2077[label="",style="solid", color="blue", weight=9]; 2077 -> 1019[label="",style="solid", color="blue", weight=3]; 2078[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2078[label="",style="solid", color="blue", weight=9]; 2078 -> 1020[label="",style="solid", color="blue", weight=3]; 2079[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2079[label="",style="solid", color="blue", weight=9]; 2079 -> 1021[label="",style="solid", color="blue", weight=3]; 2080[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2080[label="",style="solid", color="blue", weight=9]; 2080 -> 1022[label="",style="solid", color="blue", weight=3]; 2081[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2081[label="",style="solid", color="blue", weight=9]; 2081 -> 1023[label="",style="solid", color="blue", weight=3]; 2082[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2082[label="",style="solid", color="blue", weight=9]; 2082 -> 1024[label="",style="solid", color="blue", weight=3]; 2083[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];936 -> 2083[label="",style="solid", color="blue", weight=9]; 2083 -> 1025[label="",style="solid", color="blue", weight=3]; 937 -> 831[label="",style="dashed", color="red", weight=0]; 937[label="vwx90 < vwx100",fontsize=16,color="magenta"];937 -> 1026[label="",style="dashed", color="magenta", weight=3]; 937 -> 1027[label="",style="dashed", color="magenta", weight=3]; 938 -> 832[label="",style="dashed", color="red", weight=0]; 938[label="vwx90 < vwx100",fontsize=16,color="magenta"];938 -> 1028[label="",style="dashed", color="magenta", weight=3]; 938 -> 1029[label="",style="dashed", color="magenta", weight=3]; 939 -> 833[label="",style="dashed", color="red", weight=0]; 939[label="vwx90 < vwx100",fontsize=16,color="magenta"];939 -> 1030[label="",style="dashed", color="magenta", weight=3]; 939 -> 1031[label="",style="dashed", color="magenta", weight=3]; 940 -> 834[label="",style="dashed", color="red", weight=0]; 940[label="vwx90 < vwx100",fontsize=16,color="magenta"];940 -> 1032[label="",style="dashed", color="magenta", weight=3]; 940 -> 1033[label="",style="dashed", color="magenta", weight=3]; 941 -> 835[label="",style="dashed", color="red", weight=0]; 941[label="vwx90 < vwx100",fontsize=16,color="magenta"];941 -> 1034[label="",style="dashed", color="magenta", weight=3]; 941 -> 1035[label="",style="dashed", color="magenta", weight=3]; 942 -> 836[label="",style="dashed", color="red", weight=0]; 942[label="vwx90 < vwx100",fontsize=16,color="magenta"];942 -> 1036[label="",style="dashed", color="magenta", weight=3]; 942 -> 1037[label="",style="dashed", color="magenta", weight=3]; 943 -> 837[label="",style="dashed", color="red", weight=0]; 943[label="vwx90 < vwx100",fontsize=16,color="magenta"];943 -> 1038[label="",style="dashed", color="magenta", weight=3]; 943 -> 1039[label="",style="dashed", color="magenta", weight=3]; 944 -> 838[label="",style="dashed", color="red", weight=0]; 944[label="vwx90 < vwx100",fontsize=16,color="magenta"];944 -> 1040[label="",style="dashed", color="magenta", weight=3]; 944 -> 1041[label="",style="dashed", color="magenta", weight=3]; 945 -> 839[label="",style="dashed", color="red", weight=0]; 945[label="vwx90 < vwx100",fontsize=16,color="magenta"];945 -> 1042[label="",style="dashed", color="magenta", weight=3]; 945 -> 1043[label="",style="dashed", color="magenta", weight=3]; 946 -> 840[label="",style="dashed", color="red", weight=0]; 946[label="vwx90 < vwx100",fontsize=16,color="magenta"];946 -> 1044[label="",style="dashed", color="magenta", weight=3]; 946 -> 1045[label="",style="dashed", color="magenta", weight=3]; 947 -> 841[label="",style="dashed", color="red", weight=0]; 947[label="vwx90 < vwx100",fontsize=16,color="magenta"];947 -> 1046[label="",style="dashed", color="magenta", weight=3]; 947 -> 1047[label="",style="dashed", color="magenta", weight=3]; 948 -> 842[label="",style="dashed", color="red", weight=0]; 948[label="vwx90 < vwx100",fontsize=16,color="magenta"];948 -> 1048[label="",style="dashed", color="magenta", weight=3]; 948 -> 1049[label="",style="dashed", color="magenta", weight=3]; 949 -> 843[label="",style="dashed", color="red", weight=0]; 949[label="vwx90 < vwx100",fontsize=16,color="magenta"];949 -> 1050[label="",style="dashed", color="magenta", weight=3]; 949 -> 1051[label="",style="dashed", color="magenta", weight=3]; 950 -> 844[label="",style="dashed", color="red", weight=0]; 950[label="vwx90 < vwx100",fontsize=16,color="magenta"];950 -> 1052[label="",style="dashed", color="magenta", weight=3]; 950 -> 1053[label="",style="dashed", color="magenta", weight=3]; 951[label="primCmpChar vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];2084[label="vwx9/Char vwx90",fontsize=10,color="white",style="solid",shape="box"];951 -> 2084[label="",style="solid", color="burlywood", weight=9]; 2084 -> 1054[label="",style="solid", color="burlywood", weight=3]; 952[label="primCmpInt vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2085[label="vwx9/Pos vwx90",fontsize=10,color="white",style="solid",shape="box"];952 -> 2085[label="",style="solid", color="burlywood", weight=9]; 2085 -> 1055[label="",style="solid", color="burlywood", weight=3]; 2086[label="vwx9/Neg vwx90",fontsize=10,color="white",style="solid",shape="box"];952 -> 2086[label="",style="solid", color="burlywood", weight=9]; 2086 -> 1056[label="",style="solid", color="burlywood", weight=3]; 953[label="primCmpDouble vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];2087[label="vwx9/Double vwx90 vwx91",fontsize=10,color="white",style="solid",shape="box"];953 -> 2087[label="",style="solid", color="burlywood", weight=9]; 2087 -> 1057[label="",style="solid", color="burlywood", weight=3]; 954[label="primMulNat vwx3010 vwx4000",fontsize=16,color="burlywood",shape="triangle"];2088[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];954 -> 2088[label="",style="solid", color="burlywood", weight=9]; 2088 -> 1058[label="",style="solid", color="burlywood", weight=3]; 2089[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];954 -> 2089[label="",style="solid", color="burlywood", weight=9]; 2089 -> 1059[label="",style="solid", color="burlywood", weight=3]; 955 -> 954[label="",style="dashed", color="red", weight=0]; 955[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];955 -> 1060[label="",style="dashed", color="magenta", weight=3]; 956 -> 954[label="",style="dashed", color="red", weight=0]; 956[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];956 -> 1061[label="",style="dashed", color="magenta", weight=3]; 957 -> 954[label="",style="dashed", color="red", weight=0]; 957[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];957 -> 1062[label="",style="dashed", color="magenta", weight=3]; 957 -> 1063[label="",style="dashed", color="magenta", weight=3]; 958[label="compare (vwx90 :% vwx91) (vwx100 :% vwx101)",fontsize=16,color="black",shape="box"];958 -> 1064[label="",style="solid", color="black", weight=3]; 959[label="compare (Integer vwx90) (Integer vwx100)",fontsize=16,color="black",shape="box"];959 -> 1065[label="",style="solid", color="black", weight=3]; 960 -> 217[label="",style="dashed", color="red", weight=0]; 960[label="vwx91 <= vwx101",fontsize=16,color="magenta"];960 -> 1066[label="",style="dashed", color="magenta", weight=3]; 960 -> 1067[label="",style="dashed", color="magenta", weight=3]; 961 -> 218[label="",style="dashed", color="red", weight=0]; 961[label="vwx91 <= vwx101",fontsize=16,color="magenta"];961 -> 1068[label="",style="dashed", color="magenta", weight=3]; 961 -> 1069[label="",style="dashed", color="magenta", weight=3]; 962 -> 219[label="",style="dashed", color="red", weight=0]; 962[label="vwx91 <= vwx101",fontsize=16,color="magenta"];962 -> 1070[label="",style="dashed", color="magenta", weight=3]; 962 -> 1071[label="",style="dashed", color="magenta", weight=3]; 963 -> 220[label="",style="dashed", color="red", weight=0]; 963[label="vwx91 <= vwx101",fontsize=16,color="magenta"];963 -> 1072[label="",style="dashed", color="magenta", weight=3]; 963 -> 1073[label="",style="dashed", color="magenta", weight=3]; 964 -> 221[label="",style="dashed", color="red", weight=0]; 964[label="vwx91 <= vwx101",fontsize=16,color="magenta"];964 -> 1074[label="",style="dashed", color="magenta", weight=3]; 964 -> 1075[label="",style="dashed", color="magenta", weight=3]; 965 -> 222[label="",style="dashed", color="red", weight=0]; 965[label="vwx91 <= vwx101",fontsize=16,color="magenta"];965 -> 1076[label="",style="dashed", color="magenta", weight=3]; 965 -> 1077[label="",style="dashed", color="magenta", weight=3]; 966 -> 223[label="",style="dashed", color="red", weight=0]; 966[label="vwx91 <= vwx101",fontsize=16,color="magenta"];966 -> 1078[label="",style="dashed", color="magenta", weight=3]; 966 -> 1079[label="",style="dashed", color="magenta", weight=3]; 967 -> 224[label="",style="dashed", color="red", weight=0]; 967[label="vwx91 <= vwx101",fontsize=16,color="magenta"];967 -> 1080[label="",style="dashed", color="magenta", weight=3]; 967 -> 1081[label="",style="dashed", color="magenta", weight=3]; 968 -> 225[label="",style="dashed", color="red", weight=0]; 968[label="vwx91 <= vwx101",fontsize=16,color="magenta"];968 -> 1082[label="",style="dashed", color="magenta", weight=3]; 968 -> 1083[label="",style="dashed", color="magenta", weight=3]; 969 -> 226[label="",style="dashed", color="red", weight=0]; 969[label="vwx91 <= vwx101",fontsize=16,color="magenta"];969 -> 1084[label="",style="dashed", color="magenta", weight=3]; 969 -> 1085[label="",style="dashed", color="magenta", weight=3]; 970 -> 227[label="",style="dashed", color="red", weight=0]; 970[label="vwx91 <= vwx101",fontsize=16,color="magenta"];970 -> 1086[label="",style="dashed", color="magenta", weight=3]; 970 -> 1087[label="",style="dashed", color="magenta", weight=3]; 971 -> 228[label="",style="dashed", color="red", weight=0]; 971[label="vwx91 <= vwx101",fontsize=16,color="magenta"];971 -> 1088[label="",style="dashed", color="magenta", weight=3]; 971 -> 1089[label="",style="dashed", color="magenta", weight=3]; 972 -> 229[label="",style="dashed", color="red", weight=0]; 972[label="vwx91 <= vwx101",fontsize=16,color="magenta"];972 -> 1090[label="",style="dashed", color="magenta", weight=3]; 972 -> 1091[label="",style="dashed", color="magenta", weight=3]; 973 -> 230[label="",style="dashed", color="red", weight=0]; 973[label="vwx91 <= vwx101",fontsize=16,color="magenta"];973 -> 1092[label="",style="dashed", color="magenta", weight=3]; 973 -> 1093[label="",style="dashed", color="magenta", weight=3]; 974 -> 33[label="",style="dashed", color="red", weight=0]; 974[label="vwx90 == vwx100",fontsize=16,color="magenta"];974 -> 1094[label="",style="dashed", color="magenta", weight=3]; 974 -> 1095[label="",style="dashed", color="magenta", weight=3]; 975 -> 28[label="",style="dashed", color="red", weight=0]; 975[label="vwx90 == vwx100",fontsize=16,color="magenta"];975 -> 1096[label="",style="dashed", color="magenta", weight=3]; 975 -> 1097[label="",style="dashed", color="magenta", weight=3]; 976 -> 34[label="",style="dashed", color="red", weight=0]; 976[label="vwx90 == vwx100",fontsize=16,color="magenta"];976 -> 1098[label="",style="dashed", color="magenta", weight=3]; 976 -> 1099[label="",style="dashed", color="magenta", weight=3]; 977 -> 30[label="",style="dashed", color="red", weight=0]; 977[label="vwx90 == vwx100",fontsize=16,color="magenta"];977 -> 1100[label="",style="dashed", color="magenta", weight=3]; 977 -> 1101[label="",style="dashed", color="magenta", weight=3]; 978 -> 39[label="",style="dashed", color="red", weight=0]; 978[label="vwx90 == vwx100",fontsize=16,color="magenta"];978 -> 1102[label="",style="dashed", color="magenta", weight=3]; 978 -> 1103[label="",style="dashed", color="magenta", weight=3]; 979 -> 35[label="",style="dashed", color="red", weight=0]; 979[label="vwx90 == vwx100",fontsize=16,color="magenta"];979 -> 1104[label="",style="dashed", color="magenta", weight=3]; 979 -> 1105[label="",style="dashed", color="magenta", weight=3]; 980 -> 26[label="",style="dashed", color="red", weight=0]; 980[label="vwx90 == vwx100",fontsize=16,color="magenta"];980 -> 1106[label="",style="dashed", color="magenta", weight=3]; 980 -> 1107[label="",style="dashed", color="magenta", weight=3]; 981 -> 32[label="",style="dashed", color="red", weight=0]; 981[label="vwx90 == vwx100",fontsize=16,color="magenta"];981 -> 1108[label="",style="dashed", color="magenta", weight=3]; 981 -> 1109[label="",style="dashed", color="magenta", weight=3]; 982 -> 31[label="",style="dashed", color="red", weight=0]; 982[label="vwx90 == vwx100",fontsize=16,color="magenta"];982 -> 1110[label="",style="dashed", color="magenta", weight=3]; 982 -> 1111[label="",style="dashed", color="magenta", weight=3]; 983 -> 38[label="",style="dashed", color="red", weight=0]; 983[label="vwx90 == vwx100",fontsize=16,color="magenta"];983 -> 1112[label="",style="dashed", color="magenta", weight=3]; 983 -> 1113[label="",style="dashed", color="magenta", weight=3]; 984 -> 29[label="",style="dashed", color="red", weight=0]; 984[label="vwx90 == vwx100",fontsize=16,color="magenta"];984 -> 1114[label="",style="dashed", color="magenta", weight=3]; 984 -> 1115[label="",style="dashed", color="magenta", weight=3]; 985 -> 27[label="",style="dashed", color="red", weight=0]; 985[label="vwx90 == vwx100",fontsize=16,color="magenta"];985 -> 1116[label="",style="dashed", color="magenta", weight=3]; 985 -> 1117[label="",style="dashed", color="magenta", weight=3]; 986 -> 37[label="",style="dashed", color="red", weight=0]; 986[label="vwx90 == vwx100",fontsize=16,color="magenta"];986 -> 1118[label="",style="dashed", color="magenta", weight=3]; 986 -> 1119[label="",style="dashed", color="magenta", weight=3]; 987 -> 36[label="",style="dashed", color="red", weight=0]; 987[label="vwx90 == vwx100",fontsize=16,color="magenta"];987 -> 1120[label="",style="dashed", color="magenta", weight=3]; 987 -> 1121[label="",style="dashed", color="magenta", weight=3]; 988 -> 27[label="",style="dashed", color="red", weight=0]; 988[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];988 -> 1122[label="",style="dashed", color="magenta", weight=3]; 988 -> 1123[label="",style="dashed", color="magenta", weight=3]; 989 -> 27[label="",style="dashed", color="red", weight=0]; 989[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];989 -> 1124[label="",style="dashed", color="magenta", weight=3]; 989 -> 1125[label="",style="dashed", color="magenta", weight=3]; 990 -> 27[label="",style="dashed", color="red", weight=0]; 990[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];990 -> 1126[label="",style="dashed", color="magenta", weight=3]; 990 -> 1127[label="",style="dashed", color="magenta", weight=3]; 991 -> 27[label="",style="dashed", color="red", weight=0]; 991[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];991 -> 1128[label="",style="dashed", color="magenta", weight=3]; 991 -> 1129[label="",style="dashed", color="magenta", weight=3]; 992 -> 27[label="",style="dashed", color="red", weight=0]; 992[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];992 -> 1130[label="",style="dashed", color="magenta", weight=3]; 992 -> 1131[label="",style="dashed", color="magenta", weight=3]; 993 -> 27[label="",style="dashed", color="red", weight=0]; 993[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];993 -> 1132[label="",style="dashed", color="magenta", weight=3]; 993 -> 1133[label="",style="dashed", color="magenta", weight=3]; 994 -> 27[label="",style="dashed", color="red", weight=0]; 994[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];994 -> 1134[label="",style="dashed", color="magenta", weight=3]; 994 -> 1135[label="",style="dashed", color="magenta", weight=3]; 995 -> 27[label="",style="dashed", color="red", weight=0]; 995[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];995 -> 1136[label="",style="dashed", color="magenta", weight=3]; 995 -> 1137[label="",style="dashed", color="magenta", weight=3]; 996 -> 27[label="",style="dashed", color="red", weight=0]; 996[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];996 -> 1138[label="",style="dashed", color="magenta", weight=3]; 996 -> 1139[label="",style="dashed", color="magenta", weight=3]; 997 -> 27[label="",style="dashed", color="red", weight=0]; 997[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];997 -> 1140[label="",style="dashed", color="magenta", weight=3]; 997 -> 1141[label="",style="dashed", color="magenta", weight=3]; 998 -> 27[label="",style="dashed", color="red", weight=0]; 998[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];998 -> 1142[label="",style="dashed", color="magenta", weight=3]; 998 -> 1143[label="",style="dashed", color="magenta", weight=3]; 999 -> 27[label="",style="dashed", color="red", weight=0]; 999[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];999 -> 1144[label="",style="dashed", color="magenta", weight=3]; 999 -> 1145[label="",style="dashed", color="magenta", weight=3]; 1000 -> 27[label="",style="dashed", color="red", weight=0]; 1000[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1000 -> 1146[label="",style="dashed", color="magenta", weight=3]; 1000 -> 1147[label="",style="dashed", color="magenta", weight=3]; 1001 -> 27[label="",style="dashed", color="red", weight=0]; 1001[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1001 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1001 -> 1149[label="",style="dashed", color="magenta", weight=3]; 1002[label="vwx31",fontsize=16,color="green",shape="box"];1003[label="True",fontsize=16,color="green",shape="box"];1004[label="compare (vwx90 : vwx91) (vwx100 : vwx101)",fontsize=16,color="black",shape="box"];1004 -> 1150[label="",style="solid", color="black", weight=3]; 1005[label="compare (vwx90 : vwx91) []",fontsize=16,color="black",shape="box"];1005 -> 1151[label="",style="solid", color="black", weight=3]; 1006[label="compare [] (vwx100 : vwx101)",fontsize=16,color="black",shape="box"];1006 -> 1152[label="",style="solid", color="black", weight=3]; 1007[label="compare [] []",fontsize=16,color="black",shape="box"];1007 -> 1153[label="",style="solid", color="black", weight=3]; 1008[label="primCmpFloat (Float vwx90 vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];2090[label="vwx91/Pos vwx910",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2090[label="",style="solid", color="burlywood", weight=9]; 2090 -> 1154[label="",style="solid", color="burlywood", weight=3]; 2091[label="vwx91/Neg vwx910",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2091[label="",style="solid", color="burlywood", weight=9]; 2091 -> 1155[label="",style="solid", color="burlywood", weight=3]; 1009[label="compare () ()",fontsize=16,color="black",shape="box"];1009 -> 1156[label="",style="solid", color="black", weight=3]; 1010 -> 237[label="",style="dashed", color="red", weight=0]; 1010[label="vwx91 == vwx101 && vwx92 <= vwx102",fontsize=16,color="magenta"];1010 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1011[label="vwx91 < vwx101",fontsize=16,color="blue",shape="box"];2092[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2092[label="",style="solid", color="blue", weight=9]; 2092 -> 1159[label="",style="solid", color="blue", weight=3]; 2093[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2093[label="",style="solid", color="blue", weight=9]; 2093 -> 1160[label="",style="solid", color="blue", weight=3]; 2094[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2094[label="",style="solid", color="blue", weight=9]; 2094 -> 1161[label="",style="solid", color="blue", weight=3]; 2095[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2095[label="",style="solid", color="blue", weight=9]; 2095 -> 1162[label="",style="solid", color="blue", weight=3]; 2096[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2096[label="",style="solid", color="blue", weight=9]; 2096 -> 1163[label="",style="solid", color="blue", weight=3]; 2097[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2097[label="",style="solid", color="blue", weight=9]; 2097 -> 1164[label="",style="solid", color="blue", weight=3]; 2098[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2098[label="",style="solid", color="blue", weight=9]; 2098 -> 1165[label="",style="solid", color="blue", weight=3]; 2099[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2099[label="",style="solid", color="blue", weight=9]; 2099 -> 1166[label="",style="solid", color="blue", weight=3]; 2100[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2100[label="",style="solid", color="blue", weight=9]; 2100 -> 1167[label="",style="solid", color="blue", weight=3]; 2101[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2101[label="",style="solid", color="blue", weight=9]; 2101 -> 1168[label="",style="solid", color="blue", weight=3]; 2102[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2102[label="",style="solid", color="blue", weight=9]; 2102 -> 1169[label="",style="solid", color="blue", weight=3]; 2103[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2103[label="",style="solid", color="blue", weight=9]; 2103 -> 1170[label="",style="solid", color="blue", weight=3]; 2104[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2104[label="",style="solid", color="blue", weight=9]; 2104 -> 1171[label="",style="solid", color="blue", weight=3]; 2105[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2105[label="",style="solid", color="blue", weight=9]; 2105 -> 1172[label="",style="solid", color="blue", weight=3]; 1012 -> 33[label="",style="dashed", color="red", weight=0]; 1012[label="vwx90 == vwx100",fontsize=16,color="magenta"];1012 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1013 -> 28[label="",style="dashed", color="red", weight=0]; 1013[label="vwx90 == vwx100",fontsize=16,color="magenta"];1013 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1014 -> 34[label="",style="dashed", color="red", weight=0]; 1014[label="vwx90 == vwx100",fontsize=16,color="magenta"];1014 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1015 -> 30[label="",style="dashed", color="red", weight=0]; 1015[label="vwx90 == vwx100",fontsize=16,color="magenta"];1015 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1016 -> 39[label="",style="dashed", color="red", weight=0]; 1016[label="vwx90 == vwx100",fontsize=16,color="magenta"];1016 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1017 -> 35[label="",style="dashed", color="red", weight=0]; 1017[label="vwx90 == vwx100",fontsize=16,color="magenta"];1017 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1018 -> 26[label="",style="dashed", color="red", weight=0]; 1018[label="vwx90 == vwx100",fontsize=16,color="magenta"];1018 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1019 -> 32[label="",style="dashed", color="red", weight=0]; 1019[label="vwx90 == vwx100",fontsize=16,color="magenta"];1019 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1020 -> 31[label="",style="dashed", color="red", weight=0]; 1020[label="vwx90 == vwx100",fontsize=16,color="magenta"];1020 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1021 -> 38[label="",style="dashed", color="red", weight=0]; 1021[label="vwx90 == vwx100",fontsize=16,color="magenta"];1021 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1022 -> 29[label="",style="dashed", color="red", weight=0]; 1022[label="vwx90 == vwx100",fontsize=16,color="magenta"];1022 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1023 -> 27[label="",style="dashed", color="red", weight=0]; 1023[label="vwx90 == vwx100",fontsize=16,color="magenta"];1023 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1024 -> 37[label="",style="dashed", color="red", weight=0]; 1024[label="vwx90 == vwx100",fontsize=16,color="magenta"];1024 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1025 -> 36[label="",style="dashed", color="red", weight=0]; 1025[label="vwx90 == vwx100",fontsize=16,color="magenta"];1025 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1026[label="vwx90",fontsize=16,color="green",shape="box"];1027[label="vwx100",fontsize=16,color="green",shape="box"];1028[label="vwx90",fontsize=16,color="green",shape="box"];1029[label="vwx100",fontsize=16,color="green",shape="box"];1030[label="vwx90",fontsize=16,color="green",shape="box"];1031[label="vwx100",fontsize=16,color="green",shape="box"];1032[label="vwx90",fontsize=16,color="green",shape="box"];1033[label="vwx100",fontsize=16,color="green",shape="box"];1034[label="vwx90",fontsize=16,color="green",shape="box"];1035[label="vwx100",fontsize=16,color="green",shape="box"];1036[label="vwx90",fontsize=16,color="green",shape="box"];1037[label="vwx100",fontsize=16,color="green",shape="box"];1038[label="vwx90",fontsize=16,color="green",shape="box"];1039[label="vwx100",fontsize=16,color="green",shape="box"];1040[label="vwx90",fontsize=16,color="green",shape="box"];1041[label="vwx100",fontsize=16,color="green",shape="box"];1042[label="vwx90",fontsize=16,color="green",shape="box"];1043[label="vwx100",fontsize=16,color="green",shape="box"];1044[label="vwx90",fontsize=16,color="green",shape="box"];1045[label="vwx100",fontsize=16,color="green",shape="box"];1046[label="vwx90",fontsize=16,color="green",shape="box"];1047[label="vwx100",fontsize=16,color="green",shape="box"];1048[label="vwx90",fontsize=16,color="green",shape="box"];1049[label="vwx100",fontsize=16,color="green",shape="box"];1050[label="vwx90",fontsize=16,color="green",shape="box"];1051[label="vwx100",fontsize=16,color="green",shape="box"];1052[label="vwx90",fontsize=16,color="green",shape="box"];1053[label="vwx100",fontsize=16,color="green",shape="box"];1054[label="primCmpChar (Char vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];2106[label="vwx10/Char vwx100",fontsize=10,color="white",style="solid",shape="box"];1054 -> 2106[label="",style="solid", color="burlywood", weight=9]; 2106 -> 1201[label="",style="solid", color="burlywood", weight=3]; 1055[label="primCmpInt (Pos vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];2107[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2107[label="",style="solid", color="burlywood", weight=9]; 2107 -> 1202[label="",style="solid", color="burlywood", weight=3]; 2108[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];1055 -> 2108[label="",style="solid", color="burlywood", weight=9]; 2108 -> 1203[label="",style="solid", color="burlywood", weight=3]; 1056[label="primCmpInt (Neg vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];2109[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2109[label="",style="solid", color="burlywood", weight=9]; 2109 -> 1204[label="",style="solid", color="burlywood", weight=3]; 2110[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2110[label="",style="solid", color="burlywood", weight=9]; 2110 -> 1205[label="",style="solid", color="burlywood", weight=3]; 1057[label="primCmpDouble (Double vwx90 vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];2111[label="vwx91/Pos vwx910",fontsize=10,color="white",style="solid",shape="box"];1057 -> 2111[label="",style="solid", color="burlywood", weight=9]; 2111 -> 1206[label="",style="solid", color="burlywood", weight=3]; 2112[label="vwx91/Neg vwx910",fontsize=10,color="white",style="solid",shape="box"];1057 -> 2112[label="",style="solid", color="burlywood", weight=9]; 2112 -> 1207[label="",style="solid", color="burlywood", weight=3]; 1058[label="primMulNat (Succ vwx30100) vwx4000",fontsize=16,color="burlywood",shape="box"];2113[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1058 -> 2113[label="",style="solid", color="burlywood", weight=9]; 2113 -> 1208[label="",style="solid", color="burlywood", weight=3]; 2114[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1058 -> 2114[label="",style="solid", color="burlywood", weight=9]; 2114 -> 1209[label="",style="solid", color="burlywood", weight=3]; 1059[label="primMulNat Zero vwx4000",fontsize=16,color="burlywood",shape="box"];2115[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1059 -> 2115[label="",style="solid", color="burlywood", weight=9]; 2115 -> 1210[label="",style="solid", color="burlywood", weight=3]; 2116[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1059 -> 2116[label="",style="solid", color="burlywood", weight=9]; 2116 -> 1211[label="",style="solid", color="burlywood", weight=3]; 1060[label="vwx4000",fontsize=16,color="green",shape="box"];1061[label="vwx3010",fontsize=16,color="green",shape="box"];1062[label="vwx3010",fontsize=16,color="green",shape="box"];1063[label="vwx4000",fontsize=16,color="green",shape="box"];1064[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="blue",shape="box"];2117[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1064 -> 2117[label="",style="solid", color="blue", weight=9]; 2117 -> 1212[label="",style="solid", color="blue", weight=3]; 2118[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1064 -> 2118[label="",style="solid", color="blue", weight=9]; 2118 -> 1213[label="",style="solid", color="blue", weight=3]; 1065 -> 952[label="",style="dashed", color="red", weight=0]; 1065[label="primCmpInt vwx90 vwx100",fontsize=16,color="magenta"];1065 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1066[label="vwx101",fontsize=16,color="green",shape="box"];1067[label="vwx91",fontsize=16,color="green",shape="box"];1068[label="vwx101",fontsize=16,color="green",shape="box"];1069[label="vwx91",fontsize=16,color="green",shape="box"];1070[label="vwx101",fontsize=16,color="green",shape="box"];1071[label="vwx91",fontsize=16,color="green",shape="box"];1072[label="vwx101",fontsize=16,color="green",shape="box"];1073[label="vwx91",fontsize=16,color="green",shape="box"];1074[label="vwx101",fontsize=16,color="green",shape="box"];1075[label="vwx91",fontsize=16,color="green",shape="box"];1076[label="vwx101",fontsize=16,color="green",shape="box"];1077[label="vwx91",fontsize=16,color="green",shape="box"];1078[label="vwx101",fontsize=16,color="green",shape="box"];1079[label="vwx91",fontsize=16,color="green",shape="box"];1080[label="vwx101",fontsize=16,color="green",shape="box"];1081[label="vwx91",fontsize=16,color="green",shape="box"];1082[label="vwx101",fontsize=16,color="green",shape="box"];1083[label="vwx91",fontsize=16,color="green",shape="box"];1084[label="vwx101",fontsize=16,color="green",shape="box"];1085[label="vwx91",fontsize=16,color="green",shape="box"];1086[label="vwx101",fontsize=16,color="green",shape="box"];1087[label="vwx91",fontsize=16,color="green",shape="box"];1088[label="vwx101",fontsize=16,color="green",shape="box"];1089[label="vwx91",fontsize=16,color="green",shape="box"];1090[label="vwx101",fontsize=16,color="green",shape="box"];1091[label="vwx91",fontsize=16,color="green",shape="box"];1092[label="vwx101",fontsize=16,color="green",shape="box"];1093[label="vwx91",fontsize=16,color="green",shape="box"];1094[label="vwx100",fontsize=16,color="green",shape="box"];1095[label="vwx90",fontsize=16,color="green",shape="box"];1096[label="vwx100",fontsize=16,color="green",shape="box"];1097[label="vwx90",fontsize=16,color="green",shape="box"];1098[label="vwx100",fontsize=16,color="green",shape="box"];1099[label="vwx90",fontsize=16,color="green",shape="box"];1100[label="vwx100",fontsize=16,color="green",shape="box"];1101[label="vwx90",fontsize=16,color="green",shape="box"];1102[label="vwx100",fontsize=16,color="green",shape="box"];1103[label="vwx90",fontsize=16,color="green",shape="box"];1104[label="vwx100",fontsize=16,color="green",shape="box"];1105[label="vwx90",fontsize=16,color="green",shape="box"];1106[label="vwx100",fontsize=16,color="green",shape="box"];1107[label="vwx90",fontsize=16,color="green",shape="box"];1108[label="vwx100",fontsize=16,color="green",shape="box"];1109[label="vwx90",fontsize=16,color="green",shape="box"];1110[label="vwx100",fontsize=16,color="green",shape="box"];1111[label="vwx90",fontsize=16,color="green",shape="box"];1112[label="vwx100",fontsize=16,color="green",shape="box"];1113[label="vwx90",fontsize=16,color="green",shape="box"];1114[label="vwx100",fontsize=16,color="green",shape="box"];1115[label="vwx90",fontsize=16,color="green",shape="box"];1116[label="vwx100",fontsize=16,color="green",shape="box"];1117[label="vwx90",fontsize=16,color="green",shape="box"];1118[label="vwx100",fontsize=16,color="green",shape="box"];1119[label="vwx90",fontsize=16,color="green",shape="box"];1120[label="vwx100",fontsize=16,color="green",shape="box"];1121[label="vwx90",fontsize=16,color="green",shape="box"];1122[label="LT",fontsize=16,color="green",shape="box"];1123 -> 748[label="",style="dashed", color="red", weight=0]; 1123[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1123 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1124[label="LT",fontsize=16,color="green",shape="box"];1125 -> 752[label="",style="dashed", color="red", weight=0]; 1125[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1125 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1126[label="LT",fontsize=16,color="green",shape="box"];1127[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1127 -> 1220[label="",style="solid", color="black", weight=3]; 1128[label="LT",fontsize=16,color="green",shape="box"];1129 -> 754[label="",style="dashed", color="red", weight=0]; 1129[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1129 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1130[label="LT",fontsize=16,color="green",shape="box"];1131 -> 756[label="",style="dashed", color="red", weight=0]; 1131[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1131 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1132[label="LT",fontsize=16,color="green",shape="box"];1133 -> 4[label="",style="dashed", color="red", weight=0]; 1133[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1133 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1134[label="LT",fontsize=16,color="green",shape="box"];1135[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1135 -> 1227[label="",style="solid", color="black", weight=3]; 1136[label="LT",fontsize=16,color="green",shape="box"];1137 -> 758[label="",style="dashed", color="red", weight=0]; 1137[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1137 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1138[label="LT",fontsize=16,color="green",shape="box"];1139[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1139 -> 1230[label="",style="solid", color="black", weight=3]; 1140[label="LT",fontsize=16,color="green",shape="box"];1141[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1141 -> 1231[label="",style="solid", color="black", weight=3]; 1142[label="LT",fontsize=16,color="green",shape="box"];1143 -> 760[label="",style="dashed", color="red", weight=0]; 1143[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1143 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1144[label="LT",fontsize=16,color="green",shape="box"];1145[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1145 -> 1234[label="",style="solid", color="black", weight=3]; 1146[label="LT",fontsize=16,color="green",shape="box"];1147 -> 762[label="",style="dashed", color="red", weight=0]; 1147[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1147 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1148[label="LT",fontsize=16,color="green",shape="box"];1149 -> 764[label="",style="dashed", color="red", weight=0]; 1149[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1149 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1239[label="",style="dashed", color="red", weight=0]; 1150[label="primCompAux vwx90 vwx100 (compare vwx91 vwx101)",fontsize=16,color="magenta"];1150 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1151[label="GT",fontsize=16,color="green",shape="box"];1152[label="LT",fontsize=16,color="green",shape="box"];1153[label="EQ",fontsize=16,color="green",shape="box"];1154[label="primCmpFloat (Float vwx90 (Pos vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];2119[label="vwx10/Float vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];1154 -> 2119[label="",style="solid", color="burlywood", weight=9]; 2119 -> 1241[label="",style="solid", color="burlywood", weight=3]; 1155[label="primCmpFloat (Float vwx90 (Neg vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];2120[label="vwx10/Float vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];1155 -> 2120[label="",style="solid", color="burlywood", weight=9]; 2120 -> 1242[label="",style="solid", color="burlywood", weight=3]; 1156[label="EQ",fontsize=16,color="green",shape="box"];1157[label="vwx92 <= vwx102",fontsize=16,color="blue",shape="box"];2121[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2121[label="",style="solid", color="blue", weight=9]; 2121 -> 1243[label="",style="solid", color="blue", weight=3]; 2122[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2122[label="",style="solid", color="blue", weight=9]; 2122 -> 1244[label="",style="solid", color="blue", weight=3]; 2123[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2123[label="",style="solid", color="blue", weight=9]; 2123 -> 1245[label="",style="solid", color="blue", weight=3]; 2124[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2124[label="",style="solid", color="blue", weight=9]; 2124 -> 1246[label="",style="solid", color="blue", weight=3]; 2125[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2125[label="",style="solid", color="blue", weight=9]; 2125 -> 1247[label="",style="solid", color="blue", weight=3]; 2126[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2126[label="",style="solid", color="blue", weight=9]; 2126 -> 1248[label="",style="solid", color="blue", weight=3]; 2127[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2127[label="",style="solid", color="blue", weight=9]; 2127 -> 1249[label="",style="solid", color="blue", weight=3]; 2128[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2128[label="",style="solid", color="blue", weight=9]; 2128 -> 1250[label="",style="solid", color="blue", weight=3]; 2129[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2129[label="",style="solid", color="blue", weight=9]; 2129 -> 1251[label="",style="solid", color="blue", weight=3]; 2130[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2130[label="",style="solid", color="blue", weight=9]; 2130 -> 1252[label="",style="solid", color="blue", weight=3]; 2131[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2131[label="",style="solid", color="blue", weight=9]; 2131 -> 1253[label="",style="solid", color="blue", weight=3]; 2132[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2132[label="",style="solid", color="blue", weight=9]; 2132 -> 1254[label="",style="solid", color="blue", weight=3]; 2133[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2133[label="",style="solid", color="blue", weight=9]; 2133 -> 1255[label="",style="solid", color="blue", weight=3]; 2134[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2134[label="",style="solid", color="blue", weight=9]; 2134 -> 1256[label="",style="solid", color="blue", weight=3]; 1158[label="vwx91 == vwx101",fontsize=16,color="blue",shape="box"];2135[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2135[label="",style="solid", color="blue", weight=9]; 2135 -> 1257[label="",style="solid", color="blue", weight=3]; 2136[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2136[label="",style="solid", color="blue", weight=9]; 2136 -> 1258[label="",style="solid", color="blue", weight=3]; 2137[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2137[label="",style="solid", color="blue", weight=9]; 2137 -> 1259[label="",style="solid", color="blue", weight=3]; 2138[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2138[label="",style="solid", color="blue", weight=9]; 2138 -> 1260[label="",style="solid", color="blue", weight=3]; 2139[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2139[label="",style="solid", color="blue", weight=9]; 2139 -> 1261[label="",style="solid", color="blue", weight=3]; 2140[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2140[label="",style="solid", color="blue", weight=9]; 2140 -> 1262[label="",style="solid", color="blue", weight=3]; 2141[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2141[label="",style="solid", color="blue", weight=9]; 2141 -> 1263[label="",style="solid", color="blue", weight=3]; 2142[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2142[label="",style="solid", color="blue", weight=9]; 2142 -> 1264[label="",style="solid", color="blue", weight=3]; 2143[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2143[label="",style="solid", color="blue", weight=9]; 2143 -> 1265[label="",style="solid", color="blue", weight=3]; 2144[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2144[label="",style="solid", color="blue", weight=9]; 2144 -> 1266[label="",style="solid", color="blue", weight=3]; 2145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2145[label="",style="solid", color="blue", weight=9]; 2145 -> 1267[label="",style="solid", color="blue", weight=3]; 2146[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2146[label="",style="solid", color="blue", weight=9]; 2146 -> 1268[label="",style="solid", color="blue", weight=3]; 2147[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2147[label="",style="solid", color="blue", weight=9]; 2147 -> 1269[label="",style="solid", color="blue", weight=3]; 2148[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2148[label="",style="solid", color="blue", weight=9]; 2148 -> 1270[label="",style="solid", color="blue", weight=3]; 1159 -> 831[label="",style="dashed", color="red", weight=0]; 1159[label="vwx91 < vwx101",fontsize=16,color="magenta"];1159 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1160 -> 832[label="",style="dashed", color="red", weight=0]; 1160[label="vwx91 < vwx101",fontsize=16,color="magenta"];1160 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1160 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1161 -> 833[label="",style="dashed", color="red", weight=0]; 1161[label="vwx91 < vwx101",fontsize=16,color="magenta"];1161 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1161 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1162 -> 834[label="",style="dashed", color="red", weight=0]; 1162[label="vwx91 < vwx101",fontsize=16,color="magenta"];1162 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1162 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1163 -> 835[label="",style="dashed", color="red", weight=0]; 1163[label="vwx91 < vwx101",fontsize=16,color="magenta"];1163 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1163 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1164 -> 836[label="",style="dashed", color="red", weight=0]; 1164[label="vwx91 < vwx101",fontsize=16,color="magenta"];1164 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1164 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1165 -> 837[label="",style="dashed", color="red", weight=0]; 1165[label="vwx91 < vwx101",fontsize=16,color="magenta"];1165 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1165 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1166 -> 838[label="",style="dashed", color="red", weight=0]; 1166[label="vwx91 < vwx101",fontsize=16,color="magenta"];1166 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1167 -> 839[label="",style="dashed", color="red", weight=0]; 1167[label="vwx91 < vwx101",fontsize=16,color="magenta"];1167 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1167 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1168 -> 840[label="",style="dashed", color="red", weight=0]; 1168[label="vwx91 < vwx101",fontsize=16,color="magenta"];1168 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1169 -> 841[label="",style="dashed", color="red", weight=0]; 1169[label="vwx91 < vwx101",fontsize=16,color="magenta"];1169 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1170 -> 842[label="",style="dashed", color="red", weight=0]; 1170[label="vwx91 < vwx101",fontsize=16,color="magenta"];1170 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1171 -> 843[label="",style="dashed", color="red", weight=0]; 1171[label="vwx91 < vwx101",fontsize=16,color="magenta"];1171 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1172 -> 844[label="",style="dashed", color="red", weight=0]; 1172[label="vwx91 < vwx101",fontsize=16,color="magenta"];1172 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1173[label="vwx100",fontsize=16,color="green",shape="box"];1174[label="vwx90",fontsize=16,color="green",shape="box"];1175[label="vwx100",fontsize=16,color="green",shape="box"];1176[label="vwx90",fontsize=16,color="green",shape="box"];1177[label="vwx100",fontsize=16,color="green",shape="box"];1178[label="vwx90",fontsize=16,color="green",shape="box"];1179[label="vwx100",fontsize=16,color="green",shape="box"];1180[label="vwx90",fontsize=16,color="green",shape="box"];1181[label="vwx100",fontsize=16,color="green",shape="box"];1182[label="vwx90",fontsize=16,color="green",shape="box"];1183[label="vwx100",fontsize=16,color="green",shape="box"];1184[label="vwx90",fontsize=16,color="green",shape="box"];1185[label="vwx100",fontsize=16,color="green",shape="box"];1186[label="vwx90",fontsize=16,color="green",shape="box"];1187[label="vwx100",fontsize=16,color="green",shape="box"];1188[label="vwx90",fontsize=16,color="green",shape="box"];1189[label="vwx100",fontsize=16,color="green",shape="box"];1190[label="vwx90",fontsize=16,color="green",shape="box"];1191[label="vwx100",fontsize=16,color="green",shape="box"];1192[label="vwx90",fontsize=16,color="green",shape="box"];1193[label="vwx100",fontsize=16,color="green",shape="box"];1194[label="vwx90",fontsize=16,color="green",shape="box"];1195[label="vwx100",fontsize=16,color="green",shape="box"];1196[label="vwx90",fontsize=16,color="green",shape="box"];1197[label="vwx100",fontsize=16,color="green",shape="box"];1198[label="vwx90",fontsize=16,color="green",shape="box"];1199[label="vwx100",fontsize=16,color="green",shape="box"];1200[label="vwx90",fontsize=16,color="green",shape="box"];1201[label="primCmpChar (Char vwx90) (Char vwx100)",fontsize=16,color="black",shape="box"];1201 -> 1299[label="",style="solid", color="black", weight=3]; 1202[label="primCmpInt (Pos (Succ vwx900)) vwx10",fontsize=16,color="burlywood",shape="box"];2149[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];1202 -> 2149[label="",style="solid", color="burlywood", weight=9]; 2149 -> 1300[label="",style="solid", color="burlywood", weight=3]; 2150[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];1202 -> 2150[label="",style="solid", color="burlywood", weight=9]; 2150 -> 1301[label="",style="solid", color="burlywood", weight=3]; 1203[label="primCmpInt (Pos Zero) vwx10",fontsize=16,color="burlywood",shape="box"];2151[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];1203 -> 2151[label="",style="solid", color="burlywood", weight=9]; 2151 -> 1302[label="",style="solid", color="burlywood", weight=3]; 2152[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];1203 -> 2152[label="",style="solid", color="burlywood", weight=9]; 2152 -> 1303[label="",style="solid", color="burlywood", weight=3]; 1204[label="primCmpInt (Neg (Succ vwx900)) vwx10",fontsize=16,color="burlywood",shape="box"];2153[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2153[label="",style="solid", color="burlywood", weight=9]; 2153 -> 1304[label="",style="solid", color="burlywood", weight=3]; 2154[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2154[label="",style="solid", color="burlywood", weight=9]; 2154 -> 1305[label="",style="solid", color="burlywood", weight=3]; 1205[label="primCmpInt (Neg Zero) vwx10",fontsize=16,color="burlywood",shape="box"];2155[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];1205 -> 2155[label="",style="solid", color="burlywood", weight=9]; 2155 -> 1306[label="",style="solid", color="burlywood", weight=3]; 2156[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];1205 -> 2156[label="",style="solid", color="burlywood", weight=9]; 2156 -> 1307[label="",style="solid", color="burlywood", weight=3]; 1206[label="primCmpDouble (Double vwx90 (Pos vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];2157[label="vwx10/Double vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];1206 -> 2157[label="",style="solid", color="burlywood", weight=9]; 2157 -> 1308[label="",style="solid", color="burlywood", weight=3]; 1207[label="primCmpDouble (Double vwx90 (Neg vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];2158[label="vwx10/Double vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];1207 -> 2158[label="",style="solid", color="burlywood", weight=9]; 2158 -> 1309[label="",style="solid", color="burlywood", weight=3]; 1208[label="primMulNat (Succ vwx30100) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1208 -> 1310[label="",style="solid", color="black", weight=3]; 1209[label="primMulNat (Succ vwx30100) Zero",fontsize=16,color="black",shape="box"];1209 -> 1311[label="",style="solid", color="black", weight=3]; 1210[label="primMulNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1210 -> 1312[label="",style="solid", color="black", weight=3]; 1211[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1211 -> 1313[label="",style="solid", color="black", weight=3]; 1212 -> 752[label="",style="dashed", color="red", weight=0]; 1212[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="magenta"];1212 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1213 -> 762[label="",style="dashed", color="red", weight=0]; 1213[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="magenta"];1213 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1214[label="vwx100",fontsize=16,color="green",shape="box"];1215[label="vwx90",fontsize=16,color="green",shape="box"];1216[label="vwx100",fontsize=16,color="green",shape="box"];1217[label="vwx90",fontsize=16,color="green",shape="box"];1218[label="vwx100",fontsize=16,color="green",shape="box"];1219[label="vwx90",fontsize=16,color="green",shape="box"];1220[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1220 -> 1318[label="",style="solid", color="black", weight=3]; 1221[label="vwx100",fontsize=16,color="green",shape="box"];1222[label="vwx90",fontsize=16,color="green",shape="box"];1223[label="vwx100",fontsize=16,color="green",shape="box"];1224[label="vwx90",fontsize=16,color="green",shape="box"];1225[label="vwx90",fontsize=16,color="green",shape="box"];1226[label="vwx100",fontsize=16,color="green",shape="box"];1227[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1227 -> 1319[label="",style="solid", color="black", weight=3]; 1228[label="vwx100",fontsize=16,color="green",shape="box"];1229[label="vwx90",fontsize=16,color="green",shape="box"];1230[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1230 -> 1320[label="",style="solid", color="black", weight=3]; 1231[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1231 -> 1321[label="",style="solid", color="black", weight=3]; 1232[label="vwx100",fontsize=16,color="green",shape="box"];1233[label="vwx90",fontsize=16,color="green",shape="box"];1234[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1234 -> 1322[label="",style="solid", color="black", weight=3]; 1235[label="vwx100",fontsize=16,color="green",shape="box"];1236[label="vwx90",fontsize=16,color="green",shape="box"];1237[label="vwx100",fontsize=16,color="green",shape="box"];1238[label="vwx90",fontsize=16,color="green",shape="box"];1240 -> 754[label="",style="dashed", color="red", weight=0]; 1240[label="compare vwx91 vwx101",fontsize=16,color="magenta"];1240 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1239[label="primCompAux vwx90 vwx100 vwx32",fontsize=16,color="black",shape="triangle"];1239 -> 1325[label="",style="solid", color="black", weight=3]; 1241[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];2159[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2159[label="",style="solid", color="burlywood", weight=9]; 2159 -> 1326[label="",style="solid", color="burlywood", weight=3]; 2160[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2160[label="",style="solid", color="burlywood", weight=9]; 2160 -> 1327[label="",style="solid", color="burlywood", weight=3]; 1242[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];2161[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];1242 -> 2161[label="",style="solid", color="burlywood", weight=9]; 2161 -> 1328[label="",style="solid", color="burlywood", weight=3]; 2162[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];1242 -> 2162[label="",style="solid", color="burlywood", weight=9]; 2162 -> 1329[label="",style="solid", color="burlywood", weight=3]; 1243 -> 217[label="",style="dashed", color="red", weight=0]; 1243[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1243 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1244 -> 218[label="",style="dashed", color="red", weight=0]; 1244[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1244 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1245 -> 219[label="",style="dashed", color="red", weight=0]; 1245[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1245 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1246 -> 220[label="",style="dashed", color="red", weight=0]; 1246[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1246 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1246 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1247 -> 221[label="",style="dashed", color="red", weight=0]; 1247[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1247 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1248 -> 222[label="",style="dashed", color="red", weight=0]; 1248[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1248 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1249 -> 223[label="",style="dashed", color="red", weight=0]; 1249[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1249 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1250 -> 224[label="",style="dashed", color="red", weight=0]; 1250[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1250 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1251 -> 225[label="",style="dashed", color="red", weight=0]; 1251[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1251 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1252 -> 226[label="",style="dashed", color="red", weight=0]; 1252[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1252 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1253 -> 227[label="",style="dashed", color="red", weight=0]; 1253[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1253 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1254 -> 228[label="",style="dashed", color="red", weight=0]; 1254[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1254 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1254 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1255 -> 229[label="",style="dashed", color="red", weight=0]; 1255[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1255 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1255 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1256 -> 230[label="",style="dashed", color="red", weight=0]; 1256[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1256 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1256 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1257 -> 33[label="",style="dashed", color="red", weight=0]; 1257[label="vwx91 == vwx101",fontsize=16,color="magenta"];1257 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1257 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1258 -> 28[label="",style="dashed", color="red", weight=0]; 1258[label="vwx91 == vwx101",fontsize=16,color="magenta"];1258 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1259 -> 34[label="",style="dashed", color="red", weight=0]; 1259[label="vwx91 == vwx101",fontsize=16,color="magenta"];1259 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1260 -> 30[label="",style="dashed", color="red", weight=0]; 1260[label="vwx91 == vwx101",fontsize=16,color="magenta"];1260 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1261 -> 39[label="",style="dashed", color="red", weight=0]; 1261[label="vwx91 == vwx101",fontsize=16,color="magenta"];1261 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1262 -> 35[label="",style="dashed", color="red", weight=0]; 1262[label="vwx91 == vwx101",fontsize=16,color="magenta"];1262 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1263 -> 26[label="",style="dashed", color="red", weight=0]; 1263[label="vwx91 == vwx101",fontsize=16,color="magenta"];1263 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1264 -> 32[label="",style="dashed", color="red", weight=0]; 1264[label="vwx91 == vwx101",fontsize=16,color="magenta"];1264 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1265 -> 31[label="",style="dashed", color="red", weight=0]; 1265[label="vwx91 == vwx101",fontsize=16,color="magenta"];1265 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1266 -> 38[label="",style="dashed", color="red", weight=0]; 1266[label="vwx91 == vwx101",fontsize=16,color="magenta"];1266 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1267 -> 29[label="",style="dashed", color="red", weight=0]; 1267[label="vwx91 == vwx101",fontsize=16,color="magenta"];1267 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1268 -> 27[label="",style="dashed", color="red", weight=0]; 1268[label="vwx91 == vwx101",fontsize=16,color="magenta"];1268 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1269 -> 37[label="",style="dashed", color="red", weight=0]; 1269[label="vwx91 == vwx101",fontsize=16,color="magenta"];1269 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1270 -> 36[label="",style="dashed", color="red", weight=0]; 1270[label="vwx91 == vwx101",fontsize=16,color="magenta"];1270 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1271[label="vwx91",fontsize=16,color="green",shape="box"];1272[label="vwx101",fontsize=16,color="green",shape="box"];1273[label="vwx91",fontsize=16,color="green",shape="box"];1274[label="vwx101",fontsize=16,color="green",shape="box"];1275[label="vwx91",fontsize=16,color="green",shape="box"];1276[label="vwx101",fontsize=16,color="green",shape="box"];1277[label="vwx91",fontsize=16,color="green",shape="box"];1278[label="vwx101",fontsize=16,color="green",shape="box"];1279[label="vwx91",fontsize=16,color="green",shape="box"];1280[label="vwx101",fontsize=16,color="green",shape="box"];1281[label="vwx91",fontsize=16,color="green",shape="box"];1282[label="vwx101",fontsize=16,color="green",shape="box"];1283[label="vwx91",fontsize=16,color="green",shape="box"];1284[label="vwx101",fontsize=16,color="green",shape="box"];1285[label="vwx91",fontsize=16,color="green",shape="box"];1286[label="vwx101",fontsize=16,color="green",shape="box"];1287[label="vwx91",fontsize=16,color="green",shape="box"];1288[label="vwx101",fontsize=16,color="green",shape="box"];1289[label="vwx91",fontsize=16,color="green",shape="box"];1290[label="vwx101",fontsize=16,color="green",shape="box"];1291[label="vwx91",fontsize=16,color="green",shape="box"];1292[label="vwx101",fontsize=16,color="green",shape="box"];1293[label="vwx91",fontsize=16,color="green",shape="box"];1294[label="vwx101",fontsize=16,color="green",shape="box"];1295[label="vwx91",fontsize=16,color="green",shape="box"];1296[label="vwx101",fontsize=16,color="green",shape="box"];1297[label="vwx91",fontsize=16,color="green",shape="box"];1298[label="vwx101",fontsize=16,color="green",shape="box"];1299[label="primCmpNat vwx90 vwx100",fontsize=16,color="burlywood",shape="triangle"];2163[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];1299 -> 2163[label="",style="solid", color="burlywood", weight=9]; 2163 -> 1386[label="",style="solid", color="burlywood", weight=3]; 2164[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];1299 -> 2164[label="",style="solid", color="burlywood", weight=9]; 2164 -> 1387[label="",style="solid", color="burlywood", weight=3]; 1300[label="primCmpInt (Pos (Succ vwx900)) (Pos vwx100)",fontsize=16,color="black",shape="box"];1300 -> 1388[label="",style="solid", color="black", weight=3]; 1301[label="primCmpInt (Pos (Succ vwx900)) (Neg vwx100)",fontsize=16,color="black",shape="box"];1301 -> 1389[label="",style="solid", color="black", weight=3]; 1302[label="primCmpInt (Pos Zero) (Pos vwx100)",fontsize=16,color="burlywood",shape="box"];2165[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1302 -> 2165[label="",style="solid", color="burlywood", weight=9]; 2165 -> 1390[label="",style="solid", color="burlywood", weight=3]; 2166[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1302 -> 2166[label="",style="solid", color="burlywood", weight=9]; 2166 -> 1391[label="",style="solid", color="burlywood", weight=3]; 1303[label="primCmpInt (Pos Zero) (Neg vwx100)",fontsize=16,color="burlywood",shape="box"];2167[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2167[label="",style="solid", color="burlywood", weight=9]; 2167 -> 1392[label="",style="solid", color="burlywood", weight=3]; 2168[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2168[label="",style="solid", color="burlywood", weight=9]; 2168 -> 1393[label="",style="solid", color="burlywood", weight=3]; 1304[label="primCmpInt (Neg (Succ vwx900)) (Pos vwx100)",fontsize=16,color="black",shape="box"];1304 -> 1394[label="",style="solid", color="black", weight=3]; 1305[label="primCmpInt (Neg (Succ vwx900)) (Neg vwx100)",fontsize=16,color="black",shape="box"];1305 -> 1395[label="",style="solid", color="black", weight=3]; 1306[label="primCmpInt (Neg Zero) (Pos vwx100)",fontsize=16,color="burlywood",shape="box"];2169[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2169[label="",style="solid", color="burlywood", weight=9]; 2169 -> 1396[label="",style="solid", color="burlywood", weight=3]; 2170[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2170[label="",style="solid", color="burlywood", weight=9]; 2170 -> 1397[label="",style="solid", color="burlywood", weight=3]; 1307[label="primCmpInt (Neg Zero) (Neg vwx100)",fontsize=16,color="burlywood",shape="box"];2171[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1307 -> 2171[label="",style="solid", color="burlywood", weight=9]; 2171 -> 1398[label="",style="solid", color="burlywood", weight=3]; 2172[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1307 -> 2172[label="",style="solid", color="burlywood", weight=9]; 2172 -> 1399[label="",style="solid", color="burlywood", weight=3]; 1308[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];2173[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];1308 -> 2173[label="",style="solid", color="burlywood", weight=9]; 2173 -> 1400[label="",style="solid", color="burlywood", weight=3]; 2174[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];1308 -> 2174[label="",style="solid", color="burlywood", weight=9]; 2174 -> 1401[label="",style="solid", color="burlywood", weight=3]; 1309[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];2175[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];1309 -> 2175[label="",style="solid", color="burlywood", weight=9]; 2175 -> 1402[label="",style="solid", color="burlywood", weight=3]; 2176[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];1309 -> 2176[label="",style="solid", color="burlywood", weight=9]; 2176 -> 1403[label="",style="solid", color="burlywood", weight=3]; 1310 -> 1404[label="",style="dashed", color="red", weight=0]; 1310[label="primPlusNat (primMulNat vwx30100 (Succ vwx40000)) (Succ vwx40000)",fontsize=16,color="magenta"];1310 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1311[label="Zero",fontsize=16,color="green",shape="box"];1312[label="Zero",fontsize=16,color="green",shape="box"];1313[label="Zero",fontsize=16,color="green",shape="box"];1314[label="vwx100 * vwx91",fontsize=16,color="burlywood",shape="triangle"];2177[label="vwx100/Integer vwx1000",fontsize=10,color="white",style="solid",shape="box"];1314 -> 2177[label="",style="solid", color="burlywood", weight=9]; 2177 -> 1406[label="",style="solid", color="burlywood", weight=3]; 1315 -> 1314[label="",style="dashed", color="red", weight=0]; 1315[label="vwx90 * vwx101",fontsize=16,color="magenta"];1315 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1316 -> 384[label="",style="dashed", color="red", weight=0]; 1316[label="vwx100 * vwx91",fontsize=16,color="magenta"];1316 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1317 -> 384[label="",style="dashed", color="red", weight=0]; 1317[label="vwx90 * vwx101",fontsize=16,color="magenta"];1317 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1413[label="",style="dashed", color="red", weight=0]; 1318[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1318 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1415[label="",style="dashed", color="red", weight=0]; 1319[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1319 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1417[label="",style="dashed", color="red", weight=0]; 1320[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1320 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1419[label="",style="dashed", color="red", weight=0]; 1321[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1321 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1421[label="",style="dashed", color="red", weight=0]; 1322[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1322 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1323[label="vwx101",fontsize=16,color="green",shape="box"];1324[label="vwx91",fontsize=16,color="green",shape="box"];1325 -> 1423[label="",style="dashed", color="red", weight=0]; 1325[label="primCompAux0 vwx32 (compare vwx90 vwx100)",fontsize=16,color="magenta"];1325 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1326[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];1326 -> 1426[label="",style="solid", color="black", weight=3]; 1327[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];1327 -> 1427[label="",style="solid", color="black", weight=3]; 1328[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];1328 -> 1428[label="",style="solid", color="black", weight=3]; 1329[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];1329 -> 1429[label="",style="solid", color="black", weight=3]; 1330[label="vwx102",fontsize=16,color="green",shape="box"];1331[label="vwx92",fontsize=16,color="green",shape="box"];1332[label="vwx102",fontsize=16,color="green",shape="box"];1333[label="vwx92",fontsize=16,color="green",shape="box"];1334[label="vwx102",fontsize=16,color="green",shape="box"];1335[label="vwx92",fontsize=16,color="green",shape="box"];1336[label="vwx102",fontsize=16,color="green",shape="box"];1337[label="vwx92",fontsize=16,color="green",shape="box"];1338[label="vwx102",fontsize=16,color="green",shape="box"];1339[label="vwx92",fontsize=16,color="green",shape="box"];1340[label="vwx102",fontsize=16,color="green",shape="box"];1341[label="vwx92",fontsize=16,color="green",shape="box"];1342[label="vwx102",fontsize=16,color="green",shape="box"];1343[label="vwx92",fontsize=16,color="green",shape="box"];1344[label="vwx102",fontsize=16,color="green",shape="box"];1345[label="vwx92",fontsize=16,color="green",shape="box"];1346[label="vwx102",fontsize=16,color="green",shape="box"];1347[label="vwx92",fontsize=16,color="green",shape="box"];1348[label="vwx102",fontsize=16,color="green",shape="box"];1349[label="vwx92",fontsize=16,color="green",shape="box"];1350[label="vwx102",fontsize=16,color="green",shape="box"];1351[label="vwx92",fontsize=16,color="green",shape="box"];1352[label="vwx102",fontsize=16,color="green",shape="box"];1353[label="vwx92",fontsize=16,color="green",shape="box"];1354[label="vwx102",fontsize=16,color="green",shape="box"];1355[label="vwx92",fontsize=16,color="green",shape="box"];1356[label="vwx102",fontsize=16,color="green",shape="box"];1357[label="vwx92",fontsize=16,color="green",shape="box"];1358[label="vwx101",fontsize=16,color="green",shape="box"];1359[label="vwx91",fontsize=16,color="green",shape="box"];1360[label="vwx101",fontsize=16,color="green",shape="box"];1361[label="vwx91",fontsize=16,color="green",shape="box"];1362[label="vwx101",fontsize=16,color="green",shape="box"];1363[label="vwx91",fontsize=16,color="green",shape="box"];1364[label="vwx101",fontsize=16,color="green",shape="box"];1365[label="vwx91",fontsize=16,color="green",shape="box"];1366[label="vwx101",fontsize=16,color="green",shape="box"];1367[label="vwx91",fontsize=16,color="green",shape="box"];1368[label="vwx101",fontsize=16,color="green",shape="box"];1369[label="vwx91",fontsize=16,color="green",shape="box"];1370[label="vwx101",fontsize=16,color="green",shape="box"];1371[label="vwx91",fontsize=16,color="green",shape="box"];1372[label="vwx101",fontsize=16,color="green",shape="box"];1373[label="vwx91",fontsize=16,color="green",shape="box"];1374[label="vwx101",fontsize=16,color="green",shape="box"];1375[label="vwx91",fontsize=16,color="green",shape="box"];1376[label="vwx101",fontsize=16,color="green",shape="box"];1377[label="vwx91",fontsize=16,color="green",shape="box"];1378[label="vwx101",fontsize=16,color="green",shape="box"];1379[label="vwx91",fontsize=16,color="green",shape="box"];1380[label="vwx101",fontsize=16,color="green",shape="box"];1381[label="vwx91",fontsize=16,color="green",shape="box"];1382[label="vwx101",fontsize=16,color="green",shape="box"];1383[label="vwx91",fontsize=16,color="green",shape="box"];1384[label="vwx101",fontsize=16,color="green",shape="box"];1385[label="vwx91",fontsize=16,color="green",shape="box"];1386[label="primCmpNat (Succ vwx900) vwx100",fontsize=16,color="burlywood",shape="box"];2178[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1386 -> 2178[label="",style="solid", color="burlywood", weight=9]; 2178 -> 1430[label="",style="solid", color="burlywood", weight=3]; 2179[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1386 -> 2179[label="",style="solid", color="burlywood", weight=9]; 2179 -> 1431[label="",style="solid", color="burlywood", weight=3]; 1387[label="primCmpNat Zero vwx100",fontsize=16,color="burlywood",shape="box"];2180[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1387 -> 2180[label="",style="solid", color="burlywood", weight=9]; 2180 -> 1432[label="",style="solid", color="burlywood", weight=3]; 2181[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1387 -> 2181[label="",style="solid", color="burlywood", weight=9]; 2181 -> 1433[label="",style="solid", color="burlywood", weight=3]; 1388 -> 1299[label="",style="dashed", color="red", weight=0]; 1388[label="primCmpNat (Succ vwx900) vwx100",fontsize=16,color="magenta"];1388 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1389[label="GT",fontsize=16,color="green",shape="box"];1390[label="primCmpInt (Pos Zero) (Pos (Succ vwx1000))",fontsize=16,color="black",shape="box"];1390 -> 1436[label="",style="solid", color="black", weight=3]; 1391[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1391 -> 1437[label="",style="solid", color="black", weight=3]; 1392[label="primCmpInt (Pos Zero) (Neg (Succ vwx1000))",fontsize=16,color="black",shape="box"];1392 -> 1438[label="",style="solid", color="black", weight=3]; 1393[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1393 -> 1439[label="",style="solid", color="black", weight=3]; 1394[label="LT",fontsize=16,color="green",shape="box"];1395 -> 1299[label="",style="dashed", color="red", weight=0]; 1395[label="primCmpNat vwx100 (Succ vwx900)",fontsize=16,color="magenta"];1395 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1396[label="primCmpInt (Neg Zero) (Pos (Succ vwx1000))",fontsize=16,color="black",shape="box"];1396 -> 1442[label="",style="solid", color="black", weight=3]; 1397[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1397 -> 1443[label="",style="solid", color="black", weight=3]; 1398[label="primCmpInt (Neg Zero) (Neg (Succ vwx1000))",fontsize=16,color="black",shape="box"];1398 -> 1444[label="",style="solid", color="black", weight=3]; 1399[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1399 -> 1445[label="",style="solid", color="black", weight=3]; 1400[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];1400 -> 1446[label="",style="solid", color="black", weight=3]; 1401[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];1401 -> 1447[label="",style="solid", color="black", weight=3]; 1402[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];1402 -> 1448[label="",style="solid", color="black", weight=3]; 1403[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];1403 -> 1449[label="",style="solid", color="black", weight=3]; 1405 -> 954[label="",style="dashed", color="red", weight=0]; 1405[label="primMulNat vwx30100 (Succ vwx40000)",fontsize=16,color="magenta"];1405 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1404[label="primPlusNat vwx33 (Succ vwx40000)",fontsize=16,color="burlywood",shape="triangle"];2182[label="vwx33/Succ vwx330",fontsize=10,color="white",style="solid",shape="box"];1404 -> 2182[label="",style="solid", color="burlywood", weight=9]; 2182 -> 1452[label="",style="solid", color="burlywood", weight=3]; 2183[label="vwx33/Zero",fontsize=10,color="white",style="solid",shape="box"];1404 -> 2183[label="",style="solid", color="burlywood", weight=9]; 2183 -> 1453[label="",style="solid", color="burlywood", weight=3]; 1406[label="Integer vwx1000 * vwx91",fontsize=16,color="burlywood",shape="box"];2184[label="vwx91/Integer vwx910",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2184[label="",style="solid", color="burlywood", weight=9]; 2184 -> 1454[label="",style="solid", color="burlywood", weight=3]; 1407[label="vwx101",fontsize=16,color="green",shape="box"];1408[label="vwx90",fontsize=16,color="green",shape="box"];1409[label="vwx100",fontsize=16,color="green",shape="box"];1410[label="vwx91",fontsize=16,color="green",shape="box"];1411[label="vwx90",fontsize=16,color="green",shape="box"];1412[label="vwx101",fontsize=16,color="green",shape="box"];1414 -> 34[label="",style="dashed", color="red", weight=0]; 1414[label="vwx90 == vwx100",fontsize=16,color="magenta"];1414 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1413[label="compare2 vwx90 vwx100 vwx34",fontsize=16,color="burlywood",shape="triangle"];2185[label="vwx34/False",fontsize=10,color="white",style="solid",shape="box"];1413 -> 2185[label="",style="solid", color="burlywood", weight=9]; 2185 -> 1457[label="",style="solid", color="burlywood", weight=3]; 2186[label="vwx34/True",fontsize=10,color="white",style="solid",shape="box"];1413 -> 2186[label="",style="solid", color="burlywood", weight=9]; 2186 -> 1458[label="",style="solid", color="burlywood", weight=3]; 1416 -> 26[label="",style="dashed", color="red", weight=0]; 1416[label="vwx90 == vwx100",fontsize=16,color="magenta"];1416 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1415[label="compare2 vwx90 vwx100 vwx35",fontsize=16,color="burlywood",shape="triangle"];2187[label="vwx35/False",fontsize=10,color="white",style="solid",shape="box"];1415 -> 2187[label="",style="solid", color="burlywood", weight=9]; 2187 -> 1461[label="",style="solid", color="burlywood", weight=3]; 2188[label="vwx35/True",fontsize=10,color="white",style="solid",shape="box"];1415 -> 2188[label="",style="solid", color="burlywood", weight=9]; 2188 -> 1462[label="",style="solid", color="burlywood", weight=3]; 1418 -> 31[label="",style="dashed", color="red", weight=0]; 1418[label="vwx90 == vwx100",fontsize=16,color="magenta"];1418 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1417[label="compare2 vwx90 vwx100 vwx36",fontsize=16,color="burlywood",shape="triangle"];2189[label="vwx36/False",fontsize=10,color="white",style="solid",shape="box"];1417 -> 2189[label="",style="solid", color="burlywood", weight=9]; 2189 -> 1465[label="",style="solid", color="burlywood", weight=3]; 2190[label="vwx36/True",fontsize=10,color="white",style="solid",shape="box"];1417 -> 2190[label="",style="solid", color="burlywood", weight=9]; 2190 -> 1466[label="",style="solid", color="burlywood", weight=3]; 1420 -> 38[label="",style="dashed", color="red", weight=0]; 1420[label="vwx90 == vwx100",fontsize=16,color="magenta"];1420 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1419[label="compare2 vwx90 vwx100 vwx37",fontsize=16,color="burlywood",shape="triangle"];2191[label="vwx37/False",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2191[label="",style="solid", color="burlywood", weight=9]; 2191 -> 1469[label="",style="solid", color="burlywood", weight=3]; 2192[label="vwx37/True",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2192[label="",style="solid", color="burlywood", weight=9]; 2192 -> 1470[label="",style="solid", color="burlywood", weight=3]; 1422 -> 27[label="",style="dashed", color="red", weight=0]; 1422[label="vwx90 == vwx100",fontsize=16,color="magenta"];1422 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1421[label="compare2 vwx90 vwx100 vwx38",fontsize=16,color="burlywood",shape="triangle"];2193[label="vwx38/False",fontsize=10,color="white",style="solid",shape="box"];1421 -> 2193[label="",style="solid", color="burlywood", weight=9]; 2193 -> 1473[label="",style="solid", color="burlywood", weight=3]; 2194[label="vwx38/True",fontsize=10,color="white",style="solid",shape="box"];1421 -> 2194[label="",style="solid", color="burlywood", weight=9]; 2194 -> 1474[label="",style="solid", color="burlywood", weight=3]; 1424[label="vwx32",fontsize=16,color="green",shape="box"];1425[label="compare vwx90 vwx100",fontsize=16,color="blue",shape="box"];2195[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2195[label="",style="solid", color="blue", weight=9]; 2195 -> 1475[label="",style="solid", color="blue", weight=3]; 2196[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2196[label="",style="solid", color="blue", weight=9]; 2196 -> 1476[label="",style="solid", color="blue", weight=3]; 2197[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2197[label="",style="solid", color="blue", weight=9]; 2197 -> 1477[label="",style="solid", color="blue", weight=3]; 2198[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2198[label="",style="solid", color="blue", weight=9]; 2198 -> 1478[label="",style="solid", color="blue", weight=3]; 2199[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2199[label="",style="solid", color="blue", weight=9]; 2199 -> 1479[label="",style="solid", color="blue", weight=3]; 2200[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2200[label="",style="solid", color="blue", weight=9]; 2200 -> 1480[label="",style="solid", color="blue", weight=3]; 2201[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2201[label="",style="solid", color="blue", weight=9]; 2201 -> 1481[label="",style="solid", color="blue", weight=3]; 2202[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2202[label="",style="solid", color="blue", weight=9]; 2202 -> 1482[label="",style="solid", color="blue", weight=3]; 2203[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2203[label="",style="solid", color="blue", weight=9]; 2203 -> 1483[label="",style="solid", color="blue", weight=3]; 2204[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2204[label="",style="solid", color="blue", weight=9]; 2204 -> 1484[label="",style="solid", color="blue", weight=3]; 2205[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2205[label="",style="solid", color="blue", weight=9]; 2205 -> 1485[label="",style="solid", color="blue", weight=3]; 2206[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2206[label="",style="solid", color="blue", weight=9]; 2206 -> 1486[label="",style="solid", color="blue", weight=3]; 2207[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2207[label="",style="solid", color="blue", weight=9]; 2207 -> 1487[label="",style="solid", color="blue", weight=3]; 2208[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2208[label="",style="solid", color="blue", weight=9]; 2208 -> 1488[label="",style="solid", color="blue", weight=3]; 1423[label="primCompAux0 vwx42 vwx43",fontsize=16,color="burlywood",shape="triangle"];2209[label="vwx43/LT",fontsize=10,color="white",style="solid",shape="box"];1423 -> 2209[label="",style="solid", color="burlywood", weight=9]; 2209 -> 1489[label="",style="solid", color="burlywood", weight=3]; 2210[label="vwx43/EQ",fontsize=10,color="white",style="solid",shape="box"];1423 -> 2210[label="",style="solid", color="burlywood", weight=9]; 2210 -> 1490[label="",style="solid", color="burlywood", weight=3]; 2211[label="vwx43/GT",fontsize=10,color="white",style="solid",shape="box"];1423 -> 2211[label="",style="solid", color="burlywood", weight=9]; 2211 -> 1491[label="",style="solid", color="burlywood", weight=3]; 1426 -> 762[label="",style="dashed", color="red", weight=0]; 1426[label="compare (vwx90 * Pos vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];1426 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1427 -> 762[label="",style="dashed", color="red", weight=0]; 1427[label="compare (vwx90 * Pos vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];1427 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1428 -> 762[label="",style="dashed", color="red", weight=0]; 1428[label="compare (vwx90 * Neg vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];1428 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1429 -> 762[label="",style="dashed", color="red", weight=0]; 1429[label="compare (vwx90 * Neg vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];1429 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1430[label="primCmpNat (Succ vwx900) (Succ vwx1000)",fontsize=16,color="black",shape="box"];1430 -> 1500[label="",style="solid", color="black", weight=3]; 1431[label="primCmpNat (Succ vwx900) Zero",fontsize=16,color="black",shape="box"];1431 -> 1501[label="",style="solid", color="black", weight=3]; 1432[label="primCmpNat Zero (Succ vwx1000)",fontsize=16,color="black",shape="box"];1432 -> 1502[label="",style="solid", color="black", weight=3]; 1433[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1433 -> 1503[label="",style="solid", color="black", weight=3]; 1434[label="vwx100",fontsize=16,color="green",shape="box"];1435[label="Succ vwx900",fontsize=16,color="green",shape="box"];1436 -> 1299[label="",style="dashed", color="red", weight=0]; 1436[label="primCmpNat Zero (Succ vwx1000)",fontsize=16,color="magenta"];1436 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1437[label="EQ",fontsize=16,color="green",shape="box"];1438[label="GT",fontsize=16,color="green",shape="box"];1439[label="EQ",fontsize=16,color="green",shape="box"];1440[label="Succ vwx900",fontsize=16,color="green",shape="box"];1441[label="vwx100",fontsize=16,color="green",shape="box"];1442[label="LT",fontsize=16,color="green",shape="box"];1443[label="EQ",fontsize=16,color="green",shape="box"];1444 -> 1299[label="",style="dashed", color="red", weight=0]; 1444[label="primCmpNat (Succ vwx1000) Zero",fontsize=16,color="magenta"];1444 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1445[label="EQ",fontsize=16,color="green",shape="box"];1446 -> 762[label="",style="dashed", color="red", weight=0]; 1446[label="compare (vwx90 * Pos vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];1446 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1447 -> 762[label="",style="dashed", color="red", weight=0]; 1447[label="compare (vwx90 * Pos vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];1447 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1448 -> 762[label="",style="dashed", color="red", weight=0]; 1448[label="compare (vwx90 * Neg vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];1448 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1449 -> 762[label="",style="dashed", color="red", weight=0]; 1449[label="compare (vwx90 * Neg vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];1449 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1450[label="vwx30100",fontsize=16,color="green",shape="box"];1451[label="Succ vwx40000",fontsize=16,color="green",shape="box"];1452[label="primPlusNat (Succ vwx330) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1452 -> 1516[label="",style="solid", color="black", weight=3]; 1453[label="primPlusNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1453 -> 1517[label="",style="solid", color="black", weight=3]; 1454[label="Integer vwx1000 * Integer vwx910",fontsize=16,color="black",shape="box"];1454 -> 1518[label="",style="solid", color="black", weight=3]; 1455[label="vwx100",fontsize=16,color="green",shape="box"];1456[label="vwx90",fontsize=16,color="green",shape="box"];1457[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1457 -> 1519[label="",style="solid", color="black", weight=3]; 1458[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1458 -> 1520[label="",style="solid", color="black", weight=3]; 1459[label="vwx100",fontsize=16,color="green",shape="box"];1460[label="vwx90",fontsize=16,color="green",shape="box"];1461[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1461 -> 1521[label="",style="solid", color="black", weight=3]; 1462[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1462 -> 1522[label="",style="solid", color="black", weight=3]; 1463[label="vwx100",fontsize=16,color="green",shape="box"];1464[label="vwx90",fontsize=16,color="green",shape="box"];1465[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1465 -> 1523[label="",style="solid", color="black", weight=3]; 1466[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1466 -> 1524[label="",style="solid", color="black", weight=3]; 1467[label="vwx100",fontsize=16,color="green",shape="box"];1468[label="vwx90",fontsize=16,color="green",shape="box"];1469[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1469 -> 1525[label="",style="solid", color="black", weight=3]; 1470[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1470 -> 1526[label="",style="solid", color="black", weight=3]; 1471[label="vwx100",fontsize=16,color="green",shape="box"];1472[label="vwx90",fontsize=16,color="green",shape="box"];1473[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1473 -> 1527[label="",style="solid", color="black", weight=3]; 1474[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1474 -> 1528[label="",style="solid", color="black", weight=3]; 1475 -> 748[label="",style="dashed", color="red", weight=0]; 1475[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1475 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1476 -> 752[label="",style="dashed", color="red", weight=0]; 1476[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1476 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1127[label="",style="dashed", color="red", weight=0]; 1477[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1477 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1478 -> 754[label="",style="dashed", color="red", weight=0]; 1478[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1478 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1479 -> 756[label="",style="dashed", color="red", weight=0]; 1479[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1479 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1480 -> 4[label="",style="dashed", color="red", weight=0]; 1480[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1480 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1135[label="",style="dashed", color="red", weight=0]; 1481[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1481 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1482 -> 758[label="",style="dashed", color="red", weight=0]; 1482[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1482 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1139[label="",style="dashed", color="red", weight=0]; 1483[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1483 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1141[label="",style="dashed", color="red", weight=0]; 1484[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1484 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1485 -> 760[label="",style="dashed", color="red", weight=0]; 1485[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1485 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1145[label="",style="dashed", color="red", weight=0]; 1486[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1486 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1487 -> 762[label="",style="dashed", color="red", weight=0]; 1487[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1487 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1488 -> 764[label="",style="dashed", color="red", weight=0]; 1488[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1488 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1489[label="primCompAux0 vwx42 LT",fontsize=16,color="black",shape="box"];1489 -> 1557[label="",style="solid", color="black", weight=3]; 1490[label="primCompAux0 vwx42 EQ",fontsize=16,color="black",shape="box"];1490 -> 1558[label="",style="solid", color="black", weight=3]; 1491[label="primCompAux0 vwx42 GT",fontsize=16,color="black",shape="box"];1491 -> 1559[label="",style="solid", color="black", weight=3]; 1492 -> 384[label="",style="dashed", color="red", weight=0]; 1492[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];1492 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1493 -> 384[label="",style="dashed", color="red", weight=0]; 1493[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];1493 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1494 -> 384[label="",style="dashed", color="red", weight=0]; 1494[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];1494 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1495 -> 384[label="",style="dashed", color="red", weight=0]; 1495[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];1495 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1496 -> 384[label="",style="dashed", color="red", weight=0]; 1496[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];1496 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1497 -> 384[label="",style="dashed", color="red", weight=0]; 1497[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];1497 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1498 -> 384[label="",style="dashed", color="red", weight=0]; 1498[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];1498 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1499 -> 384[label="",style="dashed", color="red", weight=0]; 1499[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];1499 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1299[label="",style="dashed", color="red", weight=0]; 1500[label="primCmpNat vwx900 vwx1000",fontsize=16,color="magenta"];1500 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1577[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="Succ vwx1000",fontsize=16,color="green",shape="box"];1505[label="Zero",fontsize=16,color="green",shape="box"];1506[label="Zero",fontsize=16,color="green",shape="box"];1507[label="Succ vwx1000",fontsize=16,color="green",shape="box"];1508 -> 384[label="",style="dashed", color="red", weight=0]; 1508[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];1508 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1509 -> 384[label="",style="dashed", color="red", weight=0]; 1509[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];1509 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1510 -> 384[label="",style="dashed", color="red", weight=0]; 1510[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];1510 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1511 -> 384[label="",style="dashed", color="red", weight=0]; 1511[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];1511 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1512 -> 384[label="",style="dashed", color="red", weight=0]; 1512[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];1512 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1513 -> 384[label="",style="dashed", color="red", weight=0]; 1513[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];1513 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1514 -> 384[label="",style="dashed", color="red", weight=0]; 1514[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];1514 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1515 -> 384[label="",style="dashed", color="red", weight=0]; 1515[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];1515 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1516[label="Succ (Succ (primPlusNat vwx330 vwx40000))",fontsize=16,color="green",shape="box"];1516 -> 1594[label="",style="dashed", color="green", weight=3]; 1517[label="Succ vwx40000",fontsize=16,color="green",shape="box"];1518[label="Integer (primMulInt vwx1000 vwx910)",fontsize=16,color="green",shape="box"];1518 -> 1595[label="",style="dashed", color="green", weight=3]; 1519 -> 1596[label="",style="dashed", color="red", weight=0]; 1519[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1519 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1520[label="EQ",fontsize=16,color="green",shape="box"];1521 -> 1598[label="",style="dashed", color="red", weight=0]; 1521[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1521 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1522[label="EQ",fontsize=16,color="green",shape="box"];1523 -> 1600[label="",style="dashed", color="red", weight=0]; 1523[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1523 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1524[label="EQ",fontsize=16,color="green",shape="box"];1525 -> 1602[label="",style="dashed", color="red", weight=0]; 1525[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1525 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1526[label="EQ",fontsize=16,color="green",shape="box"];1527 -> 1604[label="",style="dashed", color="red", weight=0]; 1527[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1527 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1528[label="EQ",fontsize=16,color="green",shape="box"];1529[label="vwx100",fontsize=16,color="green",shape="box"];1530[label="vwx90",fontsize=16,color="green",shape="box"];1531[label="vwx100",fontsize=16,color="green",shape="box"];1532[label="vwx90",fontsize=16,color="green",shape="box"];1533[label="vwx90",fontsize=16,color="green",shape="box"];1534[label="vwx100",fontsize=16,color="green",shape="box"];1535[label="vwx100",fontsize=16,color="green",shape="box"];1536[label="vwx90",fontsize=16,color="green",shape="box"];1537[label="vwx100",fontsize=16,color="green",shape="box"];1538[label="vwx90",fontsize=16,color="green",shape="box"];1539[label="vwx90",fontsize=16,color="green",shape="box"];1540[label="vwx100",fontsize=16,color="green",shape="box"];1541[label="vwx90",fontsize=16,color="green",shape="box"];1542[label="vwx100",fontsize=16,color="green",shape="box"];1543[label="vwx100",fontsize=16,color="green",shape="box"];1544[label="vwx90",fontsize=16,color="green",shape="box"];1545[label="vwx90",fontsize=16,color="green",shape="box"];1546[label="vwx100",fontsize=16,color="green",shape="box"];1547[label="vwx90",fontsize=16,color="green",shape="box"];1548[label="vwx100",fontsize=16,color="green",shape="box"];1549[label="vwx100",fontsize=16,color="green",shape="box"];1550[label="vwx90",fontsize=16,color="green",shape="box"];1551[label="vwx90",fontsize=16,color="green",shape="box"];1552[label="vwx100",fontsize=16,color="green",shape="box"];1553[label="vwx100",fontsize=16,color="green",shape="box"];1554[label="vwx90",fontsize=16,color="green",shape="box"];1555[label="vwx100",fontsize=16,color="green",shape="box"];1556[label="vwx90",fontsize=16,color="green",shape="box"];1557[label="LT",fontsize=16,color="green",shape="box"];1558[label="vwx42",fontsize=16,color="green",shape="box"];1559[label="GT",fontsize=16,color="green",shape="box"];1560[label="Pos vwx910",fontsize=16,color="green",shape="box"];1561[label="vwx100",fontsize=16,color="green",shape="box"];1562[label="vwx90",fontsize=16,color="green",shape="box"];1563[label="Pos vwx1010",fontsize=16,color="green",shape="box"];1564[label="Neg vwx910",fontsize=16,color="green",shape="box"];1565[label="vwx100",fontsize=16,color="green",shape="box"];1566[label="vwx90",fontsize=16,color="green",shape="box"];1567[label="Pos vwx1010",fontsize=16,color="green",shape="box"];1568[label="Pos vwx910",fontsize=16,color="green",shape="box"];1569[label="vwx100",fontsize=16,color="green",shape="box"];1570[label="vwx90",fontsize=16,color="green",shape="box"];1571[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1572[label="Neg vwx910",fontsize=16,color="green",shape="box"];1573[label="vwx100",fontsize=16,color="green",shape="box"];1574[label="vwx90",fontsize=16,color="green",shape="box"];1575[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1576[label="vwx1000",fontsize=16,color="green",shape="box"];1577[label="vwx900",fontsize=16,color="green",shape="box"];1578[label="Pos vwx910",fontsize=16,color="green",shape="box"];1579[label="vwx100",fontsize=16,color="green",shape="box"];1580[label="vwx90",fontsize=16,color="green",shape="box"];1581[label="Pos vwx1010",fontsize=16,color="green",shape="box"];1582[label="Neg vwx910",fontsize=16,color="green",shape="box"];1583[label="vwx100",fontsize=16,color="green",shape="box"];1584[label="vwx90",fontsize=16,color="green",shape="box"];1585[label="Pos vwx1010",fontsize=16,color="green",shape="box"];1586[label="Pos vwx910",fontsize=16,color="green",shape="box"];1587[label="vwx100",fontsize=16,color="green",shape="box"];1588[label="vwx90",fontsize=16,color="green",shape="box"];1589[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1590[label="Neg vwx910",fontsize=16,color="green",shape="box"];1591[label="vwx100",fontsize=16,color="green",shape="box"];1592[label="vwx90",fontsize=16,color="green",shape="box"];1593[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1594[label="primPlusNat vwx330 vwx40000",fontsize=16,color="burlywood",shape="triangle"];2212[label="vwx330/Succ vwx3300",fontsize=10,color="white",style="solid",shape="box"];1594 -> 2212[label="",style="solid", color="burlywood", weight=9]; 2212 -> 1606[label="",style="solid", color="burlywood", weight=3]; 2213[label="vwx330/Zero",fontsize=10,color="white",style="solid",shape="box"];1594 -> 2213[label="",style="solid", color="burlywood", weight=9]; 2213 -> 1607[label="",style="solid", color="burlywood", weight=3]; 1595 -> 536[label="",style="dashed", color="red", weight=0]; 1595[label="primMulInt vwx1000 vwx910",fontsize=16,color="magenta"];1595 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1597 -> 219[label="",style="dashed", color="red", weight=0]; 1597[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1597 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1596[label="compare1 vwx90 vwx100 vwx44",fontsize=16,color="burlywood",shape="triangle"];2214[label="vwx44/False",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2214[label="",style="solid", color="burlywood", weight=9]; 2214 -> 1612[label="",style="solid", color="burlywood", weight=3]; 2215[label="vwx44/True",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2215[label="",style="solid", color="burlywood", weight=9]; 2215 -> 1613[label="",style="solid", color="burlywood", weight=3]; 1599 -> 223[label="",style="dashed", color="red", weight=0]; 1599[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1599 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1598[label="compare1 vwx90 vwx100 vwx45",fontsize=16,color="burlywood",shape="triangle"];2216[label="vwx45/False",fontsize=10,color="white",style="solid",shape="box"];1598 -> 2216[label="",style="solid", color="burlywood", weight=9]; 2216 -> 1616[label="",style="solid", color="burlywood", weight=3]; 2217[label="vwx45/True",fontsize=10,color="white",style="solid",shape="box"];1598 -> 2217[label="",style="solid", color="burlywood", weight=9]; 2217 -> 1617[label="",style="solid", color="burlywood", weight=3]; 1601 -> 225[label="",style="dashed", color="red", weight=0]; 1601[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1601 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1600[label="compare1 vwx90 vwx100 vwx46",fontsize=16,color="burlywood",shape="triangle"];2218[label="vwx46/False",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2218[label="",style="solid", color="burlywood", weight=9]; 2218 -> 1620[label="",style="solid", color="burlywood", weight=3]; 2219[label="vwx46/True",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2219[label="",style="solid", color="burlywood", weight=9]; 2219 -> 1621[label="",style="solid", color="burlywood", weight=3]; 1603 -> 226[label="",style="dashed", color="red", weight=0]; 1603[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1603 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1602[label="compare1 vwx90 vwx100 vwx47",fontsize=16,color="burlywood",shape="triangle"];2220[label="vwx47/False",fontsize=10,color="white",style="solid",shape="box"];1602 -> 2220[label="",style="solid", color="burlywood", weight=9]; 2220 -> 1624[label="",style="solid", color="burlywood", weight=3]; 2221[label="vwx47/True",fontsize=10,color="white",style="solid",shape="box"];1602 -> 2221[label="",style="solid", color="burlywood", weight=9]; 2221 -> 1625[label="",style="solid", color="burlywood", weight=3]; 1605 -> 228[label="",style="dashed", color="red", weight=0]; 1605[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1605 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1604[label="compare1 vwx90 vwx100 vwx48",fontsize=16,color="burlywood",shape="triangle"];2222[label="vwx48/False",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2222[label="",style="solid", color="burlywood", weight=9]; 2222 -> 1628[label="",style="solid", color="burlywood", weight=3]; 2223[label="vwx48/True",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2223[label="",style="solid", color="burlywood", weight=9]; 2223 -> 1629[label="",style="solid", color="burlywood", weight=3]; 1606[label="primPlusNat (Succ vwx3300) vwx40000",fontsize=16,color="burlywood",shape="box"];2224[label="vwx40000/Succ vwx400000",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2224[label="",style="solid", color="burlywood", weight=9]; 2224 -> 1630[label="",style="solid", color="burlywood", weight=3]; 2225[label="vwx40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2225[label="",style="solid", color="burlywood", weight=9]; 2225 -> 1631[label="",style="solid", color="burlywood", weight=3]; 1607[label="primPlusNat Zero vwx40000",fontsize=16,color="burlywood",shape="box"];2226[label="vwx40000/Succ vwx400000",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2226[label="",style="solid", color="burlywood", weight=9]; 2226 -> 1632[label="",style="solid", color="burlywood", weight=3]; 2227[label="vwx40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1607 -> 2227[label="",style="solid", color="burlywood", weight=9]; 2227 -> 1633[label="",style="solid", color="burlywood", weight=3]; 1608[label="vwx1000",fontsize=16,color="green",shape="box"];1609[label="vwx910",fontsize=16,color="green",shape="box"];1610[label="vwx100",fontsize=16,color="green",shape="box"];1611[label="vwx90",fontsize=16,color="green",shape="box"];1612[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1612 -> 1634[label="",style="solid", color="black", weight=3]; 1613[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1613 -> 1635[label="",style="solid", color="black", weight=3]; 1614[label="vwx100",fontsize=16,color="green",shape="box"];1615[label="vwx90",fontsize=16,color="green",shape="box"];1616[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1616 -> 1636[label="",style="solid", color="black", weight=3]; 1617[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1617 -> 1637[label="",style="solid", color="black", weight=3]; 1618[label="vwx100",fontsize=16,color="green",shape="box"];1619[label="vwx90",fontsize=16,color="green",shape="box"];1620[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1620 -> 1638[label="",style="solid", color="black", weight=3]; 1621[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1621 -> 1639[label="",style="solid", color="black", weight=3]; 1622[label="vwx100",fontsize=16,color="green",shape="box"];1623[label="vwx90",fontsize=16,color="green",shape="box"];1624[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1624 -> 1640[label="",style="solid", color="black", weight=3]; 1625[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1625 -> 1641[label="",style="solid", color="black", weight=3]; 1626[label="vwx100",fontsize=16,color="green",shape="box"];1627[label="vwx90",fontsize=16,color="green",shape="box"];1628[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1628 -> 1642[label="",style="solid", color="black", weight=3]; 1629[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1629 -> 1643[label="",style="solid", color="black", weight=3]; 1630[label="primPlusNat (Succ vwx3300) (Succ vwx400000)",fontsize=16,color="black",shape="box"];1630 -> 1644[label="",style="solid", color="black", weight=3]; 1631[label="primPlusNat (Succ vwx3300) Zero",fontsize=16,color="black",shape="box"];1631 -> 1645[label="",style="solid", color="black", weight=3]; 1632[label="primPlusNat Zero (Succ vwx400000)",fontsize=16,color="black",shape="box"];1632 -> 1646[label="",style="solid", color="black", weight=3]; 1633[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1633 -> 1647[label="",style="solid", color="black", weight=3]; 1634[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1634 -> 1648[label="",style="solid", color="black", weight=3]; 1635[label="LT",fontsize=16,color="green",shape="box"];1636[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1636 -> 1649[label="",style="solid", color="black", weight=3]; 1637[label="LT",fontsize=16,color="green",shape="box"];1638[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1638 -> 1650[label="",style="solid", color="black", weight=3]; 1639[label="LT",fontsize=16,color="green",shape="box"];1640[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1640 -> 1651[label="",style="solid", color="black", weight=3]; 1641[label="LT",fontsize=16,color="green",shape="box"];1642[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1642 -> 1652[label="",style="solid", color="black", weight=3]; 1643[label="LT",fontsize=16,color="green",shape="box"];1644[label="Succ (Succ (primPlusNat vwx3300 vwx400000))",fontsize=16,color="green",shape="box"];1644 -> 1653[label="",style="dashed", color="green", weight=3]; 1645[label="Succ vwx3300",fontsize=16,color="green",shape="box"];1646[label="Succ vwx400000",fontsize=16,color="green",shape="box"];1647[label="Zero",fontsize=16,color="green",shape="box"];1648[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1648 -> 1654[label="",style="solid", color="black", weight=3]; 1649[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1649 -> 1655[label="",style="solid", color="black", weight=3]; 1650[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1650 -> 1656[label="",style="solid", color="black", weight=3]; 1651[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1651 -> 1657[label="",style="solid", color="black", weight=3]; 1652[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1652 -> 1658[label="",style="solid", color="black", weight=3]; 1653 -> 1594[label="",style="dashed", color="red", weight=0]; 1653[label="primPlusNat vwx3300 vwx400000",fontsize=16,color="magenta"];1653 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1654[label="GT",fontsize=16,color="green",shape="box"];1655[label="GT",fontsize=16,color="green",shape="box"];1656[label="GT",fontsize=16,color="green",shape="box"];1657[label="GT",fontsize=16,color="green",shape="box"];1658[label="GT",fontsize=16,color="green",shape="box"];1659[label="vwx400000",fontsize=16,color="green",shape="box"];1660[label="vwx3300",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(vwx900), Succ(vwx1000)) -> new_primCmpNat(vwx900, vwx1000) 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(vwx900), Succ(vwx1000)) -> new_primCmpNat(vwx900, vwx1000) 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_primCompAux(vwx90, vwx100, vwx32, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare5(vwx90, vwx100, bdh, bea, beb) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_[], ce)), cd)) -> new_compare(vwx90, vwx100, ce) new_compare21(vwx90, vwx100, False, cg, da) -> new_ltEs2(vwx90, vwx100, cg, da) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(ty_[], bbb), bba) -> new_lt0(vwx91, vwx101, bbb) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_@2, bca), bcb), he, bba) -> new_lt(vwx90, vwx100, bca, bcb) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(app(ty_@2, hf), hg))) -> new_ltEs(vwx92, vwx102, hf, hg) new_compare4(vwx90, vwx100, cg, da) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_@2, eg), eh)), fa)) -> new_ltEs(vwx90, vwx100, eg, eh) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_Maybe, bcd), he, bba) -> new_lt1(vwx90, vwx100, bcd) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(ty_[], bc)) -> new_ltEs0(vwx91, vwx101, bc) new_ltEs1(Just(vwx90), Just(vwx100), app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs3(vwx90, vwx100, ed, ee, ef) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(ty_[], hh)) -> new_ltEs0(vwx92, vwx102, hh) new_lt3(vwx90, vwx100, db, dc, dd) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(app(ty_@3, ed), ee), ef))) -> new_ltEs3(vwx90, vwx100, ed, ee, ef) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_@2, bca), bcb)), he), bba)) -> new_lt(vwx90, vwx100, bca, bcb) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_Either, bce), bcf)), he), bba)) -> new_lt2(vwx90, vwx100, bce, bcf) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(app(ty_@2, hf), hg)) -> new_ltEs(vwx92, vwx102, hf, hg) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vwx92, vwx102, bad, bae, baf) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs0(vwx90, vwx100, dh) new_primCompAux(vwx90, vwx100, vwx32, app(ty_Maybe, bde)) -> new_compare0(vwx90, vwx100, bde) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(ty_@2, gc), gd)) -> new_ltEs(vwx90, vwx100, gc, gd) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_Maybe, cf), cd) -> new_compare0(vwx90, vwx100, cf) new_compare22(vwx90, vwx100, False, db, dc, dd) -> new_ltEs3(vwx90, vwx100, db, dc, dd) new_compare2(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], de)) -> new_compare(vwx91, vwx101, de) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(app(ty_@3, db), dc), dd)), cd)) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) new_primCompAux(vwx90, vwx100, vwx32, app(app(ty_@2, bdb), bdc)) -> new_compare3(vwx90, vwx100, bdb, bdc) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(ty_[], bbb)), bba)) -> new_lt0(vwx91, vwx101, bbb) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_Either, fd), ff)), fa)) -> new_ltEs2(vwx90, vwx100, fd, ff) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(vwx90, vwx100, ha, hb, hc) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_Maybe, fc)), fa)) -> new_ltEs1(vwx90, vwx100, fc) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(ty_Maybe, gf)) -> new_ltEs1(vwx90, vwx100, gf) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(vwx90, vwx100, gg, gh) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(app(ty_@3, db), dc), dd), cd) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(app(ty_@2, ba), bb)) -> new_ltEs(vwx91, vwx101, ba, bb) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(app(ty_@2, bag), bah)), bba)) -> new_lt(vwx91, vwx101, bag, bah) new_lt0(vwx90, vwx100, ce) -> new_compare(vwx90, vwx100, ce) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(app(ty_@3, bcg), bch), bda), he, bba) -> new_lt3(vwx90, vwx100, bcg, bch, bda) new_compare20(vwx90, vwx100, False, cb, cc) -> new_ltEs(vwx90, vwx100, cb, cc) new_lt2(vwx90, vwx100, cg, da) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) new_ltEs1(Just(vwx90), Just(vwx100), app(ty_Maybe, ea)) -> new_ltEs1(vwx90, vwx100, ea) new_ltEs2(Left(vwx90), Left(vwx100), app(ty_Maybe, fc), fa) -> new_ltEs1(vwx90, vwx100, fc) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_[], ce), cd) -> new_compare(vwx90, vwx100, ce) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_Either, bce), bcf), he, bba) -> new_lt2(vwx90, vwx100, bce, bcf) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_@2, cb), cc), cd) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) new_compare2(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], de)) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, de), de) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(ty_[], ge))) -> new_ltEs0(vwx90, vwx100, ge) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(ty_Maybe, baa)) -> new_ltEs1(vwx92, vwx102, baa) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(ty_[], hh))) -> new_ltEs0(vwx92, vwx102, hh) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_[], bcc), he, bba) -> new_lt0(vwx90, vwx100, bcc) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(app(ty_@3, bcg), bch), bda)), he), bba)) -> new_lt3(vwx90, vwx100, bcg, bch, bda) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_[], bcc)), he), bba)) -> new_lt0(vwx90, vwx100, bcc) new_lt1(vwx90, vwx100, cf) -> new_compare0(vwx90, vwx100, cf) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(ty_Maybe, bbc), bba) -> new_lt1(vwx91, vwx101, bbc) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(app(ty_Either, bbd), bbe)), bba)) -> new_lt2(vwx91, vwx101, bbd, bbe) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(ty_Maybe, bbc)), bba)) -> new_lt1(vwx91, vwx101, bbc) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(app(app(ty_@3, bg), bh), ca))) -> new_ltEs3(vwx91, vwx101, bg, bh, ca) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(ty_Maybe, baa))) -> new_ltEs1(vwx92, vwx102, baa) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(ty_Maybe, bd))) -> new_ltEs1(vwx91, vwx101, bd) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_Maybe, cf)), cd)) -> new_compare0(vwx90, vwx100, cf) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(app(ty_Either, be), bf)) -> new_ltEs2(vwx91, vwx101, be, bf) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_[], fb)), fa)) -> new_ltEs0(vwx90, vwx100, fb) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(ty_[], bc))) -> new_ltEs0(vwx91, vwx101, bc) new_primCompAux(vwx90, vwx100, vwx32, app(app(ty_Either, bdf), bdg)) -> new_compare4(vwx90, vwx100, bdf, bdg) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(app(ty_Either, bbd), bbe), bba) -> new_lt2(vwx91, vwx101, bbd, bbe) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_@2, df), dg))) -> new_ltEs(vwx90, vwx100, df, dg) new_compare3(vwx90, vwx100, cb, cc) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(app(ty_Either, be), bf))) -> new_ltEs2(vwx91, vwx101, be, bf) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(app(ty_Either, bab), bac))) -> new_ltEs2(vwx92, vwx102, bab, bac) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(ty_@2, gc), gd))) -> new_ltEs(vwx90, vwx100, gc, gd) new_ltEs2(Left(vwx90), Left(vwx100), app(app(app(ty_@3, fg), fh), ga), fa) -> new_ltEs3(vwx90, vwx100, fg, fh, ga) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(vwx91, vwx101, ba, bb) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) new_compare(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, de), de) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(vwx90, vwx100, gg, gh) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(app(ty_@2, bag), bah), bba) -> new_lt(vwx91, vwx101, bag, bah) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(vwx90, vwx100, ha, hb, hc) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(app(ty_Either, bab), bac)) -> new_ltEs2(vwx92, vwx102, bab, bac) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, bbf), bbg), bbh)), bba)) -> new_lt3(vwx91, vwx101, bbf, bbg, bbh) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_Either, cg), da), cd) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) new_lt(vwx90, vwx100, cb, cc) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) new_primCompAux(vwx90, vwx100, vwx32, app(ty_[], bdd)) -> new_compare(vwx90, vwx100, bdd) new_ltEs2(Left(vwx90), Left(vwx100), app(ty_[], fb), fa) -> new_ltEs0(vwx90, vwx100, fb) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_Maybe, ea))) -> new_ltEs1(vwx90, vwx100, ea) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(app(app(ty_@3, bg), bh), ca)) -> new_ltEs3(vwx91, vwx101, bg, bh, ca) new_ltEs0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_compare(vwx91, vwx101, de) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_Either, eb), ec))) -> new_ltEs2(vwx90, vwx100, eb, ec) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(ty_Maybe, gf))) -> new_ltEs1(vwx90, vwx100, gf) new_compare(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_compare(vwx91, vwx101, de) new_compare0(Just(vwx30), Just(vwx40), bec) -> new_compare2(vwx30, vwx40, new_esEs7(vwx30, vwx40, bec), bec) new_ltEs2(Left(vwx90), Left(vwx100), app(app(ty_Either, fd), ff), fa) -> new_ltEs2(vwx90, vwx100, fd, ff) new_ltEs1(Just(vwx90), Just(vwx100), app(ty_[], dh)) -> new_ltEs0(vwx90, vwx100, dh) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_Maybe, bcd)), he), bba)) -> new_lt1(vwx90, vwx100, bcd) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(app(ty_@3, fg), fh), ga)), fa)) -> new_ltEs3(vwx90, vwx100, fg, fh, ga) new_ltEs2(Left(vwx90), Left(vwx100), app(app(ty_@2, eg), eh), fa) -> new_ltEs(vwx90, vwx100, eg, eh) new_ltEs0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, de), de) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_Either, cg), da)), cd)) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vwx92, vwx102, bad, bae, baf) new_ltEs1(Just(vwx90), Just(vwx100), app(app(ty_@2, df), dg)) -> new_ltEs(vwx90, vwx100, df, dg) new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(ty_Maybe, bd)) -> new_ltEs1(vwx91, vwx101, bd) new_compare5(vwx90, vwx100, db, dc, dd) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) new_ltEs1(Just(vwx90), Just(vwx100), app(app(ty_Either, eb), ec)) -> new_ltEs2(vwx90, vwx100, eb, ec) new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(app(app(ty_@3, bbf), bbg), bbh), bba) -> new_lt3(vwx91, vwx101, bbf, bbg, bbh) new_ltEs2(Right(vwx90), Right(vwx100), gb, app(ty_[], ge)) -> new_ltEs0(vwx90, vwx100, ge) The TRS R consists of the following rules: new_esEs10(vwx302, vwx402, app(ty_Ratio, bfc)) -> new_esEs17(vwx302, vwx402, bfc) new_primCmpInt(Neg(Succ(vwx900)), Pos(vwx100)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs10(vwx302, vwx402, ty_Double) -> new_esEs19(vwx302, vwx402) new_compare10(vwx90, vwx100, True, db, dc, dd) -> LT new_ltEs9(vwx9, vwx10) -> new_not(new_esEs8(new_compare15(vwx9, vwx10), GT)) new_ltEs19(vwx92, vwx102, ty_Double) -> new_ltEs4(vwx92, vwx102) new_compare7(Double(vwx90, Neg(vwx910)), Double(vwx100, Neg(vwx1010))) -> new_compare8(new_sr(vwx90, Neg(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_lt6(vwx90, vwx100, app(app(ty_@2, cb), cc)) -> new_lt8(vwx90, vwx100, cb, cc) new_esEs25(vwx91, vwx101, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs6(vwx91, vwx101, bbf, bbg, bbh) new_pePe(True, vwx31) -> True new_esEs5(Left(vwx300), Left(vwx400), ty_Ordering, cbg) -> new_esEs8(vwx300, vwx400) new_esEs27(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_esEs5(Left(vwx300), Left(vwx400), ty_Bool, cbg) -> new_esEs13(vwx300, vwx400) new_compare23(vwx9, vwx10, True, dcb) -> EQ new_esEs11(vwx301, vwx401, ty_Char) -> new_esEs14(vwx301, vwx401) new_esEs10(vwx302, vwx402, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs6(vwx302, vwx402, bfg, bfh, bga) new_ltEs12(Just(vwx90), Just(vwx100), app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs16(vwx90, vwx100, ed, ee, ef) new_esEs23(vwx300, vwx400, ty_Integer) -> new_esEs9(vwx300, vwx400) new_ltEs19(vwx92, vwx102, app(app(ty_Either, bab), bac)) -> new_ltEs15(vwx92, vwx102, bab, bac) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vwx300, vwx400, app(app(ty_Either, cea), ceb)) -> new_esEs5(vwx300, vwx400, cea, ceb) new_primCmpInt(Pos(Zero), Neg(Succ(vwx1000))) -> GT new_esEs25(vwx91, vwx101, ty_Double) -> new_esEs19(vwx91, vwx101) new_esEs24(vwx90, vwx100, ty_Ordering) -> new_esEs8(vwx90, vwx100) new_compare13(Nothing, Nothing, bec) -> EQ new_esEs14(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_lt6(vwx90, vwx100, ty_Bool) -> new_lt12(vwx90, vwx100) new_esEs28(vwx301, vwx401, ty_Int) -> new_esEs20(vwx301, vwx401) new_lt20(vwx90, vwx100, ty_@0) -> new_lt13(vwx90, vwx100) new_primCmpInt(Neg(Succ(vwx900)), Neg(vwx100)) -> new_primCmpNat0(vwx100, Succ(vwx900)) new_esEs18(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs8(vwx300, vwx400) new_esEs7(vwx30, vwx40, ty_Int) -> new_esEs20(vwx30, vwx40) new_lt18(vwx90, vwx100) -> new_esEs8(new_compare7(vwx90, vwx100), LT) new_lt6(vwx90, vwx100, ty_Integer) -> new_lt7(vwx90, vwx100) new_compare17(Float(vwx90, Neg(vwx910)), Float(vwx100, Neg(vwx1010))) -> new_compare8(new_sr(vwx90, Neg(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_ltEs15(Left(vwx90), Left(vwx100), ty_Char, fa) -> new_ltEs17(vwx90, vwx100) new_esEs26(vwx90, vwx100, app(ty_[], bcc)) -> new_esEs15(vwx90, vwx100, bcc) new_esEs26(vwx90, vwx100, app(ty_Maybe, bcd)) -> new_esEs18(vwx90, vwx100, bcd) new_esEs12(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_ltEs7(vwx91, vwx101, app(app(ty_Either, be), bf)) -> new_ltEs15(vwx91, vwx101, be, bf) new_primCompAux0(vwx42, GT) -> GT new_lt19(vwx91, vwx101, ty_@0) -> new_lt13(vwx91, vwx101) new_esEs26(vwx90, vwx100, ty_Char) -> new_esEs14(vwx90, vwx100) new_ltEs20(vwx9, vwx10, ty_Double) -> new_ltEs4(vwx9, vwx10) new_compare26(vwx90, vwx100, True) -> EQ new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_esEs25(vwx91, vwx101, app(ty_Ratio, cbc)) -> new_esEs17(vwx91, vwx101, cbc) new_compare18(vwx90, vwx100) -> new_compare26(vwx90, vwx100, new_esEs13(vwx90, vwx100)) new_compare210(vwx90, vwx100, True, cg, da) -> EQ new_esEs29(vwx300, vwx400, ty_Double) -> new_esEs19(vwx300, vwx400) new_compare14(vwx90, vwx100, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare19(vwx90, vwx100, bdh, bea, beb) new_ltEs19(vwx92, vwx102, app(app(ty_@2, hf), hg)) -> new_ltEs6(vwx92, vwx102, hf, hg) new_esEs29(vwx300, vwx400, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs6(vwx300, vwx400, dbg, dbh, dca) new_esEs24(vwx90, vwx100, app(app(ty_@2, cb), cc)) -> new_esEs4(vwx90, vwx100, cb, cc) new_ltEs7(vwx91, vwx101, ty_Int) -> new_ltEs5(vwx91, vwx101) new_ltEs13(True, True) -> True new_esEs27(vwx300, vwx400, ty_Integer) -> new_esEs9(vwx300, vwx400) new_esEs8(EQ, EQ) -> True new_ltEs14(vwx9, vwx10) -> new_not(new_esEs8(new_compare12(vwx9, vwx10), GT)) new_esEs24(vwx90, vwx100, ty_Bool) -> new_esEs13(vwx90, vwx100) new_compare1(:(vwx90, vwx91), [], de) -> GT new_ltEs15(Left(vwx90), Left(vwx100), ty_Float, fa) -> new_ltEs11(vwx90, vwx100) new_ltEs15(Left(vwx90), Left(vwx100), app(app(ty_Either, fd), ff), fa) -> new_ltEs15(vwx90, vwx100, fd, ff) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs28(vwx301, vwx401, ty_Float) -> new_esEs21(vwx301, vwx401) new_esEs5(Right(vwx300), Right(vwx400), cbf, app(app(ty_@2, cgh), cha)) -> new_esEs4(vwx300, vwx400, cgh, cha) new_primCompAux0(vwx42, LT) -> LT new_ltEs7(vwx91, vwx101, ty_Bool) -> new_ltEs13(vwx91, vwx101) new_compare13(Just(vwx30), Nothing, bec) -> GT new_compare14(vwx90, vwx100, app(ty_Ratio, ccc)) -> new_compare6(vwx90, vwx100, ccc) new_esEs12(vwx300, vwx400, app(app(ty_Either, bhe), bhf)) -> new_esEs5(vwx300, vwx400, bhe, bhf) new_not(True) -> False new_compare14(vwx90, vwx100, ty_Ordering) -> new_compare25(vwx90, vwx100) new_primCmpNat0(Zero, Zero) -> EQ new_esEs28(vwx301, vwx401, ty_Integer) -> new_esEs9(vwx301, vwx401) new_esEs12(vwx300, vwx400, app(ty_[], bhd)) -> new_esEs15(vwx300, vwx400, bhd) new_esEs7(vwx30, vwx40, ty_Ordering) -> new_esEs8(vwx30, vwx40) new_esEs28(vwx301, vwx401, ty_Bool) -> new_esEs13(vwx301, vwx401) new_lt6(vwx90, vwx100, app(ty_Ratio, bed)) -> new_lt4(vwx90, vwx100, bed) new_esEs7(vwx30, vwx40, app(app(ty_@2, cbh), cca)) -> new_esEs4(vwx30, vwx40, cbh, cca) new_esEs5(Right(vwx300), Right(vwx400), cbf, app(ty_[], cgd)) -> new_esEs15(vwx300, vwx400, cgd) new_esEs10(vwx302, vwx402, ty_Ordering) -> new_esEs8(vwx302, vwx402) new_lt20(vwx90, vwx100, ty_Ordering) -> new_lt16(vwx90, vwx100) new_esEs12(vwx300, vwx400, ty_Float) -> new_esEs21(vwx300, vwx400) new_compare13(Nothing, Just(vwx40), bec) -> LT new_ltEs7(vwx91, vwx101, app(ty_Ratio, cag)) -> new_ltEs8(vwx91, vwx101, cag) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_esEs5(Left(vwx300), Left(vwx400), app(ty_[], cfb), cbg) -> new_esEs15(vwx300, vwx400, cfb) new_ltEs12(Just(vwx90), Just(vwx100), ty_@0) -> new_ltEs14(vwx90, vwx100) new_ltEs18(EQ, GT) -> True new_compare8(vwx9, vwx10) -> new_primCmpInt(vwx9, vwx10) new_lt12(vwx90, vwx100) -> new_esEs8(new_compare18(vwx90, vwx100), LT) new_esEs12(vwx300, vwx400, ty_Integer) -> new_esEs9(vwx300, vwx400) new_esEs29(vwx300, vwx400, ty_Bool) -> new_esEs13(vwx300, vwx400) new_esEs5(Left(vwx300), Left(vwx400), ty_Double, cbg) -> new_esEs19(vwx300, vwx400) new_compare14(vwx90, vwx100, app(ty_[], bdd)) -> new_compare1(vwx90, vwx100, bdd) new_esEs21(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs20(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_ltEs20(vwx9, vwx10, app(ty_Ratio, cdg)) -> new_ltEs8(vwx9, vwx10, cdg) new_compare110(vwx90, vwx100, True) -> LT new_lt20(vwx90, vwx100, app(ty_[], bcc)) -> new_lt9(vwx90, vwx100, bcc) new_lt8(vwx90, vwx100, cb, cc) -> new_esEs8(new_compare16(vwx90, vwx100, cb, cc), LT) new_esEs24(vwx90, vwx100, ty_Double) -> new_esEs19(vwx90, vwx100) new_lt19(vwx91, vwx101, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt14(vwx91, vwx101, bbf, bbg, bbh) new_ltEs20(vwx9, vwx10, ty_Bool) -> new_ltEs13(vwx9, vwx10) new_ltEs7(vwx91, vwx101, app(app(ty_@2, ba), bb)) -> new_ltEs6(vwx91, vwx101, ba, bb) new_primCmpInt(Pos(Succ(vwx900)), Neg(vwx100)) -> GT new_lt6(vwx90, vwx100, ty_Ordering) -> new_lt16(vwx90, vwx100) new_compare27(vwx90, vwx100, False, cb, cc) -> new_compare112(vwx90, vwx100, new_ltEs6(vwx90, vwx100, cb, cc), cb, cc) new_esEs18(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs13(vwx300, vwx400) new_ltEs6(@2(vwx90, vwx91), @2(vwx100, vwx101), h, cd) -> new_pePe(new_lt6(vwx90, vwx100, h), new_asAs(new_esEs24(vwx90, vwx100, h), new_ltEs7(vwx91, vwx101, cd))) new_ltEs15(Left(vwx90), Left(vwx100), ty_Integer, fa) -> new_ltEs9(vwx90, vwx100) new_ltEs20(vwx9, vwx10, ty_Int) -> new_ltEs5(vwx9, vwx10) new_esEs5(Right(vwx300), Right(vwx400), cbf, ty_Char) -> new_esEs14(vwx300, vwx400) new_esEs11(vwx301, vwx401, app(ty_Maybe, bgh)) -> new_esEs18(vwx301, vwx401, bgh) new_esEs24(vwx90, vwx100, ty_Float) -> new_esEs21(vwx90, vwx100) new_ltEs19(vwx92, vwx102, ty_Bool) -> new_ltEs13(vwx92, vwx102) new_compare14(vwx90, vwx100, ty_Bool) -> new_compare18(vwx90, vwx100) new_esEs18(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs9(vwx300, vwx400) new_compare28(vwx90, vwx100, False) -> new_compare111(vwx90, vwx100, new_ltEs18(vwx90, vwx100)) new_lt13(vwx90, vwx100) -> new_esEs8(new_compare12(vwx90, vwx100), LT) new_compare1(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux1(vwx90, vwx100, new_compare1(vwx91, vwx101, de), de) new_primPlusNat1(Succ(vwx3300), Succ(vwx400000)) -> Succ(Succ(new_primPlusNat1(vwx3300, vwx400000))) new_esEs15(:(vwx300, vwx301), :(vwx400, vwx401), cbe) -> new_asAs(new_esEs27(vwx300, vwx400, cbe), new_esEs15(vwx301, vwx401, cbe)) new_ltEs12(Just(vwx90), Just(vwx100), ty_Integer) -> new_ltEs9(vwx90, vwx100) new_primCmpNat0(Zero, Succ(vwx1000)) -> LT new_lt20(vwx90, vwx100, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt14(vwx90, vwx100, bcg, bch, bda) new_ltEs15(Left(vwx90), Left(vwx100), app(app(ty_@2, eg), eh), fa) -> new_ltEs6(vwx90, vwx100, eg, eh) new_primCompAux1(vwx90, vwx100, vwx32, de) -> new_primCompAux0(vwx32, new_compare14(vwx90, vwx100, de)) new_ltEs15(Right(vwx90), Left(vwx100), gb, fa) -> False new_ltEs19(vwx92, vwx102, ty_Int) -> new_ltEs5(vwx92, vwx102) new_primCmpNat0(Succ(vwx900), Zero) -> GT new_esEs12(vwx300, vwx400, ty_Int) -> new_esEs20(vwx300, vwx400) new_pePe(False, vwx31) -> vwx31 new_compare14(vwx90, vwx100, ty_Double) -> new_compare7(vwx90, vwx100) new_esEs5(Left(vwx300), Left(vwx400), ty_Float, cbg) -> new_esEs21(vwx300, vwx400) new_ltEs20(vwx9, vwx10, ty_Float) -> new_ltEs11(vwx9, vwx10) new_ltEs7(vwx91, vwx101, ty_Float) -> new_ltEs11(vwx91, vwx101) new_ltEs11(vwx9, vwx10) -> new_not(new_esEs8(new_compare17(vwx9, vwx10), GT)) new_compare112(vwx90, vwx100, True, cb, cc) -> LT new_ltEs15(Left(vwx90), Left(vwx100), app(ty_Maybe, fc), fa) -> new_ltEs12(vwx90, vwx100, fc) new_ltEs18(LT, GT) -> True new_esEs11(vwx301, vwx401, ty_Double) -> new_esEs19(vwx301, vwx401) new_esEs25(vwx91, vwx101, app(ty_[], bbb)) -> new_esEs15(vwx91, vwx101, bbb) new_compare113(vwx16, vwx17, True, cdf) -> LT new_esEs29(vwx300, vwx400, ty_Char) -> new_esEs14(vwx300, vwx400) new_esEs7(vwx30, vwx40, app(app(ty_Either, cbf), cbg)) -> new_esEs5(vwx30, vwx40, cbf, cbg) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(vwx90, vwx100, False, cg, da) -> GT new_esEs5(Left(vwx300), Left(vwx400), app(app(ty_@2, cff), cfg), cbg) -> new_esEs4(vwx300, vwx400, cff, cfg) new_lt5(vwx90, vwx100, cg, da) -> new_esEs8(new_compare9(vwx90, vwx100, cg, da), LT) new_ltEs15(Left(vwx90), Left(vwx100), ty_Int, fa) -> new_ltEs5(vwx90, vwx100) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_esEs7(vwx30, vwx40, ty_Double) -> new_esEs19(vwx30, vwx40) new_esEs28(vwx301, vwx401, ty_@0) -> new_esEs16(vwx301, vwx401) new_esEs7(vwx30, vwx40, ty_@0) -> new_esEs16(vwx30, vwx40) new_lt17(vwx90, vwx100) -> new_esEs8(new_compare8(vwx90, vwx100), LT) new_lt15(vwx90, vwx100) -> new_esEs8(new_compare24(vwx90, vwx100), LT) new_esEs26(vwx90, vwx100, app(ty_Ratio, cbd)) -> new_esEs17(vwx90, vwx100, cbd) new_esEs25(vwx91, vwx101, app(app(ty_@2, bag), bah)) -> new_esEs4(vwx91, vwx101, bag, bah) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(app(ty_Either, gg), gh)) -> new_ltEs15(vwx90, vwx100, gg, gh) new_esEs18(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs19(vwx300, vwx400) new_ltEs19(vwx92, vwx102, ty_Ordering) -> new_ltEs18(vwx92, vwx102) new_compare25(vwx90, vwx100) -> new_compare28(vwx90, vwx100, new_esEs8(vwx90, vwx100)) new_esEs10(vwx302, vwx402, app(ty_Maybe, bff)) -> new_esEs18(vwx302, vwx402, bff) new_ltEs20(vwx9, vwx10, app(app(ty_@2, h), cd)) -> new_ltEs6(vwx9, vwx10, h, cd) new_esEs10(vwx302, vwx402, ty_Int) -> new_esEs20(vwx302, vwx402) new_esEs24(vwx90, vwx100, app(app(ty_Either, cg), da)) -> new_esEs5(vwx90, vwx100, cg, da) new_esEs25(vwx91, vwx101, ty_Char) -> new_esEs14(vwx91, vwx101) new_ltEs15(Left(vwx90), Left(vwx100), ty_@0, fa) -> new_ltEs14(vwx90, vwx100) new_esEs25(vwx91, vwx101, ty_Ordering) -> new_esEs8(vwx91, vwx101) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_primCmpInt(Neg(Zero), Pos(Succ(vwx1000))) -> LT new_esEs18(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs21(vwx300, vwx400) new_ltEs20(vwx9, vwx10, ty_Char) -> new_ltEs17(vwx9, vwx10) new_lt11(vwx90, vwx100, cf) -> new_esEs8(new_compare13(vwx90, vwx100, cf), LT) new_primMulInt(Pos(vwx3010), Pos(vwx4000)) -> Pos(new_primMulNat0(vwx3010, vwx4000)) new_lt20(vwx90, vwx100, app(app(ty_@2, bca), bcb)) -> new_lt8(vwx90, vwx100, bca, bcb) new_ltEs15(Left(vwx90), Right(vwx100), gb, fa) -> True new_esEs25(vwx91, vwx101, ty_Int) -> new_esEs20(vwx91, vwx101) new_compare16(vwx90, vwx100, cb, cc) -> new_compare27(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) new_lt6(vwx90, vwx100, app(app(app(ty_@3, db), dc), dd)) -> new_lt14(vwx90, vwx100, db, dc, dd) new_esEs15([], [], cbe) -> True new_ltEs18(EQ, LT) -> False new_esEs24(vwx90, vwx100, app(app(app(ty_@3, db), dc), dd)) -> new_esEs6(vwx90, vwx100, db, dc, dd) new_esEs11(vwx301, vwx401, app(ty_Ratio, bge)) -> new_esEs17(vwx301, vwx401, bge) new_compare7(Double(vwx90, Pos(vwx910)), Double(vwx100, Pos(vwx1010))) -> new_compare8(new_sr(vwx90, Pos(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_esEs10(vwx302, vwx402, app(app(ty_@2, bfd), bfe)) -> new_esEs4(vwx302, vwx402, bfd, bfe) new_primMulNat0(Succ(vwx30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40000)) -> Zero new_primPlusNat0(Zero, vwx40000) -> Succ(vwx40000) new_compare26(vwx90, vwx100, False) -> new_compare110(vwx90, vwx100, new_ltEs13(vwx90, vwx100)) new_esEs24(vwx90, vwx100, ty_Integer) -> new_esEs9(vwx90, vwx100) new_esEs7(vwx30, vwx40, ty_Float) -> new_esEs21(vwx30, vwx40) new_compare14(vwx90, vwx100, app(app(ty_@2, bdb), bdc)) -> new_compare16(vwx90, vwx100, bdb, bdc) new_esEs5(Left(vwx300), Left(vwx400), app(ty_Maybe, cfh), cbg) -> new_esEs18(vwx300, vwx400, cfh) new_esEs5(Left(vwx300), Left(vwx400), ty_Integer, cbg) -> new_esEs9(vwx300, vwx400) new_esEs18(Just(vwx300), Just(vwx400), app(ty_Ratio, ccg)) -> new_esEs17(vwx300, vwx400, ccg) new_esEs22(vwx301, vwx401, ty_Int) -> new_esEs20(vwx301, vwx401) new_ltEs19(vwx92, vwx102, ty_Char) -> new_ltEs17(vwx92, vwx102) new_compare14(vwx90, vwx100, ty_Float) -> new_compare17(vwx90, vwx100) new_esEs29(vwx300, vwx400, app(ty_Maybe, dbf)) -> new_esEs18(vwx300, vwx400, dbf) new_lt7(vwx90, vwx100) -> new_esEs8(new_compare15(vwx90, vwx100), LT) new_esEs11(vwx301, vwx401, ty_Float) -> new_esEs21(vwx301, vwx401) new_esEs5(Left(vwx300), Left(vwx400), app(app(ty_Either, cfc), cfd), cbg) -> new_esEs5(vwx300, vwx400, cfc, cfd) new_lt20(vwx90, vwx100, ty_Bool) -> new_lt12(vwx90, vwx100) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs16(vwx90, vwx100, ha, hb, hc) new_esEs11(vwx301, vwx401, app(app(ty_@2, bgf), bgg)) -> new_esEs4(vwx301, vwx401, bgf, bgg) new_ltEs18(LT, LT) -> True new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Double) -> new_ltEs4(vwx90, vwx100) new_esEs8(LT, LT) -> True new_compare14(vwx90, vwx100, app(app(ty_Either, bdf), bdg)) -> new_compare9(vwx90, vwx100, bdf, bdg) new_ltEs20(vwx9, vwx10, ty_Ordering) -> new_ltEs18(vwx9, vwx10) new_esEs23(vwx300, vwx400, ty_Int) -> new_esEs20(vwx300, vwx400) new_compare111(vwx90, vwx100, True) -> LT new_compare1([], [], de) -> EQ new_esEs28(vwx301, vwx401, app(ty_[], chf)) -> new_esEs15(vwx301, vwx401, chf) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Bool) -> new_ltEs13(vwx90, vwx100) new_lt19(vwx91, vwx101, app(app(ty_@2, bag), bah)) -> new_lt8(vwx91, vwx101, bag, bah) new_esEs26(vwx90, vwx100, ty_Bool) -> new_esEs13(vwx90, vwx100) new_ltEs15(Left(vwx90), Left(vwx100), ty_Ordering, fa) -> new_ltEs18(vwx90, vwx100) new_primPlusNat1(Succ(vwx3300), Zero) -> Succ(vwx3300) new_primPlusNat1(Zero, Succ(vwx400000)) -> Succ(vwx400000) new_esEs5(Left(vwx300), Left(vwx400), ty_Int, cbg) -> new_esEs20(vwx300, vwx400) new_ltEs19(vwx92, vwx102, ty_@0) -> new_ltEs14(vwx92, vwx102) new_lt19(vwx91, vwx101, app(ty_Maybe, bbc)) -> new_lt11(vwx91, vwx101, bbc) new_ltEs4(vwx9, vwx10) -> new_not(new_esEs8(new_compare7(vwx9, vwx10), GT)) new_esEs12(vwx300, vwx400, app(app(ty_@2, bhh), caa)) -> new_esEs4(vwx300, vwx400, bhh, caa) new_ltEs18(EQ, EQ) -> True new_esEs13(True, True) -> True new_esEs18(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs20(vwx300, vwx400) new_esEs6(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bee, bef, beg) -> new_asAs(new_esEs12(vwx300, vwx400, bee), new_asAs(new_esEs11(vwx301, vwx401, bef), new_esEs10(vwx302, vwx402, beg))) new_esEs26(vwx90, vwx100, ty_Integer) -> new_esEs9(vwx90, vwx100) new_compare23(vwx9, vwx10, False, dcb) -> new_compare113(vwx9, vwx10, new_ltEs20(vwx9, vwx10, dcb), dcb) new_esEs24(vwx90, vwx100, ty_Int) -> new_esEs20(vwx90, vwx100) new_compare24(Char(vwx90), Char(vwx100)) -> new_primCmpNat0(vwx90, vwx100) new_ltEs20(vwx9, vwx10, ty_Integer) -> new_ltEs9(vwx9, vwx10) new_esEs11(vwx301, vwx401, ty_Ordering) -> new_esEs8(vwx301, vwx401) new_esEs24(vwx90, vwx100, app(ty_Ratio, bed)) -> new_esEs17(vwx90, vwx100, bed) new_ltEs20(vwx9, vwx10, ty_@0) -> new_ltEs14(vwx9, vwx10) new_ltEs19(vwx92, vwx102, ty_Integer) -> new_ltEs9(vwx92, vwx102) new_lt20(vwx90, vwx100, app(ty_Maybe, bcd)) -> new_lt11(vwx90, vwx100, bcd) new_esEs12(vwx300, vwx400, app(ty_Ratio, bhg)) -> new_esEs17(vwx300, vwx400, bhg) new_esEs18(Nothing, Nothing, ccb) -> True new_ltEs20(vwx9, vwx10, app(app(app(ty_@3, hd), he), bba)) -> new_ltEs16(vwx9, vwx10, hd, he, bba) new_ltEs19(vwx92, vwx102, ty_Float) -> new_ltEs11(vwx92, vwx102) new_esEs25(vwx91, vwx101, ty_Bool) -> new_esEs13(vwx91, vwx101) new_ltEs12(Just(vwx90), Just(vwx100), app(ty_Maybe, ea)) -> new_ltEs12(vwx90, vwx100, ea) new_ltEs7(vwx91, vwx101, ty_Char) -> new_ltEs17(vwx91, vwx101) new_primMulInt(Neg(vwx3010), Neg(vwx4000)) -> Pos(new_primMulNat0(vwx3010, vwx4000)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx1000))) -> new_primCmpNat0(Zero, Succ(vwx1000)) new_esEs7(vwx30, vwx40, app(ty_Maybe, ccb)) -> new_esEs18(vwx30, vwx40, ccb) new_esEs18(Nothing, Just(vwx400), ccb) -> False new_esEs18(Just(vwx300), Nothing, ccb) -> False new_esEs5(Right(vwx300), Right(vwx400), cbf, ty_@0) -> new_esEs16(vwx300, vwx400) new_esEs18(Just(vwx300), Just(vwx400), app(app(ty_@2, cch), cda)) -> new_esEs4(vwx300, vwx400, cch, cda) new_esEs18(Just(vwx300), Just(vwx400), app(app(ty_Either, cce), ccf)) -> new_esEs5(vwx300, vwx400, cce, ccf) new_esEs11(vwx301, vwx401, app(app(ty_Either, bgc), bgd)) -> new_esEs5(vwx301, vwx401, bgc, bgd) new_esEs25(vwx91, vwx101, ty_Integer) -> new_esEs9(vwx91, vwx101) new_esEs12(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_esEs18(Just(vwx300), Just(vwx400), app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs6(vwx300, vwx400, cdc, cdd, cde) new_ltEs18(LT, EQ) -> True new_esEs4(@2(vwx300, vwx301), @2(vwx400, vwx401), cbh, cca) -> new_asAs(new_esEs29(vwx300, vwx400, cbh), new_esEs28(vwx301, vwx401, cca)) new_esEs27(vwx300, vwx400, ty_Char) -> new_esEs14(vwx300, vwx400) new_ltEs7(vwx91, vwx101, ty_Ordering) -> new_ltEs18(vwx91, vwx101) new_ltEs12(Just(vwx90), Just(vwx100), ty_Double) -> new_ltEs4(vwx90, vwx100) new_lt6(vwx90, vwx100, ty_Int) -> new_lt17(vwx90, vwx100) new_esEs10(vwx302, vwx402, ty_Float) -> new_esEs21(vwx302, vwx402) new_esEs11(vwx301, vwx401, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs6(vwx301, vwx401, bha, bhb, bhc) new_esEs27(vwx300, vwx400, app(ty_[], cdh)) -> new_esEs15(vwx300, vwx400, cdh) new_ltEs20(vwx9, vwx10, app(app(ty_Either, gb), fa)) -> new_ltEs15(vwx9, vwx10, gb, fa) new_compare6(:%(vwx90, vwx91), :%(vwx100, vwx101), ty_Integer) -> new_compare15(new_sr0(vwx90, vwx101), new_sr0(vwx100, vwx91)) new_esEs10(vwx302, vwx402, ty_@0) -> new_esEs16(vwx302, vwx402) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(ty_[], ge)) -> new_ltEs10(vwx90, vwx100, ge) new_esEs28(vwx301, vwx401, ty_Char) -> new_esEs14(vwx301, vwx401) new_compare12(@0, @0) -> EQ new_lt6(vwx90, vwx100, app(ty_Maybe, cf)) -> new_lt11(vwx90, vwx100, cf) new_primMulInt(Pos(vwx3010), Neg(vwx4000)) -> Neg(new_primMulNat0(vwx3010, vwx4000)) new_primMulInt(Neg(vwx3010), Pos(vwx4000)) -> Neg(new_primMulNat0(vwx3010, vwx4000)) new_lt16(vwx90, vwx100) -> new_esEs8(new_compare25(vwx90, vwx100), LT) new_esEs27(vwx300, vwx400, app(ty_Ratio, cec)) -> new_esEs17(vwx300, vwx400, cec) new_esEs5(Right(vwx300), Right(vwx400), cbf, app(app(app(ty_@3, chc), chd), che)) -> new_esEs6(vwx300, vwx400, chc, chd, che) new_esEs28(vwx301, vwx401, app(ty_Maybe, dad)) -> new_esEs18(vwx301, vwx401, dad) new_compare28(vwx90, vwx100, True) -> EQ new_esEs24(vwx90, vwx100, app(ty_[], ce)) -> new_esEs15(vwx90, vwx100, ce) new_esEs5(Left(vwx300), Left(vwx400), app(ty_Ratio, cfe), cbg) -> new_esEs17(vwx300, vwx400, cfe) new_lt9(vwx90, vwx100, ce) -> new_esEs8(new_compare1(vwx90, vwx100, ce), LT) new_esEs27(vwx300, vwx400, ty_Double) -> new_esEs19(vwx300, vwx400) new_compare15(Integer(vwx90), Integer(vwx100)) -> new_primCmpInt(vwx90, vwx100) new_ltEs12(Just(vwx90), Just(vwx100), ty_Int) -> new_ltEs5(vwx90, vwx100) new_esEs18(Just(vwx300), Just(vwx400), app(ty_[], ccd)) -> new_esEs15(vwx300, vwx400, ccd) new_compare10(vwx90, vwx100, False, db, dc, dd) -> GT new_ltEs15(Right(vwx90), Right(vwx100), gb, app(ty_Ratio, cba)) -> new_ltEs8(vwx90, vwx100, cba) new_esEs5(Right(vwx300), Right(vwx400), cbf, app(ty_Ratio, cgg)) -> new_esEs17(vwx300, vwx400, cgg) new_esEs17(:%(vwx300, vwx301), :%(vwx400, vwx401), caf) -> new_asAs(new_esEs23(vwx300, vwx400, caf), new_esEs22(vwx301, vwx401, caf)) new_ltEs15(Left(vwx90), Left(vwx100), app(ty_Ratio, cah), fa) -> new_ltEs8(vwx90, vwx100, cah) new_esEs11(vwx301, vwx401, ty_Int) -> new_esEs20(vwx301, vwx401) new_sr0(Integer(vwx1000), Integer(vwx910)) -> Integer(new_primMulInt(vwx1000, vwx910)) new_esEs27(vwx300, vwx400, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs6(vwx300, vwx400, ceg, ceh, cfa) new_esEs10(vwx302, vwx402, app(app(ty_Either, bfa), bfb)) -> new_esEs5(vwx302, vwx402, bfa, bfb) new_ltEs12(Just(vwx90), Just(vwx100), app(app(ty_Either, eb), ec)) -> new_ltEs15(vwx90, vwx100, eb, ec) new_ltEs19(vwx92, vwx102, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs16(vwx92, vwx102, bad, bae, baf) new_esEs13(False, False) -> True new_ltEs12(Just(vwx90), Just(vwx100), ty_Bool) -> new_ltEs13(vwx90, vwx100) new_lt19(vwx91, vwx101, app(ty_Ratio, cbc)) -> new_lt4(vwx91, vwx101, cbc) new_esEs25(vwx91, vwx101, ty_Float) -> new_esEs21(vwx91, vwx101) new_esEs12(vwx300, vwx400, ty_Double) -> new_esEs19(vwx300, vwx400) new_lt14(vwx90, vwx100, db, dc, dd) -> new_esEs8(new_compare19(vwx90, vwx100, db, dc, dd), LT) new_esEs29(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_asAs(True, vwx24) -> vwx24 new_ltEs7(vwx91, vwx101, app(app(app(ty_@3, bg), bh), ca)) -> new_ltEs16(vwx91, vwx101, bg, bh, ca) new_compare17(Float(vwx90, Pos(vwx910)), Float(vwx100, Neg(vwx1010))) -> new_compare8(new_sr(vwx90, Pos(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_compare17(Float(vwx90, Neg(vwx910)), Float(vwx100, Pos(vwx1010))) -> new_compare8(new_sr(vwx90, Neg(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_lt20(vwx90, vwx100, app(ty_Ratio, cbd)) -> new_lt4(vwx90, vwx100, cbd) new_lt19(vwx91, vwx101, ty_Bool) -> new_lt12(vwx91, vwx101) new_esEs7(vwx30, vwx40, app(ty_[], cbe)) -> new_esEs15(vwx30, vwx40, cbe) new_esEs5(Right(vwx300), Right(vwx400), cbf, ty_Bool) -> new_esEs13(vwx300, vwx400) new_esEs12(vwx300, vwx400, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs6(vwx300, vwx400, cac, cad, cae) new_ltEs7(vwx91, vwx101, ty_@0) -> new_ltEs14(vwx91, vwx101) new_esEs16(@0, @0) -> True new_ltEs10(vwx9, vwx10, de) -> new_not(new_esEs8(new_compare1(vwx9, vwx10, de), GT)) new_esEs7(vwx30, vwx40, ty_Char) -> new_esEs14(vwx30, vwx40) new_esEs18(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs14(vwx300, vwx400) new_lt20(vwx90, vwx100, ty_Int) -> new_lt17(vwx90, vwx100) new_esEs5(Right(vwx300), Right(vwx400), cbf, ty_Int) -> new_esEs20(vwx300, vwx400) new_esEs10(vwx302, vwx402, ty_Integer) -> new_esEs9(vwx302, vwx402) new_compare14(vwx90, vwx100, ty_Char) -> new_compare24(vwx90, vwx100) new_ltEs15(Left(vwx90), Left(vwx100), app(ty_[], fb), fa) -> new_ltEs10(vwx90, vwx100, fb) new_primCmpInt(Pos(Succ(vwx900)), Pos(vwx100)) -> new_primCmpNat0(Succ(vwx900), vwx100) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Char) -> new_ltEs17(vwx90, vwx100) new_compare110(vwx90, vwx100, False) -> GT new_esEs29(vwx300, vwx400, app(app(ty_Either, dba), dbb)) -> new_esEs5(vwx300, vwx400, dba, dbb) new_esEs5(Right(vwx300), Right(vwx400), cbf, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_ltEs7(vwx91, vwx101, app(ty_Maybe, bd)) -> new_ltEs12(vwx91, vwx101, bd) new_sr(vwx301, vwx400) -> new_primMulInt(vwx301, vwx400) new_esEs27(vwx300, vwx400, ty_Bool) -> new_esEs13(vwx300, vwx400) new_esEs5(Left(vwx300), Left(vwx400), ty_Char, cbg) -> new_esEs14(vwx300, vwx400) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_esEs11(vwx301, vwx401, ty_Integer) -> new_esEs9(vwx301, vwx401) new_compare111(vwx90, vwx100, False) -> GT new_ltEs20(vwx9, vwx10, app(ty_Maybe, dcc)) -> new_ltEs12(vwx9, vwx10, dcc) new_lt19(vwx91, vwx101, ty_Int) -> new_lt17(vwx91, vwx101) new_esEs11(vwx301, vwx401, ty_Bool) -> new_esEs13(vwx301, vwx401) new_esEs15(:(vwx300, vwx301), [], cbe) -> False new_esEs15([], :(vwx400, vwx401), cbe) -> False new_compare7(Double(vwx90, Pos(vwx910)), Double(vwx100, Neg(vwx1010))) -> new_compare8(new_sr(vwx90, Pos(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_compare7(Double(vwx90, Neg(vwx910)), Double(vwx100, Pos(vwx1010))) -> new_compare8(new_sr(vwx90, Neg(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_esEs18(Just(vwx300), Just(vwx400), app(ty_Maybe, cdb)) -> new_esEs18(vwx300, vwx400, cdb) new_lt20(vwx90, vwx100, ty_Float) -> new_lt10(vwx90, vwx100) new_lt6(vwx90, vwx100, ty_@0) -> new_lt13(vwx90, vwx100) new_esEs12(vwx300, vwx400, ty_Bool) -> new_esEs13(vwx300, vwx400) new_ltEs13(False, True) -> True new_esEs29(vwx300, vwx400, ty_Integer) -> new_esEs9(vwx300, vwx400) new_ltEs7(vwx91, vwx101, ty_Integer) -> new_ltEs9(vwx91, vwx101) new_ltEs13(False, False) -> True new_esEs5(Right(vwx300), Right(vwx400), cbf, app(app(ty_Either, cge), cgf)) -> new_esEs5(vwx300, vwx400, cge, cgf) new_esEs29(vwx300, vwx400, ty_Float) -> new_esEs21(vwx300, vwx400) new_esEs9(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_ltEs12(Just(vwx90), Just(vwx100), app(ty_[], dh)) -> new_ltEs10(vwx90, vwx100, dh) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(app(ty_@2, gc), gd)) -> new_ltEs6(vwx90, vwx100, gc, gd) new_compare29(vwx90, vwx100, False, db, dc, dd) -> new_compare10(vwx90, vwx100, new_ltEs16(vwx90, vwx100, db, dc, dd), db, dc, dd) new_lt20(vwx90, vwx100, ty_Integer) -> new_lt7(vwx90, vwx100) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Float) -> new_ltEs11(vwx90, vwx100) new_ltEs12(Just(vwx90), Just(vwx100), app(app(ty_@2, df), dg)) -> new_ltEs6(vwx90, vwx100, df, dg) new_esEs29(vwx300, vwx400, app(ty_[], dah)) -> new_esEs15(vwx300, vwx400, dah) new_primCompAux0(vwx42, EQ) -> vwx42 new_compare29(vwx90, vwx100, True, db, dc, dd) -> EQ new_esEs18(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs16(vwx300, vwx400) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_lt19(vwx91, vwx101, ty_Integer) -> new_lt7(vwx91, vwx101) new_lt6(vwx90, vwx100, ty_Char) -> new_lt15(vwx90, vwx100) new_lt4(vwx90, vwx100, bed) -> new_esEs8(new_compare6(vwx90, vwx100, bed), LT) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs5(Right(vwx300), Right(vwx400), cbf, ty_Float) -> new_esEs21(vwx300, vwx400) new_lt6(vwx90, vwx100, ty_Float) -> new_lt10(vwx90, vwx100) new_esEs26(vwx90, vwx100, app(app(ty_@2, bca), bcb)) -> new_esEs4(vwx90, vwx100, bca, bcb) new_lt19(vwx91, vwx101, app(ty_[], bbb)) -> new_lt9(vwx91, vwx101, bbb) new_esEs24(vwx90, vwx100, ty_Char) -> new_esEs14(vwx90, vwx100) new_esEs25(vwx91, vwx101, app(app(ty_Either, bbd), bbe)) -> new_esEs5(vwx91, vwx101, bbd, bbe) new_compare210(vwx90, vwx100, False, cg, da) -> new_compare11(vwx90, vwx100, new_ltEs15(vwx90, vwx100, cg, da), cg, da) new_ltEs19(vwx92, vwx102, app(ty_Maybe, baa)) -> new_ltEs12(vwx92, vwx102, baa) new_esEs20(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Integer) -> new_ltEs9(vwx90, vwx100) new_esEs26(vwx90, vwx100, ty_Ordering) -> new_esEs8(vwx90, vwx100) new_esEs7(vwx30, vwx40, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs6(vwx30, vwx40, bee, bef, beg) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_primCmpInt(Neg(Zero), Neg(Succ(vwx1000))) -> new_primCmpNat0(Succ(vwx1000), Zero) new_lt10(vwx90, vwx100) -> new_esEs8(new_compare17(vwx90, vwx100), LT) new_esEs5(Right(vwx300), Right(vwx400), cbf, ty_Double) -> new_esEs19(vwx300, vwx400) new_esEs19(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs20(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_lt19(vwx91, vwx101, ty_Double) -> new_lt18(vwx91, vwx101) new_esEs26(vwx90, vwx100, ty_Int) -> new_esEs20(vwx90, vwx100) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs12(vwx300, vwx400, app(ty_Maybe, cab)) -> new_esEs18(vwx300, vwx400, cab) new_esEs26(vwx90, vwx100, app(app(ty_Either, bce), bcf)) -> new_esEs5(vwx90, vwx100, bce, bcf) new_lt19(vwx91, vwx101, ty_Float) -> new_lt10(vwx91, vwx101) new_esEs26(vwx90, vwx100, ty_Double) -> new_esEs19(vwx90, vwx100) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_@0) -> new_ltEs14(vwx90, vwx100) new_ltEs15(Right(vwx90), Right(vwx100), gb, app(ty_Maybe, gf)) -> new_ltEs12(vwx90, vwx100, gf) new_esEs5(Left(vwx300), Left(vwx400), app(app(app(ty_@3, cga), cgb), cgc), cbg) -> new_esEs6(vwx300, vwx400, cga, cgb, cgc) new_compare14(vwx90, vwx100, ty_@0) -> new_compare12(vwx90, vwx100) new_lt20(vwx90, vwx100, ty_Char) -> new_lt15(vwx90, vwx100) new_lt19(vwx91, vwx101, ty_Ordering) -> new_lt16(vwx91, vwx101) new_esEs26(vwx90, vwx100, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(vwx90, vwx100, bcg, bch, bda) new_esEs29(vwx300, vwx400, ty_Int) -> new_esEs20(vwx300, vwx400) new_compare112(vwx90, vwx100, False, cb, cc) -> GT new_esEs5(Right(vwx300), Right(vwx400), cbf, app(ty_Maybe, chb)) -> new_esEs18(vwx300, vwx400, chb) new_ltEs19(vwx92, vwx102, app(ty_Ratio, cbb)) -> new_ltEs8(vwx92, vwx102, cbb) new_ltEs12(Just(vwx90), Just(vwx100), ty_Char) -> new_ltEs17(vwx90, vwx100) new_lt20(vwx90, vwx100, ty_Double) -> new_lt18(vwx90, vwx100) new_compare14(vwx90, vwx100, ty_Int) -> new_compare8(vwx90, vwx100) new_ltEs12(Just(vwx90), Just(vwx100), ty_Float) -> new_ltEs11(vwx90, vwx100) new_esEs11(vwx301, vwx401, ty_@0) -> new_esEs16(vwx301, vwx401) new_not(False) -> True new_compare6(:%(vwx90, vwx91), :%(vwx100, vwx101), ty_Int) -> new_compare8(new_sr(vwx90, vwx101), new_sr(vwx100, vwx91)) new_esEs5(Right(vwx300), Right(vwx400), cbf, ty_Integer) -> new_esEs9(vwx300, vwx400) new_compare1([], :(vwx100, vwx101), de) -> LT new_esEs12(vwx300, vwx400, ty_Char) -> new_esEs14(vwx300, vwx400) new_esEs28(vwx301, vwx401, ty_Double) -> new_esEs19(vwx301, vwx401) new_lt19(vwx91, vwx101, app(app(ty_Either, bbd), bbe)) -> new_lt5(vwx91, vwx101, bbd, bbe) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs27(vwx300, vwx400, app(ty_Maybe, cef)) -> new_esEs18(vwx300, vwx400, cef) new_esEs22(vwx301, vwx401, ty_Integer) -> new_esEs9(vwx301, vwx401) new_esEs5(Left(vwx300), Right(vwx400), cbf, cbg) -> False new_esEs5(Right(vwx300), Left(vwx400), cbf, cbg) -> False new_esEs24(vwx90, vwx100, ty_@0) -> new_esEs16(vwx90, vwx100) new_ltEs16(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, bba) -> new_pePe(new_lt20(vwx90, vwx100, hd), new_asAs(new_esEs26(vwx90, vwx100, hd), new_pePe(new_lt19(vwx91, vwx101, he), new_asAs(new_esEs25(vwx91, vwx101, he), new_ltEs19(vwx92, vwx102, bba))))) new_compare14(vwx90, vwx100, ty_Integer) -> new_compare15(vwx90, vwx100) new_ltEs12(Just(vwx90), Just(vwx100), app(ty_Ratio, dcd)) -> new_ltEs8(vwx90, vwx100, dcd) new_ltEs15(Left(vwx90), Left(vwx100), ty_Bool, fa) -> new_ltEs13(vwx90, vwx100) new_compare27(vwx90, vwx100, True, cb, cc) -> EQ new_compare113(vwx16, vwx17, False, cdf) -> GT new_primPlusNat0(Succ(vwx330), vwx40000) -> Succ(Succ(new_primPlusNat1(vwx330, vwx40000))) new_esEs27(vwx300, vwx400, ty_Int) -> new_esEs20(vwx300, vwx400) new_compare11(vwx90, vwx100, True, cg, da) -> LT new_compare17(Float(vwx90, Pos(vwx910)), Float(vwx100, Pos(vwx1010))) -> new_compare8(new_sr(vwx90, Pos(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_ltEs17(vwx9, vwx10) -> new_not(new_esEs8(new_compare24(vwx9, vwx10), GT)) new_lt19(vwx91, vwx101, ty_Char) -> new_lt15(vwx91, vwx101) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Ordering) -> new_ltEs18(vwx90, vwx100) new_esEs26(vwx90, vwx100, ty_@0) -> new_esEs16(vwx90, vwx100) new_ltEs13(True, False) -> False new_esEs7(vwx30, vwx40, app(ty_Ratio, caf)) -> new_esEs17(vwx30, vwx40, caf) new_ltEs18(GT, LT) -> False new_esEs10(vwx302, vwx402, ty_Bool) -> new_esEs13(vwx302, vwx402) new_esEs27(vwx300, vwx400, app(app(ty_@2, ced), cee)) -> new_esEs4(vwx300, vwx400, ced, cee) new_esEs28(vwx301, vwx401, app(ty_Ratio, daa)) -> new_esEs17(vwx301, vwx401, daa) new_esEs24(vwx90, vwx100, app(ty_Maybe, cf)) -> new_esEs18(vwx90, vwx100, cf) new_ltEs12(Nothing, Just(vwx100), dcc) -> True new_ltEs20(vwx9, vwx10, app(ty_[], de)) -> new_ltEs10(vwx9, vwx10, de) new_ltEs7(vwx91, vwx101, app(ty_[], bc)) -> new_ltEs10(vwx91, vwx101, bc) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs27(vwx300, vwx400, ty_Float) -> new_esEs21(vwx300, vwx400) new_compare13(Just(vwx30), Just(vwx40), bec) -> new_compare23(vwx30, vwx40, new_esEs7(vwx30, vwx40, bec), bec) new_primMulNat0(Succ(vwx30100), Succ(vwx40000)) -> new_primPlusNat0(new_primMulNat0(vwx30100, Succ(vwx40000)), vwx40000) new_esEs28(vwx301, vwx401, app(app(ty_@2, dab), dac)) -> new_esEs4(vwx301, vwx401, dab, dac) new_esEs7(vwx30, vwx40, ty_Bool) -> new_esEs13(vwx30, vwx40) new_lt6(vwx90, vwx100, app(ty_[], ce)) -> new_lt9(vwx90, vwx100, ce) new_ltEs12(Just(vwx90), Just(vwx100), ty_Ordering) -> new_ltEs18(vwx90, vwx100) new_primCmpNat0(Succ(vwx900), Succ(vwx1000)) -> new_primCmpNat0(vwx900, vwx1000) new_lt6(vwx90, vwx100, ty_Double) -> new_lt18(vwx90, vwx100) new_esEs5(Left(vwx300), Left(vwx400), ty_@0, cbg) -> new_esEs16(vwx300, vwx400) new_ltEs18(GT, EQ) -> False new_lt6(vwx90, vwx100, app(app(ty_Either, cg), da)) -> new_lt5(vwx90, vwx100, cg, da) new_esEs11(vwx301, vwx401, app(ty_[], bgb)) -> new_esEs15(vwx301, vwx401, bgb) new_esEs26(vwx90, vwx100, ty_Float) -> new_esEs21(vwx90, vwx100) new_esEs28(vwx301, vwx401, ty_Ordering) -> new_esEs8(vwx301, vwx401) new_ltEs12(Nothing, Nothing, dcc) -> True new_ltEs12(Just(vwx90), Nothing, dcc) -> False new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(vwx300, vwx400, app(app(ty_@2, dbd), dbe)) -> new_esEs4(vwx300, vwx400, dbd, dbe) new_ltEs15(Left(vwx90), Left(vwx100), app(app(app(ty_@3, fg), fh), ga), fa) -> new_ltEs16(vwx90, vwx100, fg, fh, ga) new_ltEs7(vwx91, vwx101, ty_Double) -> new_ltEs4(vwx91, vwx101) new_esEs28(vwx301, vwx401, app(app(ty_Either, chg), chh)) -> new_esEs5(vwx301, vwx401, chg, chh) new_primEqNat0(Zero, Zero) -> True new_esEs28(vwx301, vwx401, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs6(vwx301, vwx401, dae, daf, dag) new_esEs29(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_lt20(vwx90, vwx100, app(app(ty_Either, bce), bcf)) -> new_lt5(vwx90, vwx100, bce, bcf) new_compare9(vwx90, vwx100, cg, da) -> new_compare210(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) new_compare14(vwx90, vwx100, app(ty_Maybe, bde)) -> new_compare13(vwx90, vwx100, bde) new_ltEs18(GT, GT) -> True new_esEs29(vwx300, vwx400, app(ty_Ratio, dbc)) -> new_esEs17(vwx300, vwx400, dbc) new_asAs(False, vwx24) -> False new_compare19(vwx90, vwx100, db, dc, dd) -> new_compare29(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) new_esEs25(vwx91, vwx101, app(ty_Maybe, bbc)) -> new_esEs18(vwx91, vwx101, bbc) new_ltEs15(Left(vwx90), Left(vwx100), ty_Double, fa) -> new_ltEs4(vwx90, vwx100) new_ltEs15(Right(vwx90), Right(vwx100), gb, ty_Int) -> new_ltEs5(vwx90, vwx100) new_ltEs19(vwx92, vwx102, app(ty_[], hh)) -> new_ltEs10(vwx92, vwx102, hh) new_esEs25(vwx91, vwx101, ty_@0) -> new_esEs16(vwx91, vwx101) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs10(vwx302, vwx402, app(ty_[], beh)) -> new_esEs15(vwx302, vwx402, beh) new_esEs7(vwx30, vwx40, ty_Integer) -> new_esEs9(vwx30, vwx40) new_ltEs8(vwx9, vwx10, cdg) -> new_not(new_esEs8(new_compare6(vwx9, vwx10, cdg), GT)) new_esEs10(vwx302, vwx402, ty_Char) -> new_esEs14(vwx302, vwx402) new_ltEs5(vwx9, vwx10) -> new_not(new_esEs8(new_compare8(vwx9, vwx10), GT)) The set Q consists of the following terms: new_esEs10(x0, x1, ty_Char) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs27(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Zero) new_compare14(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs18(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Int) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_compare210(x0, x1, False, x2, x3) new_asAs(True, x0) new_esEs24(x0, x1, ty_Char) new_compare13(Nothing, Just(x0), x1) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs29(x0, x1, ty_Float) new_compare19(x0, x1, x2, x3, x4) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Integer) new_lt5(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Char) new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, ty_Ordering) new_compare110(x0, x1, True) new_esEs10(x0, x1, ty_Int) new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Int) new_esEs18(Nothing, Just(x0), x1) new_compare112(x0, x1, True, x2, x3) new_compare10(x0, x1, True, x2, x3, x4) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs11(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Bool) new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs18(Just(x0), Just(x1), ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, ty_Char) new_primCompAux0(x0, GT) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(Float(x0, x1), Float(x2, x3)) new_esEs26(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs7(x0, x1, ty_Double) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs15([], :(x0, x1), x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Double) new_primEqNat0(Zero, Succ(x0)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt13(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs10(x0, x1, ty_@0) new_ltEs13(False, True) new_ltEs13(True, False) new_ltEs7(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt15(x0, x1) new_primPlusNat0(Zero, x0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs12(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Float) new_compare18(x0, x1) new_lt6(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_@0) new_compare113(x0, x1, False, x2) new_primMulNat0(Zero, Succ(x0)) new_lt6(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_ltEs12(Just(x0), Just(x1), ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare14(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_@0) new_pePe(True, x0) new_esEs26(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_ltEs18(EQ, GT) new_ltEs18(GT, EQ) new_esEs24(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare1(:(x0, x1), [], x2) new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs10(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs12(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs12(Just(x0), Just(x1), ty_Double) new_esEs25(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, ty_Bool) new_lt4(x0, x1, x2) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, False, x2, x3, x4) new_ltEs18(GT, GT) new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Integer) new_ltEs14(x0, x1) new_ltEs7(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_esEs18(Just(x0), Just(x1), ty_@0) new_esEs15([], [], x0) new_lt7(x0, x1) new_esEs8(GT, GT) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_compare29(x0, x1, False, x2, x3, x4) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_esEs13(False, True) new_esEs13(True, False) new_lt19(x0, x1, ty_Double) new_ltEs18(LT, LT) new_esEs8(LT, LT) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Double) new_compare16(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Char) new_compare113(x0, x1, True, x2) new_ltEs15(Right(x0), Right(x1), x2, ty_@0) new_compare25(x0, x1) new_esEs28(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_compare15(Integer(x0), Integer(x1)) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(Just(x0), Just(x1), ty_Double) new_lt9(x0, x1, x2) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, False, x2, x3) new_sr0(Integer(x0), Integer(x1)) new_compare13(Just(x0), Nothing, x1) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, False) new_ltEs7(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Double) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare14(x0, x1, ty_Double) new_ltEs7(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_@0) new_lt14(x0, x1, x2, x3, x4) new_esEs25(x0, x1, ty_Ordering) new_esEs16(@0, @0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs12(x0, x1, ty_Double) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs15(Right(x0), Right(x1), x2, ty_Double) new_ltEs13(True, True) new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primPlusNat1(Succ(x0), Zero) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_compare11(x0, x1, False, x2, x3) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_esEs18(Just(x0), Just(x1), ty_Int) new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs11(x0, x1, ty_Float) new_compare23(x0, x1, False, x2) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_compare14(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_esEs18(Just(x0), Just(x1), ty_Char) new_compare14(x0, x1, ty_@0) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_lt8(x0, x1, x2, x3) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) new_primCompAux0(x0, EQ) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs12(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, ty_Ordering) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_lt16(x0, x1) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_@0) new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, ty_Char) new_ltEs15(Left(x0), Left(x1), ty_@0, x2) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, True) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Left(x0), Left(x1), ty_Int, x2) new_compare28(x0, x1, True) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs10(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare8(x0, x1) new_esEs29(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_@0) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_ltEs12(Nothing, Nothing, x0) new_not(True) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, app(ty_[], x2)) new_ltEs12(Just(x0), Just(x1), ty_Float) new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) new_lt6(x0, x1, app(ty_Ratio, x2)) new_ltEs8(x0, x1, x2) new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Ordering) new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs13(False, False) new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs15(:(x0, x1), [], x2) new_compare14(x0, x1, ty_Integer) new_ltEs12(Just(x0), Nothing, x1) new_lt12(x0, x1) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs12(Just(x0), Just(x1), ty_Bool) new_esEs7(x0, x1, ty_Float) new_ltEs15(Left(x0), Left(x1), ty_Double, x2) new_ltEs12(Just(x0), Just(x1), ty_@0) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs18(EQ, LT) new_ltEs18(LT, EQ) new_esEs12(x0, x1, ty_Integer) new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux0(x0, LT) new_esEs13(True, True) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs7(x0, x1, ty_Double) new_esEs19(Double(x0, x1), Double(x2, x3)) new_lt10(x0, x1) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Float) new_lt20(x0, x1, ty_@0) new_compare1([], [], x0) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1) new_lt6(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt20(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_compare26(x0, x1, True) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Int) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs7(x0, x1, ty_Int) new_lt6(x0, x1, ty_Double) new_ltEs10(x0, x1, x2) new_compare29(x0, x1, True, x2, x3, x4) new_ltEs18(EQ, EQ) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare12(@0, @0) new_ltEs5(x0, x1) new_esEs27(x0, x1, ty_Char) new_lt6(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt20(x0, x1, ty_Int) new_ltEs11(x0, x1) new_compare14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Char(x0), Char(x1)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(Just(x0), Nothing, x1) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_primEqNat0(Succ(x0), Zero) new_compare14(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_esEs18(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_esEs7(x0, x1, ty_Integer) new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, ty_Bool) new_compare14(x0, x1, ty_Float) new_ltEs12(Nothing, Just(x0), x1) new_compare9(x0, x1, x2, x3) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False) new_compare13(Nothing, Nothing, x0) new_esEs9(Integer(x0), Integer(x1)) new_asAs(False, x0) new_esEs15(:(x0, x1), :(x2, x3), x4) new_ltEs9(x0, x1) new_esEs28(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_compare23(x0, x1, True, x2) new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Bool) new_compare14(x0, x1, ty_Ordering) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs17(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) new_compare24(Char(x0), Char(x1)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, ty_Bool) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, False) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(LT, GT) new_ltEs18(GT, LT) new_lt11(x0, x1, x2) new_ltEs20(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_lt19(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_not(False) new_compare13(Just(x0), Just(x1), x2) new_ltEs15(Right(x0), Right(x1), x2, ty_Float) new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Ordering) new_compare14(x0, x1, ty_Int) new_compare27(x0, x1, True, x2, x3) new_lt6(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, ty_Bool) new_ltEs15(Right(x0), Left(x1), x2, x3) new_ltEs15(Left(x0), Right(x1), x2, x3) new_esEs27(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, ty_Bool) new_esEs12(x0, x1, ty_Float) new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Bool) new_pePe(False, x0) new_ltEs15(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(x0, x1, ty_Ordering) new_ltEs12(Just(x0), Just(x1), ty_Ordering) new_primCompAux1(x0, x1, x2, x3) new_lt6(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_esEs12(x0, x1, ty_Char) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, False) new_primCmpNat0(Zero, Succ(x0)) new_esEs22(x0, x1, ty_Int) new_lt17(x0, x1) new_ltEs15(Right(x0), Right(x1), x2, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_primPlusNat0(Succ(x0), x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Int) new_esEs18(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Float) new_esEs20(x0, x1) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Int) new_primCmpNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs15(Right(x0), Right(x1), x2, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, ty_Char) 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_compare5(vwx90, vwx100, db, dc, dd) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_compare(vwx91, vwx101, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare0(Just(vwx30), Just(vwx40), bec) -> new_compare2(vwx30, vwx40, new_esEs7(vwx30, vwx40, bec), bec) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt0(vwx90, vwx100, ce) -> new_compare(vwx90, vwx100, ce) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt(vwx90, vwx100, cb, cc) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_Either, cg), da), cd) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(app(app(ty_@3, bg), bh), ca)) -> new_ltEs3(vwx91, vwx101, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vwx90, vwx100, False, cg, da) -> new_ltEs2(vwx90, vwx100, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(vwx90, vwx100, vwx32, app(app(ty_Either, bdf), bdg)) -> new_compare4(vwx90, vwx100, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_lt1(vwx90, vwx100, cf) -> new_compare0(vwx90, vwx100, cf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare2(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], de)) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, de), de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(app(ty_@2, ba), bb)) -> new_ltEs(vwx91, vwx101, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(:(vwx90, vwx91), :(vwx100, vwx101), de) -> new_compare(vwx91, vwx101, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vwx92, vwx102, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(ty_Maybe, bd)) -> new_ltEs1(vwx91, vwx101, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(app(ty_@2, hf), hg)) -> new_ltEs(vwx92, vwx102, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(ty_Maybe, baa)) -> new_ltEs1(vwx92, vwx102, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(vwx90, vwx100, False, db, dc, dd) -> new_ltEs3(vwx90, vwx100, db, dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt2(vwx90, vwx100, cg, da) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(app(ty_Either, be), bf)) -> new_ltEs2(vwx91, vwx101, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(app(ty_Either, bab), bac)) -> new_ltEs2(vwx92, vwx102, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(app(ty_@3, db), dc), dd), cd) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare3(vwx90, vwx100, cb, cc) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs1(Just(vwx90), Just(vwx100), app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs3(vwx90, vwx100, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Just(vwx90), Just(vwx100), app(app(ty_@2, df), dg)) -> new_ltEs(vwx90, vwx100, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(vwx90), Just(vwx100), app(ty_Maybe, ea)) -> new_ltEs1(vwx90, vwx100, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(vwx90), Just(vwx100), app(app(ty_Either, eb), ec)) -> new_ltEs2(vwx90, vwx100, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(vwx90), Just(vwx100), app(ty_[], dh)) -> new_ltEs0(vwx90, vwx100, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt3(vwx90, vwx100, db, dc, dd) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(app(ty_@3, db), dc), dd)), cd)) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, db, dc, dd), db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_@2, cb), cc), cd) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare20(vwx90, vwx100, False, cb, cc) -> new_ltEs(vwx90, vwx100, cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare4(vwx90, vwx100, cg, da) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_Either, cg), da)), cd)) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, cg, da), cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(vwx90, vwx100, vwx32, app(app(ty_@2, bdb), bdc)) -> new_compare3(vwx90, vwx100, bdb, bdc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_[], ce), cd) -> new_compare(vwx90, vwx100, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vwx90, vwx100, vwx32, app(ty_[], bdd)) -> new_compare(vwx90, vwx100, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, he, app(ty_[], hh)) -> new_ltEs0(vwx92, vwx102, hh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), h, app(ty_[], bc)) -> new_ltEs0(vwx91, vwx101, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_Maybe, cf), cd) -> new_compare0(vwx90, vwx100, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_Maybe, cf)), cd)) -> new_compare0(vwx90, vwx100, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(vwx90, vwx100, vwx32, app(ty_Maybe, bde)) -> new_compare0(vwx90, vwx100, bde) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx90, vwx100, vwx32, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare5(vwx90, vwx100, bdh, bea, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(vwx90, vwx100, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(vwx90), Left(vwx100), app(app(app(ty_@3, fg), fh), ga), fa) -> new_ltEs3(vwx90, vwx100, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(ty_@2, gc), gd)) -> new_ltEs(vwx90, vwx100, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx90), Left(vwx100), app(app(ty_@2, eg), eh), fa) -> new_ltEs(vwx90, vwx100, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(ty_Maybe, gf)) -> new_ltEs1(vwx90, vwx100, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(vwx90), Left(vwx100), app(ty_Maybe, fc), fa) -> new_ltEs1(vwx90, vwx100, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(vwx90, vwx100, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx90), Left(vwx100), app(app(ty_Either, fd), ff), fa) -> new_ltEs2(vwx90, vwx100, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Left(vwx90), Left(vwx100), app(ty_[], fb), fa) -> new_ltEs0(vwx90, vwx100, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx90), Right(vwx100), gb, app(ty_[], ge)) -> new_ltEs0(vwx90, vwx100, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(app(ty_@3, ed), ee), ef))) -> new_ltEs3(vwx90, vwx100, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(app(app(ty_@3, bg), bh), ca))) -> new_ltEs3(vwx91, vwx101, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(vwx90, vwx100, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(app(ty_@3, fg), fh), ga)), fa)) -> new_ltEs3(vwx90, vwx100, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vwx92, vwx102, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(app(ty_@2, hf), hg))) -> new_ltEs(vwx92, vwx102, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_@2, eg), eh)), fa)) -> new_ltEs(vwx90, vwx100, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_@2, df), dg))) -> new_ltEs(vwx90, vwx100, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(ty_@2, gc), gd))) -> new_ltEs(vwx90, vwx100, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(vwx91, vwx101, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(app(ty_@3, bcg), bch), bda), he, bba) -> new_lt3(vwx90, vwx100, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(app(app(ty_@3, bbf), bbg), bbh), bba) -> new_lt3(vwx91, vwx101, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(ty_[], bbb), bba) -> new_lt0(vwx91, vwx101, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_[], bcc), he, bba) -> new_lt0(vwx90, vwx100, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_Either, bce), bcf), he, bba) -> new_lt2(vwx90, vwx100, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(app(ty_Either, bbd), bbe), bba) -> new_lt2(vwx91, vwx101, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_Maybe, bcd), he, bba) -> new_lt1(vwx90, vwx100, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(ty_Maybe, bbc), bba) -> new_lt1(vwx91, vwx101, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_@2, bca), bcb), he, bba) -> new_lt(vwx90, vwx100, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hd, app(app(ty_@2, bag), bah), bba) -> new_lt(vwx91, vwx101, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_Maybe, fc)), fa)) -> new_ltEs1(vwx90, vwx100, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(ty_Maybe, baa))) -> new_ltEs1(vwx92, vwx102, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(ty_Maybe, bd))) -> new_ltEs1(vwx91, vwx101, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_Maybe, ea))) -> new_ltEs1(vwx90, vwx100, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(ty_Maybe, gf))) -> new_ltEs1(vwx90, vwx100, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(app(ty_@3, bcg), bch), bda)), he), bba)) -> new_lt3(vwx90, vwx100, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, bbf), bbg), bbh)), bba)) -> new_lt3(vwx91, vwx101, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_Either, fd), ff)), fa)) -> new_ltEs2(vwx90, vwx100, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(vwx90, vwx100, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(app(ty_Either, be), bf))) -> new_ltEs2(vwx91, vwx101, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(app(ty_Either, bab), bac))) -> new_ltEs2(vwx92, vwx102, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_Either, eb), ec))) -> new_ltEs2(vwx90, vwx100, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(ty_[], bbb)), bba)) -> new_lt0(vwx91, vwx101, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_[], bcc)), he), bba)) -> new_lt0(vwx90, vwx100, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_Either, bce), bcf)), he), bba)) -> new_lt2(vwx90, vwx100, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(app(ty_Either, bbd), bbe)), bba)) -> new_lt2(vwx91, vwx101, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(ty_Maybe, bbc)), bba)) -> new_lt1(vwx91, vwx101, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_Maybe, bcd)), he), bba)) -> new_lt1(vwx90, vwx100, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_[], ce)), cd)) -> new_compare(vwx90, vwx100, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], de)) -> new_compare(vwx91, vwx101, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_@2, bca), bcb)), he), bba)) -> new_lt(vwx90, vwx100, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), app(app(ty_@2, bag), bah)), bba)) -> new_lt(vwx91, vwx101, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs0(vwx90, vwx100, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, gb), app(ty_[], ge))) -> new_ltEs0(vwx90, vwx100, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hd), he), app(ty_[], hh))) -> new_ltEs0(vwx92, vwx102, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_[], fb)), fa)) -> new_ltEs0(vwx90, vwx100, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, h), app(ty_[], bc))) -> new_ltEs0(vwx91, vwx101, bc) 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_esEs2(Just(vwx300), Just(vwx400), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx300, vwx400, hg, hh) new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx300, vwx400, cf, cg) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(vwx301, vwx401, fg, fh, ga) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(vwx300, vwx400, bdc, bdd) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(vwx301, vwx401, fa, fb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(vwx301, vwx401, bcb, bcc) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, gd), ge), gc) -> new_esEs0(vwx300, vwx400, gd, ge) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(vwx302, vwx402, bah, bba) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, bd), be)) -> new_esEs1(vwx300, vwx400, bd, be) new_esEs2(Just(vwx300), Just(vwx400), app(ty_[], hd)) -> new_esEs(vwx300, vwx400, hd) new_esEs0(Left(vwx300), Left(vwx400), app(ty_Maybe, da), cc) -> new_esEs2(vwx300, vwx400, da) new_esEs2(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx300, vwx400, bab, bac, bad) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(vwx300, vwx400, bdh, bea, beb) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vwx300, vwx400, bg, bh, ca) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], gb), gc) -> new_esEs(vwx300, vwx400, gb) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx300, vwx400, dg, dh) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), h) -> new_esEs(vwx301, vwx401, h) new_esEs2(Just(vwx300), Just(vwx400), app(ty_Maybe, baa)) -> new_esEs2(vwx300, vwx400, baa) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], ba)) -> new_esEs(vwx300, vwx400, ba) new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_[], df)) -> new_esEs(vwx300, vwx400, df) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx302, vwx402, bbe, bbf, bbg) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(ty_Maybe, ff)) -> new_esEs2(vwx301, vwx401, ff) new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_Maybe, ec)) -> new_esEs2(vwx300, vwx400, ec) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, gh), gc) -> new_esEs2(vwx300, vwx400, gh) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, bf)) -> new_esEs2(vwx300, vwx400, bf) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(vwx300, vwx400, bde, bdf) new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx300, vwx400, cd, ce) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(vwx300, vwx400, ha, hb, hc) new_esEs0(Left(vwx300), Left(vwx400), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx300, vwx400, db, dc, dd) new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_Either, he), hf)) -> new_esEs0(vwx300, vwx400, he, hf) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_[], bbh), bca) -> new_esEs(vwx301, vwx401, bbh) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx300, vwx400, ea, eb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(vwx301, vwx401, bcd, bce) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_[], bag)) -> new_esEs(vwx302, vwx402, bag) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, bb), bc)) -> new_esEs0(vwx300, vwx400, bb, bc) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, gf), gg), gc) -> new_esEs1(vwx300, vwx400, gf, gg) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(ty_[], eh)) -> new_esEs(vwx301, vwx401, eh) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(vwx302, vwx402, bbd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bdb), baf, bca) -> new_esEs(vwx300, vwx400, bdb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(vwx302, vwx402, bbb, bbc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(vwx300, vwx400, bdg) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(vwx301, vwx401, fc, fd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(vwx301, vwx401, bcf) new_esEs0(Left(vwx300), Left(vwx400), app(ty_[], cb), cc) -> new_esEs(vwx300, vwx400, cb) 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_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, bf)) -> new_esEs2(vwx300, vwx400, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx300), Just(vwx400), app(ty_Maybe, baa)) -> new_esEs2(vwx300, vwx400, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, bb), bc)) -> new_esEs0(vwx300, vwx400, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_Either, he), hf)) -> new_esEs0(vwx300, vwx400, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, bd), be)) -> new_esEs1(vwx300, vwx400, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx300, vwx400, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vwx300, vwx400, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx300, vwx400, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx300), Just(vwx400), app(ty_[], hd)) -> new_esEs(vwx300, vwx400, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(ty_Maybe, ff)) -> new_esEs2(vwx301, vwx401, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, gh), gc) -> new_esEs2(vwx300, vwx400, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(vwx301, vwx401, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, gd), ge), gc) -> new_esEs0(vwx300, vwx400, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, gf), gg), gc) -> new_esEs1(vwx300, vwx400, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(vwx301, vwx401, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(vwx301, vwx401, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(vwx300, vwx400, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], gb), gc) -> new_esEs(vwx300, vwx400, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), eg, app(ty_[], eh)) -> new_esEs(vwx301, vwx401, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(vwx302, vwx402, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(vwx300, vwx400, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(vwx301, vwx401, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(ty_Maybe, da), cc) -> new_esEs2(vwx300, vwx400, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_Maybe, ec)) -> new_esEs2(vwx300, vwx400, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(vwx300, vwx400, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(vwx301, vwx401, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(vwx302, vwx402, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx300, vwx400, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx300, vwx400, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(vwx300, vwx400, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(vwx301, vwx401, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(vwx302, vwx402, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(vwx300, vwx400, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx302, vwx402, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_[], bbh), bca) -> new_esEs(vwx301, vwx401, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_[], bag)) -> new_esEs(vwx302, vwx402, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bdb), baf, bca) -> new_esEs(vwx300, vwx400, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx300, vwx400, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx300, vwx400, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx300), Left(vwx400), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx300, vwx400, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_[], df)) -> new_esEs(vwx300, vwx400, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(ty_[], cb), cc) -> new_esEs(vwx300, vwx400, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), h) -> new_esEs(vwx301, vwx401, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], ba)) -> new_esEs(vwx300, vwx400, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30100), Succ(vwx40000)) -> new_primMulNat(vwx30100, Succ(vwx40000)) R is empty. Q is empty. 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_primMulNat(Succ(vwx30100), Succ(vwx40000)) -> new_primMulNat(vwx30100, Succ(vwx40000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) 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_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx3300), Succ(vwx400000)) -> new_primPlusNat(vwx3300, vwx400000) 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(vwx3300), Succ(vwx400000)) -> new_primPlusNat(vwx3300, vwx400000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES