/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, 13 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 13 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 24 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 5 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="(<=)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="(<=) vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="(<=) vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];1507[label="vwx3/Nothing",fontsize=10,color="white",style="solid",shape="box"];4 -> 1507[label="",style="solid", color="burlywood", weight=9]; 1507 -> 5[label="",style="solid", color="burlywood", weight=3]; 1508[label="vwx3/Just vwx30",fontsize=10,color="white",style="solid",shape="box"];4 -> 1508[label="",style="solid", color="burlywood", weight=9]; 1508 -> 6[label="",style="solid", color="burlywood", weight=3]; 5[label="(<=) Nothing vwx4",fontsize=16,color="burlywood",shape="box"];1509[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];5 -> 1509[label="",style="solid", color="burlywood", weight=9]; 1509 -> 7[label="",style="solid", color="burlywood", weight=3]; 1510[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];5 -> 1510[label="",style="solid", color="burlywood", weight=9]; 1510 -> 8[label="",style="solid", color="burlywood", weight=3]; 6[label="(<=) Just vwx30 vwx4",fontsize=16,color="burlywood",shape="box"];1511[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];6 -> 1511[label="",style="solid", color="burlywood", weight=9]; 1511 -> 9[label="",style="solid", color="burlywood", weight=3]; 1512[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];6 -> 1512[label="",style="solid", color="burlywood", weight=9]; 1512 -> 10[label="",style="solid", color="burlywood", weight=3]; 7[label="(<=) Nothing Nothing",fontsize=16,color="black",shape="box"];7 -> 11[label="",style="solid", color="black", weight=3]; 8[label="(<=) Nothing Just vwx40",fontsize=16,color="black",shape="box"];8 -> 12[label="",style="solid", color="black", weight=3]; 9[label="(<=) Just vwx30 Nothing",fontsize=16,color="black",shape="box"];9 -> 13[label="",style="solid", color="black", weight=3]; 10[label="(<=) Just vwx30 Just vwx40",fontsize=16,color="black",shape="box"];10 -> 14[label="",style="solid", color="black", weight=3]; 11[label="True",fontsize=16,color="green",shape="box"];12[label="True",fontsize=16,color="green",shape="box"];13[label="False",fontsize=16,color="green",shape="box"];14[label="vwx30 <= vwx40",fontsize=16,color="blue",shape="box"];1513[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1513[label="",style="solid", color="blue", weight=9]; 1513 -> 15[label="",style="solid", color="blue", weight=3]; 1514[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1514[label="",style="solid", color="blue", weight=9]; 1514 -> 16[label="",style="solid", color="blue", weight=3]; 1515[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1515[label="",style="solid", color="blue", weight=9]; 1515 -> 17[label="",style="solid", color="blue", weight=3]; 1516[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1516[label="",style="solid", color="blue", weight=9]; 1516 -> 18[label="",style="solid", color="blue", weight=3]; 1517[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1517[label="",style="solid", color="blue", weight=9]; 1517 -> 19[label="",style="solid", color="blue", weight=3]; 1518[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1518[label="",style="solid", color="blue", weight=9]; 1518 -> 20[label="",style="solid", color="blue", weight=3]; 1519[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1519[label="",style="solid", color="blue", weight=9]; 1519 -> 21[label="",style="solid", color="blue", weight=3]; 1520[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1520[label="",style="solid", color="blue", weight=9]; 1520 -> 22[label="",style="solid", color="blue", weight=3]; 1521[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1521[label="",style="solid", color="blue", weight=9]; 1521 -> 23[label="",style="solid", color="blue", weight=3]; 1522[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1522[label="",style="solid", color="blue", weight=9]; 1522 -> 24[label="",style="solid", color="blue", weight=3]; 1523[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1523[label="",style="solid", color="blue", weight=9]; 1523 -> 25[label="",style="solid", color="blue", weight=3]; 1524[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1524[label="",style="solid", color="blue", weight=9]; 1524 -> 26[label="",style="solid", color="blue", weight=3]; 1525[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1525[label="",style="solid", color="blue", weight=9]; 1525 -> 27[label="",style="solid", color="blue", weight=3]; 1526[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];14 -> 1526[label="",style="solid", color="blue", weight=9]; 1526 -> 28[label="",style="solid", color="blue", weight=3]; 15[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];15 -> 29[label="",style="solid", color="black", weight=3]; 16[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];16 -> 30[label="",style="solid", color="black", weight=3]; 17[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1527[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];17 -> 1527[label="",style="solid", color="burlywood", weight=9]; 1527 -> 31[label="",style="solid", color="burlywood", weight=3]; 18[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];18 -> 32[label="",style="solid", color="black", weight=3]; 19[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];19 -> 33[label="",style="solid", color="black", weight=3]; 20 -> 4[label="",style="dashed", color="red", weight=0]; 20[label="vwx30 <= vwx40",fontsize=16,color="magenta"];20 -> 34[label="",style="dashed", color="magenta", weight=3]; 20 -> 35[label="",style="dashed", color="magenta", weight=3]; 21[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1528[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];21 -> 1528[label="",style="solid", color="burlywood", weight=9]; 1528 -> 36[label="",style="solid", color="burlywood", weight=3]; 1529[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];21 -> 1529[label="",style="solid", color="burlywood", weight=9]; 1529 -> 37[label="",style="solid", color="burlywood", weight=3]; 22[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];22 -> 38[label="",style="solid", color="black", weight=3]; 23[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1530[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];23 -> 1530[label="",style="solid", color="burlywood", weight=9]; 1530 -> 39[label="",style="solid", color="burlywood", weight=3]; 1531[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];23 -> 1531[label="",style="solid", color="burlywood", weight=9]; 1531 -> 40[label="",style="solid", color="burlywood", weight=3]; 24[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1532[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];24 -> 1532[label="",style="solid", color="burlywood", weight=9]; 1532 -> 41[label="",style="solid", color="burlywood", weight=3]; 25[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];25 -> 42[label="",style="solid", color="black", weight=3]; 26[label="vwx30 <= vwx40",fontsize=16,color="burlywood",shape="triangle"];1533[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];26 -> 1533[label="",style="solid", color="burlywood", weight=9]; 1533 -> 43[label="",style="solid", color="burlywood", weight=3]; 1534[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];26 -> 1534[label="",style="solid", color="burlywood", weight=9]; 1534 -> 44[label="",style="solid", color="burlywood", weight=3]; 1535[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];26 -> 1535[label="",style="solid", color="burlywood", weight=9]; 1535 -> 45[label="",style="solid", color="burlywood", weight=3]; 27[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];27 -> 46[label="",style="solid", color="black", weight=3]; 28[label="vwx30 <= vwx40",fontsize=16,color="black",shape="triangle"];28 -> 47[label="",style="solid", color="black", weight=3]; 29[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];29 -> 48[label="",style="solid", color="black", weight=3]; 30[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];30 -> 49[label="",style="solid", color="black", weight=3]; 31[label="(vwx300,vwx301) <= vwx40",fontsize=16,color="burlywood",shape="box"];1536[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];31 -> 1536[label="",style="solid", color="burlywood", weight=9]; 1536 -> 50[label="",style="solid", color="burlywood", weight=3]; 32[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];32 -> 51[label="",style="solid", color="black", weight=3]; 33[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];33 -> 52[label="",style="solid", color="black", weight=3]; 34[label="vwx30",fontsize=16,color="green",shape="box"];35[label="vwx40",fontsize=16,color="green",shape="box"];36[label="False <= vwx40",fontsize=16,color="burlywood",shape="box"];1537[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];36 -> 1537[label="",style="solid", color="burlywood", weight=9]; 1537 -> 53[label="",style="solid", color="burlywood", weight=3]; 1538[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];36 -> 1538[label="",style="solid", color="burlywood", weight=9]; 1538 -> 54[label="",style="solid", color="burlywood", weight=3]; 37[label="True <= vwx40",fontsize=16,color="burlywood",shape="box"];1539[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];37 -> 1539[label="",style="solid", color="burlywood", weight=9]; 1539 -> 55[label="",style="solid", color="burlywood", weight=3]; 1540[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];37 -> 1540[label="",style="solid", color="burlywood", weight=9]; 1540 -> 56[label="",style="solid", color="burlywood", weight=3]; 38[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];38 -> 57[label="",style="solid", color="black", weight=3]; 39[label="Left vwx300 <= vwx40",fontsize=16,color="burlywood",shape="box"];1541[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];39 -> 1541[label="",style="solid", color="burlywood", weight=9]; 1541 -> 58[label="",style="solid", color="burlywood", weight=3]; 1542[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];39 -> 1542[label="",style="solid", color="burlywood", weight=9]; 1542 -> 59[label="",style="solid", color="burlywood", weight=3]; 40[label="Right vwx300 <= vwx40",fontsize=16,color="burlywood",shape="box"];1543[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];40 -> 1543[label="",style="solid", color="burlywood", weight=9]; 1543 -> 60[label="",style="solid", color="burlywood", weight=3]; 1544[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];40 -> 1544[label="",style="solid", color="burlywood", weight=9]; 1544 -> 61[label="",style="solid", color="burlywood", weight=3]; 41[label="(vwx300,vwx301,vwx302) <= vwx40",fontsize=16,color="burlywood",shape="box"];1545[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];41 -> 1545[label="",style="solid", color="burlywood", weight=9]; 1545 -> 62[label="",style="solid", color="burlywood", weight=3]; 42[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];42 -> 63[label="",style="solid", color="black", weight=3]; 43[label="LT <= vwx40",fontsize=16,color="burlywood",shape="box"];1546[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];43 -> 1546[label="",style="solid", color="burlywood", weight=9]; 1546 -> 64[label="",style="solid", color="burlywood", weight=3]; 1547[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];43 -> 1547[label="",style="solid", color="burlywood", weight=9]; 1547 -> 65[label="",style="solid", color="burlywood", weight=3]; 1548[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];43 -> 1548[label="",style="solid", color="burlywood", weight=9]; 1548 -> 66[label="",style="solid", color="burlywood", weight=3]; 44[label="EQ <= vwx40",fontsize=16,color="burlywood",shape="box"];1549[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];44 -> 1549[label="",style="solid", color="burlywood", weight=9]; 1549 -> 67[label="",style="solid", color="burlywood", weight=3]; 1550[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];44 -> 1550[label="",style="solid", color="burlywood", weight=9]; 1550 -> 68[label="",style="solid", color="burlywood", weight=3]; 1551[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];44 -> 1551[label="",style="solid", color="burlywood", weight=9]; 1551 -> 69[label="",style="solid", color="burlywood", weight=3]; 45[label="GT <= vwx40",fontsize=16,color="burlywood",shape="box"];1552[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];45 -> 1552[label="",style="solid", color="burlywood", weight=9]; 1552 -> 70[label="",style="solid", color="burlywood", weight=3]; 1553[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];45 -> 1553[label="",style="solid", color="burlywood", weight=9]; 1553 -> 71[label="",style="solid", color="burlywood", weight=3]; 1554[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];45 -> 1554[label="",style="solid", color="burlywood", weight=9]; 1554 -> 72[label="",style="solid", color="burlywood", weight=3]; 46[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];46 -> 73[label="",style="solid", color="black", weight=3]; 47[label="compare vwx30 vwx40 /= GT",fontsize=16,color="black",shape="box"];47 -> 74[label="",style="solid", color="black", weight=3]; 48 -> 305[label="",style="dashed", color="red", weight=0]; 48[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];48 -> 306[label="",style="dashed", color="magenta", weight=3]; 49 -> 305[label="",style="dashed", color="red", weight=0]; 49[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];49 -> 307[label="",style="dashed", color="magenta", weight=3]; 50[label="(vwx300,vwx301) <= (vwx400,vwx401)",fontsize=16,color="black",shape="box"];50 -> 77[label="",style="solid", color="black", weight=3]; 51 -> 305[label="",style="dashed", color="red", weight=0]; 51[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];51 -> 308[label="",style="dashed", color="magenta", weight=3]; 52 -> 305[label="",style="dashed", color="red", weight=0]; 52[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];52 -> 309[label="",style="dashed", color="magenta", weight=3]; 53[label="False <= False",fontsize=16,color="black",shape="box"];53 -> 81[label="",style="solid", color="black", weight=3]; 54[label="False <= True",fontsize=16,color="black",shape="box"];54 -> 82[label="",style="solid", color="black", weight=3]; 55[label="True <= False",fontsize=16,color="black",shape="box"];55 -> 83[label="",style="solid", color="black", weight=3]; 56[label="True <= True",fontsize=16,color="black",shape="box"];56 -> 84[label="",style="solid", color="black", weight=3]; 57 -> 305[label="",style="dashed", color="red", weight=0]; 57[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];57 -> 310[label="",style="dashed", color="magenta", weight=3]; 58[label="Left vwx300 <= Left vwx400",fontsize=16,color="black",shape="box"];58 -> 86[label="",style="solid", color="black", weight=3]; 59[label="Left vwx300 <= Right vwx400",fontsize=16,color="black",shape="box"];59 -> 87[label="",style="solid", color="black", weight=3]; 60[label="Right vwx300 <= Left vwx400",fontsize=16,color="black",shape="box"];60 -> 88[label="",style="solid", color="black", weight=3]; 61[label="Right vwx300 <= Right vwx400",fontsize=16,color="black",shape="box"];61 -> 89[label="",style="solid", color="black", weight=3]; 62[label="(vwx300,vwx301,vwx302) <= (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];62 -> 90[label="",style="solid", color="black", weight=3]; 63 -> 305[label="",style="dashed", color="red", weight=0]; 63[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];63 -> 311[label="",style="dashed", color="magenta", weight=3]; 64[label="LT <= LT",fontsize=16,color="black",shape="box"];64 -> 92[label="",style="solid", color="black", weight=3]; 65[label="LT <= EQ",fontsize=16,color="black",shape="box"];65 -> 93[label="",style="solid", color="black", weight=3]; 66[label="LT <= GT",fontsize=16,color="black",shape="box"];66 -> 94[label="",style="solid", color="black", weight=3]; 67[label="EQ <= LT",fontsize=16,color="black",shape="box"];67 -> 95[label="",style="solid", color="black", weight=3]; 68[label="EQ <= EQ",fontsize=16,color="black",shape="box"];68 -> 96[label="",style="solid", color="black", weight=3]; 69[label="EQ <= GT",fontsize=16,color="black",shape="box"];69 -> 97[label="",style="solid", color="black", weight=3]; 70[label="GT <= LT",fontsize=16,color="black",shape="box"];70 -> 98[label="",style="solid", color="black", weight=3]; 71[label="GT <= EQ",fontsize=16,color="black",shape="box"];71 -> 99[label="",style="solid", color="black", weight=3]; 72[label="GT <= GT",fontsize=16,color="black",shape="box"];72 -> 100[label="",style="solid", color="black", weight=3]; 73 -> 305[label="",style="dashed", color="red", weight=0]; 73[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];73 -> 312[label="",style="dashed", color="magenta", weight=3]; 74 -> 305[label="",style="dashed", color="red", weight=0]; 74[label="not (compare vwx30 vwx40 == GT)",fontsize=16,color="magenta"];74 -> 313[label="",style="dashed", color="magenta", weight=3]; 306[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1555[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];306 -> 1555[label="",style="solid", color="burlywood", weight=9]; 1555 -> 325[label="",style="solid", color="burlywood", weight=3]; 305[label="not (vwx28 == GT)",fontsize=16,color="burlywood",shape="triangle"];1556[label="vwx28/LT",fontsize=10,color="white",style="solid",shape="box"];305 -> 1556[label="",style="solid", color="burlywood", weight=9]; 1556 -> 326[label="",style="solid", color="burlywood", weight=3]; 1557[label="vwx28/EQ",fontsize=10,color="white",style="solid",shape="box"];305 -> 1557[label="",style="solid", color="burlywood", weight=9]; 1557 -> 327[label="",style="solid", color="burlywood", weight=3]; 1558[label="vwx28/GT",fontsize=10,color="white",style="solid",shape="box"];305 -> 1558[label="",style="solid", color="burlywood", weight=9]; 1558 -> 328[label="",style="solid", color="burlywood", weight=3]; 307[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1559[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];307 -> 1559[label="",style="solid", color="burlywood", weight=9]; 1559 -> 329[label="",style="solid", color="burlywood", weight=3]; 77 -> 170[label="",style="dashed", color="red", weight=0]; 77[label="vwx300 < vwx400 || vwx300 == vwx400 && vwx301 <= vwx401",fontsize=16,color="magenta"];77 -> 171[label="",style="dashed", color="magenta", weight=3]; 77 -> 172[label="",style="dashed", color="magenta", weight=3]; 77 -> 173[label="",style="dashed", color="magenta", weight=3]; 77 -> 174[label="",style="dashed", color="magenta", weight=3]; 308[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1560[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];308 -> 1560[label="",style="solid", color="burlywood", weight=9]; 1560 -> 330[label="",style="solid", color="burlywood", weight=3]; 1561[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];308 -> 1561[label="",style="solid", color="burlywood", weight=9]; 1561 -> 331[label="",style="solid", color="burlywood", weight=3]; 309[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];309 -> 332[label="",style="solid", color="black", weight=3]; 81[label="True",fontsize=16,color="green",shape="box"];82[label="True",fontsize=16,color="green",shape="box"];83[label="False",fontsize=16,color="green",shape="box"];84[label="True",fontsize=16,color="green",shape="box"];310[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1562[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];310 -> 1562[label="",style="solid", color="burlywood", weight=9]; 1562 -> 333[label="",style="solid", color="burlywood", weight=3]; 86[label="vwx300 <= vwx400",fontsize=16,color="blue",shape="box"];1563[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1563[label="",style="solid", color="blue", weight=9]; 1563 -> 117[label="",style="solid", color="blue", weight=3]; 1564[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1564[label="",style="solid", color="blue", weight=9]; 1564 -> 118[label="",style="solid", color="blue", weight=3]; 1565[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1565[label="",style="solid", color="blue", weight=9]; 1565 -> 119[label="",style="solid", color="blue", weight=3]; 1566[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1566[label="",style="solid", color="blue", weight=9]; 1566 -> 120[label="",style="solid", color="blue", weight=3]; 1567[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1567[label="",style="solid", color="blue", weight=9]; 1567 -> 121[label="",style="solid", color="blue", weight=3]; 1568[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1568[label="",style="solid", color="blue", weight=9]; 1568 -> 122[label="",style="solid", color="blue", weight=3]; 1569[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1569[label="",style="solid", color="blue", weight=9]; 1569 -> 123[label="",style="solid", color="blue", weight=3]; 1570[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1570[label="",style="solid", color="blue", weight=9]; 1570 -> 124[label="",style="solid", color="blue", weight=3]; 1571[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1571[label="",style="solid", color="blue", weight=9]; 1571 -> 125[label="",style="solid", color="blue", weight=3]; 1572[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1572[label="",style="solid", color="blue", weight=9]; 1572 -> 126[label="",style="solid", color="blue", weight=3]; 1573[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1573[label="",style="solid", color="blue", weight=9]; 1573 -> 127[label="",style="solid", color="blue", weight=3]; 1574[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1574[label="",style="solid", color="blue", weight=9]; 1574 -> 128[label="",style="solid", color="blue", weight=3]; 1575[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1575[label="",style="solid", color="blue", weight=9]; 1575 -> 129[label="",style="solid", color="blue", weight=3]; 1576[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];86 -> 1576[label="",style="solid", color="blue", weight=9]; 1576 -> 130[label="",style="solid", color="blue", weight=3]; 87[label="True",fontsize=16,color="green",shape="box"];88[label="False",fontsize=16,color="green",shape="box"];89[label="vwx300 <= vwx400",fontsize=16,color="blue",shape="box"];1577[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1577[label="",style="solid", color="blue", weight=9]; 1577 -> 131[label="",style="solid", color="blue", weight=3]; 1578[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1578[label="",style="solid", color="blue", weight=9]; 1578 -> 132[label="",style="solid", color="blue", weight=3]; 1579[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1579[label="",style="solid", color="blue", weight=9]; 1579 -> 133[label="",style="solid", color="blue", weight=3]; 1580[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1580[label="",style="solid", color="blue", weight=9]; 1580 -> 134[label="",style="solid", color="blue", weight=3]; 1581[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1581[label="",style="solid", color="blue", weight=9]; 1581 -> 135[label="",style="solid", color="blue", weight=3]; 1582[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1582[label="",style="solid", color="blue", weight=9]; 1582 -> 136[label="",style="solid", color="blue", weight=3]; 1583[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1583[label="",style="solid", color="blue", weight=9]; 1583 -> 137[label="",style="solid", color="blue", weight=3]; 1584[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1584[label="",style="solid", color="blue", weight=9]; 1584 -> 138[label="",style="solid", color="blue", weight=3]; 1585[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1585[label="",style="solid", color="blue", weight=9]; 1585 -> 139[label="",style="solid", color="blue", weight=3]; 1586[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1586[label="",style="solid", color="blue", weight=9]; 1586 -> 140[label="",style="solid", color="blue", weight=3]; 1587[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1587[label="",style="solid", color="blue", weight=9]; 1587 -> 141[label="",style="solid", color="blue", weight=3]; 1588[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1588[label="",style="solid", color="blue", weight=9]; 1588 -> 142[label="",style="solid", color="blue", weight=3]; 1589[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1589[label="",style="solid", color="blue", weight=9]; 1589 -> 143[label="",style="solid", color="blue", weight=3]; 1590[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];89 -> 1590[label="",style="solid", color="blue", weight=9]; 1590 -> 144[label="",style="solid", color="blue", weight=3]; 90 -> 170[label="",style="dashed", color="red", weight=0]; 90[label="vwx300 < vwx400 || vwx300 == vwx400 && (vwx301 < vwx401 || vwx301 == vwx401 && vwx302 <= vwx402)",fontsize=16,color="magenta"];90 -> 175[label="",style="dashed", color="magenta", weight=3]; 90 -> 176[label="",style="dashed", color="magenta", weight=3]; 90 -> 177[label="",style="dashed", color="magenta", weight=3]; 90 -> 178[label="",style="dashed", color="magenta", weight=3]; 311[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];311 -> 334[label="",style="solid", color="black", weight=3]; 92[label="True",fontsize=16,color="green",shape="box"];93[label="True",fontsize=16,color="green",shape="box"];94[label="True",fontsize=16,color="green",shape="box"];95[label="False",fontsize=16,color="green",shape="box"];96[label="True",fontsize=16,color="green",shape="box"];97[label="True",fontsize=16,color="green",shape="box"];98[label="False",fontsize=16,color="green",shape="box"];99[label="False",fontsize=16,color="green",shape="box"];100[label="True",fontsize=16,color="green",shape="box"];312[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];312 -> 335[label="",style="solid", color="black", weight=3]; 313[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];313 -> 336[label="",style="solid", color="black", weight=3]; 325[label="compare (vwx300 :% vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1591[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];325 -> 1591[label="",style="solid", color="burlywood", weight=9]; 1591 -> 437[label="",style="solid", color="burlywood", weight=3]; 326[label="not (LT == GT)",fontsize=16,color="black",shape="box"];326 -> 438[label="",style="solid", color="black", weight=3]; 327[label="not (EQ == GT)",fontsize=16,color="black",shape="box"];327 -> 439[label="",style="solid", color="black", weight=3]; 328[label="not (GT == GT)",fontsize=16,color="black",shape="box"];328 -> 440[label="",style="solid", color="black", weight=3]; 329[label="compare (Integer vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1592[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];329 -> 1592[label="",style="solid", color="burlywood", weight=9]; 1592 -> 441[label="",style="solid", color="burlywood", weight=3]; 171[label="vwx400",fontsize=16,color="green",shape="box"];172[label="vwx300 < vwx400",fontsize=16,color="blue",shape="box"];1593[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1593[label="",style="solid", color="blue", weight=9]; 1593 -> 187[label="",style="solid", color="blue", weight=3]; 1594[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1594[label="",style="solid", color="blue", weight=9]; 1594 -> 188[label="",style="solid", color="blue", weight=3]; 1595[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1595[label="",style="solid", color="blue", weight=9]; 1595 -> 189[label="",style="solid", color="blue", weight=3]; 1596[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1596[label="",style="solid", color="blue", weight=9]; 1596 -> 190[label="",style="solid", color="blue", weight=3]; 1597[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1597[label="",style="solid", color="blue", weight=9]; 1597 -> 191[label="",style="solid", color="blue", weight=3]; 1598[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1598[label="",style="solid", color="blue", weight=9]; 1598 -> 192[label="",style="solid", color="blue", weight=3]; 1599[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1599[label="",style="solid", color="blue", weight=9]; 1599 -> 193[label="",style="solid", color="blue", weight=3]; 1600[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1600[label="",style="solid", color="blue", weight=9]; 1600 -> 194[label="",style="solid", color="blue", weight=3]; 1601[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1601[label="",style="solid", color="blue", weight=9]; 1601 -> 195[label="",style="solid", color="blue", weight=3]; 1602[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1602[label="",style="solid", color="blue", weight=9]; 1602 -> 196[label="",style="solid", color="blue", weight=3]; 1603[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1603[label="",style="solid", color="blue", weight=9]; 1603 -> 197[label="",style="solid", color="blue", weight=3]; 1604[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1604[label="",style="solid", color="blue", weight=9]; 1604 -> 198[label="",style="solid", color="blue", weight=3]; 1605[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1605[label="",style="solid", color="blue", weight=9]; 1605 -> 199[label="",style="solid", color="blue", weight=3]; 1606[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1606[label="",style="solid", color="blue", weight=9]; 1606 -> 200[label="",style="solid", color="blue", weight=3]; 173[label="vwx300",fontsize=16,color="green",shape="box"];174[label="vwx301 <= vwx401",fontsize=16,color="blue",shape="box"];1607[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1607[label="",style="solid", color="blue", weight=9]; 1607 -> 201[label="",style="solid", color="blue", weight=3]; 1608[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1608[label="",style="solid", color="blue", weight=9]; 1608 -> 202[label="",style="solid", color="blue", weight=3]; 1609[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1609[label="",style="solid", color="blue", weight=9]; 1609 -> 203[label="",style="solid", color="blue", weight=3]; 1610[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1610[label="",style="solid", color="blue", weight=9]; 1610 -> 204[label="",style="solid", color="blue", weight=3]; 1611[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1611[label="",style="solid", color="blue", weight=9]; 1611 -> 205[label="",style="solid", color="blue", weight=3]; 1612[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1612[label="",style="solid", color="blue", weight=9]; 1612 -> 206[label="",style="solid", color="blue", weight=3]; 1613[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1613[label="",style="solid", color="blue", weight=9]; 1613 -> 207[label="",style="solid", color="blue", weight=3]; 1614[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1614[label="",style="solid", color="blue", weight=9]; 1614 -> 208[label="",style="solid", color="blue", weight=3]; 1615[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1615[label="",style="solid", color="blue", weight=9]; 1615 -> 209[label="",style="solid", color="blue", weight=3]; 1616[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1616[label="",style="solid", color="blue", weight=9]; 1616 -> 210[label="",style="solid", color="blue", weight=3]; 1617[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1617[label="",style="solid", color="blue", weight=9]; 1617 -> 211[label="",style="solid", color="blue", weight=3]; 1618[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1618[label="",style="solid", color="blue", weight=9]; 1618 -> 212[label="",style="solid", color="blue", weight=3]; 1619[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1619[label="",style="solid", color="blue", weight=9]; 1619 -> 213[label="",style="solid", color="blue", weight=3]; 1620[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];174 -> 1620[label="",style="solid", color="blue", weight=9]; 1620 -> 214[label="",style="solid", color="blue", weight=3]; 170[label="vwx22 || vwx23 == vwx24 && vwx25",fontsize=16,color="burlywood",shape="triangle"];1621[label="vwx22/False",fontsize=10,color="white",style="solid",shape="box"];170 -> 1621[label="",style="solid", color="burlywood", weight=9]; 1621 -> 215[label="",style="solid", color="burlywood", weight=3]; 1622[label="vwx22/True",fontsize=10,color="white",style="solid",shape="box"];170 -> 1622[label="",style="solid", color="burlywood", weight=9]; 1622 -> 216[label="",style="solid", color="burlywood", weight=3]; 330[label="compare (vwx300 : vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1623[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];330 -> 1623[label="",style="solid", color="burlywood", weight=9]; 1623 -> 442[label="",style="solid", color="burlywood", weight=3]; 1624[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];330 -> 1624[label="",style="solid", color="burlywood", weight=9]; 1624 -> 443[label="",style="solid", color="burlywood", weight=3]; 331[label="compare [] vwx40",fontsize=16,color="burlywood",shape="box"];1625[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];331 -> 1625[label="",style="solid", color="burlywood", weight=9]; 1625 -> 444[label="",style="solid", color="burlywood", weight=3]; 1626[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];331 -> 1626[label="",style="solid", color="burlywood", weight=9]; 1626 -> 445[label="",style="solid", color="burlywood", weight=3]; 332[label="primCmpFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1627[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];332 -> 1627[label="",style="solid", color="burlywood", weight=9]; 1627 -> 446[label="",style="solid", color="burlywood", weight=3]; 333[label="compare () vwx40",fontsize=16,color="burlywood",shape="box"];1628[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];333 -> 1628[label="",style="solid", color="burlywood", weight=9]; 1628 -> 447[label="",style="solid", color="burlywood", weight=3]; 117 -> 15[label="",style="dashed", color="red", weight=0]; 117[label="vwx300 <= vwx400",fontsize=16,color="magenta"];117 -> 224[label="",style="dashed", color="magenta", weight=3]; 117 -> 225[label="",style="dashed", color="magenta", weight=3]; 118 -> 16[label="",style="dashed", color="red", weight=0]; 118[label="vwx300 <= vwx400",fontsize=16,color="magenta"];118 -> 226[label="",style="dashed", color="magenta", weight=3]; 118 -> 227[label="",style="dashed", color="magenta", weight=3]; 119 -> 17[label="",style="dashed", color="red", weight=0]; 119[label="vwx300 <= vwx400",fontsize=16,color="magenta"];119 -> 228[label="",style="dashed", color="magenta", weight=3]; 119 -> 229[label="",style="dashed", color="magenta", weight=3]; 120 -> 18[label="",style="dashed", color="red", weight=0]; 120[label="vwx300 <= vwx400",fontsize=16,color="magenta"];120 -> 230[label="",style="dashed", color="magenta", weight=3]; 120 -> 231[label="",style="dashed", color="magenta", weight=3]; 121 -> 19[label="",style="dashed", color="red", weight=0]; 121[label="vwx300 <= vwx400",fontsize=16,color="magenta"];121 -> 232[label="",style="dashed", color="magenta", weight=3]; 121 -> 233[label="",style="dashed", color="magenta", weight=3]; 122 -> 4[label="",style="dashed", color="red", weight=0]; 122[label="vwx300 <= vwx400",fontsize=16,color="magenta"];122 -> 234[label="",style="dashed", color="magenta", weight=3]; 122 -> 235[label="",style="dashed", color="magenta", weight=3]; 123 -> 21[label="",style="dashed", color="red", weight=0]; 123[label="vwx300 <= vwx400",fontsize=16,color="magenta"];123 -> 236[label="",style="dashed", color="magenta", weight=3]; 123 -> 237[label="",style="dashed", color="magenta", weight=3]; 124 -> 22[label="",style="dashed", color="red", weight=0]; 124[label="vwx300 <= vwx400",fontsize=16,color="magenta"];124 -> 238[label="",style="dashed", color="magenta", weight=3]; 124 -> 239[label="",style="dashed", color="magenta", weight=3]; 125 -> 23[label="",style="dashed", color="red", weight=0]; 125[label="vwx300 <= vwx400",fontsize=16,color="magenta"];125 -> 240[label="",style="dashed", color="magenta", weight=3]; 125 -> 241[label="",style="dashed", color="magenta", weight=3]; 126 -> 24[label="",style="dashed", color="red", weight=0]; 126[label="vwx300 <= vwx400",fontsize=16,color="magenta"];126 -> 242[label="",style="dashed", color="magenta", weight=3]; 126 -> 243[label="",style="dashed", color="magenta", weight=3]; 127 -> 25[label="",style="dashed", color="red", weight=0]; 127[label="vwx300 <= vwx400",fontsize=16,color="magenta"];127 -> 244[label="",style="dashed", color="magenta", weight=3]; 127 -> 245[label="",style="dashed", color="magenta", weight=3]; 128 -> 26[label="",style="dashed", color="red", weight=0]; 128[label="vwx300 <= vwx400",fontsize=16,color="magenta"];128 -> 246[label="",style="dashed", color="magenta", weight=3]; 128 -> 247[label="",style="dashed", color="magenta", weight=3]; 129 -> 27[label="",style="dashed", color="red", weight=0]; 129[label="vwx300 <= vwx400",fontsize=16,color="magenta"];129 -> 248[label="",style="dashed", color="magenta", weight=3]; 129 -> 249[label="",style="dashed", color="magenta", weight=3]; 130 -> 28[label="",style="dashed", color="red", weight=0]; 130[label="vwx300 <= vwx400",fontsize=16,color="magenta"];130 -> 250[label="",style="dashed", color="magenta", weight=3]; 130 -> 251[label="",style="dashed", color="magenta", weight=3]; 131 -> 15[label="",style="dashed", color="red", weight=0]; 131[label="vwx300 <= vwx400",fontsize=16,color="magenta"];131 -> 252[label="",style="dashed", color="magenta", weight=3]; 131 -> 253[label="",style="dashed", color="magenta", weight=3]; 132 -> 16[label="",style="dashed", color="red", weight=0]; 132[label="vwx300 <= vwx400",fontsize=16,color="magenta"];132 -> 254[label="",style="dashed", color="magenta", weight=3]; 132 -> 255[label="",style="dashed", color="magenta", weight=3]; 133 -> 17[label="",style="dashed", color="red", weight=0]; 133[label="vwx300 <= vwx400",fontsize=16,color="magenta"];133 -> 256[label="",style="dashed", color="magenta", weight=3]; 133 -> 257[label="",style="dashed", color="magenta", weight=3]; 134 -> 18[label="",style="dashed", color="red", weight=0]; 134[label="vwx300 <= vwx400",fontsize=16,color="magenta"];134 -> 258[label="",style="dashed", color="magenta", weight=3]; 134 -> 259[label="",style="dashed", color="magenta", weight=3]; 135 -> 19[label="",style="dashed", color="red", weight=0]; 135[label="vwx300 <= vwx400",fontsize=16,color="magenta"];135 -> 260[label="",style="dashed", color="magenta", weight=3]; 135 -> 261[label="",style="dashed", color="magenta", weight=3]; 136 -> 4[label="",style="dashed", color="red", weight=0]; 136[label="vwx300 <= vwx400",fontsize=16,color="magenta"];136 -> 262[label="",style="dashed", color="magenta", weight=3]; 136 -> 263[label="",style="dashed", color="magenta", weight=3]; 137 -> 21[label="",style="dashed", color="red", weight=0]; 137[label="vwx300 <= vwx400",fontsize=16,color="magenta"];137 -> 264[label="",style="dashed", color="magenta", weight=3]; 137 -> 265[label="",style="dashed", color="magenta", weight=3]; 138 -> 22[label="",style="dashed", color="red", weight=0]; 138[label="vwx300 <= vwx400",fontsize=16,color="magenta"];138 -> 266[label="",style="dashed", color="magenta", weight=3]; 138 -> 267[label="",style="dashed", color="magenta", weight=3]; 139 -> 23[label="",style="dashed", color="red", weight=0]; 139[label="vwx300 <= vwx400",fontsize=16,color="magenta"];139 -> 268[label="",style="dashed", color="magenta", weight=3]; 139 -> 269[label="",style="dashed", color="magenta", weight=3]; 140 -> 24[label="",style="dashed", color="red", weight=0]; 140[label="vwx300 <= vwx400",fontsize=16,color="magenta"];140 -> 270[label="",style="dashed", color="magenta", weight=3]; 140 -> 271[label="",style="dashed", color="magenta", weight=3]; 141 -> 25[label="",style="dashed", color="red", weight=0]; 141[label="vwx300 <= vwx400",fontsize=16,color="magenta"];141 -> 272[label="",style="dashed", color="magenta", weight=3]; 141 -> 273[label="",style="dashed", color="magenta", weight=3]; 142 -> 26[label="",style="dashed", color="red", weight=0]; 142[label="vwx300 <= vwx400",fontsize=16,color="magenta"];142 -> 274[label="",style="dashed", color="magenta", weight=3]; 142 -> 275[label="",style="dashed", color="magenta", weight=3]; 143 -> 27[label="",style="dashed", color="red", weight=0]; 143[label="vwx300 <= vwx400",fontsize=16,color="magenta"];143 -> 276[label="",style="dashed", color="magenta", weight=3]; 143 -> 277[label="",style="dashed", color="magenta", weight=3]; 144 -> 28[label="",style="dashed", color="red", weight=0]; 144[label="vwx300 <= vwx400",fontsize=16,color="magenta"];144 -> 278[label="",style="dashed", color="magenta", weight=3]; 144 -> 279[label="",style="dashed", color="magenta", weight=3]; 175[label="vwx400",fontsize=16,color="green",shape="box"];176[label="vwx300 < vwx400",fontsize=16,color="blue",shape="box"];1629[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1629[label="",style="solid", color="blue", weight=9]; 1629 -> 280[label="",style="solid", color="blue", weight=3]; 1630[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1630[label="",style="solid", color="blue", weight=9]; 1630 -> 281[label="",style="solid", color="blue", weight=3]; 1631[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1631[label="",style="solid", color="blue", weight=9]; 1631 -> 282[label="",style="solid", color="blue", weight=3]; 1632[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1632[label="",style="solid", color="blue", weight=9]; 1632 -> 283[label="",style="solid", color="blue", weight=3]; 1633[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1633[label="",style="solid", color="blue", weight=9]; 1633 -> 284[label="",style="solid", color="blue", weight=3]; 1634[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1634[label="",style="solid", color="blue", weight=9]; 1634 -> 285[label="",style="solid", color="blue", weight=3]; 1635[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1635[label="",style="solid", color="blue", weight=9]; 1635 -> 286[label="",style="solid", color="blue", weight=3]; 1636[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1636[label="",style="solid", color="blue", weight=9]; 1636 -> 287[label="",style="solid", color="blue", weight=3]; 1637[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1637[label="",style="solid", color="blue", weight=9]; 1637 -> 288[label="",style="solid", color="blue", weight=3]; 1638[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1638[label="",style="solid", color="blue", weight=9]; 1638 -> 289[label="",style="solid", color="blue", weight=3]; 1639[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1639[label="",style="solid", color="blue", weight=9]; 1639 -> 290[label="",style="solid", color="blue", weight=3]; 1640[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1640[label="",style="solid", color="blue", weight=9]; 1640 -> 291[label="",style="solid", color="blue", weight=3]; 1641[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1641[label="",style="solid", color="blue", weight=9]; 1641 -> 292[label="",style="solid", color="blue", weight=3]; 1642[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];176 -> 1642[label="",style="solid", color="blue", weight=9]; 1642 -> 293[label="",style="solid", color="blue", weight=3]; 177[label="vwx300",fontsize=16,color="green",shape="box"];178 -> 170[label="",style="dashed", color="red", weight=0]; 178[label="vwx301 < vwx401 || vwx301 == vwx401 && vwx302 <= vwx402",fontsize=16,color="magenta"];178 -> 294[label="",style="dashed", color="magenta", weight=3]; 178 -> 295[label="",style="dashed", color="magenta", weight=3]; 178 -> 296[label="",style="dashed", color="magenta", weight=3]; 178 -> 297[label="",style="dashed", color="magenta", weight=3]; 334[label="primCmpChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1643[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];334 -> 1643[label="",style="solid", color="burlywood", weight=9]; 1643 -> 448[label="",style="solid", color="burlywood", weight=3]; 335[label="primCmpInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1644[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];335 -> 1644[label="",style="solid", color="burlywood", weight=9]; 1644 -> 449[label="",style="solid", color="burlywood", weight=3]; 1645[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];335 -> 1645[label="",style="solid", color="burlywood", weight=9]; 1645 -> 450[label="",style="solid", color="burlywood", weight=3]; 336[label="primCmpDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1646[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];336 -> 1646[label="",style="solid", color="burlywood", weight=9]; 1646 -> 451[label="",style="solid", color="burlywood", weight=3]; 437[label="compare (vwx300 :% vwx301) (vwx400 :% vwx401)",fontsize=16,color="black",shape="box"];437 -> 467[label="",style="solid", color="black", weight=3]; 438[label="not False",fontsize=16,color="black",shape="triangle"];438 -> 468[label="",style="solid", color="black", weight=3]; 439 -> 438[label="",style="dashed", color="red", weight=0]; 439[label="not False",fontsize=16,color="magenta"];440[label="not True",fontsize=16,color="black",shape="box"];440 -> 469[label="",style="solid", color="black", weight=3]; 441[label="compare (Integer vwx300) (Integer vwx400)",fontsize=16,color="black",shape="box"];441 -> 470[label="",style="solid", color="black", weight=3]; 187[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];187 -> 337[label="",style="solid", color="black", weight=3]; 188[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];188 -> 338[label="",style="solid", color="black", weight=3]; 189[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];189 -> 339[label="",style="solid", color="black", weight=3]; 190[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];190 -> 340[label="",style="solid", color="black", weight=3]; 191[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];191 -> 341[label="",style="solid", color="black", weight=3]; 192[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];192 -> 342[label="",style="solid", color="black", weight=3]; 193[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];193 -> 343[label="",style="solid", color="black", weight=3]; 194[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];194 -> 344[label="",style="solid", color="black", weight=3]; 195[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];195 -> 345[label="",style="solid", color="black", weight=3]; 196[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];196 -> 346[label="",style="solid", color="black", weight=3]; 197[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];197 -> 347[label="",style="solid", color="black", weight=3]; 198[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];198 -> 348[label="",style="solid", color="black", weight=3]; 199[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];199 -> 349[label="",style="solid", color="black", weight=3]; 200[label="vwx300 < vwx400",fontsize=16,color="black",shape="triangle"];200 -> 350[label="",style="solid", color="black", weight=3]; 201 -> 15[label="",style="dashed", color="red", weight=0]; 201[label="vwx301 <= vwx401",fontsize=16,color="magenta"];201 -> 351[label="",style="dashed", color="magenta", weight=3]; 201 -> 352[label="",style="dashed", color="magenta", weight=3]; 202 -> 16[label="",style="dashed", color="red", weight=0]; 202[label="vwx301 <= vwx401",fontsize=16,color="magenta"];202 -> 353[label="",style="dashed", color="magenta", weight=3]; 202 -> 354[label="",style="dashed", color="magenta", weight=3]; 203 -> 17[label="",style="dashed", color="red", weight=0]; 203[label="vwx301 <= vwx401",fontsize=16,color="magenta"];203 -> 355[label="",style="dashed", color="magenta", weight=3]; 203 -> 356[label="",style="dashed", color="magenta", weight=3]; 204 -> 18[label="",style="dashed", color="red", weight=0]; 204[label="vwx301 <= vwx401",fontsize=16,color="magenta"];204 -> 357[label="",style="dashed", color="magenta", weight=3]; 204 -> 358[label="",style="dashed", color="magenta", weight=3]; 205 -> 19[label="",style="dashed", color="red", weight=0]; 205[label="vwx301 <= vwx401",fontsize=16,color="magenta"];205 -> 359[label="",style="dashed", color="magenta", weight=3]; 205 -> 360[label="",style="dashed", color="magenta", weight=3]; 206 -> 4[label="",style="dashed", color="red", weight=0]; 206[label="vwx301 <= vwx401",fontsize=16,color="magenta"];206 -> 361[label="",style="dashed", color="magenta", weight=3]; 206 -> 362[label="",style="dashed", color="magenta", weight=3]; 207 -> 21[label="",style="dashed", color="red", weight=0]; 207[label="vwx301 <= vwx401",fontsize=16,color="magenta"];207 -> 363[label="",style="dashed", color="magenta", weight=3]; 207 -> 364[label="",style="dashed", color="magenta", weight=3]; 208 -> 22[label="",style="dashed", color="red", weight=0]; 208[label="vwx301 <= vwx401",fontsize=16,color="magenta"];208 -> 365[label="",style="dashed", color="magenta", weight=3]; 208 -> 366[label="",style="dashed", color="magenta", weight=3]; 209 -> 23[label="",style="dashed", color="red", weight=0]; 209[label="vwx301 <= vwx401",fontsize=16,color="magenta"];209 -> 367[label="",style="dashed", color="magenta", weight=3]; 209 -> 368[label="",style="dashed", color="magenta", weight=3]; 210 -> 24[label="",style="dashed", color="red", weight=0]; 210[label="vwx301 <= vwx401",fontsize=16,color="magenta"];210 -> 369[label="",style="dashed", color="magenta", weight=3]; 210 -> 370[label="",style="dashed", color="magenta", weight=3]; 211 -> 25[label="",style="dashed", color="red", weight=0]; 211[label="vwx301 <= vwx401",fontsize=16,color="magenta"];211 -> 371[label="",style="dashed", color="magenta", weight=3]; 211 -> 372[label="",style="dashed", color="magenta", weight=3]; 212 -> 26[label="",style="dashed", color="red", weight=0]; 212[label="vwx301 <= vwx401",fontsize=16,color="magenta"];212 -> 373[label="",style="dashed", color="magenta", weight=3]; 212 -> 374[label="",style="dashed", color="magenta", weight=3]; 213 -> 27[label="",style="dashed", color="red", weight=0]; 213[label="vwx301 <= vwx401",fontsize=16,color="magenta"];213 -> 375[label="",style="dashed", color="magenta", weight=3]; 213 -> 376[label="",style="dashed", color="magenta", weight=3]; 214 -> 28[label="",style="dashed", color="red", weight=0]; 214[label="vwx301 <= vwx401",fontsize=16,color="magenta"];214 -> 377[label="",style="dashed", color="magenta", weight=3]; 214 -> 378[label="",style="dashed", color="magenta", weight=3]; 215[label="False || vwx23 == vwx24 && vwx25",fontsize=16,color="black",shape="box"];215 -> 379[label="",style="solid", color="black", weight=3]; 216[label="True || vwx23 == vwx24 && vwx25",fontsize=16,color="black",shape="box"];216 -> 380[label="",style="solid", color="black", weight=3]; 442[label="compare (vwx300 : vwx301) (vwx400 : vwx401)",fontsize=16,color="black",shape="box"];442 -> 471[label="",style="solid", color="black", weight=3]; 443[label="compare (vwx300 : vwx301) []",fontsize=16,color="black",shape="box"];443 -> 472[label="",style="solid", color="black", weight=3]; 444[label="compare [] (vwx400 : vwx401)",fontsize=16,color="black",shape="box"];444 -> 473[label="",style="solid", color="black", weight=3]; 445[label="compare [] []",fontsize=16,color="black",shape="box"];445 -> 474[label="",style="solid", color="black", weight=3]; 446[label="primCmpFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1647[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];446 -> 1647[label="",style="solid", color="burlywood", weight=9]; 1647 -> 475[label="",style="solid", color="burlywood", weight=3]; 1648[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];446 -> 1648[label="",style="solid", color="burlywood", weight=9]; 1648 -> 476[label="",style="solid", color="burlywood", weight=3]; 447[label="compare () ()",fontsize=16,color="black",shape="box"];447 -> 477[label="",style="solid", color="black", weight=3]; 224[label="vwx400",fontsize=16,color="green",shape="box"];225[label="vwx300",fontsize=16,color="green",shape="box"];226[label="vwx400",fontsize=16,color="green",shape="box"];227[label="vwx300",fontsize=16,color="green",shape="box"];228[label="vwx400",fontsize=16,color="green",shape="box"];229[label="vwx300",fontsize=16,color="green",shape="box"];230[label="vwx400",fontsize=16,color="green",shape="box"];231[label="vwx300",fontsize=16,color="green",shape="box"];232[label="vwx400",fontsize=16,color="green",shape="box"];233[label="vwx300",fontsize=16,color="green",shape="box"];234[label="vwx300",fontsize=16,color="green",shape="box"];235[label="vwx400",fontsize=16,color="green",shape="box"];236[label="vwx400",fontsize=16,color="green",shape="box"];237[label="vwx300",fontsize=16,color="green",shape="box"];238[label="vwx400",fontsize=16,color="green",shape="box"];239[label="vwx300",fontsize=16,color="green",shape="box"];240[label="vwx400",fontsize=16,color="green",shape="box"];241[label="vwx300",fontsize=16,color="green",shape="box"];242[label="vwx400",fontsize=16,color="green",shape="box"];243[label="vwx300",fontsize=16,color="green",shape="box"];244[label="vwx400",fontsize=16,color="green",shape="box"];245[label="vwx300",fontsize=16,color="green",shape="box"];246[label="vwx400",fontsize=16,color="green",shape="box"];247[label="vwx300",fontsize=16,color="green",shape="box"];248[label="vwx400",fontsize=16,color="green",shape="box"];249[label="vwx300",fontsize=16,color="green",shape="box"];250[label="vwx400",fontsize=16,color="green",shape="box"];251[label="vwx300",fontsize=16,color="green",shape="box"];252[label="vwx400",fontsize=16,color="green",shape="box"];253[label="vwx300",fontsize=16,color="green",shape="box"];254[label="vwx400",fontsize=16,color="green",shape="box"];255[label="vwx300",fontsize=16,color="green",shape="box"];256[label="vwx400",fontsize=16,color="green",shape="box"];257[label="vwx300",fontsize=16,color="green",shape="box"];258[label="vwx400",fontsize=16,color="green",shape="box"];259[label="vwx300",fontsize=16,color="green",shape="box"];260[label="vwx400",fontsize=16,color="green",shape="box"];261[label="vwx300",fontsize=16,color="green",shape="box"];262[label="vwx300",fontsize=16,color="green",shape="box"];263[label="vwx400",fontsize=16,color="green",shape="box"];264[label="vwx400",fontsize=16,color="green",shape="box"];265[label="vwx300",fontsize=16,color="green",shape="box"];266[label="vwx400",fontsize=16,color="green",shape="box"];267[label="vwx300",fontsize=16,color="green",shape="box"];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 -> 187[label="",style="dashed", color="red", weight=0]; 280[label="vwx300 < vwx400",fontsize=16,color="magenta"];280 -> 381[label="",style="dashed", color="magenta", weight=3]; 280 -> 382[label="",style="dashed", color="magenta", weight=3]; 281 -> 188[label="",style="dashed", color="red", weight=0]; 281[label="vwx300 < vwx400",fontsize=16,color="magenta"];281 -> 383[label="",style="dashed", color="magenta", weight=3]; 281 -> 384[label="",style="dashed", color="magenta", weight=3]; 282 -> 189[label="",style="dashed", color="red", weight=0]; 282[label="vwx300 < vwx400",fontsize=16,color="magenta"];282 -> 385[label="",style="dashed", color="magenta", weight=3]; 282 -> 386[label="",style="dashed", color="magenta", weight=3]; 283 -> 190[label="",style="dashed", color="red", weight=0]; 283[label="vwx300 < vwx400",fontsize=16,color="magenta"];283 -> 387[label="",style="dashed", color="magenta", weight=3]; 283 -> 388[label="",style="dashed", color="magenta", weight=3]; 284 -> 191[label="",style="dashed", color="red", weight=0]; 284[label="vwx300 < vwx400",fontsize=16,color="magenta"];284 -> 389[label="",style="dashed", color="magenta", weight=3]; 284 -> 390[label="",style="dashed", color="magenta", weight=3]; 285 -> 192[label="",style="dashed", color="red", weight=0]; 285[label="vwx300 < vwx400",fontsize=16,color="magenta"];285 -> 391[label="",style="dashed", color="magenta", weight=3]; 285 -> 392[label="",style="dashed", color="magenta", weight=3]; 286 -> 193[label="",style="dashed", color="red", weight=0]; 286[label="vwx300 < vwx400",fontsize=16,color="magenta"];286 -> 393[label="",style="dashed", color="magenta", weight=3]; 286 -> 394[label="",style="dashed", color="magenta", weight=3]; 287 -> 194[label="",style="dashed", color="red", weight=0]; 287[label="vwx300 < vwx400",fontsize=16,color="magenta"];287 -> 395[label="",style="dashed", color="magenta", weight=3]; 287 -> 396[label="",style="dashed", color="magenta", weight=3]; 288 -> 195[label="",style="dashed", color="red", weight=0]; 288[label="vwx300 < vwx400",fontsize=16,color="magenta"];288 -> 397[label="",style="dashed", color="magenta", weight=3]; 288 -> 398[label="",style="dashed", color="magenta", weight=3]; 289 -> 196[label="",style="dashed", color="red", weight=0]; 289[label="vwx300 < vwx400",fontsize=16,color="magenta"];289 -> 399[label="",style="dashed", color="magenta", weight=3]; 289 -> 400[label="",style="dashed", color="magenta", weight=3]; 290 -> 197[label="",style="dashed", color="red", weight=0]; 290[label="vwx300 < vwx400",fontsize=16,color="magenta"];290 -> 401[label="",style="dashed", color="magenta", weight=3]; 290 -> 402[label="",style="dashed", color="magenta", weight=3]; 291 -> 198[label="",style="dashed", color="red", weight=0]; 291[label="vwx300 < vwx400",fontsize=16,color="magenta"];291 -> 403[label="",style="dashed", color="magenta", weight=3]; 291 -> 404[label="",style="dashed", color="magenta", weight=3]; 292 -> 199[label="",style="dashed", color="red", weight=0]; 292[label="vwx300 < vwx400",fontsize=16,color="magenta"];292 -> 405[label="",style="dashed", color="magenta", weight=3]; 292 -> 406[label="",style="dashed", color="magenta", weight=3]; 293 -> 200[label="",style="dashed", color="red", weight=0]; 293[label="vwx300 < vwx400",fontsize=16,color="magenta"];293 -> 407[label="",style="dashed", color="magenta", weight=3]; 293 -> 408[label="",style="dashed", color="magenta", weight=3]; 294[label="vwx401",fontsize=16,color="green",shape="box"];295[label="vwx301 < vwx401",fontsize=16,color="blue",shape="box"];1649[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1649[label="",style="solid", color="blue", weight=9]; 1649 -> 409[label="",style="solid", color="blue", weight=3]; 1650[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1650[label="",style="solid", color="blue", weight=9]; 1650 -> 410[label="",style="solid", color="blue", weight=3]; 1651[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1651[label="",style="solid", color="blue", weight=9]; 1651 -> 411[label="",style="solid", color="blue", weight=3]; 1652[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1652[label="",style="solid", color="blue", weight=9]; 1652 -> 412[label="",style="solid", color="blue", weight=3]; 1653[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1653[label="",style="solid", color="blue", weight=9]; 1653 -> 413[label="",style="solid", color="blue", weight=3]; 1654[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1654[label="",style="solid", color="blue", weight=9]; 1654 -> 414[label="",style="solid", color="blue", weight=3]; 1655[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1655[label="",style="solid", color="blue", weight=9]; 1655 -> 415[label="",style="solid", color="blue", weight=3]; 1656[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1656[label="",style="solid", color="blue", weight=9]; 1656 -> 416[label="",style="solid", color="blue", weight=3]; 1657[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1657[label="",style="solid", color="blue", weight=9]; 1657 -> 417[label="",style="solid", color="blue", weight=3]; 1658[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1658[label="",style="solid", color="blue", weight=9]; 1658 -> 418[label="",style="solid", color="blue", weight=3]; 1659[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1659[label="",style="solid", color="blue", weight=9]; 1659 -> 419[label="",style="solid", color="blue", weight=3]; 1660[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1660[label="",style="solid", color="blue", weight=9]; 1660 -> 420[label="",style="solid", color="blue", weight=3]; 1661[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1661[label="",style="solid", color="blue", weight=9]; 1661 -> 421[label="",style="solid", color="blue", weight=3]; 1662[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];295 -> 1662[label="",style="solid", color="blue", weight=9]; 1662 -> 422[label="",style="solid", color="blue", weight=3]; 296[label="vwx301",fontsize=16,color="green",shape="box"];297[label="vwx302 <= vwx402",fontsize=16,color="blue",shape="box"];1663[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1663[label="",style="solid", color="blue", weight=9]; 1663 -> 423[label="",style="solid", color="blue", weight=3]; 1664[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1664[label="",style="solid", color="blue", weight=9]; 1664 -> 424[label="",style="solid", color="blue", weight=3]; 1665[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1665[label="",style="solid", color="blue", weight=9]; 1665 -> 425[label="",style="solid", color="blue", weight=3]; 1666[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1666[label="",style="solid", color="blue", weight=9]; 1666 -> 426[label="",style="solid", color="blue", weight=3]; 1667[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1667[label="",style="solid", color="blue", weight=9]; 1667 -> 427[label="",style="solid", color="blue", weight=3]; 1668[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1668[label="",style="solid", color="blue", weight=9]; 1668 -> 428[label="",style="solid", color="blue", weight=3]; 1669[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1669[label="",style="solid", color="blue", weight=9]; 1669 -> 429[label="",style="solid", color="blue", weight=3]; 1670[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1670[label="",style="solid", color="blue", weight=9]; 1670 -> 430[label="",style="solid", color="blue", weight=3]; 1671[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1671[label="",style="solid", color="blue", weight=9]; 1671 -> 431[label="",style="solid", color="blue", weight=3]; 1672[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1672[label="",style="solid", color="blue", weight=9]; 1672 -> 432[label="",style="solid", color="blue", weight=3]; 1673[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1673[label="",style="solid", color="blue", weight=9]; 1673 -> 433[label="",style="solid", color="blue", weight=3]; 1674[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1674[label="",style="solid", color="blue", weight=9]; 1674 -> 434[label="",style="solid", color="blue", weight=3]; 1675[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1675[label="",style="solid", color="blue", weight=9]; 1675 -> 435[label="",style="solid", color="blue", weight=3]; 1676[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];297 -> 1676[label="",style="solid", color="blue", weight=9]; 1676 -> 436[label="",style="solid", color="blue", weight=3]; 448[label="primCmpChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1677[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];448 -> 1677[label="",style="solid", color="burlywood", weight=9]; 1677 -> 478[label="",style="solid", color="burlywood", weight=3]; 449[label="primCmpInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1678[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];449 -> 1678[label="",style="solid", color="burlywood", weight=9]; 1678 -> 479[label="",style="solid", color="burlywood", weight=3]; 1679[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];449 -> 1679[label="",style="solid", color="burlywood", weight=9]; 1679 -> 480[label="",style="solid", color="burlywood", weight=3]; 450[label="primCmpInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1680[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];450 -> 1680[label="",style="solid", color="burlywood", weight=9]; 1680 -> 481[label="",style="solid", color="burlywood", weight=3]; 1681[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];450 -> 1681[label="",style="solid", color="burlywood", weight=9]; 1681 -> 482[label="",style="solid", color="burlywood", weight=3]; 451[label="primCmpDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1682[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];451 -> 1682[label="",style="solid", color="burlywood", weight=9]; 1682 -> 483[label="",style="solid", color="burlywood", weight=3]; 1683[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];451 -> 1683[label="",style="solid", color="burlywood", weight=9]; 1683 -> 484[label="",style="solid", color="burlywood", weight=3]; 467[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="blue",shape="box"];1684[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];467 -> 1684[label="",style="solid", color="blue", weight=9]; 1684 -> 488[label="",style="solid", color="blue", weight=3]; 1685[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];467 -> 1685[label="",style="solid", color="blue", weight=9]; 1685 -> 489[label="",style="solid", color="blue", weight=3]; 468[label="True",fontsize=16,color="green",shape="box"];469[label="False",fontsize=16,color="green",shape="box"];470 -> 335[label="",style="dashed", color="red", weight=0]; 470[label="primCmpInt vwx300 vwx400",fontsize=16,color="magenta"];470 -> 490[label="",style="dashed", color="magenta", weight=3]; 470 -> 491[label="",style="dashed", color="magenta", weight=3]; 337 -> 452[label="",style="dashed", color="red", weight=0]; 337[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];337 -> 453[label="",style="dashed", color="magenta", weight=3]; 338 -> 452[label="",style="dashed", color="red", weight=0]; 338[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];338 -> 454[label="",style="dashed", color="magenta", weight=3]; 339 -> 452[label="",style="dashed", color="red", weight=0]; 339[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];339 -> 455[label="",style="dashed", color="magenta", weight=3]; 340 -> 452[label="",style="dashed", color="red", weight=0]; 340[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];340 -> 456[label="",style="dashed", color="magenta", weight=3]; 341 -> 452[label="",style="dashed", color="red", weight=0]; 341[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];341 -> 457[label="",style="dashed", color="magenta", weight=3]; 342 -> 452[label="",style="dashed", color="red", weight=0]; 342[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];342 -> 458[label="",style="dashed", color="magenta", weight=3]; 343 -> 452[label="",style="dashed", color="red", weight=0]; 343[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];343 -> 459[label="",style="dashed", color="magenta", weight=3]; 344 -> 452[label="",style="dashed", color="red", weight=0]; 344[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];344 -> 460[label="",style="dashed", color="magenta", weight=3]; 345 -> 452[label="",style="dashed", color="red", weight=0]; 345[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];345 -> 461[label="",style="dashed", color="magenta", weight=3]; 346 -> 452[label="",style="dashed", color="red", weight=0]; 346[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];346 -> 462[label="",style="dashed", color="magenta", weight=3]; 347 -> 452[label="",style="dashed", color="red", weight=0]; 347[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];347 -> 463[label="",style="dashed", color="magenta", weight=3]; 348 -> 452[label="",style="dashed", color="red", weight=0]; 348[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];348 -> 464[label="",style="dashed", color="magenta", weight=3]; 349 -> 452[label="",style="dashed", color="red", weight=0]; 349[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];349 -> 465[label="",style="dashed", color="magenta", weight=3]; 350 -> 452[label="",style="dashed", color="red", weight=0]; 350[label="compare vwx300 vwx400 == LT",fontsize=16,color="magenta"];350 -> 466[label="",style="dashed", color="magenta", weight=3]; 351[label="vwx401",fontsize=16,color="green",shape="box"];352[label="vwx301",fontsize=16,color="green",shape="box"];353[label="vwx401",fontsize=16,color="green",shape="box"];354[label="vwx301",fontsize=16,color="green",shape="box"];355[label="vwx401",fontsize=16,color="green",shape="box"];356[label="vwx301",fontsize=16,color="green",shape="box"];357[label="vwx401",fontsize=16,color="green",shape="box"];358[label="vwx301",fontsize=16,color="green",shape="box"];359[label="vwx401",fontsize=16,color="green",shape="box"];360[label="vwx301",fontsize=16,color="green",shape="box"];361[label="vwx301",fontsize=16,color="green",shape="box"];362[label="vwx401",fontsize=16,color="green",shape="box"];363[label="vwx401",fontsize=16,color="green",shape="box"];364[label="vwx301",fontsize=16,color="green",shape="box"];365[label="vwx401",fontsize=16,color="green",shape="box"];366[label="vwx301",fontsize=16,color="green",shape="box"];367[label="vwx401",fontsize=16,color="green",shape="box"];368[label="vwx301",fontsize=16,color="green",shape="box"];369[label="vwx401",fontsize=16,color="green",shape="box"];370[label="vwx301",fontsize=16,color="green",shape="box"];371[label="vwx401",fontsize=16,color="green",shape="box"];372[label="vwx301",fontsize=16,color="green",shape="box"];373[label="vwx401",fontsize=16,color="green",shape="box"];374[label="vwx301",fontsize=16,color="green",shape="box"];375[label="vwx401",fontsize=16,color="green",shape="box"];376[label="vwx301",fontsize=16,color="green",shape="box"];377[label="vwx401",fontsize=16,color="green",shape="box"];378[label="vwx301",fontsize=16,color="green",shape="box"];379 -> 485[label="",style="dashed", color="red", weight=0]; 379[label="vwx23 == vwx24 && vwx25",fontsize=16,color="magenta"];379 -> 486[label="",style="dashed", color="magenta", weight=3]; 379 -> 487[label="",style="dashed", color="magenta", weight=3]; 380[label="True",fontsize=16,color="green",shape="box"];471 -> 492[label="",style="dashed", color="red", weight=0]; 471[label="primCompAux vwx300 vwx400 (compare vwx301 vwx401)",fontsize=16,color="magenta"];471 -> 493[label="",style="dashed", color="magenta", weight=3]; 472[label="GT",fontsize=16,color="green",shape="box"];473[label="LT",fontsize=16,color="green",shape="box"];474[label="EQ",fontsize=16,color="green",shape="box"];475[label="primCmpFloat (Float vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];1686[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];475 -> 1686[label="",style="solid", color="burlywood", weight=9]; 1686 -> 494[label="",style="solid", color="burlywood", weight=3]; 476[label="primCmpFloat (Float vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];1687[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];476 -> 1687[label="",style="solid", color="burlywood", weight=9]; 1687 -> 495[label="",style="solid", color="burlywood", weight=3]; 477[label="EQ",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="vwx400",fontsize=16,color="green",shape="box"];385[label="vwx300",fontsize=16,color="green",shape="box"];386[label="vwx400",fontsize=16,color="green",shape="box"];387[label="vwx300",fontsize=16,color="green",shape="box"];388[label="vwx400",fontsize=16,color="green",shape="box"];389[label="vwx300",fontsize=16,color="green",shape="box"];390[label="vwx400",fontsize=16,color="green",shape="box"];391[label="vwx300",fontsize=16,color="green",shape="box"];392[label="vwx400",fontsize=16,color="green",shape="box"];393[label="vwx300",fontsize=16,color="green",shape="box"];394[label="vwx400",fontsize=16,color="green",shape="box"];395[label="vwx300",fontsize=16,color="green",shape="box"];396[label="vwx400",fontsize=16,color="green",shape="box"];397[label="vwx300",fontsize=16,color="green",shape="box"];398[label="vwx400",fontsize=16,color="green",shape="box"];399[label="vwx300",fontsize=16,color="green",shape="box"];400[label="vwx400",fontsize=16,color="green",shape="box"];401[label="vwx300",fontsize=16,color="green",shape="box"];402[label="vwx400",fontsize=16,color="green",shape="box"];403[label="vwx300",fontsize=16,color="green",shape="box"];404[label="vwx400",fontsize=16,color="green",shape="box"];405[label="vwx300",fontsize=16,color="green",shape="box"];406[label="vwx400",fontsize=16,color="green",shape="box"];407[label="vwx300",fontsize=16,color="green",shape="box"];408[label="vwx400",fontsize=16,color="green",shape="box"];409 -> 187[label="",style="dashed", color="red", weight=0]; 409[label="vwx301 < vwx401",fontsize=16,color="magenta"];409 -> 496[label="",style="dashed", color="magenta", weight=3]; 409 -> 497[label="",style="dashed", color="magenta", weight=3]; 410 -> 188[label="",style="dashed", color="red", weight=0]; 410[label="vwx301 < vwx401",fontsize=16,color="magenta"];410 -> 498[label="",style="dashed", color="magenta", weight=3]; 410 -> 499[label="",style="dashed", color="magenta", weight=3]; 411 -> 189[label="",style="dashed", color="red", weight=0]; 411[label="vwx301 < vwx401",fontsize=16,color="magenta"];411 -> 500[label="",style="dashed", color="magenta", weight=3]; 411 -> 501[label="",style="dashed", color="magenta", weight=3]; 412 -> 190[label="",style="dashed", color="red", weight=0]; 412[label="vwx301 < vwx401",fontsize=16,color="magenta"];412 -> 502[label="",style="dashed", color="magenta", weight=3]; 412 -> 503[label="",style="dashed", color="magenta", weight=3]; 413 -> 191[label="",style="dashed", color="red", weight=0]; 413[label="vwx301 < vwx401",fontsize=16,color="magenta"];413 -> 504[label="",style="dashed", color="magenta", weight=3]; 413 -> 505[label="",style="dashed", color="magenta", weight=3]; 414 -> 192[label="",style="dashed", color="red", weight=0]; 414[label="vwx301 < vwx401",fontsize=16,color="magenta"];414 -> 506[label="",style="dashed", color="magenta", weight=3]; 414 -> 507[label="",style="dashed", color="magenta", weight=3]; 415 -> 193[label="",style="dashed", color="red", weight=0]; 415[label="vwx301 < vwx401",fontsize=16,color="magenta"];415 -> 508[label="",style="dashed", color="magenta", weight=3]; 415 -> 509[label="",style="dashed", color="magenta", weight=3]; 416 -> 194[label="",style="dashed", color="red", weight=0]; 416[label="vwx301 < vwx401",fontsize=16,color="magenta"];416 -> 510[label="",style="dashed", color="magenta", weight=3]; 416 -> 511[label="",style="dashed", color="magenta", weight=3]; 417 -> 195[label="",style="dashed", color="red", weight=0]; 417[label="vwx301 < vwx401",fontsize=16,color="magenta"];417 -> 512[label="",style="dashed", color="magenta", weight=3]; 417 -> 513[label="",style="dashed", color="magenta", weight=3]; 418 -> 196[label="",style="dashed", color="red", weight=0]; 418[label="vwx301 < vwx401",fontsize=16,color="magenta"];418 -> 514[label="",style="dashed", color="magenta", weight=3]; 418 -> 515[label="",style="dashed", color="magenta", weight=3]; 419 -> 197[label="",style="dashed", color="red", weight=0]; 419[label="vwx301 < vwx401",fontsize=16,color="magenta"];419 -> 516[label="",style="dashed", color="magenta", weight=3]; 419 -> 517[label="",style="dashed", color="magenta", weight=3]; 420 -> 198[label="",style="dashed", color="red", weight=0]; 420[label="vwx301 < vwx401",fontsize=16,color="magenta"];420 -> 518[label="",style="dashed", color="magenta", weight=3]; 420 -> 519[label="",style="dashed", color="magenta", weight=3]; 421 -> 199[label="",style="dashed", color="red", weight=0]; 421[label="vwx301 < vwx401",fontsize=16,color="magenta"];421 -> 520[label="",style="dashed", color="magenta", weight=3]; 421 -> 521[label="",style="dashed", color="magenta", weight=3]; 422 -> 200[label="",style="dashed", color="red", weight=0]; 422[label="vwx301 < vwx401",fontsize=16,color="magenta"];422 -> 522[label="",style="dashed", color="magenta", weight=3]; 422 -> 523[label="",style="dashed", color="magenta", weight=3]; 423 -> 15[label="",style="dashed", color="red", weight=0]; 423[label="vwx302 <= vwx402",fontsize=16,color="magenta"];423 -> 524[label="",style="dashed", color="magenta", weight=3]; 423 -> 525[label="",style="dashed", color="magenta", weight=3]; 424 -> 16[label="",style="dashed", color="red", weight=0]; 424[label="vwx302 <= vwx402",fontsize=16,color="magenta"];424 -> 526[label="",style="dashed", color="magenta", weight=3]; 424 -> 527[label="",style="dashed", color="magenta", weight=3]; 425 -> 17[label="",style="dashed", color="red", weight=0]; 425[label="vwx302 <= vwx402",fontsize=16,color="magenta"];425 -> 528[label="",style="dashed", color="magenta", weight=3]; 425 -> 529[label="",style="dashed", color="magenta", weight=3]; 426 -> 18[label="",style="dashed", color="red", weight=0]; 426[label="vwx302 <= vwx402",fontsize=16,color="magenta"];426 -> 530[label="",style="dashed", color="magenta", weight=3]; 426 -> 531[label="",style="dashed", color="magenta", weight=3]; 427 -> 19[label="",style="dashed", color="red", weight=0]; 427[label="vwx302 <= vwx402",fontsize=16,color="magenta"];427 -> 532[label="",style="dashed", color="magenta", weight=3]; 427 -> 533[label="",style="dashed", color="magenta", weight=3]; 428 -> 4[label="",style="dashed", color="red", weight=0]; 428[label="vwx302 <= vwx402",fontsize=16,color="magenta"];428 -> 534[label="",style="dashed", color="magenta", weight=3]; 428 -> 535[label="",style="dashed", color="magenta", weight=3]; 429 -> 21[label="",style="dashed", color="red", weight=0]; 429[label="vwx302 <= vwx402",fontsize=16,color="magenta"];429 -> 536[label="",style="dashed", color="magenta", weight=3]; 429 -> 537[label="",style="dashed", color="magenta", weight=3]; 430 -> 22[label="",style="dashed", color="red", weight=0]; 430[label="vwx302 <= vwx402",fontsize=16,color="magenta"];430 -> 538[label="",style="dashed", color="magenta", weight=3]; 430 -> 539[label="",style="dashed", color="magenta", weight=3]; 431 -> 23[label="",style="dashed", color="red", weight=0]; 431[label="vwx302 <= vwx402",fontsize=16,color="magenta"];431 -> 540[label="",style="dashed", color="magenta", weight=3]; 431 -> 541[label="",style="dashed", color="magenta", weight=3]; 432 -> 24[label="",style="dashed", color="red", weight=0]; 432[label="vwx302 <= vwx402",fontsize=16,color="magenta"];432 -> 542[label="",style="dashed", color="magenta", weight=3]; 432 -> 543[label="",style="dashed", color="magenta", weight=3]; 433 -> 25[label="",style="dashed", color="red", weight=0]; 433[label="vwx302 <= vwx402",fontsize=16,color="magenta"];433 -> 544[label="",style="dashed", color="magenta", weight=3]; 433 -> 545[label="",style="dashed", color="magenta", weight=3]; 434 -> 26[label="",style="dashed", color="red", weight=0]; 434[label="vwx302 <= vwx402",fontsize=16,color="magenta"];434 -> 546[label="",style="dashed", color="magenta", weight=3]; 434 -> 547[label="",style="dashed", color="magenta", weight=3]; 435 -> 27[label="",style="dashed", color="red", weight=0]; 435[label="vwx302 <= vwx402",fontsize=16,color="magenta"];435 -> 548[label="",style="dashed", color="magenta", weight=3]; 435 -> 549[label="",style="dashed", color="magenta", weight=3]; 436 -> 28[label="",style="dashed", color="red", weight=0]; 436[label="vwx302 <= vwx402",fontsize=16,color="magenta"];436 -> 550[label="",style="dashed", color="magenta", weight=3]; 436 -> 551[label="",style="dashed", color="magenta", weight=3]; 478[label="primCmpChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];478 -> 552[label="",style="solid", color="black", weight=3]; 479[label="primCmpInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];1688[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];479 -> 1688[label="",style="solid", color="burlywood", weight=9]; 1688 -> 553[label="",style="solid", color="burlywood", weight=3]; 1689[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];479 -> 1689[label="",style="solid", color="burlywood", weight=9]; 1689 -> 554[label="",style="solid", color="burlywood", weight=3]; 480[label="primCmpInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];1690[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];480 -> 1690[label="",style="solid", color="burlywood", weight=9]; 1690 -> 555[label="",style="solid", color="burlywood", weight=3]; 1691[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];480 -> 1691[label="",style="solid", color="burlywood", weight=9]; 1691 -> 556[label="",style="solid", color="burlywood", weight=3]; 481[label="primCmpInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];1692[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];481 -> 1692[label="",style="solid", color="burlywood", weight=9]; 1692 -> 557[label="",style="solid", color="burlywood", weight=3]; 1693[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];481 -> 1693[label="",style="solid", color="burlywood", weight=9]; 1693 -> 558[label="",style="solid", color="burlywood", weight=3]; 482[label="primCmpInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];1694[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];482 -> 1694[label="",style="solid", color="burlywood", weight=9]; 1694 -> 559[label="",style="solid", color="burlywood", weight=3]; 1695[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];482 -> 1695[label="",style="solid", color="burlywood", weight=9]; 1695 -> 560[label="",style="solid", color="burlywood", weight=3]; 483[label="primCmpDouble (Double vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];1696[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];483 -> 1696[label="",style="solid", color="burlywood", weight=9]; 1696 -> 561[label="",style="solid", color="burlywood", weight=3]; 484[label="primCmpDouble (Double vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];1697[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];484 -> 1697[label="",style="solid", color="burlywood", weight=9]; 1697 -> 562[label="",style="solid", color="burlywood", weight=3]; 488 -> 307[label="",style="dashed", color="red", weight=0]; 488[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];488 -> 563[label="",style="dashed", color="magenta", weight=3]; 488 -> 564[label="",style="dashed", color="magenta", weight=3]; 489 -> 312[label="",style="dashed", color="red", weight=0]; 489[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];489 -> 565[label="",style="dashed", color="magenta", weight=3]; 489 -> 566[label="",style="dashed", color="magenta", weight=3]; 490[label="vwx400",fontsize=16,color="green",shape="box"];491[label="vwx300",fontsize=16,color="green",shape="box"];453 -> 306[label="",style="dashed", color="red", weight=0]; 453[label="compare vwx300 vwx400",fontsize=16,color="magenta"];453 -> 567[label="",style="dashed", color="magenta", weight=3]; 453 -> 568[label="",style="dashed", color="magenta", weight=3]; 452[label="vwx29 == LT",fontsize=16,color="burlywood",shape="triangle"];1698[label="vwx29/LT",fontsize=10,color="white",style="solid",shape="box"];452 -> 1698[label="",style="solid", color="burlywood", weight=9]; 1698 -> 569[label="",style="solid", color="burlywood", weight=3]; 1699[label="vwx29/EQ",fontsize=10,color="white",style="solid",shape="box"];452 -> 1699[label="",style="solid", color="burlywood", weight=9]; 1699 -> 570[label="",style="solid", color="burlywood", weight=3]; 1700[label="vwx29/GT",fontsize=10,color="white",style="solid",shape="box"];452 -> 1700[label="",style="solid", color="burlywood", weight=9]; 1700 -> 571[label="",style="solid", color="burlywood", weight=3]; 454 -> 307[label="",style="dashed", color="red", weight=0]; 454[label="compare vwx300 vwx400",fontsize=16,color="magenta"];454 -> 572[label="",style="dashed", color="magenta", weight=3]; 454 -> 573[label="",style="dashed", color="magenta", weight=3]; 455[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];455 -> 574[label="",style="solid", color="black", weight=3]; 456 -> 308[label="",style="dashed", color="red", weight=0]; 456[label="compare vwx300 vwx400",fontsize=16,color="magenta"];456 -> 575[label="",style="dashed", color="magenta", weight=3]; 456 -> 576[label="",style="dashed", color="magenta", weight=3]; 457 -> 309[label="",style="dashed", color="red", weight=0]; 457[label="compare vwx300 vwx400",fontsize=16,color="magenta"];457 -> 577[label="",style="dashed", color="magenta", weight=3]; 457 -> 578[label="",style="dashed", color="magenta", weight=3]; 458[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];458 -> 579[label="",style="solid", color="black", weight=3]; 459[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];459 -> 580[label="",style="solid", color="black", weight=3]; 460 -> 310[label="",style="dashed", color="red", weight=0]; 460[label="compare vwx300 vwx400",fontsize=16,color="magenta"];460 -> 581[label="",style="dashed", color="magenta", weight=3]; 460 -> 582[label="",style="dashed", color="magenta", weight=3]; 461[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];461 -> 583[label="",style="solid", color="black", weight=3]; 462[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];462 -> 584[label="",style="solid", color="black", weight=3]; 463 -> 311[label="",style="dashed", color="red", weight=0]; 463[label="compare vwx300 vwx400",fontsize=16,color="magenta"];463 -> 585[label="",style="dashed", color="magenta", weight=3]; 463 -> 586[label="",style="dashed", color="magenta", weight=3]; 464[label="compare vwx300 vwx400",fontsize=16,color="black",shape="triangle"];464 -> 587[label="",style="solid", color="black", weight=3]; 465 -> 312[label="",style="dashed", color="red", weight=0]; 465[label="compare vwx300 vwx400",fontsize=16,color="magenta"];465 -> 588[label="",style="dashed", color="magenta", weight=3]; 465 -> 589[label="",style="dashed", color="magenta", weight=3]; 466 -> 313[label="",style="dashed", color="red", weight=0]; 466[label="compare vwx300 vwx400",fontsize=16,color="magenta"];466 -> 590[label="",style="dashed", color="magenta", weight=3]; 466 -> 591[label="",style="dashed", color="magenta", weight=3]; 486[label="vwx25",fontsize=16,color="green",shape="box"];487[label="vwx23 == vwx24",fontsize=16,color="blue",shape="box"];1701[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1701[label="",style="solid", color="blue", weight=9]; 1701 -> 592[label="",style="solid", color="blue", weight=3]; 1702[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1702[label="",style="solid", color="blue", weight=9]; 1702 -> 593[label="",style="solid", color="blue", weight=3]; 1703[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1703[label="",style="solid", color="blue", weight=9]; 1703 -> 594[label="",style="solid", color="blue", weight=3]; 1704[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1704[label="",style="solid", color="blue", weight=9]; 1704 -> 595[label="",style="solid", color="blue", weight=3]; 1705[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1705[label="",style="solid", color="blue", weight=9]; 1705 -> 596[label="",style="solid", color="blue", weight=3]; 1706[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1706[label="",style="solid", color="blue", weight=9]; 1706 -> 597[label="",style="solid", color="blue", weight=3]; 1707[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1707[label="",style="solid", color="blue", weight=9]; 1707 -> 598[label="",style="solid", color="blue", weight=3]; 1708[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1708[label="",style="solid", color="blue", weight=9]; 1708 -> 599[label="",style="solid", color="blue", weight=3]; 1709[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1709[label="",style="solid", color="blue", weight=9]; 1709 -> 600[label="",style="solid", color="blue", weight=3]; 1710[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1710[label="",style="solid", color="blue", weight=9]; 1710 -> 601[label="",style="solid", color="blue", weight=3]; 1711[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1711[label="",style="solid", color="blue", weight=9]; 1711 -> 602[label="",style="solid", color="blue", weight=3]; 1712[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1712[label="",style="solid", color="blue", weight=9]; 1712 -> 603[label="",style="solid", color="blue", weight=3]; 1713[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1713[label="",style="solid", color="blue", weight=9]; 1713 -> 604[label="",style="solid", color="blue", weight=3]; 1714[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 1714[label="",style="solid", color="blue", weight=9]; 1714 -> 605[label="",style="solid", color="blue", weight=3]; 485[label="vwx33 && vwx34",fontsize=16,color="burlywood",shape="triangle"];1715[label="vwx33/False",fontsize=10,color="white",style="solid",shape="box"];485 -> 1715[label="",style="solid", color="burlywood", weight=9]; 1715 -> 606[label="",style="solid", color="burlywood", weight=3]; 1716[label="vwx33/True",fontsize=10,color="white",style="solid",shape="box"];485 -> 1716[label="",style="solid", color="burlywood", weight=9]; 1716 -> 607[label="",style="solid", color="burlywood", weight=3]; 493 -> 308[label="",style="dashed", color="red", weight=0]; 493[label="compare vwx301 vwx401",fontsize=16,color="magenta"];493 -> 608[label="",style="dashed", color="magenta", weight=3]; 493 -> 609[label="",style="dashed", color="magenta", weight=3]; 492[label="primCompAux vwx300 vwx400 vwx35",fontsize=16,color="black",shape="triangle"];492 -> 610[label="",style="solid", color="black", weight=3]; 494[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];1717[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];494 -> 1717[label="",style="solid", color="burlywood", weight=9]; 1717 -> 611[label="",style="solid", color="burlywood", weight=3]; 1718[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];494 -> 1718[label="",style="solid", color="burlywood", weight=9]; 1718 -> 612[label="",style="solid", color="burlywood", weight=3]; 495[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];1719[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];495 -> 1719[label="",style="solid", color="burlywood", weight=9]; 1719 -> 613[label="",style="solid", color="burlywood", weight=3]; 1720[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];495 -> 1720[label="",style="solid", color="burlywood", weight=9]; 1720 -> 614[label="",style="solid", color="burlywood", weight=3]; 496[label="vwx301",fontsize=16,color="green",shape="box"];497[label="vwx401",fontsize=16,color="green",shape="box"];498[label="vwx301",fontsize=16,color="green",shape="box"];499[label="vwx401",fontsize=16,color="green",shape="box"];500[label="vwx301",fontsize=16,color="green",shape="box"];501[label="vwx401",fontsize=16,color="green",shape="box"];502[label="vwx301",fontsize=16,color="green",shape="box"];503[label="vwx401",fontsize=16,color="green",shape="box"];504[label="vwx301",fontsize=16,color="green",shape="box"];505[label="vwx401",fontsize=16,color="green",shape="box"];506[label="vwx301",fontsize=16,color="green",shape="box"];507[label="vwx401",fontsize=16,color="green",shape="box"];508[label="vwx301",fontsize=16,color="green",shape="box"];509[label="vwx401",fontsize=16,color="green",shape="box"];510[label="vwx301",fontsize=16,color="green",shape="box"];511[label="vwx401",fontsize=16,color="green",shape="box"];512[label="vwx301",fontsize=16,color="green",shape="box"];513[label="vwx401",fontsize=16,color="green",shape="box"];514[label="vwx301",fontsize=16,color="green",shape="box"];515[label="vwx401",fontsize=16,color="green",shape="box"];516[label="vwx301",fontsize=16,color="green",shape="box"];517[label="vwx401",fontsize=16,color="green",shape="box"];518[label="vwx301",fontsize=16,color="green",shape="box"];519[label="vwx401",fontsize=16,color="green",shape="box"];520[label="vwx301",fontsize=16,color="green",shape="box"];521[label="vwx401",fontsize=16,color="green",shape="box"];522[label="vwx301",fontsize=16,color="green",shape="box"];523[label="vwx401",fontsize=16,color="green",shape="box"];524[label="vwx402",fontsize=16,color="green",shape="box"];525[label="vwx302",fontsize=16,color="green",shape="box"];526[label="vwx402",fontsize=16,color="green",shape="box"];527[label="vwx302",fontsize=16,color="green",shape="box"];528[label="vwx402",fontsize=16,color="green",shape="box"];529[label="vwx302",fontsize=16,color="green",shape="box"];530[label="vwx402",fontsize=16,color="green",shape="box"];531[label="vwx302",fontsize=16,color="green",shape="box"];532[label="vwx402",fontsize=16,color="green",shape="box"];533[label="vwx302",fontsize=16,color="green",shape="box"];534[label="vwx302",fontsize=16,color="green",shape="box"];535[label="vwx402",fontsize=16,color="green",shape="box"];536[label="vwx402",fontsize=16,color="green",shape="box"];537[label="vwx302",fontsize=16,color="green",shape="box"];538[label="vwx402",fontsize=16,color="green",shape="box"];539[label="vwx302",fontsize=16,color="green",shape="box"];540[label="vwx402",fontsize=16,color="green",shape="box"];541[label="vwx302",fontsize=16,color="green",shape="box"];542[label="vwx402",fontsize=16,color="green",shape="box"];543[label="vwx302",fontsize=16,color="green",shape="box"];544[label="vwx402",fontsize=16,color="green",shape="box"];545[label="vwx302",fontsize=16,color="green",shape="box"];546[label="vwx402",fontsize=16,color="green",shape="box"];547[label="vwx302",fontsize=16,color="green",shape="box"];548[label="vwx402",fontsize=16,color="green",shape="box"];549[label="vwx302",fontsize=16,color="green",shape="box"];550[label="vwx402",fontsize=16,color="green",shape="box"];551[label="vwx302",fontsize=16,color="green",shape="box"];552[label="primCmpNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];1721[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];552 -> 1721[label="",style="solid", color="burlywood", weight=9]; 1721 -> 615[label="",style="solid", color="burlywood", weight=3]; 1722[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];552 -> 1722[label="",style="solid", color="burlywood", weight=9]; 1722 -> 616[label="",style="solid", color="burlywood", weight=3]; 553[label="primCmpInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];553 -> 617[label="",style="solid", color="black", weight=3]; 554[label="primCmpInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];554 -> 618[label="",style="solid", color="black", weight=3]; 555[label="primCmpInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1723[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];555 -> 1723[label="",style="solid", color="burlywood", weight=9]; 1723 -> 619[label="",style="solid", color="burlywood", weight=3]; 1724[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];555 -> 1724[label="",style="solid", color="burlywood", weight=9]; 1724 -> 620[label="",style="solid", color="burlywood", weight=3]; 556[label="primCmpInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1725[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];556 -> 1725[label="",style="solid", color="burlywood", weight=9]; 1725 -> 621[label="",style="solid", color="burlywood", weight=3]; 1726[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];556 -> 1726[label="",style="solid", color="burlywood", weight=9]; 1726 -> 622[label="",style="solid", color="burlywood", weight=3]; 557[label="primCmpInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];557 -> 623[label="",style="solid", color="black", weight=3]; 558[label="primCmpInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];558 -> 624[label="",style="solid", color="black", weight=3]; 559[label="primCmpInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1727[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];559 -> 1727[label="",style="solid", color="burlywood", weight=9]; 1727 -> 625[label="",style="solid", color="burlywood", weight=3]; 1728[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];559 -> 1728[label="",style="solid", color="burlywood", weight=9]; 1728 -> 626[label="",style="solid", color="burlywood", weight=3]; 560[label="primCmpInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1729[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];560 -> 1729[label="",style="solid", color="burlywood", weight=9]; 1729 -> 627[label="",style="solid", color="burlywood", weight=3]; 1730[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];560 -> 1730[label="",style="solid", color="burlywood", weight=9]; 1730 -> 628[label="",style="solid", color="burlywood", weight=3]; 561[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];1731[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];561 -> 1731[label="",style="solid", color="burlywood", weight=9]; 1731 -> 629[label="",style="solid", color="burlywood", weight=3]; 1732[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];561 -> 1732[label="",style="solid", color="burlywood", weight=9]; 1732 -> 630[label="",style="solid", color="burlywood", weight=3]; 562[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];1733[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];562 -> 1733[label="",style="solid", color="burlywood", weight=9]; 1733 -> 631[label="",style="solid", color="burlywood", weight=3]; 1734[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];562 -> 1734[label="",style="solid", color="burlywood", weight=9]; 1734 -> 632[label="",style="solid", color="burlywood", weight=3]; 563[label="vwx400 * vwx301",fontsize=16,color="burlywood",shape="triangle"];1735[label="vwx400/Integer vwx4000",fontsize=10,color="white",style="solid",shape="box"];563 -> 1735[label="",style="solid", color="burlywood", weight=9]; 1735 -> 633[label="",style="solid", color="burlywood", weight=3]; 564 -> 563[label="",style="dashed", color="red", weight=0]; 564[label="vwx300 * vwx401",fontsize=16,color="magenta"];564 -> 634[label="",style="dashed", color="magenta", weight=3]; 564 -> 635[label="",style="dashed", color="magenta", weight=3]; 565[label="vwx400 * vwx301",fontsize=16,color="black",shape="triangle"];565 -> 636[label="",style="solid", color="black", weight=3]; 566 -> 565[label="",style="dashed", color="red", weight=0]; 566[label="vwx300 * vwx401",fontsize=16,color="magenta"];566 -> 637[label="",style="dashed", color="magenta", weight=3]; 566 -> 638[label="",style="dashed", color="magenta", weight=3]; 567[label="vwx400",fontsize=16,color="green",shape="box"];568[label="vwx300",fontsize=16,color="green",shape="box"];569[label="LT == LT",fontsize=16,color="black",shape="box"];569 -> 639[label="",style="solid", color="black", weight=3]; 570[label="EQ == LT",fontsize=16,color="black",shape="box"];570 -> 640[label="",style="solid", color="black", weight=3]; 571[label="GT == LT",fontsize=16,color="black",shape="box"];571 -> 641[label="",style="solid", color="black", weight=3]; 572[label="vwx400",fontsize=16,color="green",shape="box"];573[label="vwx300",fontsize=16,color="green",shape="box"];574[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];574 -> 642[label="",style="solid", color="black", weight=3]; 575[label="vwx400",fontsize=16,color="green",shape="box"];576[label="vwx300",fontsize=16,color="green",shape="box"];577[label="vwx400",fontsize=16,color="green",shape="box"];578[label="vwx300",fontsize=16,color="green",shape="box"];579[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];579 -> 643[label="",style="solid", color="black", weight=3]; 580[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];580 -> 644[label="",style="solid", color="black", weight=3]; 581[label="vwx400",fontsize=16,color="green",shape="box"];582[label="vwx300",fontsize=16,color="green",shape="box"];583[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];583 -> 645[label="",style="solid", color="black", weight=3]; 584[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];584 -> 646[label="",style="solid", color="black", weight=3]; 585[label="vwx400",fontsize=16,color="green",shape="box"];586[label="vwx300",fontsize=16,color="green",shape="box"];587[label="compare3 vwx300 vwx400",fontsize=16,color="black",shape="box"];587 -> 647[label="",style="solid", color="black", weight=3]; 588[label="vwx400",fontsize=16,color="green",shape="box"];589[label="vwx300",fontsize=16,color="green",shape="box"];590[label="vwx400",fontsize=16,color="green",shape="box"];591[label="vwx300",fontsize=16,color="green",shape="box"];592[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1736[label="vwx23/False",fontsize=10,color="white",style="solid",shape="box"];592 -> 1736[label="",style="solid", color="burlywood", weight=9]; 1736 -> 648[label="",style="solid", color="burlywood", weight=3]; 1737[label="vwx23/True",fontsize=10,color="white",style="solid",shape="box"];592 -> 1737[label="",style="solid", color="burlywood", weight=9]; 1737 -> 649[label="",style="solid", color="burlywood", weight=3]; 593[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1738[label="vwx23/LT",fontsize=10,color="white",style="solid",shape="box"];593 -> 1738[label="",style="solid", color="burlywood", weight=9]; 1738 -> 650[label="",style="solid", color="burlywood", weight=3]; 1739[label="vwx23/EQ",fontsize=10,color="white",style="solid",shape="box"];593 -> 1739[label="",style="solid", color="burlywood", weight=9]; 1739 -> 651[label="",style="solid", color="burlywood", weight=3]; 1740[label="vwx23/GT",fontsize=10,color="white",style="solid",shape="box"];593 -> 1740[label="",style="solid", color="burlywood", weight=9]; 1740 -> 652[label="",style="solid", color="burlywood", weight=3]; 594[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1741[label="vwx23/Integer vwx230",fontsize=10,color="white",style="solid",shape="box"];594 -> 1741[label="",style="solid", color="burlywood", weight=9]; 1741 -> 653[label="",style="solid", color="burlywood", weight=3]; 595[label="vwx23 == vwx24",fontsize=16,color="black",shape="triangle"];595 -> 654[label="",style="solid", color="black", weight=3]; 596[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1742[label="vwx23/vwx230 : vwx231",fontsize=10,color="white",style="solid",shape="box"];596 -> 1742[label="",style="solid", color="burlywood", weight=9]; 1742 -> 655[label="",style="solid", color="burlywood", weight=3]; 1743[label="vwx23/[]",fontsize=10,color="white",style="solid",shape="box"];596 -> 1743[label="",style="solid", color="burlywood", weight=9]; 1743 -> 656[label="",style="solid", color="burlywood", weight=3]; 597[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1744[label="vwx23/Left vwx230",fontsize=10,color="white",style="solid",shape="box"];597 -> 1744[label="",style="solid", color="burlywood", weight=9]; 1744 -> 657[label="",style="solid", color="burlywood", weight=3]; 1745[label="vwx23/Right vwx230",fontsize=10,color="white",style="solid",shape="box"];597 -> 1745[label="",style="solid", color="burlywood", weight=9]; 1745 -> 658[label="",style="solid", color="burlywood", weight=3]; 598[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1746[label="vwx23/()",fontsize=10,color="white",style="solid",shape="box"];598 -> 1746[label="",style="solid", color="burlywood", weight=9]; 1746 -> 659[label="",style="solid", color="burlywood", weight=3]; 599[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1747[label="vwx23/vwx230 :% vwx231",fontsize=10,color="white",style="solid",shape="box"];599 -> 1747[label="",style="solid", color="burlywood", weight=9]; 1747 -> 660[label="",style="solid", color="burlywood", weight=3]; 600[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1748[label="vwx23/(vwx230,vwx231)",fontsize=10,color="white",style="solid",shape="box"];600 -> 1748[label="",style="solid", color="burlywood", weight=9]; 1748 -> 661[label="",style="solid", color="burlywood", weight=3]; 601[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1749[label="vwx23/Nothing",fontsize=10,color="white",style="solid",shape="box"];601 -> 1749[label="",style="solid", color="burlywood", weight=9]; 1749 -> 662[label="",style="solid", color="burlywood", weight=3]; 1750[label="vwx23/Just vwx230",fontsize=10,color="white",style="solid",shape="box"];601 -> 1750[label="",style="solid", color="burlywood", weight=9]; 1750 -> 663[label="",style="solid", color="burlywood", weight=3]; 602[label="vwx23 == vwx24",fontsize=16,color="black",shape="triangle"];602 -> 664[label="",style="solid", color="black", weight=3]; 603[label="vwx23 == vwx24",fontsize=16,color="black",shape="triangle"];603 -> 665[label="",style="solid", color="black", weight=3]; 604[label="vwx23 == vwx24",fontsize=16,color="burlywood",shape="triangle"];1751[label="vwx23/(vwx230,vwx231,vwx232)",fontsize=10,color="white",style="solid",shape="box"];604 -> 1751[label="",style="solid", color="burlywood", weight=9]; 1751 -> 666[label="",style="solid", color="burlywood", weight=3]; 605[label="vwx23 == vwx24",fontsize=16,color="black",shape="triangle"];605 -> 667[label="",style="solid", color="black", weight=3]; 606[label="False && vwx34",fontsize=16,color="black",shape="box"];606 -> 668[label="",style="solid", color="black", weight=3]; 607[label="True && vwx34",fontsize=16,color="black",shape="box"];607 -> 669[label="",style="solid", color="black", weight=3]; 608[label="vwx401",fontsize=16,color="green",shape="box"];609[label="vwx301",fontsize=16,color="green",shape="box"];610 -> 670[label="",style="dashed", color="red", weight=0]; 610[label="primCompAux0 vwx35 (compare vwx300 vwx400)",fontsize=16,color="magenta"];610 -> 671[label="",style="dashed", color="magenta", weight=3]; 610 -> 672[label="",style="dashed", color="magenta", weight=3]; 611[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];611 -> 673[label="",style="solid", color="black", weight=3]; 612[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];612 -> 674[label="",style="solid", color="black", weight=3]; 613[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];613 -> 675[label="",style="solid", color="black", weight=3]; 614[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];614 -> 676[label="",style="solid", color="black", weight=3]; 615[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];1752[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];615 -> 1752[label="",style="solid", color="burlywood", weight=9]; 1752 -> 677[label="",style="solid", color="burlywood", weight=3]; 1753[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];615 -> 1753[label="",style="solid", color="burlywood", weight=9]; 1753 -> 678[label="",style="solid", color="burlywood", weight=3]; 616[label="primCmpNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];1754[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];616 -> 1754[label="",style="solid", color="burlywood", weight=9]; 1754 -> 679[label="",style="solid", color="burlywood", weight=3]; 1755[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];616 -> 1755[label="",style="solid", color="burlywood", weight=9]; 1755 -> 680[label="",style="solid", color="burlywood", weight=3]; 617 -> 552[label="",style="dashed", color="red", weight=0]; 617[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="magenta"];617 -> 681[label="",style="dashed", color="magenta", weight=3]; 617 -> 682[label="",style="dashed", color="magenta", weight=3]; 618[label="GT",fontsize=16,color="green",shape="box"];619[label="primCmpInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];619 -> 683[label="",style="solid", color="black", weight=3]; 620[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];620 -> 684[label="",style="solid", color="black", weight=3]; 621[label="primCmpInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];621 -> 685[label="",style="solid", color="black", weight=3]; 622[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];622 -> 686[label="",style="solid", color="black", weight=3]; 623[label="LT",fontsize=16,color="green",shape="box"];624 -> 552[label="",style="dashed", color="red", weight=0]; 624[label="primCmpNat vwx400 (Succ vwx3000)",fontsize=16,color="magenta"];624 -> 687[label="",style="dashed", color="magenta", weight=3]; 624 -> 688[label="",style="dashed", color="magenta", weight=3]; 625[label="primCmpInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];625 -> 689[label="",style="solid", color="black", weight=3]; 626[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];626 -> 690[label="",style="solid", color="black", weight=3]; 627[label="primCmpInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];627 -> 691[label="",style="solid", color="black", weight=3]; 628[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];628 -> 692[label="",style="solid", color="black", weight=3]; 629[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];629 -> 693[label="",style="solid", color="black", weight=3]; 630[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];630 -> 694[label="",style="solid", color="black", weight=3]; 631[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];631 -> 695[label="",style="solid", color="black", weight=3]; 632[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];632 -> 696[label="",style="solid", color="black", weight=3]; 633[label="Integer vwx4000 * vwx301",fontsize=16,color="burlywood",shape="box"];1756[label="vwx301/Integer vwx3010",fontsize=10,color="white",style="solid",shape="box"];633 -> 1756[label="",style="solid", color="burlywood", weight=9]; 1756 -> 697[label="",style="solid", color="burlywood", weight=3]; 634[label="vwx300",fontsize=16,color="green",shape="box"];635[label="vwx401",fontsize=16,color="green",shape="box"];636[label="primMulInt vwx400 vwx301",fontsize=16,color="burlywood",shape="triangle"];1757[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];636 -> 1757[label="",style="solid", color="burlywood", weight=9]; 1757 -> 698[label="",style="solid", color="burlywood", weight=3]; 1758[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];636 -> 1758[label="",style="solid", color="burlywood", weight=9]; 1758 -> 699[label="",style="solid", color="burlywood", weight=3]; 637[label="vwx300",fontsize=16,color="green",shape="box"];638[label="vwx401",fontsize=16,color="green",shape="box"];639[label="True",fontsize=16,color="green",shape="box"];640[label="False",fontsize=16,color="green",shape="box"];641[label="False",fontsize=16,color="green",shape="box"];642 -> 700[label="",style="dashed", color="red", weight=0]; 642[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];642 -> 701[label="",style="dashed", color="magenta", weight=3]; 643 -> 702[label="",style="dashed", color="red", weight=0]; 643[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];643 -> 703[label="",style="dashed", color="magenta", weight=3]; 644 -> 704[label="",style="dashed", color="red", weight=0]; 644[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];644 -> 705[label="",style="dashed", color="magenta", weight=3]; 645 -> 706[label="",style="dashed", color="red", weight=0]; 645[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];645 -> 707[label="",style="dashed", color="magenta", weight=3]; 646 -> 708[label="",style="dashed", color="red", weight=0]; 646[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];646 -> 709[label="",style="dashed", color="magenta", weight=3]; 647 -> 710[label="",style="dashed", color="red", weight=0]; 647[label="compare2 vwx300 vwx400 (vwx300 == vwx400)",fontsize=16,color="magenta"];647 -> 711[label="",style="dashed", color="magenta", weight=3]; 648[label="False == vwx24",fontsize=16,color="burlywood",shape="box"];1759[label="vwx24/False",fontsize=10,color="white",style="solid",shape="box"];648 -> 1759[label="",style="solid", color="burlywood", weight=9]; 1759 -> 712[label="",style="solid", color="burlywood", weight=3]; 1760[label="vwx24/True",fontsize=10,color="white",style="solid",shape="box"];648 -> 1760[label="",style="solid", color="burlywood", weight=9]; 1760 -> 713[label="",style="solid", color="burlywood", weight=3]; 649[label="True == vwx24",fontsize=16,color="burlywood",shape="box"];1761[label="vwx24/False",fontsize=10,color="white",style="solid",shape="box"];649 -> 1761[label="",style="solid", color="burlywood", weight=9]; 1761 -> 714[label="",style="solid", color="burlywood", weight=3]; 1762[label="vwx24/True",fontsize=10,color="white",style="solid",shape="box"];649 -> 1762[label="",style="solid", color="burlywood", weight=9]; 1762 -> 715[label="",style="solid", color="burlywood", weight=3]; 650[label="LT == vwx24",fontsize=16,color="burlywood",shape="box"];1763[label="vwx24/LT",fontsize=10,color="white",style="solid",shape="box"];650 -> 1763[label="",style="solid", color="burlywood", weight=9]; 1763 -> 716[label="",style="solid", color="burlywood", weight=3]; 1764[label="vwx24/EQ",fontsize=10,color="white",style="solid",shape="box"];650 -> 1764[label="",style="solid", color="burlywood", weight=9]; 1764 -> 717[label="",style="solid", color="burlywood", weight=3]; 1765[label="vwx24/GT",fontsize=10,color="white",style="solid",shape="box"];650 -> 1765[label="",style="solid", color="burlywood", weight=9]; 1765 -> 718[label="",style="solid", color="burlywood", weight=3]; 651[label="EQ == vwx24",fontsize=16,color="burlywood",shape="box"];1766[label="vwx24/LT",fontsize=10,color="white",style="solid",shape="box"];651 -> 1766[label="",style="solid", color="burlywood", weight=9]; 1766 -> 719[label="",style="solid", color="burlywood", weight=3]; 1767[label="vwx24/EQ",fontsize=10,color="white",style="solid",shape="box"];651 -> 1767[label="",style="solid", color="burlywood", weight=9]; 1767 -> 720[label="",style="solid", color="burlywood", weight=3]; 1768[label="vwx24/GT",fontsize=10,color="white",style="solid",shape="box"];651 -> 1768[label="",style="solid", color="burlywood", weight=9]; 1768 -> 721[label="",style="solid", color="burlywood", weight=3]; 652[label="GT == vwx24",fontsize=16,color="burlywood",shape="box"];1769[label="vwx24/LT",fontsize=10,color="white",style="solid",shape="box"];652 -> 1769[label="",style="solid", color="burlywood", weight=9]; 1769 -> 722[label="",style="solid", color="burlywood", weight=3]; 1770[label="vwx24/EQ",fontsize=10,color="white",style="solid",shape="box"];652 -> 1770[label="",style="solid", color="burlywood", weight=9]; 1770 -> 723[label="",style="solid", color="burlywood", weight=3]; 1771[label="vwx24/GT",fontsize=10,color="white",style="solid",shape="box"];652 -> 1771[label="",style="solid", color="burlywood", weight=9]; 1771 -> 724[label="",style="solid", color="burlywood", weight=3]; 653[label="Integer vwx230 == vwx24",fontsize=16,color="burlywood",shape="box"];1772[label="vwx24/Integer vwx240",fontsize=10,color="white",style="solid",shape="box"];653 -> 1772[label="",style="solid", color="burlywood", weight=9]; 1772 -> 725[label="",style="solid", color="burlywood", weight=3]; 654[label="primEqChar vwx23 vwx24",fontsize=16,color="burlywood",shape="box"];1773[label="vwx23/Char vwx230",fontsize=10,color="white",style="solid",shape="box"];654 -> 1773[label="",style="solid", color="burlywood", weight=9]; 1773 -> 726[label="",style="solid", color="burlywood", weight=3]; 655[label="vwx230 : vwx231 == vwx24",fontsize=16,color="burlywood",shape="box"];1774[label="vwx24/vwx240 : vwx241",fontsize=10,color="white",style="solid",shape="box"];655 -> 1774[label="",style="solid", color="burlywood", weight=9]; 1774 -> 727[label="",style="solid", color="burlywood", weight=3]; 1775[label="vwx24/[]",fontsize=10,color="white",style="solid",shape="box"];655 -> 1775[label="",style="solid", color="burlywood", weight=9]; 1775 -> 728[label="",style="solid", color="burlywood", weight=3]; 656[label="[] == vwx24",fontsize=16,color="burlywood",shape="box"];1776[label="vwx24/vwx240 : vwx241",fontsize=10,color="white",style="solid",shape="box"];656 -> 1776[label="",style="solid", color="burlywood", weight=9]; 1776 -> 729[label="",style="solid", color="burlywood", weight=3]; 1777[label="vwx24/[]",fontsize=10,color="white",style="solid",shape="box"];656 -> 1777[label="",style="solid", color="burlywood", weight=9]; 1777 -> 730[label="",style="solid", color="burlywood", weight=3]; 657[label="Left vwx230 == vwx24",fontsize=16,color="burlywood",shape="box"];1778[label="vwx24/Left vwx240",fontsize=10,color="white",style="solid",shape="box"];657 -> 1778[label="",style="solid", color="burlywood", weight=9]; 1778 -> 731[label="",style="solid", color="burlywood", weight=3]; 1779[label="vwx24/Right vwx240",fontsize=10,color="white",style="solid",shape="box"];657 -> 1779[label="",style="solid", color="burlywood", weight=9]; 1779 -> 732[label="",style="solid", color="burlywood", weight=3]; 658[label="Right vwx230 == vwx24",fontsize=16,color="burlywood",shape="box"];1780[label="vwx24/Left vwx240",fontsize=10,color="white",style="solid",shape="box"];658 -> 1780[label="",style="solid", color="burlywood", weight=9]; 1780 -> 733[label="",style="solid", color="burlywood", weight=3]; 1781[label="vwx24/Right vwx240",fontsize=10,color="white",style="solid",shape="box"];658 -> 1781[label="",style="solid", color="burlywood", weight=9]; 1781 -> 734[label="",style="solid", color="burlywood", weight=3]; 659[label="() == vwx24",fontsize=16,color="burlywood",shape="box"];1782[label="vwx24/()",fontsize=10,color="white",style="solid",shape="box"];659 -> 1782[label="",style="solid", color="burlywood", weight=9]; 1782 -> 735[label="",style="solid", color="burlywood", weight=3]; 660[label="vwx230 :% vwx231 == vwx24",fontsize=16,color="burlywood",shape="box"];1783[label="vwx24/vwx240 :% vwx241",fontsize=10,color="white",style="solid",shape="box"];660 -> 1783[label="",style="solid", color="burlywood", weight=9]; 1783 -> 736[label="",style="solid", color="burlywood", weight=3]; 661[label="(vwx230,vwx231) == vwx24",fontsize=16,color="burlywood",shape="box"];1784[label="vwx24/(vwx240,vwx241)",fontsize=10,color="white",style="solid",shape="box"];661 -> 1784[label="",style="solid", color="burlywood", weight=9]; 1784 -> 737[label="",style="solid", color="burlywood", weight=3]; 662[label="Nothing == vwx24",fontsize=16,color="burlywood",shape="box"];1785[label="vwx24/Nothing",fontsize=10,color="white",style="solid",shape="box"];662 -> 1785[label="",style="solid", color="burlywood", weight=9]; 1785 -> 738[label="",style="solid", color="burlywood", weight=3]; 1786[label="vwx24/Just vwx240",fontsize=10,color="white",style="solid",shape="box"];662 -> 1786[label="",style="solid", color="burlywood", weight=9]; 1786 -> 739[label="",style="solid", color="burlywood", weight=3]; 663[label="Just vwx230 == vwx24",fontsize=16,color="burlywood",shape="box"];1787[label="vwx24/Nothing",fontsize=10,color="white",style="solid",shape="box"];663 -> 1787[label="",style="solid", color="burlywood", weight=9]; 1787 -> 740[label="",style="solid", color="burlywood", weight=3]; 1788[label="vwx24/Just vwx240",fontsize=10,color="white",style="solid",shape="box"];663 -> 1788[label="",style="solid", color="burlywood", weight=9]; 1788 -> 741[label="",style="solid", color="burlywood", weight=3]; 664[label="primEqDouble vwx23 vwx24",fontsize=16,color="burlywood",shape="box"];1789[label="vwx23/Double vwx230 vwx231",fontsize=10,color="white",style="solid",shape="box"];664 -> 1789[label="",style="solid", color="burlywood", weight=9]; 1789 -> 742[label="",style="solid", color="burlywood", weight=3]; 665[label="primEqInt vwx23 vwx24",fontsize=16,color="burlywood",shape="triangle"];1790[label="vwx23/Pos vwx230",fontsize=10,color="white",style="solid",shape="box"];665 -> 1790[label="",style="solid", color="burlywood", weight=9]; 1790 -> 743[label="",style="solid", color="burlywood", weight=3]; 1791[label="vwx23/Neg vwx230",fontsize=10,color="white",style="solid",shape="box"];665 -> 1791[label="",style="solid", color="burlywood", weight=9]; 1791 -> 744[label="",style="solid", color="burlywood", weight=3]; 666[label="(vwx230,vwx231,vwx232) == vwx24",fontsize=16,color="burlywood",shape="box"];1792[label="vwx24/(vwx240,vwx241,vwx242)",fontsize=10,color="white",style="solid",shape="box"];666 -> 1792[label="",style="solid", color="burlywood", weight=9]; 1792 -> 745[label="",style="solid", color="burlywood", weight=3]; 667[label="primEqFloat vwx23 vwx24",fontsize=16,color="burlywood",shape="box"];1793[label="vwx23/Float vwx230 vwx231",fontsize=10,color="white",style="solid",shape="box"];667 -> 1793[label="",style="solid", color="burlywood", weight=9]; 1793 -> 746[label="",style="solid", color="burlywood", weight=3]; 668[label="False",fontsize=16,color="green",shape="box"];669[label="vwx34",fontsize=16,color="green",shape="box"];671[label="compare vwx300 vwx400",fontsize=16,color="blue",shape="box"];1794[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1794[label="",style="solid", color="blue", weight=9]; 1794 -> 747[label="",style="solid", color="blue", weight=3]; 1795[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1795[label="",style="solid", color="blue", weight=9]; 1795 -> 748[label="",style="solid", color="blue", weight=3]; 1796[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1796[label="",style="solid", color="blue", weight=9]; 1796 -> 749[label="",style="solid", color="blue", weight=3]; 1797[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1797[label="",style="solid", color="blue", weight=9]; 1797 -> 750[label="",style="solid", color="blue", weight=3]; 1798[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1798[label="",style="solid", color="blue", weight=9]; 1798 -> 751[label="",style="solid", color="blue", weight=3]; 1799[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1799[label="",style="solid", color="blue", weight=9]; 1799 -> 752[label="",style="solid", color="blue", weight=3]; 1800[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1800[label="",style="solid", color="blue", weight=9]; 1800 -> 753[label="",style="solid", color="blue", weight=3]; 1801[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1801[label="",style="solid", color="blue", weight=9]; 1801 -> 754[label="",style="solid", color="blue", weight=3]; 1802[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1802[label="",style="solid", color="blue", weight=9]; 1802 -> 755[label="",style="solid", color="blue", weight=3]; 1803[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1803[label="",style="solid", color="blue", weight=9]; 1803 -> 756[label="",style="solid", color="blue", weight=3]; 1804[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1804[label="",style="solid", color="blue", weight=9]; 1804 -> 757[label="",style="solid", color="blue", weight=3]; 1805[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1805[label="",style="solid", color="blue", weight=9]; 1805 -> 758[label="",style="solid", color="blue", weight=3]; 1806[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1806[label="",style="solid", color="blue", weight=9]; 1806 -> 759[label="",style="solid", color="blue", weight=3]; 1807[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];671 -> 1807[label="",style="solid", color="blue", weight=9]; 1807 -> 760[label="",style="solid", color="blue", weight=3]; 672[label="vwx35",fontsize=16,color="green",shape="box"];670[label="primCompAux0 vwx39 vwx40",fontsize=16,color="burlywood",shape="triangle"];1808[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];670 -> 1808[label="",style="solid", color="burlywood", weight=9]; 1808 -> 761[label="",style="solid", color="burlywood", weight=3]; 1809[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];670 -> 1809[label="",style="solid", color="burlywood", weight=9]; 1809 -> 762[label="",style="solid", color="burlywood", weight=3]; 1810[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];670 -> 1810[label="",style="solid", color="burlywood", weight=9]; 1810 -> 763[label="",style="solid", color="burlywood", weight=3]; 673 -> 312[label="",style="dashed", color="red", weight=0]; 673[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];673 -> 764[label="",style="dashed", color="magenta", weight=3]; 673 -> 765[label="",style="dashed", color="magenta", weight=3]; 674 -> 312[label="",style="dashed", color="red", weight=0]; 674[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];674 -> 766[label="",style="dashed", color="magenta", weight=3]; 674 -> 767[label="",style="dashed", color="magenta", weight=3]; 675 -> 312[label="",style="dashed", color="red", weight=0]; 675[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];675 -> 768[label="",style="dashed", color="magenta", weight=3]; 675 -> 769[label="",style="dashed", color="magenta", weight=3]; 676 -> 312[label="",style="dashed", color="red", weight=0]; 676[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];676 -> 770[label="",style="dashed", color="magenta", weight=3]; 676 -> 771[label="",style="dashed", color="magenta", weight=3]; 677[label="primCmpNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];677 -> 772[label="",style="solid", color="black", weight=3]; 678[label="primCmpNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];678 -> 773[label="",style="solid", color="black", weight=3]; 679[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];679 -> 774[label="",style="solid", color="black", weight=3]; 680[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];680 -> 775[label="",style="solid", color="black", weight=3]; 681[label="Succ vwx3000",fontsize=16,color="green",shape="box"];682[label="vwx400",fontsize=16,color="green",shape="box"];683 -> 552[label="",style="dashed", color="red", weight=0]; 683[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="magenta"];683 -> 776[label="",style="dashed", color="magenta", weight=3]; 683 -> 777[label="",style="dashed", color="magenta", weight=3]; 684[label="EQ",fontsize=16,color="green",shape="box"];685[label="GT",fontsize=16,color="green",shape="box"];686[label="EQ",fontsize=16,color="green",shape="box"];687[label="vwx400",fontsize=16,color="green",shape="box"];688[label="Succ vwx3000",fontsize=16,color="green",shape="box"];689[label="LT",fontsize=16,color="green",shape="box"];690[label="EQ",fontsize=16,color="green",shape="box"];691 -> 552[label="",style="dashed", color="red", weight=0]; 691[label="primCmpNat (Succ vwx4000) Zero",fontsize=16,color="magenta"];691 -> 778[label="",style="dashed", color="magenta", weight=3]; 691 -> 779[label="",style="dashed", color="magenta", weight=3]; 692[label="EQ",fontsize=16,color="green",shape="box"];693 -> 312[label="",style="dashed", color="red", weight=0]; 693[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];693 -> 780[label="",style="dashed", color="magenta", weight=3]; 693 -> 781[label="",style="dashed", color="magenta", weight=3]; 694 -> 312[label="",style="dashed", color="red", weight=0]; 694[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];694 -> 782[label="",style="dashed", color="magenta", weight=3]; 694 -> 783[label="",style="dashed", color="magenta", weight=3]; 695 -> 312[label="",style="dashed", color="red", weight=0]; 695[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];695 -> 784[label="",style="dashed", color="magenta", weight=3]; 695 -> 785[label="",style="dashed", color="magenta", weight=3]; 696 -> 312[label="",style="dashed", color="red", weight=0]; 696[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];696 -> 786[label="",style="dashed", color="magenta", weight=3]; 696 -> 787[label="",style="dashed", color="magenta", weight=3]; 697[label="Integer vwx4000 * Integer vwx3010",fontsize=16,color="black",shape="box"];697 -> 788[label="",style="solid", color="black", weight=3]; 698[label="primMulInt (Pos vwx4000) vwx301",fontsize=16,color="burlywood",shape="box"];1811[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];698 -> 1811[label="",style="solid", color="burlywood", weight=9]; 1811 -> 789[label="",style="solid", color="burlywood", weight=3]; 1812[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];698 -> 1812[label="",style="solid", color="burlywood", weight=9]; 1812 -> 790[label="",style="solid", color="burlywood", weight=3]; 699[label="primMulInt (Neg vwx4000) vwx301",fontsize=16,color="burlywood",shape="box"];1813[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];699 -> 1813[label="",style="solid", color="burlywood", weight=9]; 1813 -> 791[label="",style="solid", color="burlywood", weight=3]; 1814[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];699 -> 1814[label="",style="solid", color="burlywood", weight=9]; 1814 -> 792[label="",style="solid", color="burlywood", weight=3]; 701 -> 600[label="",style="dashed", color="red", weight=0]; 701[label="vwx300 == vwx400",fontsize=16,color="magenta"];701 -> 793[label="",style="dashed", color="magenta", weight=3]; 701 -> 794[label="",style="dashed", color="magenta", weight=3]; 700[label="compare2 vwx300 vwx400 vwx41",fontsize=16,color="burlywood",shape="triangle"];1815[label="vwx41/False",fontsize=10,color="white",style="solid",shape="box"];700 -> 1815[label="",style="solid", color="burlywood", weight=9]; 1815 -> 795[label="",style="solid", color="burlywood", weight=3]; 1816[label="vwx41/True",fontsize=10,color="white",style="solid",shape="box"];700 -> 1816[label="",style="solid", color="burlywood", weight=9]; 1816 -> 796[label="",style="solid", color="burlywood", weight=3]; 703 -> 601[label="",style="dashed", color="red", weight=0]; 703[label="vwx300 == vwx400",fontsize=16,color="magenta"];703 -> 797[label="",style="dashed", color="magenta", weight=3]; 703 -> 798[label="",style="dashed", color="magenta", weight=3]; 702[label="compare2 vwx300 vwx400 vwx42",fontsize=16,color="burlywood",shape="triangle"];1817[label="vwx42/False",fontsize=10,color="white",style="solid",shape="box"];702 -> 1817[label="",style="solid", color="burlywood", weight=9]; 1817 -> 799[label="",style="solid", color="burlywood", weight=3]; 1818[label="vwx42/True",fontsize=10,color="white",style="solid",shape="box"];702 -> 1818[label="",style="solid", color="burlywood", weight=9]; 1818 -> 800[label="",style="solid", color="burlywood", weight=3]; 705 -> 592[label="",style="dashed", color="red", weight=0]; 705[label="vwx300 == vwx400",fontsize=16,color="magenta"];705 -> 801[label="",style="dashed", color="magenta", weight=3]; 705 -> 802[label="",style="dashed", color="magenta", weight=3]; 704[label="compare2 vwx300 vwx400 vwx43",fontsize=16,color="burlywood",shape="triangle"];1819[label="vwx43/False",fontsize=10,color="white",style="solid",shape="box"];704 -> 1819[label="",style="solid", color="burlywood", weight=9]; 1819 -> 803[label="",style="solid", color="burlywood", weight=3]; 1820[label="vwx43/True",fontsize=10,color="white",style="solid",shape="box"];704 -> 1820[label="",style="solid", color="burlywood", weight=9]; 1820 -> 804[label="",style="solid", color="burlywood", weight=3]; 707 -> 597[label="",style="dashed", color="red", weight=0]; 707[label="vwx300 == vwx400",fontsize=16,color="magenta"];707 -> 805[label="",style="dashed", color="magenta", weight=3]; 707 -> 806[label="",style="dashed", color="magenta", weight=3]; 706[label="compare2 vwx300 vwx400 vwx44",fontsize=16,color="burlywood",shape="triangle"];1821[label="vwx44/False",fontsize=10,color="white",style="solid",shape="box"];706 -> 1821[label="",style="solid", color="burlywood", weight=9]; 1821 -> 807[label="",style="solid", color="burlywood", weight=3]; 1822[label="vwx44/True",fontsize=10,color="white",style="solid",shape="box"];706 -> 1822[label="",style="solid", color="burlywood", weight=9]; 1822 -> 808[label="",style="solid", color="burlywood", weight=3]; 709 -> 604[label="",style="dashed", color="red", weight=0]; 709[label="vwx300 == vwx400",fontsize=16,color="magenta"];709 -> 809[label="",style="dashed", color="magenta", weight=3]; 709 -> 810[label="",style="dashed", color="magenta", weight=3]; 708[label="compare2 vwx300 vwx400 vwx45",fontsize=16,color="burlywood",shape="triangle"];1823[label="vwx45/False",fontsize=10,color="white",style="solid",shape="box"];708 -> 1823[label="",style="solid", color="burlywood", weight=9]; 1823 -> 811[label="",style="solid", color="burlywood", weight=3]; 1824[label="vwx45/True",fontsize=10,color="white",style="solid",shape="box"];708 -> 1824[label="",style="solid", color="burlywood", weight=9]; 1824 -> 812[label="",style="solid", color="burlywood", weight=3]; 711 -> 593[label="",style="dashed", color="red", weight=0]; 711[label="vwx300 == vwx400",fontsize=16,color="magenta"];711 -> 813[label="",style="dashed", color="magenta", weight=3]; 711 -> 814[label="",style="dashed", color="magenta", weight=3]; 710[label="compare2 vwx300 vwx400 vwx46",fontsize=16,color="burlywood",shape="triangle"];1825[label="vwx46/False",fontsize=10,color="white",style="solid",shape="box"];710 -> 1825[label="",style="solid", color="burlywood", weight=9]; 1825 -> 815[label="",style="solid", color="burlywood", weight=3]; 1826[label="vwx46/True",fontsize=10,color="white",style="solid",shape="box"];710 -> 1826[label="",style="solid", color="burlywood", weight=9]; 1826 -> 816[label="",style="solid", color="burlywood", weight=3]; 712[label="False == False",fontsize=16,color="black",shape="box"];712 -> 817[label="",style="solid", color="black", weight=3]; 713[label="False == True",fontsize=16,color="black",shape="box"];713 -> 818[label="",style="solid", color="black", weight=3]; 714[label="True == False",fontsize=16,color="black",shape="box"];714 -> 819[label="",style="solid", color="black", weight=3]; 715[label="True == True",fontsize=16,color="black",shape="box"];715 -> 820[label="",style="solid", color="black", weight=3]; 716[label="LT == LT",fontsize=16,color="black",shape="box"];716 -> 821[label="",style="solid", color="black", weight=3]; 717[label="LT == EQ",fontsize=16,color="black",shape="box"];717 -> 822[label="",style="solid", color="black", weight=3]; 718[label="LT == GT",fontsize=16,color="black",shape="box"];718 -> 823[label="",style="solid", color="black", weight=3]; 719[label="EQ == LT",fontsize=16,color="black",shape="box"];719 -> 824[label="",style="solid", color="black", weight=3]; 720[label="EQ == EQ",fontsize=16,color="black",shape="box"];720 -> 825[label="",style="solid", color="black", weight=3]; 721[label="EQ == GT",fontsize=16,color="black",shape="box"];721 -> 826[label="",style="solid", color="black", weight=3]; 722[label="GT == LT",fontsize=16,color="black",shape="box"];722 -> 827[label="",style="solid", color="black", weight=3]; 723[label="GT == EQ",fontsize=16,color="black",shape="box"];723 -> 828[label="",style="solid", color="black", weight=3]; 724[label="GT == GT",fontsize=16,color="black",shape="box"];724 -> 829[label="",style="solid", color="black", weight=3]; 725[label="Integer vwx230 == Integer vwx240",fontsize=16,color="black",shape="box"];725 -> 830[label="",style="solid", color="black", weight=3]; 726[label="primEqChar (Char vwx230) vwx24",fontsize=16,color="burlywood",shape="box"];1827[label="vwx24/Char vwx240",fontsize=10,color="white",style="solid",shape="box"];726 -> 1827[label="",style="solid", color="burlywood", weight=9]; 1827 -> 831[label="",style="solid", color="burlywood", weight=3]; 727[label="vwx230 : vwx231 == vwx240 : vwx241",fontsize=16,color="black",shape="box"];727 -> 832[label="",style="solid", color="black", weight=3]; 728[label="vwx230 : vwx231 == []",fontsize=16,color="black",shape="box"];728 -> 833[label="",style="solid", color="black", weight=3]; 729[label="[] == vwx240 : vwx241",fontsize=16,color="black",shape="box"];729 -> 834[label="",style="solid", color="black", weight=3]; 730[label="[] == []",fontsize=16,color="black",shape="box"];730 -> 835[label="",style="solid", color="black", weight=3]; 731[label="Left vwx230 == Left vwx240",fontsize=16,color="black",shape="box"];731 -> 836[label="",style="solid", color="black", weight=3]; 732[label="Left vwx230 == Right vwx240",fontsize=16,color="black",shape="box"];732 -> 837[label="",style="solid", color="black", weight=3]; 733[label="Right vwx230 == Left vwx240",fontsize=16,color="black",shape="box"];733 -> 838[label="",style="solid", color="black", weight=3]; 734[label="Right vwx230 == Right vwx240",fontsize=16,color="black",shape="box"];734 -> 839[label="",style="solid", color="black", weight=3]; 735[label="() == ()",fontsize=16,color="black",shape="box"];735 -> 840[label="",style="solid", color="black", weight=3]; 736[label="vwx230 :% vwx231 == vwx240 :% vwx241",fontsize=16,color="black",shape="box"];736 -> 841[label="",style="solid", color="black", weight=3]; 737[label="(vwx230,vwx231) == (vwx240,vwx241)",fontsize=16,color="black",shape="box"];737 -> 842[label="",style="solid", color="black", weight=3]; 738[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];738 -> 843[label="",style="solid", color="black", weight=3]; 739[label="Nothing == Just vwx240",fontsize=16,color="black",shape="box"];739 -> 844[label="",style="solid", color="black", weight=3]; 740[label="Just vwx230 == Nothing",fontsize=16,color="black",shape="box"];740 -> 845[label="",style="solid", color="black", weight=3]; 741[label="Just vwx230 == Just vwx240",fontsize=16,color="black",shape="box"];741 -> 846[label="",style="solid", color="black", weight=3]; 742[label="primEqDouble (Double vwx230 vwx231) vwx24",fontsize=16,color="burlywood",shape="box"];1828[label="vwx24/Double vwx240 vwx241",fontsize=10,color="white",style="solid",shape="box"];742 -> 1828[label="",style="solid", color="burlywood", weight=9]; 1828 -> 847[label="",style="solid", color="burlywood", weight=3]; 743[label="primEqInt (Pos vwx230) vwx24",fontsize=16,color="burlywood",shape="box"];1829[label="vwx230/Succ vwx2300",fontsize=10,color="white",style="solid",shape="box"];743 -> 1829[label="",style="solid", color="burlywood", weight=9]; 1829 -> 848[label="",style="solid", color="burlywood", weight=3]; 1830[label="vwx230/Zero",fontsize=10,color="white",style="solid",shape="box"];743 -> 1830[label="",style="solid", color="burlywood", weight=9]; 1830 -> 849[label="",style="solid", color="burlywood", weight=3]; 744[label="primEqInt (Neg vwx230) vwx24",fontsize=16,color="burlywood",shape="box"];1831[label="vwx230/Succ vwx2300",fontsize=10,color="white",style="solid",shape="box"];744 -> 1831[label="",style="solid", color="burlywood", weight=9]; 1831 -> 850[label="",style="solid", color="burlywood", weight=3]; 1832[label="vwx230/Zero",fontsize=10,color="white",style="solid",shape="box"];744 -> 1832[label="",style="solid", color="burlywood", weight=9]; 1832 -> 851[label="",style="solid", color="burlywood", weight=3]; 745[label="(vwx230,vwx231,vwx232) == (vwx240,vwx241,vwx242)",fontsize=16,color="black",shape="box"];745 -> 852[label="",style="solid", color="black", weight=3]; 746[label="primEqFloat (Float vwx230 vwx231) vwx24",fontsize=16,color="burlywood",shape="box"];1833[label="vwx24/Float vwx240 vwx241",fontsize=10,color="white",style="solid",shape="box"];746 -> 1833[label="",style="solid", color="burlywood", weight=9]; 1833 -> 853[label="",style="solid", color="burlywood", weight=3]; 747 -> 306[label="",style="dashed", color="red", weight=0]; 747[label="compare vwx300 vwx400",fontsize=16,color="magenta"];747 -> 854[label="",style="dashed", color="magenta", weight=3]; 747 -> 855[label="",style="dashed", color="magenta", weight=3]; 748 -> 307[label="",style="dashed", color="red", weight=0]; 748[label="compare vwx300 vwx400",fontsize=16,color="magenta"];748 -> 856[label="",style="dashed", color="magenta", weight=3]; 748 -> 857[label="",style="dashed", color="magenta", weight=3]; 749 -> 455[label="",style="dashed", color="red", weight=0]; 749[label="compare vwx300 vwx400",fontsize=16,color="magenta"];749 -> 858[label="",style="dashed", color="magenta", weight=3]; 749 -> 859[label="",style="dashed", color="magenta", weight=3]; 750 -> 308[label="",style="dashed", color="red", weight=0]; 750[label="compare vwx300 vwx400",fontsize=16,color="magenta"];750 -> 860[label="",style="dashed", color="magenta", weight=3]; 750 -> 861[label="",style="dashed", color="magenta", weight=3]; 751 -> 309[label="",style="dashed", color="red", weight=0]; 751[label="compare vwx300 vwx400",fontsize=16,color="magenta"];751 -> 862[label="",style="dashed", color="magenta", weight=3]; 751 -> 863[label="",style="dashed", color="magenta", weight=3]; 752 -> 458[label="",style="dashed", color="red", weight=0]; 752[label="compare vwx300 vwx400",fontsize=16,color="magenta"];752 -> 864[label="",style="dashed", color="magenta", weight=3]; 752 -> 865[label="",style="dashed", color="magenta", weight=3]; 753 -> 459[label="",style="dashed", color="red", weight=0]; 753[label="compare vwx300 vwx400",fontsize=16,color="magenta"];753 -> 866[label="",style="dashed", color="magenta", weight=3]; 753 -> 867[label="",style="dashed", color="magenta", weight=3]; 754 -> 310[label="",style="dashed", color="red", weight=0]; 754[label="compare vwx300 vwx400",fontsize=16,color="magenta"];754 -> 868[label="",style="dashed", color="magenta", weight=3]; 754 -> 869[label="",style="dashed", color="magenta", weight=3]; 755 -> 461[label="",style="dashed", color="red", weight=0]; 755[label="compare vwx300 vwx400",fontsize=16,color="magenta"];755 -> 870[label="",style="dashed", color="magenta", weight=3]; 755 -> 871[label="",style="dashed", color="magenta", weight=3]; 756 -> 462[label="",style="dashed", color="red", weight=0]; 756[label="compare vwx300 vwx400",fontsize=16,color="magenta"];756 -> 872[label="",style="dashed", color="magenta", weight=3]; 756 -> 873[label="",style="dashed", color="magenta", weight=3]; 757 -> 311[label="",style="dashed", color="red", weight=0]; 757[label="compare vwx300 vwx400",fontsize=16,color="magenta"];757 -> 874[label="",style="dashed", color="magenta", weight=3]; 757 -> 875[label="",style="dashed", color="magenta", weight=3]; 758 -> 464[label="",style="dashed", color="red", weight=0]; 758[label="compare vwx300 vwx400",fontsize=16,color="magenta"];758 -> 876[label="",style="dashed", color="magenta", weight=3]; 758 -> 877[label="",style="dashed", color="magenta", weight=3]; 759 -> 312[label="",style="dashed", color="red", weight=0]; 759[label="compare vwx300 vwx400",fontsize=16,color="magenta"];759 -> 878[label="",style="dashed", color="magenta", weight=3]; 759 -> 879[label="",style="dashed", color="magenta", weight=3]; 760 -> 313[label="",style="dashed", color="red", weight=0]; 760[label="compare vwx300 vwx400",fontsize=16,color="magenta"];760 -> 880[label="",style="dashed", color="magenta", weight=3]; 760 -> 881[label="",style="dashed", color="magenta", weight=3]; 761[label="primCompAux0 vwx39 LT",fontsize=16,color="black",shape="box"];761 -> 882[label="",style="solid", color="black", weight=3]; 762[label="primCompAux0 vwx39 EQ",fontsize=16,color="black",shape="box"];762 -> 883[label="",style="solid", color="black", weight=3]; 763[label="primCompAux0 vwx39 GT",fontsize=16,color="black",shape="box"];763 -> 884[label="",style="solid", color="black", weight=3]; 764 -> 565[label="",style="dashed", color="red", weight=0]; 764[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];764 -> 885[label="",style="dashed", color="magenta", weight=3]; 764 -> 886[label="",style="dashed", color="magenta", weight=3]; 765 -> 565[label="",style="dashed", color="red", weight=0]; 765[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];765 -> 887[label="",style="dashed", color="magenta", weight=3]; 765 -> 888[label="",style="dashed", color="magenta", weight=3]; 766 -> 565[label="",style="dashed", color="red", weight=0]; 766[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];766 -> 889[label="",style="dashed", color="magenta", weight=3]; 766 -> 890[label="",style="dashed", color="magenta", weight=3]; 767 -> 565[label="",style="dashed", color="red", weight=0]; 767[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];767 -> 891[label="",style="dashed", color="magenta", weight=3]; 767 -> 892[label="",style="dashed", color="magenta", weight=3]; 768 -> 565[label="",style="dashed", color="red", weight=0]; 768[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];768 -> 893[label="",style="dashed", color="magenta", weight=3]; 768 -> 894[label="",style="dashed", color="magenta", weight=3]; 769 -> 565[label="",style="dashed", color="red", weight=0]; 769[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];769 -> 895[label="",style="dashed", color="magenta", weight=3]; 769 -> 896[label="",style="dashed", color="magenta", weight=3]; 770 -> 565[label="",style="dashed", color="red", weight=0]; 770[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];770 -> 897[label="",style="dashed", color="magenta", weight=3]; 770 -> 898[label="",style="dashed", color="magenta", weight=3]; 771 -> 565[label="",style="dashed", color="red", weight=0]; 771[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];771 -> 899[label="",style="dashed", color="magenta", weight=3]; 771 -> 900[label="",style="dashed", color="magenta", weight=3]; 772 -> 552[label="",style="dashed", color="red", weight=0]; 772[label="primCmpNat vwx3000 vwx4000",fontsize=16,color="magenta"];772 -> 901[label="",style="dashed", color="magenta", weight=3]; 772 -> 902[label="",style="dashed", color="magenta", weight=3]; 773[label="GT",fontsize=16,color="green",shape="box"];774[label="LT",fontsize=16,color="green",shape="box"];775[label="EQ",fontsize=16,color="green",shape="box"];776[label="Zero",fontsize=16,color="green",shape="box"];777[label="Succ vwx4000",fontsize=16,color="green",shape="box"];778[label="Succ vwx4000",fontsize=16,color="green",shape="box"];779[label="Zero",fontsize=16,color="green",shape="box"];780 -> 565[label="",style="dashed", color="red", weight=0]; 780[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];780 -> 903[label="",style="dashed", color="magenta", weight=3]; 780 -> 904[label="",style="dashed", color="magenta", weight=3]; 781 -> 565[label="",style="dashed", color="red", weight=0]; 781[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];781 -> 905[label="",style="dashed", color="magenta", weight=3]; 781 -> 906[label="",style="dashed", color="magenta", weight=3]; 782 -> 565[label="",style="dashed", color="red", weight=0]; 782[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];782 -> 907[label="",style="dashed", color="magenta", weight=3]; 782 -> 908[label="",style="dashed", color="magenta", weight=3]; 783 -> 565[label="",style="dashed", color="red", weight=0]; 783[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];783 -> 909[label="",style="dashed", color="magenta", weight=3]; 783 -> 910[label="",style="dashed", color="magenta", weight=3]; 784 -> 565[label="",style="dashed", color="red", weight=0]; 784[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];784 -> 911[label="",style="dashed", color="magenta", weight=3]; 784 -> 912[label="",style="dashed", color="magenta", weight=3]; 785 -> 565[label="",style="dashed", color="red", weight=0]; 785[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];785 -> 913[label="",style="dashed", color="magenta", weight=3]; 785 -> 914[label="",style="dashed", color="magenta", weight=3]; 786 -> 565[label="",style="dashed", color="red", weight=0]; 786[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];786 -> 915[label="",style="dashed", color="magenta", weight=3]; 786 -> 916[label="",style="dashed", color="magenta", weight=3]; 787 -> 565[label="",style="dashed", color="red", weight=0]; 787[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];787 -> 917[label="",style="dashed", color="magenta", weight=3]; 787 -> 918[label="",style="dashed", color="magenta", weight=3]; 788[label="Integer (primMulInt vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];788 -> 919[label="",style="dashed", color="green", weight=3]; 789[label="primMulInt (Pos vwx4000) (Pos vwx3010)",fontsize=16,color="black",shape="box"];789 -> 920[label="",style="solid", color="black", weight=3]; 790[label="primMulInt (Pos vwx4000) (Neg vwx3010)",fontsize=16,color="black",shape="box"];790 -> 921[label="",style="solid", color="black", weight=3]; 791[label="primMulInt (Neg vwx4000) (Pos vwx3010)",fontsize=16,color="black",shape="box"];791 -> 922[label="",style="solid", color="black", weight=3]; 792[label="primMulInt (Neg vwx4000) (Neg vwx3010)",fontsize=16,color="black",shape="box"];792 -> 923[label="",style="solid", color="black", weight=3]; 793[label="vwx400",fontsize=16,color="green",shape="box"];794[label="vwx300",fontsize=16,color="green",shape="box"];795[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];795 -> 924[label="",style="solid", color="black", weight=3]; 796[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];796 -> 925[label="",style="solid", color="black", weight=3]; 797[label="vwx400",fontsize=16,color="green",shape="box"];798[label="vwx300",fontsize=16,color="green",shape="box"];799[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];799 -> 926[label="",style="solid", color="black", weight=3]; 800[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];800 -> 927[label="",style="solid", color="black", weight=3]; 801[label="vwx400",fontsize=16,color="green",shape="box"];802[label="vwx300",fontsize=16,color="green",shape="box"];803[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];803 -> 928[label="",style="solid", color="black", weight=3]; 804[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];804 -> 929[label="",style="solid", color="black", weight=3]; 805[label="vwx400",fontsize=16,color="green",shape="box"];806[label="vwx300",fontsize=16,color="green",shape="box"];807[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];807 -> 930[label="",style="solid", color="black", weight=3]; 808[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];808 -> 931[label="",style="solid", color="black", weight=3]; 809[label="vwx400",fontsize=16,color="green",shape="box"];810[label="vwx300",fontsize=16,color="green",shape="box"];811[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];811 -> 932[label="",style="solid", color="black", weight=3]; 812[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];812 -> 933[label="",style="solid", color="black", weight=3]; 813[label="vwx400",fontsize=16,color="green",shape="box"];814[label="vwx300",fontsize=16,color="green",shape="box"];815[label="compare2 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];815 -> 934[label="",style="solid", color="black", weight=3]; 816[label="compare2 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];816 -> 935[label="",style="solid", color="black", weight=3]; 817[label="True",fontsize=16,color="green",shape="box"];818[label="False",fontsize=16,color="green",shape="box"];819[label="False",fontsize=16,color="green",shape="box"];820[label="True",fontsize=16,color="green",shape="box"];821[label="True",fontsize=16,color="green",shape="box"];822[label="False",fontsize=16,color="green",shape="box"];823[label="False",fontsize=16,color="green",shape="box"];824[label="False",fontsize=16,color="green",shape="box"];825[label="True",fontsize=16,color="green",shape="box"];826[label="False",fontsize=16,color="green",shape="box"];827[label="False",fontsize=16,color="green",shape="box"];828[label="False",fontsize=16,color="green",shape="box"];829[label="True",fontsize=16,color="green",shape="box"];830 -> 665[label="",style="dashed", color="red", weight=0]; 830[label="primEqInt vwx230 vwx240",fontsize=16,color="magenta"];830 -> 936[label="",style="dashed", color="magenta", weight=3]; 830 -> 937[label="",style="dashed", color="magenta", weight=3]; 831[label="primEqChar (Char vwx230) (Char vwx240)",fontsize=16,color="black",shape="box"];831 -> 938[label="",style="solid", color="black", weight=3]; 832 -> 485[label="",style="dashed", color="red", weight=0]; 832[label="vwx230 == vwx240 && vwx231 == vwx241",fontsize=16,color="magenta"];832 -> 939[label="",style="dashed", color="magenta", weight=3]; 832 -> 940[label="",style="dashed", color="magenta", weight=3]; 833[label="False",fontsize=16,color="green",shape="box"];834[label="False",fontsize=16,color="green",shape="box"];835[label="True",fontsize=16,color="green",shape="box"];836[label="vwx230 == vwx240",fontsize=16,color="blue",shape="box"];1834[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1834[label="",style="solid", color="blue", weight=9]; 1834 -> 941[label="",style="solid", color="blue", weight=3]; 1835[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1835[label="",style="solid", color="blue", weight=9]; 1835 -> 942[label="",style="solid", color="blue", weight=3]; 1836[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1836[label="",style="solid", color="blue", weight=9]; 1836 -> 943[label="",style="solid", color="blue", weight=3]; 1837[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1837[label="",style="solid", color="blue", weight=9]; 1837 -> 944[label="",style="solid", color="blue", weight=3]; 1838[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1838[label="",style="solid", color="blue", weight=9]; 1838 -> 945[label="",style="solid", color="blue", weight=3]; 1839[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1839[label="",style="solid", color="blue", weight=9]; 1839 -> 946[label="",style="solid", color="blue", weight=3]; 1840[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1840[label="",style="solid", color="blue", weight=9]; 1840 -> 947[label="",style="solid", color="blue", weight=3]; 1841[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1841[label="",style="solid", color="blue", weight=9]; 1841 -> 948[label="",style="solid", color="blue", weight=3]; 1842[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1842[label="",style="solid", color="blue", weight=9]; 1842 -> 949[label="",style="solid", color="blue", weight=3]; 1843[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1843[label="",style="solid", color="blue", weight=9]; 1843 -> 950[label="",style="solid", color="blue", weight=3]; 1844[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1844[label="",style="solid", color="blue", weight=9]; 1844 -> 951[label="",style="solid", color="blue", weight=3]; 1845[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1845[label="",style="solid", color="blue", weight=9]; 1845 -> 952[label="",style="solid", color="blue", weight=3]; 1846[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1846[label="",style="solid", color="blue", weight=9]; 1846 -> 953[label="",style="solid", color="blue", weight=3]; 1847[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];836 -> 1847[label="",style="solid", color="blue", weight=9]; 1847 -> 954[label="",style="solid", color="blue", weight=3]; 837[label="False",fontsize=16,color="green",shape="box"];838[label="False",fontsize=16,color="green",shape="box"];839[label="vwx230 == vwx240",fontsize=16,color="blue",shape="box"];1848[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1848[label="",style="solid", color="blue", weight=9]; 1848 -> 955[label="",style="solid", color="blue", weight=3]; 1849[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1849[label="",style="solid", color="blue", weight=9]; 1849 -> 956[label="",style="solid", color="blue", weight=3]; 1850[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1850[label="",style="solid", color="blue", weight=9]; 1850 -> 957[label="",style="solid", color="blue", weight=3]; 1851[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1851[label="",style="solid", color="blue", weight=9]; 1851 -> 958[label="",style="solid", color="blue", weight=3]; 1852[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1852[label="",style="solid", color="blue", weight=9]; 1852 -> 959[label="",style="solid", color="blue", weight=3]; 1853[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1853[label="",style="solid", color="blue", weight=9]; 1853 -> 960[label="",style="solid", color="blue", weight=3]; 1854[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1854[label="",style="solid", color="blue", weight=9]; 1854 -> 961[label="",style="solid", color="blue", weight=3]; 1855[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1855[label="",style="solid", color="blue", weight=9]; 1855 -> 962[label="",style="solid", color="blue", weight=3]; 1856[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1856[label="",style="solid", color="blue", weight=9]; 1856 -> 963[label="",style="solid", color="blue", weight=3]; 1857[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1857[label="",style="solid", color="blue", weight=9]; 1857 -> 964[label="",style="solid", color="blue", weight=3]; 1858[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1858[label="",style="solid", color="blue", weight=9]; 1858 -> 965[label="",style="solid", color="blue", weight=3]; 1859[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1859[label="",style="solid", color="blue", weight=9]; 1859 -> 966[label="",style="solid", color="blue", weight=3]; 1860[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1860[label="",style="solid", color="blue", weight=9]; 1860 -> 967[label="",style="solid", color="blue", weight=3]; 1861[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 1861[label="",style="solid", color="blue", weight=9]; 1861 -> 968[label="",style="solid", color="blue", weight=3]; 840[label="True",fontsize=16,color="green",shape="box"];841 -> 485[label="",style="dashed", color="red", weight=0]; 841[label="vwx230 == vwx240 && vwx231 == vwx241",fontsize=16,color="magenta"];841 -> 969[label="",style="dashed", color="magenta", weight=3]; 841 -> 970[label="",style="dashed", color="magenta", weight=3]; 842 -> 485[label="",style="dashed", color="red", weight=0]; 842[label="vwx230 == vwx240 && vwx231 == vwx241",fontsize=16,color="magenta"];842 -> 971[label="",style="dashed", color="magenta", weight=3]; 842 -> 972[label="",style="dashed", color="magenta", weight=3]; 843[label="True",fontsize=16,color="green",shape="box"];844[label="False",fontsize=16,color="green",shape="box"];845[label="False",fontsize=16,color="green",shape="box"];846[label="vwx230 == vwx240",fontsize=16,color="blue",shape="box"];1862[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1862[label="",style="solid", color="blue", weight=9]; 1862 -> 973[label="",style="solid", color="blue", weight=3]; 1863[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1863[label="",style="solid", color="blue", weight=9]; 1863 -> 974[label="",style="solid", color="blue", weight=3]; 1864[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1864[label="",style="solid", color="blue", weight=9]; 1864 -> 975[label="",style="solid", color="blue", weight=3]; 1865[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1865[label="",style="solid", color="blue", weight=9]; 1865 -> 976[label="",style="solid", color="blue", weight=3]; 1866[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1866[label="",style="solid", color="blue", weight=9]; 1866 -> 977[label="",style="solid", color="blue", weight=3]; 1867[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1867[label="",style="solid", color="blue", weight=9]; 1867 -> 978[label="",style="solid", color="blue", weight=3]; 1868[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1868[label="",style="solid", color="blue", weight=9]; 1868 -> 979[label="",style="solid", color="blue", weight=3]; 1869[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1869[label="",style="solid", color="blue", weight=9]; 1869 -> 980[label="",style="solid", color="blue", weight=3]; 1870[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1870[label="",style="solid", color="blue", weight=9]; 1870 -> 981[label="",style="solid", color="blue", weight=3]; 1871[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1871[label="",style="solid", color="blue", weight=9]; 1871 -> 982[label="",style="solid", color="blue", weight=3]; 1872[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1872[label="",style="solid", color="blue", weight=9]; 1872 -> 983[label="",style="solid", color="blue", weight=3]; 1873[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1873[label="",style="solid", color="blue", weight=9]; 1873 -> 984[label="",style="solid", color="blue", weight=3]; 1874[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1874[label="",style="solid", color="blue", weight=9]; 1874 -> 985[label="",style="solid", color="blue", weight=3]; 1875[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 1875[label="",style="solid", color="blue", weight=9]; 1875 -> 986[label="",style="solid", color="blue", weight=3]; 847[label="primEqDouble (Double vwx230 vwx231) (Double vwx240 vwx241)",fontsize=16,color="black",shape="box"];847 -> 987[label="",style="solid", color="black", weight=3]; 848[label="primEqInt (Pos (Succ vwx2300)) vwx24",fontsize=16,color="burlywood",shape="box"];1876[label="vwx24/Pos vwx240",fontsize=10,color="white",style="solid",shape="box"];848 -> 1876[label="",style="solid", color="burlywood", weight=9]; 1876 -> 988[label="",style="solid", color="burlywood", weight=3]; 1877[label="vwx24/Neg vwx240",fontsize=10,color="white",style="solid",shape="box"];848 -> 1877[label="",style="solid", color="burlywood", weight=9]; 1877 -> 989[label="",style="solid", color="burlywood", weight=3]; 849[label="primEqInt (Pos Zero) vwx24",fontsize=16,color="burlywood",shape="box"];1878[label="vwx24/Pos vwx240",fontsize=10,color="white",style="solid",shape="box"];849 -> 1878[label="",style="solid", color="burlywood", weight=9]; 1878 -> 990[label="",style="solid", color="burlywood", weight=3]; 1879[label="vwx24/Neg vwx240",fontsize=10,color="white",style="solid",shape="box"];849 -> 1879[label="",style="solid", color="burlywood", weight=9]; 1879 -> 991[label="",style="solid", color="burlywood", weight=3]; 850[label="primEqInt (Neg (Succ vwx2300)) vwx24",fontsize=16,color="burlywood",shape="box"];1880[label="vwx24/Pos vwx240",fontsize=10,color="white",style="solid",shape="box"];850 -> 1880[label="",style="solid", color="burlywood", weight=9]; 1880 -> 992[label="",style="solid", color="burlywood", weight=3]; 1881[label="vwx24/Neg vwx240",fontsize=10,color="white",style="solid",shape="box"];850 -> 1881[label="",style="solid", color="burlywood", weight=9]; 1881 -> 993[label="",style="solid", color="burlywood", weight=3]; 851[label="primEqInt (Neg Zero) vwx24",fontsize=16,color="burlywood",shape="box"];1882[label="vwx24/Pos vwx240",fontsize=10,color="white",style="solid",shape="box"];851 -> 1882[label="",style="solid", color="burlywood", weight=9]; 1882 -> 994[label="",style="solid", color="burlywood", weight=3]; 1883[label="vwx24/Neg vwx240",fontsize=10,color="white",style="solid",shape="box"];851 -> 1883[label="",style="solid", color="burlywood", weight=9]; 1883 -> 995[label="",style="solid", color="burlywood", weight=3]; 852 -> 485[label="",style="dashed", color="red", weight=0]; 852[label="vwx230 == vwx240 && vwx231 == vwx241 && vwx232 == vwx242",fontsize=16,color="magenta"];852 -> 996[label="",style="dashed", color="magenta", weight=3]; 852 -> 997[label="",style="dashed", color="magenta", weight=3]; 853[label="primEqFloat (Float vwx230 vwx231) (Float vwx240 vwx241)",fontsize=16,color="black",shape="box"];853 -> 998[label="",style="solid", color="black", weight=3]; 854[label="vwx400",fontsize=16,color="green",shape="box"];855[label="vwx300",fontsize=16,color="green",shape="box"];856[label="vwx400",fontsize=16,color="green",shape="box"];857[label="vwx300",fontsize=16,color="green",shape="box"];858[label="vwx300",fontsize=16,color="green",shape="box"];859[label="vwx400",fontsize=16,color="green",shape="box"];860[label="vwx400",fontsize=16,color="green",shape="box"];861[label="vwx300",fontsize=16,color="green",shape="box"];862[label="vwx400",fontsize=16,color="green",shape="box"];863[label="vwx300",fontsize=16,color="green",shape="box"];864[label="vwx300",fontsize=16,color="green",shape="box"];865[label="vwx400",fontsize=16,color="green",shape="box"];866[label="vwx300",fontsize=16,color="green",shape="box"];867[label="vwx400",fontsize=16,color="green",shape="box"];868[label="vwx400",fontsize=16,color="green",shape="box"];869[label="vwx300",fontsize=16,color="green",shape="box"];870[label="vwx300",fontsize=16,color="green",shape="box"];871[label="vwx400",fontsize=16,color="green",shape="box"];872[label="vwx300",fontsize=16,color="green",shape="box"];873[label="vwx400",fontsize=16,color="green",shape="box"];874[label="vwx400",fontsize=16,color="green",shape="box"];875[label="vwx300",fontsize=16,color="green",shape="box"];876[label="vwx300",fontsize=16,color="green",shape="box"];877[label="vwx400",fontsize=16,color="green",shape="box"];878[label="vwx400",fontsize=16,color="green",shape="box"];879[label="vwx300",fontsize=16,color="green",shape="box"];880[label="vwx400",fontsize=16,color="green",shape="box"];881[label="vwx300",fontsize=16,color="green",shape="box"];882[label="LT",fontsize=16,color="green",shape="box"];883[label="vwx39",fontsize=16,color="green",shape="box"];884[label="GT",fontsize=16,color="green",shape="box"];885[label="Pos vwx3010",fontsize=16,color="green",shape="box"];886[label="vwx400",fontsize=16,color="green",shape="box"];887[label="vwx300",fontsize=16,color="green",shape="box"];888[label="Pos vwx4010",fontsize=16,color="green",shape="box"];889[label="Neg vwx3010",fontsize=16,color="green",shape="box"];890[label="vwx400",fontsize=16,color="green",shape="box"];891[label="vwx300",fontsize=16,color="green",shape="box"];892[label="Pos vwx4010",fontsize=16,color="green",shape="box"];893[label="Pos vwx3010",fontsize=16,color="green",shape="box"];894[label="vwx400",fontsize=16,color="green",shape="box"];895[label="vwx300",fontsize=16,color="green",shape="box"];896[label="Neg vwx4010",fontsize=16,color="green",shape="box"];897[label="Neg vwx3010",fontsize=16,color="green",shape="box"];898[label="vwx400",fontsize=16,color="green",shape="box"];899[label="vwx300",fontsize=16,color="green",shape="box"];900[label="Neg vwx4010",fontsize=16,color="green",shape="box"];901[label="vwx3000",fontsize=16,color="green",shape="box"];902[label="vwx4000",fontsize=16,color="green",shape="box"];903[label="Pos vwx3010",fontsize=16,color="green",shape="box"];904[label="vwx400",fontsize=16,color="green",shape="box"];905[label="vwx300",fontsize=16,color="green",shape="box"];906[label="Pos vwx4010",fontsize=16,color="green",shape="box"];907[label="Neg vwx3010",fontsize=16,color="green",shape="box"];908[label="vwx400",fontsize=16,color="green",shape="box"];909[label="vwx300",fontsize=16,color="green",shape="box"];910[label="Pos vwx4010",fontsize=16,color="green",shape="box"];911[label="Pos vwx3010",fontsize=16,color="green",shape="box"];912[label="vwx400",fontsize=16,color="green",shape="box"];913[label="vwx300",fontsize=16,color="green",shape="box"];914[label="Neg vwx4010",fontsize=16,color="green",shape="box"];915[label="Neg vwx3010",fontsize=16,color="green",shape="box"];916[label="vwx400",fontsize=16,color="green",shape="box"];917[label="vwx300",fontsize=16,color="green",shape="box"];918[label="Neg vwx4010",fontsize=16,color="green",shape="box"];919 -> 636[label="",style="dashed", color="red", weight=0]; 919[label="primMulInt vwx4000 vwx3010",fontsize=16,color="magenta"];919 -> 999[label="",style="dashed", color="magenta", weight=3]; 919 -> 1000[label="",style="dashed", color="magenta", weight=3]; 920[label="Pos (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];920 -> 1001[label="",style="dashed", color="green", weight=3]; 921[label="Neg (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];921 -> 1002[label="",style="dashed", color="green", weight=3]; 922[label="Neg (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];922 -> 1003[label="",style="dashed", color="green", weight=3]; 923[label="Pos (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];923 -> 1004[label="",style="dashed", color="green", weight=3]; 924 -> 1005[label="",style="dashed", color="red", weight=0]; 924[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];924 -> 1006[label="",style="dashed", color="magenta", weight=3]; 925[label="EQ",fontsize=16,color="green",shape="box"];926 -> 1007[label="",style="dashed", color="red", weight=0]; 926[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];926 -> 1008[label="",style="dashed", color="magenta", weight=3]; 927[label="EQ",fontsize=16,color="green",shape="box"];928 -> 1009[label="",style="dashed", color="red", weight=0]; 928[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];928 -> 1010[label="",style="dashed", color="magenta", weight=3]; 929[label="EQ",fontsize=16,color="green",shape="box"];930 -> 1011[label="",style="dashed", color="red", weight=0]; 930[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];930 -> 1012[label="",style="dashed", color="magenta", weight=3]; 931[label="EQ",fontsize=16,color="green",shape="box"];932 -> 1013[label="",style="dashed", color="red", weight=0]; 932[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];932 -> 1014[label="",style="dashed", color="magenta", weight=3]; 933[label="EQ",fontsize=16,color="green",shape="box"];934 -> 1015[label="",style="dashed", color="red", weight=0]; 934[label="compare1 vwx300 vwx400 (vwx300 <= vwx400)",fontsize=16,color="magenta"];934 -> 1016[label="",style="dashed", color="magenta", weight=3]; 935[label="EQ",fontsize=16,color="green",shape="box"];936[label="vwx240",fontsize=16,color="green",shape="box"];937[label="vwx230",fontsize=16,color="green",shape="box"];938[label="primEqNat vwx230 vwx240",fontsize=16,color="burlywood",shape="triangle"];1884[label="vwx230/Succ vwx2300",fontsize=10,color="white",style="solid",shape="box"];938 -> 1884[label="",style="solid", color="burlywood", weight=9]; 1884 -> 1017[label="",style="solid", color="burlywood", weight=3]; 1885[label="vwx230/Zero",fontsize=10,color="white",style="solid",shape="box"];938 -> 1885[label="",style="solid", color="burlywood", weight=9]; 1885 -> 1018[label="",style="solid", color="burlywood", weight=3]; 939 -> 596[label="",style="dashed", color="red", weight=0]; 939[label="vwx231 == vwx241",fontsize=16,color="magenta"];939 -> 1019[label="",style="dashed", color="magenta", weight=3]; 939 -> 1020[label="",style="dashed", color="magenta", weight=3]; 940[label="vwx230 == vwx240",fontsize=16,color="blue",shape="box"];1886[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1886[label="",style="solid", color="blue", weight=9]; 1886 -> 1021[label="",style="solid", color="blue", weight=3]; 1887[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1887[label="",style="solid", color="blue", weight=9]; 1887 -> 1022[label="",style="solid", color="blue", weight=3]; 1888[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1888[label="",style="solid", color="blue", weight=9]; 1888 -> 1023[label="",style="solid", color="blue", weight=3]; 1889[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1889[label="",style="solid", color="blue", weight=9]; 1889 -> 1024[label="",style="solid", color="blue", weight=3]; 1890[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1890[label="",style="solid", color="blue", weight=9]; 1890 -> 1025[label="",style="solid", color="blue", weight=3]; 1891[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1891[label="",style="solid", color="blue", weight=9]; 1891 -> 1026[label="",style="solid", color="blue", weight=3]; 1892[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1892[label="",style="solid", color="blue", weight=9]; 1892 -> 1027[label="",style="solid", color="blue", weight=3]; 1893[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1893[label="",style="solid", color="blue", weight=9]; 1893 -> 1028[label="",style="solid", color="blue", weight=3]; 1894[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1894[label="",style="solid", color="blue", weight=9]; 1894 -> 1029[label="",style="solid", color="blue", weight=3]; 1895[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1895[label="",style="solid", color="blue", weight=9]; 1895 -> 1030[label="",style="solid", color="blue", weight=3]; 1896[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1896[label="",style="solid", color="blue", weight=9]; 1896 -> 1031[label="",style="solid", color="blue", weight=3]; 1897[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1897[label="",style="solid", color="blue", weight=9]; 1897 -> 1032[label="",style="solid", color="blue", weight=3]; 1898[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1898[label="",style="solid", color="blue", weight=9]; 1898 -> 1033[label="",style="solid", color="blue", weight=3]; 1899[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 1899[label="",style="solid", color="blue", weight=9]; 1899 -> 1034[label="",style="solid", color="blue", weight=3]; 941 -> 592[label="",style="dashed", color="red", weight=0]; 941[label="vwx230 == vwx240",fontsize=16,color="magenta"];941 -> 1035[label="",style="dashed", color="magenta", weight=3]; 941 -> 1036[label="",style="dashed", color="magenta", weight=3]; 942 -> 593[label="",style="dashed", color="red", weight=0]; 942[label="vwx230 == vwx240",fontsize=16,color="magenta"];942 -> 1037[label="",style="dashed", color="magenta", weight=3]; 942 -> 1038[label="",style="dashed", color="magenta", weight=3]; 943 -> 594[label="",style="dashed", color="red", weight=0]; 943[label="vwx230 == vwx240",fontsize=16,color="magenta"];943 -> 1039[label="",style="dashed", color="magenta", weight=3]; 943 -> 1040[label="",style="dashed", color="magenta", weight=3]; 944 -> 595[label="",style="dashed", color="red", weight=0]; 944[label="vwx230 == vwx240",fontsize=16,color="magenta"];944 -> 1041[label="",style="dashed", color="magenta", weight=3]; 944 -> 1042[label="",style="dashed", color="magenta", weight=3]; 945 -> 596[label="",style="dashed", color="red", weight=0]; 945[label="vwx230 == vwx240",fontsize=16,color="magenta"];945 -> 1043[label="",style="dashed", color="magenta", weight=3]; 945 -> 1044[label="",style="dashed", color="magenta", weight=3]; 946 -> 597[label="",style="dashed", color="red", weight=0]; 946[label="vwx230 == vwx240",fontsize=16,color="magenta"];946 -> 1045[label="",style="dashed", color="magenta", weight=3]; 946 -> 1046[label="",style="dashed", color="magenta", weight=3]; 947 -> 598[label="",style="dashed", color="red", weight=0]; 947[label="vwx230 == vwx240",fontsize=16,color="magenta"];947 -> 1047[label="",style="dashed", color="magenta", weight=3]; 947 -> 1048[label="",style="dashed", color="magenta", weight=3]; 948 -> 599[label="",style="dashed", color="red", weight=0]; 948[label="vwx230 == vwx240",fontsize=16,color="magenta"];948 -> 1049[label="",style="dashed", color="magenta", weight=3]; 948 -> 1050[label="",style="dashed", color="magenta", weight=3]; 949 -> 600[label="",style="dashed", color="red", weight=0]; 949[label="vwx230 == vwx240",fontsize=16,color="magenta"];949 -> 1051[label="",style="dashed", color="magenta", weight=3]; 949 -> 1052[label="",style="dashed", color="magenta", weight=3]; 950 -> 601[label="",style="dashed", color="red", weight=0]; 950[label="vwx230 == vwx240",fontsize=16,color="magenta"];950 -> 1053[label="",style="dashed", color="magenta", weight=3]; 950 -> 1054[label="",style="dashed", color="magenta", weight=3]; 951 -> 602[label="",style="dashed", color="red", weight=0]; 951[label="vwx230 == vwx240",fontsize=16,color="magenta"];951 -> 1055[label="",style="dashed", color="magenta", weight=3]; 951 -> 1056[label="",style="dashed", color="magenta", weight=3]; 952 -> 603[label="",style="dashed", color="red", weight=0]; 952[label="vwx230 == vwx240",fontsize=16,color="magenta"];952 -> 1057[label="",style="dashed", color="magenta", weight=3]; 952 -> 1058[label="",style="dashed", color="magenta", weight=3]; 953 -> 604[label="",style="dashed", color="red", weight=0]; 953[label="vwx230 == vwx240",fontsize=16,color="magenta"];953 -> 1059[label="",style="dashed", color="magenta", weight=3]; 953 -> 1060[label="",style="dashed", color="magenta", weight=3]; 954 -> 605[label="",style="dashed", color="red", weight=0]; 954[label="vwx230 == vwx240",fontsize=16,color="magenta"];954 -> 1061[label="",style="dashed", color="magenta", weight=3]; 954 -> 1062[label="",style="dashed", color="magenta", weight=3]; 955 -> 592[label="",style="dashed", color="red", weight=0]; 955[label="vwx230 == vwx240",fontsize=16,color="magenta"];955 -> 1063[label="",style="dashed", color="magenta", weight=3]; 955 -> 1064[label="",style="dashed", color="magenta", weight=3]; 956 -> 593[label="",style="dashed", color="red", weight=0]; 956[label="vwx230 == vwx240",fontsize=16,color="magenta"];956 -> 1065[label="",style="dashed", color="magenta", weight=3]; 956 -> 1066[label="",style="dashed", color="magenta", weight=3]; 957 -> 594[label="",style="dashed", color="red", weight=0]; 957[label="vwx230 == vwx240",fontsize=16,color="magenta"];957 -> 1067[label="",style="dashed", color="magenta", weight=3]; 957 -> 1068[label="",style="dashed", color="magenta", weight=3]; 958 -> 595[label="",style="dashed", color="red", weight=0]; 958[label="vwx230 == vwx240",fontsize=16,color="magenta"];958 -> 1069[label="",style="dashed", color="magenta", weight=3]; 958 -> 1070[label="",style="dashed", color="magenta", weight=3]; 959 -> 596[label="",style="dashed", color="red", weight=0]; 959[label="vwx230 == vwx240",fontsize=16,color="magenta"];959 -> 1071[label="",style="dashed", color="magenta", weight=3]; 959 -> 1072[label="",style="dashed", color="magenta", weight=3]; 960 -> 597[label="",style="dashed", color="red", weight=0]; 960[label="vwx230 == vwx240",fontsize=16,color="magenta"];960 -> 1073[label="",style="dashed", color="magenta", weight=3]; 960 -> 1074[label="",style="dashed", color="magenta", weight=3]; 961 -> 598[label="",style="dashed", color="red", weight=0]; 961[label="vwx230 == vwx240",fontsize=16,color="magenta"];961 -> 1075[label="",style="dashed", color="magenta", weight=3]; 961 -> 1076[label="",style="dashed", color="magenta", weight=3]; 962 -> 599[label="",style="dashed", color="red", weight=0]; 962[label="vwx230 == vwx240",fontsize=16,color="magenta"];962 -> 1077[label="",style="dashed", color="magenta", weight=3]; 962 -> 1078[label="",style="dashed", color="magenta", weight=3]; 963 -> 600[label="",style="dashed", color="red", weight=0]; 963[label="vwx230 == vwx240",fontsize=16,color="magenta"];963 -> 1079[label="",style="dashed", color="magenta", weight=3]; 963 -> 1080[label="",style="dashed", color="magenta", weight=3]; 964 -> 601[label="",style="dashed", color="red", weight=0]; 964[label="vwx230 == vwx240",fontsize=16,color="magenta"];964 -> 1081[label="",style="dashed", color="magenta", weight=3]; 964 -> 1082[label="",style="dashed", color="magenta", weight=3]; 965 -> 602[label="",style="dashed", color="red", weight=0]; 965[label="vwx230 == vwx240",fontsize=16,color="magenta"];965 -> 1083[label="",style="dashed", color="magenta", weight=3]; 965 -> 1084[label="",style="dashed", color="magenta", weight=3]; 966 -> 603[label="",style="dashed", color="red", weight=0]; 966[label="vwx230 == vwx240",fontsize=16,color="magenta"];966 -> 1085[label="",style="dashed", color="magenta", weight=3]; 966 -> 1086[label="",style="dashed", color="magenta", weight=3]; 967 -> 604[label="",style="dashed", color="red", weight=0]; 967[label="vwx230 == vwx240",fontsize=16,color="magenta"];967 -> 1087[label="",style="dashed", color="magenta", weight=3]; 967 -> 1088[label="",style="dashed", color="magenta", weight=3]; 968 -> 605[label="",style="dashed", color="red", weight=0]; 968[label="vwx230 == vwx240",fontsize=16,color="magenta"];968 -> 1089[label="",style="dashed", color="magenta", weight=3]; 968 -> 1090[label="",style="dashed", color="magenta", weight=3]; 969[label="vwx231 == vwx241",fontsize=16,color="blue",shape="box"];1900[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 1900[label="",style="solid", color="blue", weight=9]; 1900 -> 1091[label="",style="solid", color="blue", weight=3]; 1901[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 1901[label="",style="solid", color="blue", weight=9]; 1901 -> 1092[label="",style="solid", color="blue", weight=3]; 970[label="vwx230 == vwx240",fontsize=16,color="blue",shape="box"];1902[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1902[label="",style="solid", color="blue", weight=9]; 1902 -> 1093[label="",style="solid", color="blue", weight=3]; 1903[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1903[label="",style="solid", color="blue", weight=9]; 1903 -> 1094[label="",style="solid", color="blue", weight=3]; 971[label="vwx231 == vwx241",fontsize=16,color="blue",shape="box"];1904[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1904[label="",style="solid", color="blue", weight=9]; 1904 -> 1095[label="",style="solid", color="blue", weight=3]; 1905[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1905[label="",style="solid", color="blue", weight=9]; 1905 -> 1096[label="",style="solid", color="blue", weight=3]; 1906[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1906[label="",style="solid", color="blue", weight=9]; 1906 -> 1097[label="",style="solid", color="blue", weight=3]; 1907[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1907[label="",style="solid", color="blue", weight=9]; 1907 -> 1098[label="",style="solid", color="blue", weight=3]; 1908[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1908[label="",style="solid", color="blue", weight=9]; 1908 -> 1099[label="",style="solid", color="blue", weight=3]; 1909[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1909[label="",style="solid", color="blue", weight=9]; 1909 -> 1100[label="",style="solid", color="blue", weight=3]; 1910[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1910[label="",style="solid", color="blue", weight=9]; 1910 -> 1101[label="",style="solid", color="blue", weight=3]; 1911[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1911[label="",style="solid", color="blue", weight=9]; 1911 -> 1102[label="",style="solid", color="blue", weight=3]; 1912[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1912[label="",style="solid", color="blue", weight=9]; 1912 -> 1103[label="",style="solid", color="blue", weight=3]; 1913[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1913[label="",style="solid", color="blue", weight=9]; 1913 -> 1104[label="",style="solid", color="blue", weight=3]; 1914[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1914[label="",style="solid", color="blue", weight=9]; 1914 -> 1105[label="",style="solid", color="blue", weight=3]; 1915[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1915[label="",style="solid", color="blue", weight=9]; 1915 -> 1106[label="",style="solid", color="blue", weight=3]; 1916[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1916[label="",style="solid", color="blue", weight=9]; 1916 -> 1107[label="",style="solid", color="blue", weight=3]; 1917[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 1917[label="",style="solid", color="blue", weight=9]; 1917 -> 1108[label="",style="solid", color="blue", weight=3]; 972[label="vwx230 == vwx240",fontsize=16,color="blue",shape="box"];1918[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1918[label="",style="solid", color="blue", weight=9]; 1918 -> 1109[label="",style="solid", color="blue", weight=3]; 1919[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1919[label="",style="solid", color="blue", weight=9]; 1919 -> 1110[label="",style="solid", color="blue", weight=3]; 1920[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1920[label="",style="solid", color="blue", weight=9]; 1920 -> 1111[label="",style="solid", color="blue", weight=3]; 1921[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1921[label="",style="solid", color="blue", weight=9]; 1921 -> 1112[label="",style="solid", color="blue", weight=3]; 1922[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1922[label="",style="solid", color="blue", weight=9]; 1922 -> 1113[label="",style="solid", color="blue", weight=3]; 1923[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1923[label="",style="solid", color="blue", weight=9]; 1923 -> 1114[label="",style="solid", color="blue", weight=3]; 1924[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1924[label="",style="solid", color="blue", weight=9]; 1924 -> 1115[label="",style="solid", color="blue", weight=3]; 1925[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1925[label="",style="solid", color="blue", weight=9]; 1925 -> 1116[label="",style="solid", color="blue", weight=3]; 1926[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1926[label="",style="solid", color="blue", weight=9]; 1926 -> 1117[label="",style="solid", color="blue", weight=3]; 1927[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1927[label="",style="solid", color="blue", weight=9]; 1927 -> 1118[label="",style="solid", color="blue", weight=3]; 1928[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1928[label="",style="solid", color="blue", weight=9]; 1928 -> 1119[label="",style="solid", color="blue", weight=3]; 1929[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1929[label="",style="solid", color="blue", weight=9]; 1929 -> 1120[label="",style="solid", color="blue", weight=3]; 1930[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1930[label="",style="solid", color="blue", weight=9]; 1930 -> 1121[label="",style="solid", color="blue", weight=3]; 1931[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 1931[label="",style="solid", color="blue", weight=9]; 1931 -> 1122[label="",style="solid", color="blue", weight=3]; 973 -> 592[label="",style="dashed", color="red", weight=0]; 973[label="vwx230 == vwx240",fontsize=16,color="magenta"];973 -> 1123[label="",style="dashed", color="magenta", weight=3]; 973 -> 1124[label="",style="dashed", color="magenta", weight=3]; 974 -> 593[label="",style="dashed", color="red", weight=0]; 974[label="vwx230 == vwx240",fontsize=16,color="magenta"];974 -> 1125[label="",style="dashed", color="magenta", weight=3]; 974 -> 1126[label="",style="dashed", color="magenta", weight=3]; 975 -> 594[label="",style="dashed", color="red", weight=0]; 975[label="vwx230 == vwx240",fontsize=16,color="magenta"];975 -> 1127[label="",style="dashed", color="magenta", weight=3]; 975 -> 1128[label="",style="dashed", color="magenta", weight=3]; 976 -> 595[label="",style="dashed", color="red", weight=0]; 976[label="vwx230 == vwx240",fontsize=16,color="magenta"];976 -> 1129[label="",style="dashed", color="magenta", weight=3]; 976 -> 1130[label="",style="dashed", color="magenta", weight=3]; 977 -> 596[label="",style="dashed", color="red", weight=0]; 977[label="vwx230 == vwx240",fontsize=16,color="magenta"];977 -> 1131[label="",style="dashed", color="magenta", weight=3]; 977 -> 1132[label="",style="dashed", color="magenta", weight=3]; 978 -> 597[label="",style="dashed", color="red", weight=0]; 978[label="vwx230 == vwx240",fontsize=16,color="magenta"];978 -> 1133[label="",style="dashed", color="magenta", weight=3]; 978 -> 1134[label="",style="dashed", color="magenta", weight=3]; 979 -> 598[label="",style="dashed", color="red", weight=0]; 979[label="vwx230 == vwx240",fontsize=16,color="magenta"];979 -> 1135[label="",style="dashed", color="magenta", weight=3]; 979 -> 1136[label="",style="dashed", color="magenta", weight=3]; 980 -> 599[label="",style="dashed", color="red", weight=0]; 980[label="vwx230 == vwx240",fontsize=16,color="magenta"];980 -> 1137[label="",style="dashed", color="magenta", weight=3]; 980 -> 1138[label="",style="dashed", color="magenta", weight=3]; 981 -> 600[label="",style="dashed", color="red", weight=0]; 981[label="vwx230 == vwx240",fontsize=16,color="magenta"];981 -> 1139[label="",style="dashed", color="magenta", weight=3]; 981 -> 1140[label="",style="dashed", color="magenta", weight=3]; 982 -> 601[label="",style="dashed", color="red", weight=0]; 982[label="vwx230 == vwx240",fontsize=16,color="magenta"];982 -> 1141[label="",style="dashed", color="magenta", weight=3]; 982 -> 1142[label="",style="dashed", color="magenta", weight=3]; 983 -> 602[label="",style="dashed", color="red", weight=0]; 983[label="vwx230 == vwx240",fontsize=16,color="magenta"];983 -> 1143[label="",style="dashed", color="magenta", weight=3]; 983 -> 1144[label="",style="dashed", color="magenta", weight=3]; 984 -> 603[label="",style="dashed", color="red", weight=0]; 984[label="vwx230 == vwx240",fontsize=16,color="magenta"];984 -> 1145[label="",style="dashed", color="magenta", weight=3]; 984 -> 1146[label="",style="dashed", color="magenta", weight=3]; 985 -> 604[label="",style="dashed", color="red", weight=0]; 985[label="vwx230 == vwx240",fontsize=16,color="magenta"];985 -> 1147[label="",style="dashed", color="magenta", weight=3]; 985 -> 1148[label="",style="dashed", color="magenta", weight=3]; 986 -> 605[label="",style="dashed", color="red", weight=0]; 986[label="vwx230 == vwx240",fontsize=16,color="magenta"];986 -> 1149[label="",style="dashed", color="magenta", weight=3]; 986 -> 1150[label="",style="dashed", color="magenta", weight=3]; 987 -> 603[label="",style="dashed", color="red", weight=0]; 987[label="vwx230 * vwx241 == vwx231 * vwx240",fontsize=16,color="magenta"];987 -> 1151[label="",style="dashed", color="magenta", weight=3]; 987 -> 1152[label="",style="dashed", color="magenta", weight=3]; 988[label="primEqInt (Pos (Succ vwx2300)) (Pos vwx240)",fontsize=16,color="burlywood",shape="box"];1932[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];988 -> 1932[label="",style="solid", color="burlywood", weight=9]; 1932 -> 1153[label="",style="solid", color="burlywood", weight=3]; 1933[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];988 -> 1933[label="",style="solid", color="burlywood", weight=9]; 1933 -> 1154[label="",style="solid", color="burlywood", weight=3]; 989[label="primEqInt (Pos (Succ vwx2300)) (Neg vwx240)",fontsize=16,color="black",shape="box"];989 -> 1155[label="",style="solid", color="black", weight=3]; 990[label="primEqInt (Pos Zero) (Pos vwx240)",fontsize=16,color="burlywood",shape="box"];1934[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];990 -> 1934[label="",style="solid", color="burlywood", weight=9]; 1934 -> 1156[label="",style="solid", color="burlywood", weight=3]; 1935[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];990 -> 1935[label="",style="solid", color="burlywood", weight=9]; 1935 -> 1157[label="",style="solid", color="burlywood", weight=3]; 991[label="primEqInt (Pos Zero) (Neg vwx240)",fontsize=16,color="burlywood",shape="box"];1936[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];991 -> 1936[label="",style="solid", color="burlywood", weight=9]; 1936 -> 1158[label="",style="solid", color="burlywood", weight=3]; 1937[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];991 -> 1937[label="",style="solid", color="burlywood", weight=9]; 1937 -> 1159[label="",style="solid", color="burlywood", weight=3]; 992[label="primEqInt (Neg (Succ vwx2300)) (Pos vwx240)",fontsize=16,color="black",shape="box"];992 -> 1160[label="",style="solid", color="black", weight=3]; 993[label="primEqInt (Neg (Succ vwx2300)) (Neg vwx240)",fontsize=16,color="burlywood",shape="box"];1938[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];993 -> 1938[label="",style="solid", color="burlywood", weight=9]; 1938 -> 1161[label="",style="solid", color="burlywood", weight=3]; 1939[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];993 -> 1939[label="",style="solid", color="burlywood", weight=9]; 1939 -> 1162[label="",style="solid", color="burlywood", weight=3]; 994[label="primEqInt (Neg Zero) (Pos vwx240)",fontsize=16,color="burlywood",shape="box"];1940[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];994 -> 1940[label="",style="solid", color="burlywood", weight=9]; 1940 -> 1163[label="",style="solid", color="burlywood", weight=3]; 1941[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];994 -> 1941[label="",style="solid", color="burlywood", weight=9]; 1941 -> 1164[label="",style="solid", color="burlywood", weight=3]; 995[label="primEqInt (Neg Zero) (Neg vwx240)",fontsize=16,color="burlywood",shape="box"];1942[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];995 -> 1942[label="",style="solid", color="burlywood", weight=9]; 1942 -> 1165[label="",style="solid", color="burlywood", weight=3]; 1943[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];995 -> 1943[label="",style="solid", color="burlywood", weight=9]; 1943 -> 1166[label="",style="solid", color="burlywood", weight=3]; 996 -> 485[label="",style="dashed", color="red", weight=0]; 996[label="vwx231 == vwx241 && vwx232 == vwx242",fontsize=16,color="magenta"];996 -> 1167[label="",style="dashed", color="magenta", weight=3]; 996 -> 1168[label="",style="dashed", color="magenta", weight=3]; 997[label="vwx230 == vwx240",fontsize=16,color="blue",shape="box"];1944[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1944[label="",style="solid", color="blue", weight=9]; 1944 -> 1169[label="",style="solid", color="blue", weight=3]; 1945[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1945[label="",style="solid", color="blue", weight=9]; 1945 -> 1170[label="",style="solid", color="blue", weight=3]; 1946[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1946[label="",style="solid", color="blue", weight=9]; 1946 -> 1171[label="",style="solid", color="blue", weight=3]; 1947[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1947[label="",style="solid", color="blue", weight=9]; 1947 -> 1172[label="",style="solid", color="blue", weight=3]; 1948[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1948[label="",style="solid", color="blue", weight=9]; 1948 -> 1173[label="",style="solid", color="blue", weight=3]; 1949[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1949[label="",style="solid", color="blue", weight=9]; 1949 -> 1174[label="",style="solid", color="blue", weight=3]; 1950[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1950[label="",style="solid", color="blue", weight=9]; 1950 -> 1175[label="",style="solid", color="blue", weight=3]; 1951[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1951[label="",style="solid", color="blue", weight=9]; 1951 -> 1176[label="",style="solid", color="blue", weight=3]; 1952[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1952[label="",style="solid", color="blue", weight=9]; 1952 -> 1177[label="",style="solid", color="blue", weight=3]; 1953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1953[label="",style="solid", color="blue", weight=9]; 1953 -> 1178[label="",style="solid", color="blue", weight=3]; 1954[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1954[label="",style="solid", color="blue", weight=9]; 1954 -> 1179[label="",style="solid", color="blue", weight=3]; 1955[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1955[label="",style="solid", color="blue", weight=9]; 1955 -> 1180[label="",style="solid", color="blue", weight=3]; 1956[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1956[label="",style="solid", color="blue", weight=9]; 1956 -> 1181[label="",style="solid", color="blue", weight=3]; 1957[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 1957[label="",style="solid", color="blue", weight=9]; 1957 -> 1182[label="",style="solid", color="blue", weight=3]; 998 -> 603[label="",style="dashed", color="red", weight=0]; 998[label="vwx230 * vwx241 == vwx231 * vwx240",fontsize=16,color="magenta"];998 -> 1183[label="",style="dashed", color="magenta", weight=3]; 998 -> 1184[label="",style="dashed", color="magenta", weight=3]; 999[label="vwx4000",fontsize=16,color="green",shape="box"];1000[label="vwx3010",fontsize=16,color="green",shape="box"];1001[label="primMulNat vwx4000 vwx3010",fontsize=16,color="burlywood",shape="triangle"];1958[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1001 -> 1958[label="",style="solid", color="burlywood", weight=9]; 1958 -> 1185[label="",style="solid", color="burlywood", weight=3]; 1959[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1001 -> 1959[label="",style="solid", color="burlywood", weight=9]; 1959 -> 1186[label="",style="solid", color="burlywood", weight=3]; 1002 -> 1001[label="",style="dashed", color="red", weight=0]; 1002[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];1002 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1003 -> 1001[label="",style="dashed", color="red", weight=0]; 1003[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];1003 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1001[label="",style="dashed", color="red", weight=0]; 1004[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];1004 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1006 -> 17[label="",style="dashed", color="red", weight=0]; 1006[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1006 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1005[label="compare1 vwx300 vwx400 vwx47",fontsize=16,color="burlywood",shape="triangle"];1960[label="vwx47/False",fontsize=10,color="white",style="solid",shape="box"];1005 -> 1960[label="",style="solid", color="burlywood", weight=9]; 1960 -> 1193[label="",style="solid", color="burlywood", weight=3]; 1961[label="vwx47/True",fontsize=10,color="white",style="solid",shape="box"];1005 -> 1961[label="",style="solid", color="burlywood", weight=9]; 1961 -> 1194[label="",style="solid", color="burlywood", weight=3]; 1008 -> 4[label="",style="dashed", color="red", weight=0]; 1008[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1008 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1007[label="compare1 vwx300 vwx400 vwx48",fontsize=16,color="burlywood",shape="triangle"];1962[label="vwx48/False",fontsize=10,color="white",style="solid",shape="box"];1007 -> 1962[label="",style="solid", color="burlywood", weight=9]; 1962 -> 1197[label="",style="solid", color="burlywood", weight=3]; 1963[label="vwx48/True",fontsize=10,color="white",style="solid",shape="box"];1007 -> 1963[label="",style="solid", color="burlywood", weight=9]; 1963 -> 1198[label="",style="solid", color="burlywood", weight=3]; 1010 -> 21[label="",style="dashed", color="red", weight=0]; 1010[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1010 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1009[label="compare1 vwx300 vwx400 vwx49",fontsize=16,color="burlywood",shape="triangle"];1964[label="vwx49/False",fontsize=10,color="white",style="solid",shape="box"];1009 -> 1964[label="",style="solid", color="burlywood", weight=9]; 1964 -> 1201[label="",style="solid", color="burlywood", weight=3]; 1965[label="vwx49/True",fontsize=10,color="white",style="solid",shape="box"];1009 -> 1965[label="",style="solid", color="burlywood", weight=9]; 1965 -> 1202[label="",style="solid", color="burlywood", weight=3]; 1012 -> 23[label="",style="dashed", color="red", weight=0]; 1012[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1012 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1011[label="compare1 vwx300 vwx400 vwx50",fontsize=16,color="burlywood",shape="triangle"];1966[label="vwx50/False",fontsize=10,color="white",style="solid",shape="box"];1011 -> 1966[label="",style="solid", color="burlywood", weight=9]; 1966 -> 1205[label="",style="solid", color="burlywood", weight=3]; 1967[label="vwx50/True",fontsize=10,color="white",style="solid",shape="box"];1011 -> 1967[label="",style="solid", color="burlywood", weight=9]; 1967 -> 1206[label="",style="solid", color="burlywood", weight=3]; 1014 -> 24[label="",style="dashed", color="red", weight=0]; 1014[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1014 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1013[label="compare1 vwx300 vwx400 vwx51",fontsize=16,color="burlywood",shape="triangle"];1968[label="vwx51/False",fontsize=10,color="white",style="solid",shape="box"];1013 -> 1968[label="",style="solid", color="burlywood", weight=9]; 1968 -> 1209[label="",style="solid", color="burlywood", weight=3]; 1969[label="vwx51/True",fontsize=10,color="white",style="solid",shape="box"];1013 -> 1969[label="",style="solid", color="burlywood", weight=9]; 1969 -> 1210[label="",style="solid", color="burlywood", weight=3]; 1016 -> 26[label="",style="dashed", color="red", weight=0]; 1016[label="vwx300 <= vwx400",fontsize=16,color="magenta"];1016 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1015[label="compare1 vwx300 vwx400 vwx52",fontsize=16,color="burlywood",shape="triangle"];1970[label="vwx52/False",fontsize=10,color="white",style="solid",shape="box"];1015 -> 1970[label="",style="solid", color="burlywood", weight=9]; 1970 -> 1213[label="",style="solid", color="burlywood", weight=3]; 1971[label="vwx52/True",fontsize=10,color="white",style="solid",shape="box"];1015 -> 1971[label="",style="solid", color="burlywood", weight=9]; 1971 -> 1214[label="",style="solid", color="burlywood", weight=3]; 1017[label="primEqNat (Succ vwx2300) vwx240",fontsize=16,color="burlywood",shape="box"];1972[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];1017 -> 1972[label="",style="solid", color="burlywood", weight=9]; 1972 -> 1215[label="",style="solid", color="burlywood", weight=3]; 1973[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];1017 -> 1973[label="",style="solid", color="burlywood", weight=9]; 1973 -> 1216[label="",style="solid", color="burlywood", weight=3]; 1018[label="primEqNat Zero vwx240",fontsize=16,color="burlywood",shape="box"];1974[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];1018 -> 1974[label="",style="solid", color="burlywood", weight=9]; 1974 -> 1217[label="",style="solid", color="burlywood", weight=3]; 1975[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];1018 -> 1975[label="",style="solid", color="burlywood", weight=9]; 1975 -> 1218[label="",style="solid", color="burlywood", weight=3]; 1019[label="vwx241",fontsize=16,color="green",shape="box"];1020[label="vwx231",fontsize=16,color="green",shape="box"];1021 -> 592[label="",style="dashed", color="red", weight=0]; 1021[label="vwx230 == vwx240",fontsize=16,color="magenta"];1021 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1022 -> 593[label="",style="dashed", color="red", weight=0]; 1022[label="vwx230 == vwx240",fontsize=16,color="magenta"];1022 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1023 -> 594[label="",style="dashed", color="red", weight=0]; 1023[label="vwx230 == vwx240",fontsize=16,color="magenta"];1023 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1024 -> 595[label="",style="dashed", color="red", weight=0]; 1024[label="vwx230 == vwx240",fontsize=16,color="magenta"];1024 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1025 -> 596[label="",style="dashed", color="red", weight=0]; 1025[label="vwx230 == vwx240",fontsize=16,color="magenta"];1025 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1026 -> 597[label="",style="dashed", color="red", weight=0]; 1026[label="vwx230 == vwx240",fontsize=16,color="magenta"];1026 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1027 -> 598[label="",style="dashed", color="red", weight=0]; 1027[label="vwx230 == vwx240",fontsize=16,color="magenta"];1027 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1028 -> 599[label="",style="dashed", color="red", weight=0]; 1028[label="vwx230 == vwx240",fontsize=16,color="magenta"];1028 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1029 -> 600[label="",style="dashed", color="red", weight=0]; 1029[label="vwx230 == vwx240",fontsize=16,color="magenta"];1029 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1030 -> 601[label="",style="dashed", color="red", weight=0]; 1030[label="vwx230 == vwx240",fontsize=16,color="magenta"];1030 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1031 -> 602[label="",style="dashed", color="red", weight=0]; 1031[label="vwx230 == vwx240",fontsize=16,color="magenta"];1031 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1032 -> 603[label="",style="dashed", color="red", weight=0]; 1032[label="vwx230 == vwx240",fontsize=16,color="magenta"];1032 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1033 -> 604[label="",style="dashed", color="red", weight=0]; 1033[label="vwx230 == vwx240",fontsize=16,color="magenta"];1033 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1034 -> 605[label="",style="dashed", color="red", weight=0]; 1034[label="vwx230 == vwx240",fontsize=16,color="magenta"];1034 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1035[label="vwx240",fontsize=16,color="green",shape="box"];1036[label="vwx230",fontsize=16,color="green",shape="box"];1037[label="vwx240",fontsize=16,color="green",shape="box"];1038[label="vwx230",fontsize=16,color="green",shape="box"];1039[label="vwx240",fontsize=16,color="green",shape="box"];1040[label="vwx230",fontsize=16,color="green",shape="box"];1041[label="vwx240",fontsize=16,color="green",shape="box"];1042[label="vwx230",fontsize=16,color="green",shape="box"];1043[label="vwx240",fontsize=16,color="green",shape="box"];1044[label="vwx230",fontsize=16,color="green",shape="box"];1045[label="vwx240",fontsize=16,color="green",shape="box"];1046[label="vwx230",fontsize=16,color="green",shape="box"];1047[label="vwx240",fontsize=16,color="green",shape="box"];1048[label="vwx230",fontsize=16,color="green",shape="box"];1049[label="vwx240",fontsize=16,color="green",shape="box"];1050[label="vwx230",fontsize=16,color="green",shape="box"];1051[label="vwx240",fontsize=16,color="green",shape="box"];1052[label="vwx230",fontsize=16,color="green",shape="box"];1053[label="vwx240",fontsize=16,color="green",shape="box"];1054[label="vwx230",fontsize=16,color="green",shape="box"];1055[label="vwx240",fontsize=16,color="green",shape="box"];1056[label="vwx230",fontsize=16,color="green",shape="box"];1057[label="vwx240",fontsize=16,color="green",shape="box"];1058[label="vwx230",fontsize=16,color="green",shape="box"];1059[label="vwx240",fontsize=16,color="green",shape="box"];1060[label="vwx230",fontsize=16,color="green",shape="box"];1061[label="vwx240",fontsize=16,color="green",shape="box"];1062[label="vwx230",fontsize=16,color="green",shape="box"];1063[label="vwx240",fontsize=16,color="green",shape="box"];1064[label="vwx230",fontsize=16,color="green",shape="box"];1065[label="vwx240",fontsize=16,color="green",shape="box"];1066[label="vwx230",fontsize=16,color="green",shape="box"];1067[label="vwx240",fontsize=16,color="green",shape="box"];1068[label="vwx230",fontsize=16,color="green",shape="box"];1069[label="vwx240",fontsize=16,color="green",shape="box"];1070[label="vwx230",fontsize=16,color="green",shape="box"];1071[label="vwx240",fontsize=16,color="green",shape="box"];1072[label="vwx230",fontsize=16,color="green",shape="box"];1073[label="vwx240",fontsize=16,color="green",shape="box"];1074[label="vwx230",fontsize=16,color="green",shape="box"];1075[label="vwx240",fontsize=16,color="green",shape="box"];1076[label="vwx230",fontsize=16,color="green",shape="box"];1077[label="vwx240",fontsize=16,color="green",shape="box"];1078[label="vwx230",fontsize=16,color="green",shape="box"];1079[label="vwx240",fontsize=16,color="green",shape="box"];1080[label="vwx230",fontsize=16,color="green",shape="box"];1081[label="vwx240",fontsize=16,color="green",shape="box"];1082[label="vwx230",fontsize=16,color="green",shape="box"];1083[label="vwx240",fontsize=16,color="green",shape="box"];1084[label="vwx230",fontsize=16,color="green",shape="box"];1085[label="vwx240",fontsize=16,color="green",shape="box"];1086[label="vwx230",fontsize=16,color="green",shape="box"];1087[label="vwx240",fontsize=16,color="green",shape="box"];1088[label="vwx230",fontsize=16,color="green",shape="box"];1089[label="vwx240",fontsize=16,color="green",shape="box"];1090[label="vwx230",fontsize=16,color="green",shape="box"];1091 -> 594[label="",style="dashed", color="red", weight=0]; 1091[label="vwx231 == vwx241",fontsize=16,color="magenta"];1091 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1092 -> 603[label="",style="dashed", color="red", weight=0]; 1092[label="vwx231 == vwx241",fontsize=16,color="magenta"];1092 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1093 -> 594[label="",style="dashed", color="red", weight=0]; 1093[label="vwx230 == vwx240",fontsize=16,color="magenta"];1093 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1094 -> 603[label="",style="dashed", color="red", weight=0]; 1094[label="vwx230 == vwx240",fontsize=16,color="magenta"];1094 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1095 -> 592[label="",style="dashed", color="red", weight=0]; 1095[label="vwx231 == vwx241",fontsize=16,color="magenta"];1095 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1096 -> 593[label="",style="dashed", color="red", weight=0]; 1096[label="vwx231 == vwx241",fontsize=16,color="magenta"];1096 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1097 -> 594[label="",style="dashed", color="red", weight=0]; 1097[label="vwx231 == vwx241",fontsize=16,color="magenta"];1097 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1098 -> 595[label="",style="dashed", color="red", weight=0]; 1098[label="vwx231 == vwx241",fontsize=16,color="magenta"];1098 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1099 -> 596[label="",style="dashed", color="red", weight=0]; 1099[label="vwx231 == vwx241",fontsize=16,color="magenta"];1099 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1100 -> 597[label="",style="dashed", color="red", weight=0]; 1100[label="vwx231 == vwx241",fontsize=16,color="magenta"];1100 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1101 -> 598[label="",style="dashed", color="red", weight=0]; 1101[label="vwx231 == vwx241",fontsize=16,color="magenta"];1101 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1102 -> 599[label="",style="dashed", color="red", weight=0]; 1102[label="vwx231 == vwx241",fontsize=16,color="magenta"];1102 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1103 -> 600[label="",style="dashed", color="red", weight=0]; 1103[label="vwx231 == vwx241",fontsize=16,color="magenta"];1103 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1104 -> 601[label="",style="dashed", color="red", weight=0]; 1104[label="vwx231 == vwx241",fontsize=16,color="magenta"];1104 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1104 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1105 -> 602[label="",style="dashed", color="red", weight=0]; 1105[label="vwx231 == vwx241",fontsize=16,color="magenta"];1105 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1105 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1106 -> 603[label="",style="dashed", color="red", weight=0]; 1106[label="vwx231 == vwx241",fontsize=16,color="magenta"];1106 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1106 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1107 -> 604[label="",style="dashed", color="red", weight=0]; 1107[label="vwx231 == vwx241",fontsize=16,color="magenta"];1107 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1107 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1108 -> 605[label="",style="dashed", color="red", weight=0]; 1108[label="vwx231 == vwx241",fontsize=16,color="magenta"];1108 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1109 -> 592[label="",style="dashed", color="red", weight=0]; 1109[label="vwx230 == vwx240",fontsize=16,color="magenta"];1109 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1109 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1110 -> 593[label="",style="dashed", color="red", weight=0]; 1110[label="vwx230 == vwx240",fontsize=16,color="magenta"];1110 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1110 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1111 -> 594[label="",style="dashed", color="red", weight=0]; 1111[label="vwx230 == vwx240",fontsize=16,color="magenta"];1111 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1111 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1112 -> 595[label="",style="dashed", color="red", weight=0]; 1112[label="vwx230 == vwx240",fontsize=16,color="magenta"];1112 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1112 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1113 -> 596[label="",style="dashed", color="red", weight=0]; 1113[label="vwx230 == vwx240",fontsize=16,color="magenta"];1113 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1114 -> 597[label="",style="dashed", color="red", weight=0]; 1114[label="vwx230 == vwx240",fontsize=16,color="magenta"];1114 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1115 -> 598[label="",style="dashed", color="red", weight=0]; 1115[label="vwx230 == vwx240",fontsize=16,color="magenta"];1115 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1116 -> 599[label="",style="dashed", color="red", weight=0]; 1116[label="vwx230 == vwx240",fontsize=16,color="magenta"];1116 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1117 -> 600[label="",style="dashed", color="red", weight=0]; 1117[label="vwx230 == vwx240",fontsize=16,color="magenta"];1117 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1117 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1118 -> 601[label="",style="dashed", color="red", weight=0]; 1118[label="vwx230 == vwx240",fontsize=16,color="magenta"];1118 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1118 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1119 -> 602[label="",style="dashed", color="red", weight=0]; 1119[label="vwx230 == vwx240",fontsize=16,color="magenta"];1119 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1120 -> 603[label="",style="dashed", color="red", weight=0]; 1120[label="vwx230 == vwx240",fontsize=16,color="magenta"];1120 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1121 -> 604[label="",style="dashed", color="red", weight=0]; 1121[label="vwx230 == vwx240",fontsize=16,color="magenta"];1121 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1122 -> 605[label="",style="dashed", color="red", weight=0]; 1122[label="vwx230 == vwx240",fontsize=16,color="magenta"];1122 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1123[label="vwx240",fontsize=16,color="green",shape="box"];1124[label="vwx230",fontsize=16,color="green",shape="box"];1125[label="vwx240",fontsize=16,color="green",shape="box"];1126[label="vwx230",fontsize=16,color="green",shape="box"];1127[label="vwx240",fontsize=16,color="green",shape="box"];1128[label="vwx230",fontsize=16,color="green",shape="box"];1129[label="vwx240",fontsize=16,color="green",shape="box"];1130[label="vwx230",fontsize=16,color="green",shape="box"];1131[label="vwx240",fontsize=16,color="green",shape="box"];1132[label="vwx230",fontsize=16,color="green",shape="box"];1133[label="vwx240",fontsize=16,color="green",shape="box"];1134[label="vwx230",fontsize=16,color="green",shape="box"];1135[label="vwx240",fontsize=16,color="green",shape="box"];1136[label="vwx230",fontsize=16,color="green",shape="box"];1137[label="vwx240",fontsize=16,color="green",shape="box"];1138[label="vwx230",fontsize=16,color="green",shape="box"];1139[label="vwx240",fontsize=16,color="green",shape="box"];1140[label="vwx230",fontsize=16,color="green",shape="box"];1141[label="vwx240",fontsize=16,color="green",shape="box"];1142[label="vwx230",fontsize=16,color="green",shape="box"];1143[label="vwx240",fontsize=16,color="green",shape="box"];1144[label="vwx230",fontsize=16,color="green",shape="box"];1145[label="vwx240",fontsize=16,color="green",shape="box"];1146[label="vwx230",fontsize=16,color="green",shape="box"];1147[label="vwx240",fontsize=16,color="green",shape="box"];1148[label="vwx230",fontsize=16,color="green",shape="box"];1149[label="vwx240",fontsize=16,color="green",shape="box"];1150[label="vwx230",fontsize=16,color="green",shape="box"];1151 -> 565[label="",style="dashed", color="red", weight=0]; 1151[label="vwx231 * vwx240",fontsize=16,color="magenta"];1151 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1152 -> 565[label="",style="dashed", color="red", weight=0]; 1152[label="vwx230 * vwx241",fontsize=16,color="magenta"];1152 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1152 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1153[label="primEqInt (Pos (Succ vwx2300)) (Pos (Succ vwx2400))",fontsize=16,color="black",shape="box"];1153 -> 1315[label="",style="solid", color="black", weight=3]; 1154[label="primEqInt (Pos (Succ vwx2300)) (Pos Zero)",fontsize=16,color="black",shape="box"];1154 -> 1316[label="",style="solid", color="black", weight=3]; 1155[label="False",fontsize=16,color="green",shape="box"];1156[label="primEqInt (Pos Zero) (Pos (Succ vwx2400))",fontsize=16,color="black",shape="box"];1156 -> 1317[label="",style="solid", color="black", weight=3]; 1157[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1157 -> 1318[label="",style="solid", color="black", weight=3]; 1158[label="primEqInt (Pos Zero) (Neg (Succ vwx2400))",fontsize=16,color="black",shape="box"];1158 -> 1319[label="",style="solid", color="black", weight=3]; 1159[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1159 -> 1320[label="",style="solid", color="black", weight=3]; 1160[label="False",fontsize=16,color="green",shape="box"];1161[label="primEqInt (Neg (Succ vwx2300)) (Neg (Succ vwx2400))",fontsize=16,color="black",shape="box"];1161 -> 1321[label="",style="solid", color="black", weight=3]; 1162[label="primEqInt (Neg (Succ vwx2300)) (Neg Zero)",fontsize=16,color="black",shape="box"];1162 -> 1322[label="",style="solid", color="black", weight=3]; 1163[label="primEqInt (Neg Zero) (Pos (Succ vwx2400))",fontsize=16,color="black",shape="box"];1163 -> 1323[label="",style="solid", color="black", weight=3]; 1164[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1164 -> 1324[label="",style="solid", color="black", weight=3]; 1165[label="primEqInt (Neg Zero) (Neg (Succ vwx2400))",fontsize=16,color="black",shape="box"];1165 -> 1325[label="",style="solid", color="black", weight=3]; 1166[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1166 -> 1326[label="",style="solid", color="black", weight=3]; 1167[label="vwx232 == vwx242",fontsize=16,color="blue",shape="box"];1976[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1976[label="",style="solid", color="blue", weight=9]; 1976 -> 1327[label="",style="solid", color="blue", weight=3]; 1977[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1977[label="",style="solid", color="blue", weight=9]; 1977 -> 1328[label="",style="solid", color="blue", weight=3]; 1978[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1978[label="",style="solid", color="blue", weight=9]; 1978 -> 1329[label="",style="solid", color="blue", weight=3]; 1979[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1979[label="",style="solid", color="blue", weight=9]; 1979 -> 1330[label="",style="solid", color="blue", weight=3]; 1980[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1980[label="",style="solid", color="blue", weight=9]; 1980 -> 1331[label="",style="solid", color="blue", weight=3]; 1981[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1981[label="",style="solid", color="blue", weight=9]; 1981 -> 1332[label="",style="solid", color="blue", weight=3]; 1982[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1982[label="",style="solid", color="blue", weight=9]; 1982 -> 1333[label="",style="solid", color="blue", weight=3]; 1983[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1983[label="",style="solid", color="blue", weight=9]; 1983 -> 1334[label="",style="solid", color="blue", weight=3]; 1984[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1984[label="",style="solid", color="blue", weight=9]; 1984 -> 1335[label="",style="solid", color="blue", weight=3]; 1985[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1985[label="",style="solid", color="blue", weight=9]; 1985 -> 1336[label="",style="solid", color="blue", weight=3]; 1986[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1986[label="",style="solid", color="blue", weight=9]; 1986 -> 1337[label="",style="solid", color="blue", weight=3]; 1987[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1987[label="",style="solid", color="blue", weight=9]; 1987 -> 1338[label="",style="solid", color="blue", weight=3]; 1988[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1988[label="",style="solid", color="blue", weight=9]; 1988 -> 1339[label="",style="solid", color="blue", weight=3]; 1989[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 1989[label="",style="solid", color="blue", weight=9]; 1989 -> 1340[label="",style="solid", color="blue", weight=3]; 1168[label="vwx231 == vwx241",fontsize=16,color="blue",shape="box"];1990[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1990[label="",style="solid", color="blue", weight=9]; 1990 -> 1341[label="",style="solid", color="blue", weight=3]; 1991[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1991[label="",style="solid", color="blue", weight=9]; 1991 -> 1342[label="",style="solid", color="blue", weight=3]; 1992[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1992[label="",style="solid", color="blue", weight=9]; 1992 -> 1343[label="",style="solid", color="blue", weight=3]; 1993[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1993[label="",style="solid", color="blue", weight=9]; 1993 -> 1344[label="",style="solid", color="blue", weight=3]; 1994[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1994[label="",style="solid", color="blue", weight=9]; 1994 -> 1345[label="",style="solid", color="blue", weight=3]; 1995[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1995[label="",style="solid", color="blue", weight=9]; 1995 -> 1346[label="",style="solid", color="blue", weight=3]; 1996[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1996[label="",style="solid", color="blue", weight=9]; 1996 -> 1347[label="",style="solid", color="blue", weight=3]; 1997[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1997[label="",style="solid", color="blue", weight=9]; 1997 -> 1348[label="",style="solid", color="blue", weight=3]; 1998[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1998[label="",style="solid", color="blue", weight=9]; 1998 -> 1349[label="",style="solid", color="blue", weight=3]; 1999[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 1999[label="",style="solid", color="blue", weight=9]; 1999 -> 1350[label="",style="solid", color="blue", weight=3]; 2000[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 2000[label="",style="solid", color="blue", weight=9]; 2000 -> 1351[label="",style="solid", color="blue", weight=3]; 2001[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 2001[label="",style="solid", color="blue", weight=9]; 2001 -> 1352[label="",style="solid", color="blue", weight=3]; 2002[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 2002[label="",style="solid", color="blue", weight=9]; 2002 -> 1353[label="",style="solid", color="blue", weight=3]; 2003[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1168 -> 2003[label="",style="solid", color="blue", weight=9]; 2003 -> 1354[label="",style="solid", color="blue", weight=3]; 1169 -> 592[label="",style="dashed", color="red", weight=0]; 1169[label="vwx230 == vwx240",fontsize=16,color="magenta"];1169 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1170 -> 593[label="",style="dashed", color="red", weight=0]; 1170[label="vwx230 == vwx240",fontsize=16,color="magenta"];1170 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1171 -> 594[label="",style="dashed", color="red", weight=0]; 1171[label="vwx230 == vwx240",fontsize=16,color="magenta"];1171 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1172 -> 595[label="",style="dashed", color="red", weight=0]; 1172[label="vwx230 == vwx240",fontsize=16,color="magenta"];1172 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1173 -> 596[label="",style="dashed", color="red", weight=0]; 1173[label="vwx230 == vwx240",fontsize=16,color="magenta"];1173 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1173 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1174 -> 597[label="",style="dashed", color="red", weight=0]; 1174[label="vwx230 == vwx240",fontsize=16,color="magenta"];1174 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1174 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1175 -> 598[label="",style="dashed", color="red", weight=0]; 1175[label="vwx230 == vwx240",fontsize=16,color="magenta"];1175 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1175 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1176 -> 599[label="",style="dashed", color="red", weight=0]; 1176[label="vwx230 == vwx240",fontsize=16,color="magenta"];1176 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1177 -> 600[label="",style="dashed", color="red", weight=0]; 1177[label="vwx230 == vwx240",fontsize=16,color="magenta"];1177 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1178 -> 601[label="",style="dashed", color="red", weight=0]; 1178[label="vwx230 == vwx240",fontsize=16,color="magenta"];1178 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1179 -> 602[label="",style="dashed", color="red", weight=0]; 1179[label="vwx230 == vwx240",fontsize=16,color="magenta"];1179 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1180 -> 603[label="",style="dashed", color="red", weight=0]; 1180[label="vwx230 == vwx240",fontsize=16,color="magenta"];1180 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1181 -> 604[label="",style="dashed", color="red", weight=0]; 1181[label="vwx230 == vwx240",fontsize=16,color="magenta"];1181 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1182 -> 605[label="",style="dashed", color="red", weight=0]; 1182[label="vwx230 == vwx240",fontsize=16,color="magenta"];1182 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1183 -> 565[label="",style="dashed", color="red", weight=0]; 1183[label="vwx231 * vwx240",fontsize=16,color="magenta"];1183 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1184 -> 565[label="",style="dashed", color="red", weight=0]; 1184[label="vwx230 * vwx241",fontsize=16,color="magenta"];1184 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1185[label="primMulNat (Succ vwx40000) vwx3010",fontsize=16,color="burlywood",shape="box"];2004[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2004[label="",style="solid", color="burlywood", weight=9]; 2004 -> 1387[label="",style="solid", color="burlywood", weight=3]; 2005[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2005[label="",style="solid", color="burlywood", weight=9]; 2005 -> 1388[label="",style="solid", color="burlywood", weight=3]; 1186[label="primMulNat Zero vwx3010",fontsize=16,color="burlywood",shape="box"];2006[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];1186 -> 2006[label="",style="solid", color="burlywood", weight=9]; 2006 -> 1389[label="",style="solid", color="burlywood", weight=3]; 2007[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1186 -> 2007[label="",style="solid", color="burlywood", weight=9]; 2007 -> 1390[label="",style="solid", color="burlywood", weight=3]; 1187[label="vwx3010",fontsize=16,color="green",shape="box"];1188[label="vwx4000",fontsize=16,color="green",shape="box"];1189[label="vwx3010",fontsize=16,color="green",shape="box"];1190[label="vwx4000",fontsize=16,color="green",shape="box"];1191[label="vwx400",fontsize=16,color="green",shape="box"];1192[label="vwx300",fontsize=16,color="green",shape="box"];1193[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1193 -> 1391[label="",style="solid", color="black", weight=3]; 1194[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1194 -> 1392[label="",style="solid", color="black", weight=3]; 1195[label="vwx300",fontsize=16,color="green",shape="box"];1196[label="vwx400",fontsize=16,color="green",shape="box"];1197[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1197 -> 1393[label="",style="solid", color="black", weight=3]; 1198[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1198 -> 1394[label="",style="solid", color="black", weight=3]; 1199[label="vwx400",fontsize=16,color="green",shape="box"];1200[label="vwx300",fontsize=16,color="green",shape="box"];1201[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1201 -> 1395[label="",style="solid", color="black", weight=3]; 1202[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1202 -> 1396[label="",style="solid", color="black", weight=3]; 1203[label="vwx400",fontsize=16,color="green",shape="box"];1204[label="vwx300",fontsize=16,color="green",shape="box"];1205[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1205 -> 1397[label="",style="solid", color="black", weight=3]; 1206[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1206 -> 1398[label="",style="solid", color="black", weight=3]; 1207[label="vwx400",fontsize=16,color="green",shape="box"];1208[label="vwx300",fontsize=16,color="green",shape="box"];1209[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1209 -> 1399[label="",style="solid", color="black", weight=3]; 1210[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1210 -> 1400[label="",style="solid", color="black", weight=3]; 1211[label="vwx400",fontsize=16,color="green",shape="box"];1212[label="vwx300",fontsize=16,color="green",shape="box"];1213[label="compare1 vwx300 vwx400 False",fontsize=16,color="black",shape="box"];1213 -> 1401[label="",style="solid", color="black", weight=3]; 1214[label="compare1 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1214 -> 1402[label="",style="solid", color="black", weight=3]; 1215[label="primEqNat (Succ vwx2300) (Succ vwx2400)",fontsize=16,color="black",shape="box"];1215 -> 1403[label="",style="solid", color="black", weight=3]; 1216[label="primEqNat (Succ vwx2300) Zero",fontsize=16,color="black",shape="box"];1216 -> 1404[label="",style="solid", color="black", weight=3]; 1217[label="primEqNat Zero (Succ vwx2400)",fontsize=16,color="black",shape="box"];1217 -> 1405[label="",style="solid", color="black", weight=3]; 1218[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1218 -> 1406[label="",style="solid", color="black", weight=3]; 1219[label="vwx240",fontsize=16,color="green",shape="box"];1220[label="vwx230",fontsize=16,color="green",shape="box"];1221[label="vwx240",fontsize=16,color="green",shape="box"];1222[label="vwx230",fontsize=16,color="green",shape="box"];1223[label="vwx240",fontsize=16,color="green",shape="box"];1224[label="vwx230",fontsize=16,color="green",shape="box"];1225[label="vwx240",fontsize=16,color="green",shape="box"];1226[label="vwx230",fontsize=16,color="green",shape="box"];1227[label="vwx240",fontsize=16,color="green",shape="box"];1228[label="vwx230",fontsize=16,color="green",shape="box"];1229[label="vwx240",fontsize=16,color="green",shape="box"];1230[label="vwx230",fontsize=16,color="green",shape="box"];1231[label="vwx240",fontsize=16,color="green",shape="box"];1232[label="vwx230",fontsize=16,color="green",shape="box"];1233[label="vwx240",fontsize=16,color="green",shape="box"];1234[label="vwx230",fontsize=16,color="green",shape="box"];1235[label="vwx240",fontsize=16,color="green",shape="box"];1236[label="vwx230",fontsize=16,color="green",shape="box"];1237[label="vwx240",fontsize=16,color="green",shape="box"];1238[label="vwx230",fontsize=16,color="green",shape="box"];1239[label="vwx240",fontsize=16,color="green",shape="box"];1240[label="vwx230",fontsize=16,color="green",shape="box"];1241[label="vwx240",fontsize=16,color="green",shape="box"];1242[label="vwx230",fontsize=16,color="green",shape="box"];1243[label="vwx240",fontsize=16,color="green",shape="box"];1244[label="vwx230",fontsize=16,color="green",shape="box"];1245[label="vwx240",fontsize=16,color="green",shape="box"];1246[label="vwx230",fontsize=16,color="green",shape="box"];1247[label="vwx241",fontsize=16,color="green",shape="box"];1248[label="vwx231",fontsize=16,color="green",shape="box"];1249[label="vwx241",fontsize=16,color="green",shape="box"];1250[label="vwx231",fontsize=16,color="green",shape="box"];1251[label="vwx240",fontsize=16,color="green",shape="box"];1252[label="vwx230",fontsize=16,color="green",shape="box"];1253[label="vwx240",fontsize=16,color="green",shape="box"];1254[label="vwx230",fontsize=16,color="green",shape="box"];1255[label="vwx241",fontsize=16,color="green",shape="box"];1256[label="vwx231",fontsize=16,color="green",shape="box"];1257[label="vwx241",fontsize=16,color="green",shape="box"];1258[label="vwx231",fontsize=16,color="green",shape="box"];1259[label="vwx241",fontsize=16,color="green",shape="box"];1260[label="vwx231",fontsize=16,color="green",shape="box"];1261[label="vwx241",fontsize=16,color="green",shape="box"];1262[label="vwx231",fontsize=16,color="green",shape="box"];1263[label="vwx241",fontsize=16,color="green",shape="box"];1264[label="vwx231",fontsize=16,color="green",shape="box"];1265[label="vwx241",fontsize=16,color="green",shape="box"];1266[label="vwx231",fontsize=16,color="green",shape="box"];1267[label="vwx241",fontsize=16,color="green",shape="box"];1268[label="vwx231",fontsize=16,color="green",shape="box"];1269[label="vwx241",fontsize=16,color="green",shape="box"];1270[label="vwx231",fontsize=16,color="green",shape="box"];1271[label="vwx241",fontsize=16,color="green",shape="box"];1272[label="vwx231",fontsize=16,color="green",shape="box"];1273[label="vwx241",fontsize=16,color="green",shape="box"];1274[label="vwx231",fontsize=16,color="green",shape="box"];1275[label="vwx241",fontsize=16,color="green",shape="box"];1276[label="vwx231",fontsize=16,color="green",shape="box"];1277[label="vwx241",fontsize=16,color="green",shape="box"];1278[label="vwx231",fontsize=16,color="green",shape="box"];1279[label="vwx241",fontsize=16,color="green",shape="box"];1280[label="vwx231",fontsize=16,color="green",shape="box"];1281[label="vwx241",fontsize=16,color="green",shape="box"];1282[label="vwx231",fontsize=16,color="green",shape="box"];1283[label="vwx240",fontsize=16,color="green",shape="box"];1284[label="vwx230",fontsize=16,color="green",shape="box"];1285[label="vwx240",fontsize=16,color="green",shape="box"];1286[label="vwx230",fontsize=16,color="green",shape="box"];1287[label="vwx240",fontsize=16,color="green",shape="box"];1288[label="vwx230",fontsize=16,color="green",shape="box"];1289[label="vwx240",fontsize=16,color="green",shape="box"];1290[label="vwx230",fontsize=16,color="green",shape="box"];1291[label="vwx240",fontsize=16,color="green",shape="box"];1292[label="vwx230",fontsize=16,color="green",shape="box"];1293[label="vwx240",fontsize=16,color="green",shape="box"];1294[label="vwx230",fontsize=16,color="green",shape="box"];1295[label="vwx240",fontsize=16,color="green",shape="box"];1296[label="vwx230",fontsize=16,color="green",shape="box"];1297[label="vwx240",fontsize=16,color="green",shape="box"];1298[label="vwx230",fontsize=16,color="green",shape="box"];1299[label="vwx240",fontsize=16,color="green",shape="box"];1300[label="vwx230",fontsize=16,color="green",shape="box"];1301[label="vwx240",fontsize=16,color="green",shape="box"];1302[label="vwx230",fontsize=16,color="green",shape="box"];1303[label="vwx240",fontsize=16,color="green",shape="box"];1304[label="vwx230",fontsize=16,color="green",shape="box"];1305[label="vwx240",fontsize=16,color="green",shape="box"];1306[label="vwx230",fontsize=16,color="green",shape="box"];1307[label="vwx240",fontsize=16,color="green",shape="box"];1308[label="vwx230",fontsize=16,color="green",shape="box"];1309[label="vwx240",fontsize=16,color="green",shape="box"];1310[label="vwx230",fontsize=16,color="green",shape="box"];1311[label="vwx231",fontsize=16,color="green",shape="box"];1312[label="vwx240",fontsize=16,color="green",shape="box"];1313[label="vwx230",fontsize=16,color="green",shape="box"];1314[label="vwx241",fontsize=16,color="green",shape="box"];1315 -> 938[label="",style="dashed", color="red", weight=0]; 1315[label="primEqNat vwx2300 vwx2400",fontsize=16,color="magenta"];1315 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1316[label="False",fontsize=16,color="green",shape="box"];1317[label="False",fontsize=16,color="green",shape="box"];1318[label="True",fontsize=16,color="green",shape="box"];1319[label="False",fontsize=16,color="green",shape="box"];1320[label="True",fontsize=16,color="green",shape="box"];1321 -> 938[label="",style="dashed", color="red", weight=0]; 1321[label="primEqNat vwx2300 vwx2400",fontsize=16,color="magenta"];1321 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1322[label="False",fontsize=16,color="green",shape="box"];1323[label="False",fontsize=16,color="green",shape="box"];1324[label="True",fontsize=16,color="green",shape="box"];1325[label="False",fontsize=16,color="green",shape="box"];1326[label="True",fontsize=16,color="green",shape="box"];1327 -> 592[label="",style="dashed", color="red", weight=0]; 1327[label="vwx232 == vwx242",fontsize=16,color="magenta"];1327 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1328 -> 593[label="",style="dashed", color="red", weight=0]; 1328[label="vwx232 == vwx242",fontsize=16,color="magenta"];1328 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1329 -> 594[label="",style="dashed", color="red", weight=0]; 1329[label="vwx232 == vwx242",fontsize=16,color="magenta"];1329 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1330 -> 595[label="",style="dashed", color="red", weight=0]; 1330[label="vwx232 == vwx242",fontsize=16,color="magenta"];1330 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1331 -> 596[label="",style="dashed", color="red", weight=0]; 1331[label="vwx232 == vwx242",fontsize=16,color="magenta"];1331 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1332 -> 597[label="",style="dashed", color="red", weight=0]; 1332[label="vwx232 == vwx242",fontsize=16,color="magenta"];1332 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1333 -> 598[label="",style="dashed", color="red", weight=0]; 1333[label="vwx232 == vwx242",fontsize=16,color="magenta"];1333 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1334 -> 599[label="",style="dashed", color="red", weight=0]; 1334[label="vwx232 == vwx242",fontsize=16,color="magenta"];1334 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1335 -> 600[label="",style="dashed", color="red", weight=0]; 1335[label="vwx232 == vwx242",fontsize=16,color="magenta"];1335 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1336 -> 601[label="",style="dashed", color="red", weight=0]; 1336[label="vwx232 == vwx242",fontsize=16,color="magenta"];1336 -> 1429[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1430[label="",style="dashed", color="magenta", weight=3]; 1337 -> 602[label="",style="dashed", color="red", weight=0]; 1337[label="vwx232 == vwx242",fontsize=16,color="magenta"];1337 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1338 -> 603[label="",style="dashed", color="red", weight=0]; 1338[label="vwx232 == vwx242",fontsize=16,color="magenta"];1338 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1339 -> 604[label="",style="dashed", color="red", weight=0]; 1339[label="vwx232 == vwx242",fontsize=16,color="magenta"];1339 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1340 -> 605[label="",style="dashed", color="red", weight=0]; 1340[label="vwx232 == vwx242",fontsize=16,color="magenta"];1340 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1341 -> 592[label="",style="dashed", color="red", weight=0]; 1341[label="vwx231 == vwx241",fontsize=16,color="magenta"];1341 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1342 -> 593[label="",style="dashed", color="red", weight=0]; 1342[label="vwx231 == vwx241",fontsize=16,color="magenta"];1342 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1343 -> 594[label="",style="dashed", color="red", weight=0]; 1343[label="vwx231 == vwx241",fontsize=16,color="magenta"];1343 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1344 -> 595[label="",style="dashed", color="red", weight=0]; 1344[label="vwx231 == vwx241",fontsize=16,color="magenta"];1344 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1345 -> 596[label="",style="dashed", color="red", weight=0]; 1345[label="vwx231 == vwx241",fontsize=16,color="magenta"];1345 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1346 -> 597[label="",style="dashed", color="red", weight=0]; 1346[label="vwx231 == vwx241",fontsize=16,color="magenta"];1346 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1347 -> 598[label="",style="dashed", color="red", weight=0]; 1347[label="vwx231 == vwx241",fontsize=16,color="magenta"];1347 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1348 -> 599[label="",style="dashed", color="red", weight=0]; 1348[label="vwx231 == vwx241",fontsize=16,color="magenta"];1348 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1349 -> 600[label="",style="dashed", color="red", weight=0]; 1349[label="vwx231 == vwx241",fontsize=16,color="magenta"];1349 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1350 -> 601[label="",style="dashed", color="red", weight=0]; 1350[label="vwx231 == vwx241",fontsize=16,color="magenta"];1350 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1351 -> 602[label="",style="dashed", color="red", weight=0]; 1351[label="vwx231 == vwx241",fontsize=16,color="magenta"];1351 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1352 -> 603[label="",style="dashed", color="red", weight=0]; 1352[label="vwx231 == vwx241",fontsize=16,color="magenta"];1352 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1353 -> 604[label="",style="dashed", color="red", weight=0]; 1353[label="vwx231 == vwx241",fontsize=16,color="magenta"];1353 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1354 -> 605[label="",style="dashed", color="red", weight=0]; 1354[label="vwx231 == vwx241",fontsize=16,color="magenta"];1354 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1355[label="vwx240",fontsize=16,color="green",shape="box"];1356[label="vwx230",fontsize=16,color="green",shape="box"];1357[label="vwx240",fontsize=16,color="green",shape="box"];1358[label="vwx230",fontsize=16,color="green",shape="box"];1359[label="vwx240",fontsize=16,color="green",shape="box"];1360[label="vwx230",fontsize=16,color="green",shape="box"];1361[label="vwx240",fontsize=16,color="green",shape="box"];1362[label="vwx230",fontsize=16,color="green",shape="box"];1363[label="vwx240",fontsize=16,color="green",shape="box"];1364[label="vwx230",fontsize=16,color="green",shape="box"];1365[label="vwx240",fontsize=16,color="green",shape="box"];1366[label="vwx230",fontsize=16,color="green",shape="box"];1367[label="vwx240",fontsize=16,color="green",shape="box"];1368[label="vwx230",fontsize=16,color="green",shape="box"];1369[label="vwx240",fontsize=16,color="green",shape="box"];1370[label="vwx230",fontsize=16,color="green",shape="box"];1371[label="vwx240",fontsize=16,color="green",shape="box"];1372[label="vwx230",fontsize=16,color="green",shape="box"];1373[label="vwx240",fontsize=16,color="green",shape="box"];1374[label="vwx230",fontsize=16,color="green",shape="box"];1375[label="vwx240",fontsize=16,color="green",shape="box"];1376[label="vwx230",fontsize=16,color="green",shape="box"];1377[label="vwx240",fontsize=16,color="green",shape="box"];1378[label="vwx230",fontsize=16,color="green",shape="box"];1379[label="vwx240",fontsize=16,color="green",shape="box"];1380[label="vwx230",fontsize=16,color="green",shape="box"];1381[label="vwx240",fontsize=16,color="green",shape="box"];1382[label="vwx230",fontsize=16,color="green",shape="box"];1383[label="vwx231",fontsize=16,color="green",shape="box"];1384[label="vwx240",fontsize=16,color="green",shape="box"];1385[label="vwx230",fontsize=16,color="green",shape="box"];1386[label="vwx241",fontsize=16,color="green",shape="box"];1387[label="primMulNat (Succ vwx40000) (Succ vwx30100)",fontsize=16,color="black",shape="box"];1387 -> 1467[label="",style="solid", color="black", weight=3]; 1388[label="primMulNat (Succ vwx40000) Zero",fontsize=16,color="black",shape="box"];1388 -> 1468[label="",style="solid", color="black", weight=3]; 1389[label="primMulNat Zero (Succ vwx30100)",fontsize=16,color="black",shape="box"];1389 -> 1469[label="",style="solid", color="black", weight=3]; 1390[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1390 -> 1470[label="",style="solid", color="black", weight=3]; 1391[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1391 -> 1471[label="",style="solid", color="black", weight=3]; 1392[label="LT",fontsize=16,color="green",shape="box"];1393[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1393 -> 1472[label="",style="solid", color="black", weight=3]; 1394[label="LT",fontsize=16,color="green",shape="box"];1395[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1395 -> 1473[label="",style="solid", color="black", weight=3]; 1396[label="LT",fontsize=16,color="green",shape="box"];1397[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1397 -> 1474[label="",style="solid", color="black", weight=3]; 1398[label="LT",fontsize=16,color="green",shape="box"];1399[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1399 -> 1475[label="",style="solid", color="black", weight=3]; 1400[label="LT",fontsize=16,color="green",shape="box"];1401[label="compare0 vwx300 vwx400 otherwise",fontsize=16,color="black",shape="box"];1401 -> 1476[label="",style="solid", color="black", weight=3]; 1402[label="LT",fontsize=16,color="green",shape="box"];1403 -> 938[label="",style="dashed", color="red", weight=0]; 1403[label="primEqNat vwx2300 vwx2400",fontsize=16,color="magenta"];1403 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1404[label="False",fontsize=16,color="green",shape="box"];1405[label="False",fontsize=16,color="green",shape="box"];1406[label="True",fontsize=16,color="green",shape="box"];1407[label="vwx2400",fontsize=16,color="green",shape="box"];1408[label="vwx2300",fontsize=16,color="green",shape="box"];1409[label="vwx2400",fontsize=16,color="green",shape="box"];1410[label="vwx2300",fontsize=16,color="green",shape="box"];1411[label="vwx242",fontsize=16,color="green",shape="box"];1412[label="vwx232",fontsize=16,color="green",shape="box"];1413[label="vwx242",fontsize=16,color="green",shape="box"];1414[label="vwx232",fontsize=16,color="green",shape="box"];1415[label="vwx242",fontsize=16,color="green",shape="box"];1416[label="vwx232",fontsize=16,color="green",shape="box"];1417[label="vwx242",fontsize=16,color="green",shape="box"];1418[label="vwx232",fontsize=16,color="green",shape="box"];1419[label="vwx242",fontsize=16,color="green",shape="box"];1420[label="vwx232",fontsize=16,color="green",shape="box"];1421[label="vwx242",fontsize=16,color="green",shape="box"];1422[label="vwx232",fontsize=16,color="green",shape="box"];1423[label="vwx242",fontsize=16,color="green",shape="box"];1424[label="vwx232",fontsize=16,color="green",shape="box"];1425[label="vwx242",fontsize=16,color="green",shape="box"];1426[label="vwx232",fontsize=16,color="green",shape="box"];1427[label="vwx242",fontsize=16,color="green",shape="box"];1428[label="vwx232",fontsize=16,color="green",shape="box"];1429[label="vwx242",fontsize=16,color="green",shape="box"];1430[label="vwx232",fontsize=16,color="green",shape="box"];1431[label="vwx242",fontsize=16,color="green",shape="box"];1432[label="vwx232",fontsize=16,color="green",shape="box"];1433[label="vwx242",fontsize=16,color="green",shape="box"];1434[label="vwx232",fontsize=16,color="green",shape="box"];1435[label="vwx242",fontsize=16,color="green",shape="box"];1436[label="vwx232",fontsize=16,color="green",shape="box"];1437[label="vwx242",fontsize=16,color="green",shape="box"];1438[label="vwx232",fontsize=16,color="green",shape="box"];1439[label="vwx241",fontsize=16,color="green",shape="box"];1440[label="vwx231",fontsize=16,color="green",shape="box"];1441[label="vwx241",fontsize=16,color="green",shape="box"];1442[label="vwx231",fontsize=16,color="green",shape="box"];1443[label="vwx241",fontsize=16,color="green",shape="box"];1444[label="vwx231",fontsize=16,color="green",shape="box"];1445[label="vwx241",fontsize=16,color="green",shape="box"];1446[label="vwx231",fontsize=16,color="green",shape="box"];1447[label="vwx241",fontsize=16,color="green",shape="box"];1448[label="vwx231",fontsize=16,color="green",shape="box"];1449[label="vwx241",fontsize=16,color="green",shape="box"];1450[label="vwx231",fontsize=16,color="green",shape="box"];1451[label="vwx241",fontsize=16,color="green",shape="box"];1452[label="vwx231",fontsize=16,color="green",shape="box"];1453[label="vwx241",fontsize=16,color="green",shape="box"];1454[label="vwx231",fontsize=16,color="green",shape="box"];1455[label="vwx241",fontsize=16,color="green",shape="box"];1456[label="vwx231",fontsize=16,color="green",shape="box"];1457[label="vwx241",fontsize=16,color="green",shape="box"];1458[label="vwx231",fontsize=16,color="green",shape="box"];1459[label="vwx241",fontsize=16,color="green",shape="box"];1460[label="vwx231",fontsize=16,color="green",shape="box"];1461[label="vwx241",fontsize=16,color="green",shape="box"];1462[label="vwx231",fontsize=16,color="green",shape="box"];1463[label="vwx241",fontsize=16,color="green",shape="box"];1464[label="vwx231",fontsize=16,color="green",shape="box"];1465[label="vwx241",fontsize=16,color="green",shape="box"];1466[label="vwx231",fontsize=16,color="green",shape="box"];1467 -> 1479[label="",style="dashed", color="red", weight=0]; 1467[label="primPlusNat (primMulNat vwx40000 (Succ vwx30100)) (Succ vwx30100)",fontsize=16,color="magenta"];1467 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1468[label="Zero",fontsize=16,color="green",shape="box"];1469[label="Zero",fontsize=16,color="green",shape="box"];1470[label="Zero",fontsize=16,color="green",shape="box"];1471[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1471 -> 1481[label="",style="solid", color="black", weight=3]; 1472[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1472 -> 1482[label="",style="solid", color="black", weight=3]; 1473[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1473 -> 1483[label="",style="solid", color="black", weight=3]; 1474[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1474 -> 1484[label="",style="solid", color="black", weight=3]; 1475[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1475 -> 1485[label="",style="solid", color="black", weight=3]; 1476[label="compare0 vwx300 vwx400 True",fontsize=16,color="black",shape="box"];1476 -> 1486[label="",style="solid", color="black", weight=3]; 1477[label="vwx2400",fontsize=16,color="green",shape="box"];1478[label="vwx2300",fontsize=16,color="green",shape="box"];1480 -> 1001[label="",style="dashed", color="red", weight=0]; 1480[label="primMulNat vwx40000 (Succ vwx30100)",fontsize=16,color="magenta"];1480 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1479[label="primPlusNat vwx53 (Succ vwx30100)",fontsize=16,color="burlywood",shape="triangle"];2008[label="vwx53/Succ vwx530",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2008[label="",style="solid", color="burlywood", weight=9]; 2008 -> 1489[label="",style="solid", color="burlywood", weight=3]; 2009[label="vwx53/Zero",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2009[label="",style="solid", color="burlywood", weight=9]; 2009 -> 1490[label="",style="solid", color="burlywood", weight=3]; 1481[label="GT",fontsize=16,color="green",shape="box"];1482[label="GT",fontsize=16,color="green",shape="box"];1483[label="GT",fontsize=16,color="green",shape="box"];1484[label="GT",fontsize=16,color="green",shape="box"];1485[label="GT",fontsize=16,color="green",shape="box"];1486[label="GT",fontsize=16,color="green",shape="box"];1487[label="Succ vwx30100",fontsize=16,color="green",shape="box"];1488[label="vwx40000",fontsize=16,color="green",shape="box"];1489[label="primPlusNat (Succ vwx530) (Succ vwx30100)",fontsize=16,color="black",shape="box"];1489 -> 1491[label="",style="solid", color="black", weight=3]; 1490[label="primPlusNat Zero (Succ vwx30100)",fontsize=16,color="black",shape="box"];1490 -> 1492[label="",style="solid", color="black", weight=3]; 1491[label="Succ (Succ (primPlusNat vwx530 vwx30100))",fontsize=16,color="green",shape="box"];1491 -> 1493[label="",style="dashed", color="green", weight=3]; 1492[label="Succ vwx30100",fontsize=16,color="green",shape="box"];1493[label="primPlusNat vwx530 vwx30100",fontsize=16,color="burlywood",shape="triangle"];2010[label="vwx530/Succ vwx5300",fontsize=10,color="white",style="solid",shape="box"];1493 -> 2010[label="",style="solid", color="burlywood", weight=9]; 2010 -> 1494[label="",style="solid", color="burlywood", weight=3]; 2011[label="vwx530/Zero",fontsize=10,color="white",style="solid",shape="box"];1493 -> 2011[label="",style="solid", color="burlywood", weight=9]; 2011 -> 1495[label="",style="solid", color="burlywood", weight=3]; 1494[label="primPlusNat (Succ vwx5300) vwx30100",fontsize=16,color="burlywood",shape="box"];2012[label="vwx30100/Succ vwx301000",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2012[label="",style="solid", color="burlywood", weight=9]; 2012 -> 1496[label="",style="solid", color="burlywood", weight=3]; 2013[label="vwx30100/Zero",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2013[label="",style="solid", color="burlywood", weight=9]; 2013 -> 1497[label="",style="solid", color="burlywood", weight=3]; 1495[label="primPlusNat Zero vwx30100",fontsize=16,color="burlywood",shape="box"];2014[label="vwx30100/Succ vwx301000",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2014[label="",style="solid", color="burlywood", weight=9]; 2014 -> 1498[label="",style="solid", color="burlywood", weight=3]; 2015[label="vwx30100/Zero",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2015[label="",style="solid", color="burlywood", weight=9]; 2015 -> 1499[label="",style="solid", color="burlywood", weight=3]; 1496[label="primPlusNat (Succ vwx5300) (Succ vwx301000)",fontsize=16,color="black",shape="box"];1496 -> 1500[label="",style="solid", color="black", weight=3]; 1497[label="primPlusNat (Succ vwx5300) Zero",fontsize=16,color="black",shape="box"];1497 -> 1501[label="",style="solid", color="black", weight=3]; 1498[label="primPlusNat Zero (Succ vwx301000)",fontsize=16,color="black",shape="box"];1498 -> 1502[label="",style="solid", color="black", weight=3]; 1499[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1499 -> 1503[label="",style="solid", color="black", weight=3]; 1500[label="Succ (Succ (primPlusNat vwx5300 vwx301000))",fontsize=16,color="green",shape="box"];1500 -> 1504[label="",style="dashed", color="green", weight=3]; 1501[label="Succ vwx5300",fontsize=16,color="green",shape="box"];1502[label="Succ vwx301000",fontsize=16,color="green",shape="box"];1503[label="Zero",fontsize=16,color="green",shape="box"];1504 -> 1493[label="",style="dashed", color="red", weight=0]; 1504[label="primPlusNat vwx5300 vwx301000",fontsize=16,color="magenta"];1504 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1505[label="vwx5300",fontsize=16,color="green",shape="box"];1506[label="vwx301000",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(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) 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(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) new_primCompAux(vwx300, vwx400, vwx35, app(app(app(ty_@3, ed), ee), ef)) -> new_compare5(vwx300, vwx400, ed, ee, ef) new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(app(ty_@2, gd), ge))) -> new_ltEs(vwx300, vwx400, gd, ge) new_compare21(vwx300, vwx400, False, be, bf) -> new_ltEs2(vwx300, vwx400, be, bf) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(ty_[], bbc), hh) -> new_lt0(vwx301, vwx401, bbc) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, he), hf), hg, hh) -> new_lt(vwx300, vwx400, he, hf) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(ty_Maybe, bce)) -> new_ltEs1(vwx302, vwx402, bce) new_primCompAux(vwx300, vwx400, vwx35, app(ty_Maybe, ea)) -> new_compare3(vwx300, vwx400, ea) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], baa), hg, hh) -> new_lt0(vwx300, vwx400, baa) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(app(ty_Either, cg), da))) -> new_ltEs2(vwx301, vwx401, cg, da) new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(app(ty_@2, eh), fa)), fb)) -> new_ltEs(vwx300, vwx400, eh, fa) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(ty_Maybe, bbd), hh) -> new_lt1(vwx301, vwx401, bbd) new_compare20(vwx300, vwx400, False, bd) -> new_ltEs1(vwx300, vwx400, bd) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bab), hg, hh) -> new_lt1(vwx300, vwx400, bab) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(ty_Maybe, bd)), bb)) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs3(vwx300, vwx400, hb, hc, hd) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_[], ce)) -> new_ltEs0(vwx301, vwx401, ce) new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(ty_[], fc)), fb)) -> new_ltEs0(vwx300, vwx400, fc) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(app(ty_@2, bba), bbb)), hh)) -> new_lt(vwx301, vwx401, bba, bbb) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(ty_[], bcd)) -> new_ltEs0(vwx302, vwx402, bcd) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hg), hh)) -> new_lt2(vwx300, vwx400, bac, bad) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_Either, cg), da)) -> new_ltEs2(vwx301, vwx401, cg, da) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, bd), bb) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(app(ty_Either, gh), ha))) -> new_ltEs2(vwx300, vwx400, gh, ha) new_ltEs1(Just(:(vwx300, vwx301)), Just(:(vwx400, vwx401)), app(ty_[], de)) -> new_compare(vwx301, vwx401, de) new_primCompAux(vwx300, vwx400, vwx35, app(app(ty_Either, eb), ec)) -> new_compare4(vwx300, vwx400, eb, ec) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(ty_[], bbc)), hh)) -> new_lt0(vwx301, vwx401, bbc) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(vwx301, vwx401, cc, cd) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(app(ty_Either, bbe), bbf), hh) -> new_lt2(vwx301, vwx401, bbe, bbf) new_primCompAux(vwx300, vwx400, vwx35, app(app(ty_@2, df), dg)) -> new_compare0(vwx300, vwx400, df, dg) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(app(app(ty_@3, bch), bda), bdb))) -> new_ltEs3(vwx302, vwx402, bch, bda, bdb) new_lt(vwx300, vwx400, h, ba) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(app(app(ty_@3, bg), bh), ca)), bb)) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(ty_[], gf))) -> new_ltEs0(vwx300, vwx400, gf) new_compare4(vwx300, vwx400, be, bf) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) new_ltEs2(Left(vwx300), Left(vwx400), app(app(app(ty_@3, fh), ga), gb), fb) -> new_ltEs3(vwx300, vwx400, fh, ga, gb) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(app(ty_Either, be), bf)), bb)) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(ty_Maybe, bab)), hg), hh)) -> new_lt1(vwx300, vwx400, bab) new_compare(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_primCompAux(vwx300, vwx400, new_compare1(vwx301, vwx401, de), de) new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(ty_Maybe, gg))) -> new_ltEs1(vwx300, vwx400, gg) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(app(app(ty_@3, bbg), bbh), bca)), hh)) -> new_lt3(vwx301, vwx401, bbg, bbh, bca) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(ty_Maybe, cf))) -> new_ltEs1(vwx301, vwx401, cf) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(app(ty_@2, bcb), bcc)) -> new_ltEs(vwx302, vwx402, bcb, bcc) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs3(vwx302, vwx402, bch, bda, bdb) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(app(app(ty_@3, bae), baf), bag)), hg), hh)) -> new_lt3(vwx300, vwx400, bae, baf, bag) new_ltEs2(Right(vwx300), Right(vwx400), gc, app(app(ty_@2, gd), ge)) -> new_ltEs(vwx300, vwx400, gd, ge) new_ltEs2(Right(vwx300), Right(vwx400), gc, app(app(ty_Either, gh), ha)) -> new_ltEs2(vwx300, vwx400, gh, ha) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(app(ty_@2, bba), bbb), hh) -> new_lt(vwx301, vwx401, bba, bbb) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(app(ty_Either, bcf), bcg)) -> new_ltEs2(vwx302, vwx402, bcf, bcg) new_compare22(vwx300, vwx400, False, bg, bh, ca) -> new_ltEs3(vwx300, vwx400, bg, bh, ca) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(app(ty_Either, bbe), bbf)), hh)) -> new_lt2(vwx301, vwx401, bbe, bbf) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(app(ty_Either, bcf), bcg))) -> new_ltEs2(vwx302, vwx402, bcf, bcg) new_primCompAux(vwx300, vwx400, vwx35, app(ty_[], dh)) -> new_compare(vwx300, vwx400, dh) new_ltEs2(Left(vwx300), Left(vwx400), app(ty_[], fc), fb) -> new_ltEs0(vwx300, vwx400, fc) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, bg), bh), ca), bb) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs3(vwx301, vwx401, db, dc, dd) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(ty_[], ce))) -> new_ltEs0(vwx301, vwx401, ce) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, be), bf), bb) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) new_ltEs0(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_compare(vwx301, vwx401, de) new_ltEs2(Right(vwx300), Right(vwx400), gc, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs3(vwx300, vwx400, hb, hc, hd) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(ty_Maybe, bbd)), hh)) -> new_lt1(vwx301, vwx401, bbd) new_ltEs2(Right(vwx300), Right(vwx400), gc, app(ty_Maybe, gg)) -> new_ltEs1(vwx300, vwx400, gg) new_compare0(vwx300, vwx400, h, ba) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) new_compare(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_compare(vwx301, vwx401, de) new_lt1(vwx300, vwx400, bd) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) new_lt2(vwx300, vwx400, be, bf) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) new_ltEs1(Just(:(vwx300, vwx301)), Just(:(vwx400, vwx401)), app(ty_[], de)) -> new_primCompAux(vwx300, vwx400, new_compare1(vwx301, vwx401, de), de) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(app(ty_@2, bcb), bcc))) -> new_ltEs(vwx302, vwx402, bcb, bcc) new_compare2(vwx300, vwx400, False, h, ba) -> new_ltEs(vwx300, vwx400, h, ba) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, h), ba), bb) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(vwx301, vwx401, cc, cd) new_ltEs2(Left(vwx300), Left(vwx400), app(app(ty_Either, ff), fg), fb) -> new_ltEs2(vwx300, vwx400, ff, fg) new_compare5(vwx300, vwx400, bg, bh, ca) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) new_lt0(vwx300, vwx400, bc) -> new_compare(vwx300, vwx400, bc) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bae), baf), bag), hg, hh) -> new_lt3(vwx300, vwx400, bae, baf, bag) new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(app(ty_Either, ff), fg)), fb)) -> new_ltEs2(vwx300, vwx400, ff, fg) new_ltEs2(Left(vwx300), Left(vwx400), app(app(ty_@2, eh), fa), fb) -> new_ltEs(vwx300, vwx400, eh, fa) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(ty_[], baa)), hg), hh)) -> new_lt0(vwx300, vwx400, baa) new_lt3(vwx300, vwx400, bg, bh, ca) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) new_ltEs0(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_primCompAux(vwx300, vwx400, new_compare1(vwx301, vwx401, de), de) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(ty_Maybe, bce))) -> new_ltEs1(vwx302, vwx402, bce) new_compare3(vwx300, vwx400, bd) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) new_ltEs1(Just(vwx30), Just(vwx40), app(ty_Maybe, eg)) -> new_ltEs1(vwx30, vwx40, eg) new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(app(app(ty_@3, fh), ga), gb)), fb)) -> new_ltEs3(vwx300, vwx400, fh, ga, gb) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(ty_[], bc)), bb)) -> new_compare(vwx300, vwx400, bc) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_Maybe, cf)) -> new_ltEs1(vwx301, vwx401, cf) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(app(ty_@2, he), hf)), hg), hh)) -> new_lt(vwx300, vwx400, he, hf) new_ltEs2(Left(vwx300), Left(vwx400), app(ty_Maybe, fd), fb) -> new_ltEs1(vwx300, vwx400, fd) new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], bc), bb) -> new_compare(vwx300, vwx400, bc) new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(app(app(ty_@3, db), dc), dd))) -> new_ltEs3(vwx301, vwx401, db, dc, dd) new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(ty_Maybe, fd)), fb)) -> new_ltEs1(vwx300, vwx400, fd) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bac), bad), hg, hh) -> new_lt2(vwx300, vwx400, bac, bad) new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(ty_[], bcd))) -> new_ltEs0(vwx302, vwx402, bcd) new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(app(app(ty_@3, bbg), bbh), bca), hh) -> new_lt3(vwx301, vwx401, bbg, bbh, bca) new_ltEs2(Right(vwx300), Right(vwx400), gc, app(ty_[], gf)) -> new_ltEs0(vwx300, vwx400, gf) The TRS R consists of the following rules: new_primCmpInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_ltEs4(Right(vwx300), Right(vwx400), gc, ty_Float) -> new_ltEs9(vwx300, vwx400) new_esEs25(vwx231, vwx241, ty_Int) -> new_esEs13(vwx231, vwx241) new_esEs16(vwx230, vwx240, app(ty_[], bea)) -> new_esEs15(vwx230, vwx240, bea) new_lt17(vwx300, vwx400) -> new_esEs8(new_compare9(vwx300, vwx400)) new_esEs23(vwx230, vwx240, ty_Float) -> new_esEs21(vwx230, vwx240) new_esEs5(Just(vwx230), Just(vwx240), app(ty_[], bfg)) -> new_esEs15(vwx230, vwx240, bfg) new_esEs10(vwx231, vwx241, ty_Integer) -> new_esEs12(vwx231, vwx241) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs8(EQ) -> False new_primCmpInt(Pos(Zero), Neg(Succ(vwx4000))) -> GT new_esEs25(vwx231, vwx241, ty_Integer) -> new_esEs12(vwx231, vwx241) new_primCmpInt(Neg(Succ(vwx3000)), Neg(vwx400)) -> new_primCmpNat0(vwx400, Succ(vwx3000)) new_compare19(Double(vwx300, Pos(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare9(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_compare19(Double(vwx300, Neg(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare9(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_compare115(vwx300, vwx400, True, be, bf) -> LT new_primMulNat0(Succ(vwx40000), Succ(vwx30100)) -> new_primPlusNat1(new_primMulNat0(vwx40000, Succ(vwx30100)), vwx30100) new_lt19(vwx300, vwx400, ty_@0) -> new_lt14(vwx300, vwx400) new_esEs10(vwx231, vwx241, ty_Int) -> new_esEs13(vwx231, vwx241) new_compare8(vwx300, vwx400) -> new_compare27(vwx300, vwx400, new_esEs18(vwx300, vwx400)) new_ltEs4(Left(vwx300), Left(vwx400), ty_Double, fb) -> new_ltEs17(vwx300, vwx400) new_compare113(vwx300, vwx400, False) -> GT new_esEs5(Just(vwx230), Just(vwx240), ty_Bool) -> new_esEs17(vwx230, vwx240) new_esEs26(vwx230, vwx240, app(ty_[], cef)) -> new_esEs15(vwx230, vwx240, cef) new_ltEs15(EQ, LT) -> False new_ltEs4(Right(vwx300), Right(vwx400), gc, app(ty_[], gf)) -> new_ltEs8(vwx300, vwx400, gf) new_primCompAux0(vwx39, GT) -> GT new_esEs24(vwx232, vwx242, ty_Char) -> new_esEs19(vwx232, vwx242) new_ltEs19(vwx302, vwx402, ty_Ordering) -> new_ltEs15(vwx302, vwx402) new_compare7(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Integer) -> new_compare11(new_sr(vwx300, vwx401), new_sr(vwx400, vwx301)) new_esEs19(Char(vwx230), Char(vwx240)) -> new_primEqNat0(vwx230, vwx240) new_esEs6(Left(vwx230), Left(vwx240), ty_Integer, cgb) -> new_esEs12(vwx230, vwx240) new_primEqInt(Pos(Succ(vwx2300)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx2400))) -> False new_ltEs15(GT, LT) -> False new_esEs8(GT) -> False new_esEs24(vwx232, vwx242, app(app(ty_@2, ccf), ccg)) -> new_esEs4(vwx232, vwx242, ccf, ccg) new_ltEs19(vwx302, vwx402, ty_@0) -> new_ltEs12(vwx302, vwx402) new_compare1(:(vwx300, vwx301), [], de) -> GT new_ltEs10(Just(vwx30), Just(vwx40), ty_@0) -> new_ltEs12(vwx30, vwx40) new_ltEs10(Just(vwx30), Just(vwx40), ty_Ordering) -> new_ltEs15(vwx30, vwx40) new_primEqNat0(Succ(vwx2300), Succ(vwx2400)) -> new_primEqNat0(vwx2300, vwx2400) new_esEs6(Right(vwx230), Right(vwx240), cga, ty_Float) -> new_esEs21(vwx230, vwx240) new_primCompAux0(vwx39, LT) -> LT new_esEs5(Just(vwx230), Just(vwx240), ty_@0) -> new_esEs14(vwx230, vwx240) new_ltEs4(Left(vwx300), Left(vwx400), app(ty_[], fc), fb) -> new_ltEs8(vwx300, vwx400, fc) new_esEs22(vwx231, vwx241, ty_Bool) -> new_esEs17(vwx231, vwx241) new_not(LT) -> new_not0 new_ltEs18(vwx301, vwx401, ty_Double) -> new_ltEs17(vwx301, vwx401) new_esEs18(GT, GT) -> True new_esEs16(vwx230, vwx240, ty_Bool) -> new_esEs17(vwx230, vwx240) new_ltEs13(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, hh) -> new_pePe(new_lt19(vwx300, vwx400, bah), vwx300, vwx400, new_pePe(new_lt20(vwx301, vwx401, hg), vwx301, vwx401, new_ltEs19(vwx302, vwx402, hh), hg), bah) new_primCmpNat0(Zero, Zero) -> EQ new_compare26(vwx300, vwx400, False, bd) -> new_compare111(vwx300, vwx400, new_ltEs10(vwx300, vwx400, bd), bd) new_esEs16(vwx230, vwx240, ty_Ordering) -> new_esEs18(vwx230, vwx240) new_esEs27(vwx23, vwx24, ty_Bool) -> new_esEs17(vwx23, vwx24) new_compare23(vwx300, vwx400, False, h, ba) -> new_compare112(vwx300, vwx400, new_ltEs7(vwx300, vwx400, h, ba), h, ba) new_esEs25(vwx231, vwx241, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vwx231, vwx241, cec, ced, cee) new_esEs21(Float(vwx230, vwx231), Float(vwx240, vwx241)) -> new_esEs13(new_sr0(vwx230, vwx241), new_sr0(vwx231, vwx240)) new_compare17(vwx300, vwx400, bg, bh, ca) -> new_compare28(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) new_ltEs19(vwx302, vwx402, ty_Double) -> new_ltEs17(vwx302, vwx402) new_ltEs19(vwx302, vwx402, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs13(vwx302, vwx402, bch, bda, bdb) new_compare10(vwx300, vwx400, ty_Char) -> new_compare18(vwx300, vwx400) new_compare10(vwx300, vwx400, ty_Bool) -> new_compare14(vwx300, vwx400) new_primCompAux1(vwx300, vwx400, vwx35, de) -> new_primCompAux0(vwx35, new_compare10(vwx300, vwx400, de)) new_primEqNat0(Succ(vwx2300), Zero) -> False new_primEqNat0(Zero, Succ(vwx2400)) -> False new_esEs14(@0, @0) -> True new_esEs12(Integer(vwx230), Integer(vwx240)) -> new_primEqInt(vwx230, vwx240) new_esEs4(@2(vwx230, vwx231), @2(vwx240, vwx241), bha, bhb) -> new_asAs(new_esEs23(vwx230, vwx240, bha), new_esEs22(vwx231, vwx241, bhb)) new_ltEs10(Just(vwx30), Just(vwx40), app(app(app(ty_@3, bah), hg), hh)) -> new_ltEs13(vwx30, vwx40, bah, hg, hh) new_ltEs4(Left(vwx300), Left(vwx400), ty_Bool, fb) -> new_ltEs11(vwx300, vwx400) new_esEs22(vwx231, vwx241, ty_Ordering) -> new_esEs18(vwx231, vwx241) new_esEs6(Right(vwx230), Right(vwx240), cga, ty_Bool) -> new_esEs17(vwx230, vwx240) new_ltEs15(GT, EQ) -> False new_esEs5(Just(vwx230), Just(vwx240), ty_Ordering) -> new_esEs18(vwx230, vwx240) new_compare110(vwx300, vwx400, True) -> LT new_ltEs4(Left(vwx300), Left(vwx400), app(ty_Ratio, bdc), fb) -> new_ltEs5(vwx300, vwx400, bdc) new_esEs26(vwx230, vwx240, ty_Ordering) -> new_esEs18(vwx230, vwx240) new_ltEs10(Nothing, Just(vwx40), bfc) -> True new_lt10(vwx300, vwx400, ty_@0) -> new_lt14(vwx300, vwx400) new_primCmpInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> GT new_compare9(vwx30, vwx40) -> new_primCmpInt(vwx30, vwx40) new_ltEs18(vwx301, vwx401, ty_Bool) -> new_ltEs11(vwx301, vwx401) new_ltEs4(Right(vwx300), Right(vwx400), gc, ty_Integer) -> new_ltEs6(vwx300, vwx400) new_ltEs10(Just(vwx30), Just(vwx40), ty_Integer) -> new_ltEs6(vwx30, vwx40) new_ltEs4(Left(vwx300), Left(vwx400), app(ty_Maybe, fd), fb) -> new_ltEs10(vwx300, vwx400, fd) new_compare10(vwx300, vwx400, ty_Integer) -> new_compare11(vwx300, vwx400) new_ltEs4(Right(vwx300), Right(vwx400), gc, app(ty_Maybe, gg)) -> new_ltEs10(vwx300, vwx400, gg) new_ltEs17(vwx30, vwx40) -> new_not(new_compare19(vwx30, vwx40)) new_esEs24(vwx232, vwx242, ty_Float) -> new_esEs21(vwx232, vwx242) new_compare1(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_primCompAux1(vwx300, vwx400, new_compare1(vwx301, vwx401, de), de) new_compare15(@0, @0) -> EQ new_ltEs4(Right(vwx300), Right(vwx400), gc, app(ty_Ratio, bdd)) -> new_ltEs5(vwx300, vwx400, bdd) new_esEs26(vwx230, vwx240, ty_@0) -> new_esEs14(vwx230, vwx240) new_esEs6(Left(vwx230), Left(vwx240), ty_Int, cgb) -> new_esEs13(vwx230, vwx240) new_primCmpNat0(Zero, Succ(vwx4000)) -> LT new_ltEs9(vwx30, vwx40) -> new_not(new_compare12(vwx30, vwx40)) new_esEs6(Right(vwx230), Right(vwx240), cga, app(ty_Maybe, dac)) -> new_esEs5(vwx230, vwx240, dac) new_esEs26(vwx230, vwx240, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vwx230, vwx240, cfe, cff, cfg) new_esEs26(vwx230, vwx240, ty_Bool) -> new_esEs17(vwx230, vwx240) new_lt20(vwx301, vwx401, ty_Integer) -> new_lt8(vwx301, vwx401) new_lt9(vwx300, vwx400) -> new_esEs8(new_compare14(vwx300, vwx400)) new_ltEs19(vwx302, vwx402, ty_Integer) -> new_ltEs6(vwx302, vwx402) new_esEs18(LT, LT) -> True new_ltEs10(Just(vwx30), Just(vwx40), ty_Double) -> new_ltEs17(vwx30, vwx40) new_sr(Integer(vwx4000), Integer(vwx3010)) -> Integer(new_primMulInt(vwx4000, vwx3010)) new_primCmpNat0(Succ(vwx3000), Zero) -> GT new_compare13(vwx300, vwx400, bd) -> new_compare26(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) new_esEs27(vwx23, vwx24, ty_@0) -> new_esEs14(vwx23, vwx24) new_ltEs10(Just(vwx30), Just(vwx40), app(ty_Maybe, eg)) -> new_ltEs10(vwx30, vwx40, eg) new_esEs26(vwx230, vwx240, ty_Integer) -> new_esEs12(vwx230, vwx240) new_compare10(vwx300, vwx400, ty_Int) -> new_compare9(vwx300, vwx400) new_ltEs10(Just(vwx30), Just(vwx40), ty_Float) -> new_ltEs9(vwx30, vwx40) new_esEs5(Just(vwx230), Just(vwx240), ty_Int) -> new_esEs13(vwx230, vwx240) new_compare25(vwx300, vwx400, True, be, bf) -> EQ new_ltEs18(vwx301, vwx401, ty_Int) -> new_ltEs16(vwx301, vwx401) new_lt12(vwx300, vwx400) -> new_esEs8(new_compare12(vwx300, vwx400)) new_esEs6(Left(vwx230), Left(vwx240), app(ty_Maybe, cha), cgb) -> new_esEs5(vwx230, vwx240, cha) new_esEs22(vwx231, vwx241, app(app(ty_Either, bhd), bhe)) -> new_esEs6(vwx231, vwx241, bhd, bhe) new_compare112(vwx300, vwx400, True, h, ba) -> LT new_esEs5(Just(vwx230), Just(vwx240), ty_Float) -> new_esEs21(vwx230, vwx240) new_esEs27(vwx23, vwx24, ty_Ordering) -> new_esEs18(vwx23, vwx24) new_esEs25(vwx231, vwx241, app(ty_[], cdd)) -> new_esEs15(vwx231, vwx241, cdd) new_lt20(vwx301, vwx401, app(ty_[], bbc)) -> new_lt11(vwx301, vwx401, bbc) new_compare23(vwx300, vwx400, True, h, ba) -> EQ new_compare10(vwx300, vwx400, app(ty_Maybe, ea)) -> new_compare13(vwx300, vwx400, ea) new_esEs24(vwx232, vwx242, ty_Int) -> new_esEs13(vwx232, vwx242) new_primEqInt(Pos(Zero), Neg(Succ(vwx2400))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx2400))) -> False new_esEs22(vwx231, vwx241, ty_Float) -> new_esEs21(vwx231, vwx241) new_esEs25(vwx231, vwx241, app(app(ty_@2, cdh), cea)) -> new_esEs4(vwx231, vwx241, cdh, cea) new_esEs5(Nothing, Nothing, bff) -> True new_esEs6(Right(vwx230), Right(vwx240), cga, ty_Ordering) -> new_esEs18(vwx230, vwx240) new_ltEs18(vwx301, vwx401, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs13(vwx301, vwx401, db, dc, dd) new_primEqInt(Neg(Succ(vwx2300)), Neg(Succ(vwx2400))) -> new_primEqNat0(vwx2300, vwx2400) new_esEs5(Nothing, Just(vwx240), bff) -> False new_esEs5(Just(vwx230), Nothing, bff) -> False new_esEs24(vwx232, vwx242, ty_Integer) -> new_esEs12(vwx232, vwx242) new_primCmpInt(Neg(Zero), Pos(Succ(vwx4000))) -> LT new_esEs5(Just(vwx230), Just(vwx240), app(app(ty_Either, bfh), bga)) -> new_esEs6(vwx230, vwx240, bfh, bga) new_ltEs19(vwx302, vwx402, ty_Char) -> new_ltEs14(vwx302, vwx402) new_esEs16(vwx230, vwx240, ty_Integer) -> new_esEs12(vwx230, vwx240) new_primMulInt(Pos(vwx4000), Pos(vwx3010)) -> Pos(new_primMulNat0(vwx4000, vwx3010)) new_compare10(vwx300, vwx400, app(app(ty_Either, eb), ec)) -> new_compare16(vwx300, vwx400, eb, ec) new_ltEs10(Just(vwx30), Just(vwx40), ty_Bool) -> new_ltEs11(vwx30, vwx40) new_esEs24(vwx232, vwx242, app(app(ty_Either, ccc), ccd)) -> new_esEs6(vwx232, vwx242, ccc, ccd) new_lt8(vwx300, vwx400) -> new_esEs8(new_compare11(vwx300, vwx400)) new_esEs6(Left(vwx230), Left(vwx240), app(app(ty_Either, cgd), cge), cgb) -> new_esEs6(vwx230, vwx240, cgd, cge) new_esEs15([], [], bdh) -> True new_esEs5(Just(vwx230), Just(vwx240), app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs7(vwx230, vwx240, bgf, bgg, bgh) new_esEs22(vwx231, vwx241, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs7(vwx231, vwx241, cab, cac, cad) new_pePe(False, vwx23, vwx24, vwx25, cfh) -> new_asAs(new_esEs27(vwx23, vwx24, cfh), vwx25) new_ltEs12(vwx30, vwx40) -> new_not(new_compare15(vwx30, vwx40)) new_compare12(Float(vwx300, Pos(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare9(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_compare12(Float(vwx300, Neg(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare9(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_primMulNat0(Succ(vwx40000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx30100)) -> Zero new_ltEs11(False, False) -> True new_ltEs6(vwx30, vwx40) -> new_not(new_compare11(vwx30, vwx40)) new_compare26(vwx300, vwx400, True, bd) -> EQ new_esEs23(vwx230, vwx240, app(ty_Maybe, cbc)) -> new_esEs5(vwx230, vwx240, cbc) new_primPlusNat1(Succ(vwx530), vwx30100) -> Succ(Succ(new_primPlusNat0(vwx530, vwx30100))) new_compare10(vwx300, vwx400, app(app(app(ty_@3, ed), ee), ef)) -> new_compare17(vwx300, vwx400, ed, ee, ef) new_compare10(vwx300, vwx400, ty_Float) -> new_compare12(vwx300, vwx400) new_primPlusNat0(Succ(vwx5300), Zero) -> Succ(vwx5300) new_primPlusNat0(Zero, Succ(vwx301000)) -> Succ(vwx301000) new_lt19(vwx300, vwx400, app(ty_[], baa)) -> new_lt11(vwx300, vwx400, baa) new_ltEs19(vwx302, vwx402, app(ty_Ratio, dba)) -> new_ltEs5(vwx302, vwx402, dba) new_not(GT) -> False new_primPlusNat1(Zero, vwx30100) -> Succ(vwx30100) new_esEs6(Right(vwx230), Right(vwx240), cga, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs7(vwx230, vwx240, dad, dae, daf) new_ltEs4(Left(vwx300), Left(vwx400), app(app(app(ty_@3, fh), ga), gb), fb) -> new_ltEs13(vwx300, vwx400, fh, ga, gb) new_lt6(vwx300, vwx400, bg, bh, ca) -> new_esEs8(new_compare17(vwx300, vwx400, bg, bh, ca)) new_compare1([], [], de) -> EQ new_esEs16(vwx230, vwx240, ty_@0) -> new_esEs14(vwx230, vwx240) new_ltEs4(Right(vwx300), Right(vwx400), gc, ty_@0) -> new_ltEs12(vwx300, vwx400) new_esEs18(EQ, EQ) -> True new_ltEs11(True, True) -> True new_esEs24(vwx232, vwx242, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vwx232, vwx242, cda, cdb, cdc) new_ltEs10(Just(vwx30), Just(vwx40), app(app(ty_Either, gc), fb)) -> new_ltEs4(vwx30, vwx40, gc, fb) new_ltEs4(Right(vwx300), Right(vwx400), gc, ty_Ordering) -> new_ltEs15(vwx300, vwx400) new_ltEs4(Right(vwx300), Right(vwx400), gc, ty_Char) -> new_ltEs14(vwx300, vwx400) new_compare10(vwx300, vwx400, ty_Ordering) -> new_compare8(vwx300, vwx400) new_esEs20(Double(vwx230, vwx231), Double(vwx240, vwx241)) -> new_esEs13(new_sr0(vwx230, vwx241), new_sr0(vwx231, vwx240)) new_lt10(vwx300, vwx400, app(ty_Maybe, bd)) -> new_lt13(vwx300, vwx400, bd) new_esEs23(vwx230, vwx240, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs7(vwx230, vwx240, cbd, cbe, cbf) new_lt11(vwx300, vwx400, bc) -> new_esEs8(new_compare1(vwx300, vwx400, bc)) new_compare115(vwx300, vwx400, False, be, bf) -> GT new_esEs22(vwx231, vwx241, ty_Int) -> new_esEs13(vwx231, vwx241) new_ltEs18(vwx301, vwx401, ty_@0) -> new_ltEs12(vwx301, vwx401) new_primMulInt(Neg(vwx4000), Neg(vwx3010)) -> Pos(new_primMulNat0(vwx4000, vwx3010)) new_esEs11(vwx230, vwx240, ty_Int) -> new_esEs13(vwx230, vwx240) new_primCmpInt(Pos(Zero), Pos(Succ(vwx4000))) -> new_primCmpNat0(Zero, Succ(vwx4000)) new_esEs22(vwx231, vwx241, app(ty_Maybe, caa)) -> new_esEs5(vwx231, vwx241, caa) new_esEs6(Right(vwx230), Right(vwx240), cga, ty_Char) -> new_esEs19(vwx230, vwx240) new_ltEs11(False, True) -> True new_ltEs19(vwx302, vwx402, app(app(ty_@2, bcb), bcc)) -> new_ltEs7(vwx302, vwx402, bcb, bcc) new_ltEs15(EQ, GT) -> True new_lt10(vwx300, vwx400, ty_Int) -> new_lt17(vwx300, vwx400) new_ltEs18(vwx301, vwx401, ty_Ordering) -> new_ltEs15(vwx301, vwx401) new_compare24(vwx300, vwx400, False) -> new_compare110(vwx300, vwx400, new_ltEs11(vwx300, vwx400)) new_compare16(vwx300, vwx400, be, bf) -> new_compare25(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) new_esEs5(Just(vwx230), Just(vwx240), app(ty_Maybe, bge)) -> new_esEs5(vwx230, vwx240, bge) new_lt7(vwx300, vwx400, h, ba) -> new_esEs8(new_compare6(vwx300, vwx400, h, ba)) new_ltEs18(vwx301, vwx401, ty_Char) -> new_ltEs14(vwx301, vwx401) new_esEs18(LT, EQ) -> False new_esEs18(EQ, LT) -> False new_esEs6(Left(vwx230), Left(vwx240), app(ty_Ratio, cgf), cgb) -> new_esEs9(vwx230, vwx240, cgf) new_esEs23(vwx230, vwx240, app(app(ty_Either, caf), cag)) -> new_esEs6(vwx230, vwx240, caf, cag) new_esEs23(vwx230, vwx240, app(app(ty_@2, cba), cbb)) -> new_esEs4(vwx230, vwx240, cba, cbb) new_esEs27(vwx23, vwx24, app(ty_[], bdh)) -> new_esEs15(vwx23, vwx24, bdh) new_not0 -> True new_lt15(vwx300, vwx400, be, bf) -> new_esEs8(new_compare16(vwx300, vwx400, be, bf)) new_esEs22(vwx231, vwx241, ty_Double) -> new_esEs20(vwx231, vwx241) new_esEs16(vwx230, vwx240, app(app(ty_@2, bee), bef)) -> new_esEs4(vwx230, vwx240, bee, bef) new_primMulInt(Pos(vwx4000), Neg(vwx3010)) -> Neg(new_primMulNat0(vwx4000, vwx3010)) new_primMulInt(Neg(vwx4000), Pos(vwx3010)) -> Neg(new_primMulNat0(vwx4000, vwx3010)) new_esEs22(vwx231, vwx241, ty_Char) -> new_esEs19(vwx231, vwx241) new_lt18(vwx300, vwx400) -> new_esEs8(new_compare19(vwx300, vwx400)) new_lt10(vwx300, vwx400, app(ty_Ratio, bde)) -> new_lt4(vwx300, vwx400, bde) new_esEs6(Left(vwx230), Left(vwx240), app(app(ty_@2, cgg), cgh), cgb) -> new_esEs4(vwx230, vwx240, cgg, cgh) new_ltEs18(vwx301, vwx401, app(ty_Maybe, cf)) -> new_ltEs10(vwx301, vwx401, cf) new_lt19(vwx300, vwx400, ty_Float) -> new_lt12(vwx300, vwx400) new_ltEs4(Right(vwx300), Right(vwx400), gc, app(app(ty_Either, gh), ha)) -> new_ltEs4(vwx300, vwx400, gh, ha) new_esEs22(vwx231, vwx241, app(app(ty_@2, bhg), bhh)) -> new_esEs4(vwx231, vwx241, bhg, bhh) new_esEs24(vwx232, vwx242, app(ty_[], ccb)) -> new_esEs15(vwx232, vwx242, ccb) new_esEs6(Right(vwx230), Right(vwx240), cga, app(app(ty_Either, chf), chg)) -> new_esEs6(vwx230, vwx240, chf, chg) new_esEs15(:(vwx230, vwx231), :(vwx240, vwx241), bdh) -> new_asAs(new_esEs16(vwx230, vwx240, bdh), new_esEs15(vwx231, vwx241, bdh)) new_lt10(vwx300, vwx400, ty_Float) -> new_lt12(vwx300, vwx400) new_esEs6(Right(vwx230), Right(vwx240), cga, ty_Integer) -> new_esEs12(vwx230, vwx240) new_lt10(vwx300, vwx400, ty_Bool) -> new_lt9(vwx300, vwx400) new_esEs16(vwx230, vwx240, ty_Char) -> new_esEs19(vwx230, vwx240) new_lt10(vwx300, vwx400, app(app(ty_@2, h), ba)) -> new_lt7(vwx300, vwx400, h, ba) new_esEs23(vwx230, vwx240, ty_Int) -> new_esEs13(vwx230, vwx240) new_esEs6(Left(vwx230), Left(vwx240), ty_Float, cgb) -> new_esEs21(vwx230, vwx240) new_ltEs15(LT, GT) -> True new_ltEs19(vwx302, vwx402, ty_Int) -> new_ltEs16(vwx302, vwx402) new_lt20(vwx301, vwx401, app(ty_Maybe, bbd)) -> new_lt13(vwx301, vwx401, bbd) new_esEs13(vwx23, vwx24) -> new_primEqInt(vwx23, vwx24) new_ltEs18(vwx301, vwx401, app(app(ty_@2, cc), cd)) -> new_ltEs7(vwx301, vwx401, cc, cd) new_ltEs5(vwx30, vwx40, bfd) -> new_not(new_compare7(vwx30, vwx40, bfd)) new_lt19(vwx300, vwx400, app(ty_Ratio, dag)) -> new_lt4(vwx300, vwx400, dag) new_esEs6(Right(vwx230), Right(vwx240), cga, ty_Int) -> new_esEs13(vwx230, vwx240) new_esEs25(vwx231, vwx241, ty_Float) -> new_esEs21(vwx231, vwx241) new_asAs(True, vwx34) -> vwx34 new_lt20(vwx301, vwx401, app(ty_Ratio, dah)) -> new_lt4(vwx301, vwx401, dah) new_compare113(vwx300, vwx400, True) -> LT new_lt20(vwx301, vwx401, app(app(ty_@2, bba), bbb)) -> new_lt7(vwx301, vwx401, bba, bbb) new_ltEs4(Right(vwx300), Right(vwx400), gc, ty_Bool) -> new_ltEs11(vwx300, vwx400) new_esEs24(vwx232, vwx242, ty_@0) -> new_esEs14(vwx232, vwx242) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_esEs5(Just(vwx230), Just(vwx240), ty_Double) -> new_esEs20(vwx230, vwx240) new_ltEs10(Just(vwx30), Just(vwx40), ty_Int) -> new_ltEs16(vwx30, vwx40) new_esEs6(Left(vwx230), Right(vwx240), cga, cgb) -> False new_esEs6(Right(vwx230), Left(vwx240), cga, cgb) -> False new_esEs5(Just(vwx230), Just(vwx240), ty_Char) -> new_esEs19(vwx230, vwx240) new_esEs5(Just(vwx230), Just(vwx240), app(app(ty_@2, bgc), bgd)) -> new_esEs4(vwx230, vwx240, bgc, bgd) new_esEs16(vwx230, vwx240, ty_Double) -> new_esEs20(vwx230, vwx240) new_esEs27(vwx23, vwx24, ty_Integer) -> new_esEs12(vwx23, vwx24) new_lt19(vwx300, vwx400, app(app(ty_@2, he), hf)) -> new_lt7(vwx300, vwx400, he, hf) new_lt20(vwx301, vwx401, ty_Int) -> new_lt17(vwx301, vwx401) new_ltEs18(vwx301, vwx401, ty_Float) -> new_ltEs9(vwx301, vwx401) new_lt4(vwx300, vwx400, bde) -> new_esEs8(new_compare7(vwx300, vwx400, bde)) new_ltEs4(Left(vwx300), Left(vwx400), ty_Float, fb) -> new_ltEs9(vwx300, vwx400) new_compare10(vwx300, vwx400, ty_@0) -> new_compare15(vwx300, vwx400) new_primCmpInt(Pos(Succ(vwx3000)), Pos(vwx400)) -> new_primCmpNat0(Succ(vwx3000), vwx400) new_ltEs18(vwx301, vwx401, app(ty_[], ce)) -> new_ltEs8(vwx301, vwx401, ce) new_lt13(vwx300, vwx400, bd) -> new_esEs8(new_compare13(vwx300, vwx400, bd)) new_compare110(vwx300, vwx400, False) -> GT new_esEs27(vwx23, vwx24, ty_Char) -> new_esEs19(vwx23, vwx24) new_ltEs4(Left(vwx300), Left(vwx400), ty_Integer, fb) -> new_ltEs6(vwx300, vwx400) new_primMulNat0(Zero, Zero) -> Zero new_lt10(vwx300, vwx400, app(ty_[], bc)) -> new_lt11(vwx300, vwx400, bc) new_compare10(vwx300, vwx400, app(app(ty_@2, df), dg)) -> new_compare6(vwx300, vwx400, df, dg) new_esEs24(vwx232, vwx242, app(ty_Maybe, cch)) -> new_esEs5(vwx232, vwx242, cch) new_esEs26(vwx230, vwx240, ty_Double) -> new_esEs20(vwx230, vwx240) new_esEs6(Left(vwx230), Left(vwx240), app(ty_[], cgc), cgb) -> new_esEs15(vwx230, vwx240, cgc) new_lt19(vwx300, vwx400, app(ty_Maybe, bab)) -> new_lt13(vwx300, vwx400, bab) new_ltEs19(vwx302, vwx402, app(ty_[], bcd)) -> new_ltEs8(vwx302, vwx402, bcd) new_lt19(vwx300, vwx400, ty_Int) -> new_lt17(vwx300, vwx400) new_ltEs18(vwx301, vwx401, ty_Integer) -> new_ltEs6(vwx301, vwx401) new_compare11(Integer(vwx300), Integer(vwx400)) -> new_primCmpInt(vwx300, vwx400) new_esEs26(vwx230, vwx240, app(app(ty_Either, ceg), ceh)) -> new_esEs6(vwx230, vwx240, ceg, ceh) new_esEs15(:(vwx230, vwx231), [], bdh) -> False new_esEs15([], :(vwx240, vwx241), bdh) -> False new_lt14(vwx300, vwx400) -> new_esEs8(new_compare15(vwx300, vwx400)) new_compare28(vwx300, vwx400, True, bg, bh, ca) -> EQ new_ltEs18(vwx301, vwx401, app(app(ty_Either, cg), da)) -> new_ltEs4(vwx301, vwx401, cg, da) new_esEs18(EQ, GT) -> False new_esEs18(GT, EQ) -> False new_ltEs11(True, False) -> False new_ltEs18(vwx301, vwx401, app(ty_Ratio, bfe)) -> new_ltEs5(vwx301, vwx401, bfe) new_ltEs15(EQ, EQ) -> True new_esEs6(Right(vwx230), Right(vwx240), cga, ty_Double) -> new_esEs20(vwx230, vwx240) new_ltEs16(vwx30, vwx40) -> new_not(new_compare9(vwx30, vwx40)) new_ltEs4(Right(vwx300), Right(vwx400), gc, ty_Double) -> new_ltEs17(vwx300, vwx400) new_esEs25(vwx231, vwx241, app(ty_Maybe, ceb)) -> new_esEs5(vwx231, vwx241, ceb) new_esEs27(vwx23, vwx24, ty_Double) -> new_esEs20(vwx23, vwx24) new_esEs8(LT) -> True new_esEs25(vwx231, vwx241, app(app(ty_Either, cde), cdf)) -> new_esEs6(vwx231, vwx241, cde, cdf) new_lt10(vwx300, vwx400, app(app(ty_Either, be), bf)) -> new_lt15(vwx300, vwx400, be, bf) new_primCompAux0(vwx39, EQ) -> vwx39 new_esEs27(vwx23, vwx24, app(ty_Ratio, bdf)) -> new_esEs9(vwx23, vwx24, bdf) new_lt10(vwx300, vwx400, ty_Ordering) -> new_lt5(vwx300, vwx400) new_lt10(vwx300, vwx400, ty_Char) -> new_lt16(vwx300, vwx400) new_esEs23(vwx230, vwx240, ty_Integer) -> new_esEs12(vwx230, vwx240) new_esEs18(LT, GT) -> False new_esEs18(GT, LT) -> False new_primEqInt(Neg(Succ(vwx2300)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx2400))) -> False new_lt19(vwx300, vwx400, ty_Integer) -> new_lt8(vwx300, vwx400) new_ltEs15(LT, EQ) -> True new_ltEs4(Right(vwx300), Right(vwx400), gc, ty_Int) -> new_ltEs16(vwx300, vwx400) new_primEqInt(Pos(Succ(vwx2300)), Pos(Succ(vwx2400))) -> new_primEqNat0(vwx2300, vwx2400) new_esEs6(Right(vwx230), Right(vwx240), cga, app(app(ty_@2, daa), dab)) -> new_esEs4(vwx230, vwx240, daa, dab) new_esEs26(vwx230, vwx240, app(app(ty_@2, cfb), cfc)) -> new_esEs4(vwx230, vwx240, cfb, cfc) new_ltEs10(Just(vwx30), Just(vwx40), app(ty_[], de)) -> new_ltEs8(vwx30, vwx40, de) new_compare24(vwx300, vwx400, True) -> EQ new_compare114(vwx300, vwx400, True, bg, bh, ca) -> LT new_esEs6(Right(vwx230), Right(vwx240), cga, ty_@0) -> new_esEs14(vwx230, vwx240) new_ltEs4(Left(vwx300), Left(vwx400), app(app(ty_Either, ff), fg), fb) -> new_ltEs4(vwx300, vwx400, ff, fg) new_esEs5(Just(vwx230), Just(vwx240), app(ty_Ratio, bgb)) -> new_esEs9(vwx230, vwx240, bgb) new_lt20(vwx301, vwx401, ty_Bool) -> new_lt9(vwx301, vwx401) new_esEs23(vwx230, vwx240, ty_Char) -> new_esEs19(vwx230, vwx240) new_primEqInt(Pos(Succ(vwx2300)), Neg(vwx240)) -> False new_primEqInt(Neg(Succ(vwx2300)), Pos(vwx240)) -> False new_esEs16(vwx230, vwx240, app(ty_Ratio, bed)) -> new_esEs9(vwx230, vwx240, bed) new_primCmpInt(Neg(Zero), Neg(Succ(vwx4000))) -> new_primCmpNat0(Succ(vwx4000), Zero) new_lt19(vwx300, vwx400, ty_Bool) -> new_lt9(vwx300, vwx400) new_esEs22(vwx231, vwx241, app(ty_Ratio, bhf)) -> new_esEs9(vwx231, vwx241, bhf) new_lt19(vwx300, vwx400, ty_Double) -> new_lt18(vwx300, vwx400) new_ltEs15(GT, GT) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare7(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Int) -> new_compare9(new_sr0(vwx300, vwx401), new_sr0(vwx400, vwx301)) new_esEs6(Right(vwx230), Right(vwx240), cga, app(ty_[], che)) -> new_esEs15(vwx230, vwx240, che) new_ltEs14(vwx30, vwx40) -> new_not(new_compare18(vwx30, vwx40)) new_compare111(vwx300, vwx400, False, bd) -> GT new_esEs17(True, True) -> True new_ltEs4(Left(vwx300), Left(vwx400), ty_Int, fb) -> new_ltEs16(vwx300, vwx400) new_ltEs8(vwx30, vwx40, de) -> new_not(new_compare1(vwx30, vwx40, de)) new_compare14(vwx300, vwx400) -> new_compare24(vwx300, vwx400, new_esEs17(vwx300, vwx400)) new_lt10(vwx300, vwx400, app(app(app(ty_@3, bg), bh), ca)) -> new_lt6(vwx300, vwx400, bg, bh, ca) new_ltEs19(vwx302, vwx402, ty_Float) -> new_ltEs9(vwx302, vwx402) new_ltEs19(vwx302, vwx402, app(ty_Maybe, bce)) -> new_ltEs10(vwx302, vwx402, bce) new_compare112(vwx300, vwx400, False, h, ba) -> GT new_compare25(vwx300, vwx400, False, be, bf) -> new_compare115(vwx300, vwx400, new_ltEs4(vwx300, vwx400, be, bf), be, bf) new_compare12(Float(vwx300, Pos(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare9(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_lt19(vwx300, vwx400, app(app(app(ty_@3, bae), baf), bag)) -> new_lt6(vwx300, vwx400, bae, baf, bag) new_lt20(vwx301, vwx401, ty_Double) -> new_lt18(vwx301, vwx401) new_esEs23(vwx230, vwx240, ty_Double) -> new_esEs20(vwx230, vwx240) new_esEs23(vwx230, vwx240, ty_Bool) -> new_esEs17(vwx230, vwx240) new_ltEs10(Just(vwx30), Just(vwx40), app(app(ty_@2, cb), bb)) -> new_ltEs7(vwx30, vwx40, cb, bb) new_compare10(vwx300, vwx400, app(ty_[], dh)) -> new_compare1(vwx300, vwx400, dh) new_esEs6(Right(vwx230), Right(vwx240), cga, app(ty_Ratio, chh)) -> new_esEs9(vwx230, vwx240, chh) new_compare1([], :(vwx400, vwx401), de) -> LT new_esEs25(vwx231, vwx241, ty_@0) -> new_esEs14(vwx231, vwx241) new_esEs6(Left(vwx230), Left(vwx240), ty_Char, cgb) -> new_esEs19(vwx230, vwx240) new_primPlusNat0(Succ(vwx5300), Succ(vwx301000)) -> Succ(Succ(new_primPlusNat0(vwx5300, vwx301000))) new_compare18(Char(vwx300), Char(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_esEs16(vwx230, vwx240, ty_Float) -> new_esEs21(vwx230, vwx240) new_esEs11(vwx230, vwx240, ty_Integer) -> new_esEs12(vwx230, vwx240) new_lt19(vwx300, vwx400, ty_Char) -> new_lt16(vwx300, vwx400) new_lt19(vwx300, vwx400, ty_Ordering) -> new_lt5(vwx300, vwx400) new_ltEs10(Just(vwx30), Just(vwx40), ty_Char) -> new_ltEs14(vwx30, vwx40) new_lt10(vwx300, vwx400, ty_Integer) -> new_lt8(vwx300, vwx400) new_ltEs10(Just(vwx30), Nothing, bfc) -> False new_esEs16(vwx230, vwx240, app(app(ty_Either, beb), bec)) -> new_esEs6(vwx230, vwx240, beb, bec) new_compare10(vwx300, vwx400, ty_Double) -> new_compare19(vwx300, vwx400) new_ltEs10(Nothing, Nothing, bfc) -> True new_lt5(vwx300, vwx400) -> new_esEs8(new_compare8(vwx300, vwx400)) new_ltEs4(Left(vwx300), Right(vwx400), gc, fb) -> True new_esEs16(vwx230, vwx240, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs7(vwx230, vwx240, beh, bfa, bfb) new_esEs6(Left(vwx230), Left(vwx240), ty_@0, cgb) -> new_esEs14(vwx230, vwx240) new_esEs6(Left(vwx230), Left(vwx240), ty_Bool, cgb) -> new_esEs17(vwx230, vwx240) new_lt19(vwx300, vwx400, app(app(ty_Either, bac), bad)) -> new_lt15(vwx300, vwx400, bac, bad) new_lt10(vwx300, vwx400, ty_Double) -> new_lt18(vwx300, vwx400) new_esEs27(vwx23, vwx24, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs7(vwx23, vwx24, cbg, cbh, cca) new_esEs23(vwx230, vwx240, app(ty_Ratio, cah)) -> new_esEs9(vwx230, vwx240, cah) new_esEs26(vwx230, vwx240, app(ty_Maybe, cfd)) -> new_esEs5(vwx230, vwx240, cfd) new_sr0(vwx400, vwx301) -> new_primMulInt(vwx400, vwx301) new_compare19(Double(vwx300, Neg(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare9(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_lt20(vwx301, vwx401, ty_Ordering) -> new_lt5(vwx301, vwx401) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(vwx231, vwx241, ty_Bool) -> new_esEs17(vwx231, vwx241) new_esEs25(vwx231, vwx241, ty_Ordering) -> new_esEs18(vwx231, vwx241) new_esEs22(vwx231, vwx241, ty_Integer) -> new_esEs12(vwx231, vwx241) new_esEs26(vwx230, vwx240, ty_Int) -> new_esEs13(vwx230, vwx240) new_esEs26(vwx230, vwx240, app(ty_Ratio, cfa)) -> new_esEs9(vwx230, vwx240, cfa) new_lt20(vwx301, vwx401, app(app(ty_Either, bbe), bbf)) -> new_lt15(vwx301, vwx401, bbe, bbf) new_esEs5(Just(vwx230), Just(vwx240), ty_Integer) -> new_esEs12(vwx230, vwx240) new_ltEs19(vwx302, vwx402, ty_Bool) -> new_ltEs11(vwx302, vwx402) new_esEs25(vwx231, vwx241, ty_Double) -> new_esEs20(vwx231, vwx241) new_compare111(vwx300, vwx400, True, bd) -> LT new_esEs23(vwx230, vwx240, app(ty_[], cae)) -> new_esEs15(vwx230, vwx240, cae) new_esEs6(Left(vwx230), Left(vwx240), ty_Double, cgb) -> new_esEs20(vwx230, vwx240) new_esEs27(vwx23, vwx24, app(app(ty_Either, cga), cgb)) -> new_esEs6(vwx23, vwx24, cga, cgb) new_esEs27(vwx23, vwx24, app(app(ty_@2, bha), bhb)) -> new_esEs4(vwx23, vwx24, bha, bhb) new_ltEs15(LT, LT) -> True new_esEs7(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), cbg, cbh, cca) -> new_asAs(new_esEs26(vwx230, vwx240, cbg), new_asAs(new_esEs25(vwx231, vwx241, cbh), new_esEs24(vwx232, vwx242, cca))) new_esEs25(vwx231, vwx241, app(ty_Ratio, cdg)) -> new_esEs9(vwx231, vwx241, cdg) new_ltEs4(Left(vwx300), Left(vwx400), ty_Ordering, fb) -> new_ltEs15(vwx300, vwx400) new_esEs22(vwx231, vwx241, ty_@0) -> new_esEs14(vwx231, vwx241) new_ltEs19(vwx302, vwx402, app(app(ty_Either, bcf), bcg)) -> new_ltEs4(vwx302, vwx402, bcf, bcg) new_ltEs10(Just(vwx30), Just(vwx40), app(ty_Ratio, bfd)) -> new_ltEs5(vwx30, vwx40, bfd) new_esEs27(vwx23, vwx24, ty_Float) -> new_esEs21(vwx23, vwx24) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_esEs23(vwx230, vwx240, ty_Ordering) -> new_esEs18(vwx230, vwx240) new_compare27(vwx300, vwx400, False) -> new_compare113(vwx300, vwx400, new_ltEs15(vwx300, vwx400)) new_ltEs4(Left(vwx300), Left(vwx400), app(app(ty_@2, eh), fa), fb) -> new_ltEs7(vwx300, vwx400, eh, fa) new_compare28(vwx300, vwx400, False, bg, bh, ca) -> new_compare114(vwx300, vwx400, new_ltEs13(vwx300, vwx400, bg, bh, ca), bg, bh, ca) new_ltEs4(Right(vwx300), Right(vwx400), gc, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs13(vwx300, vwx400, hb, hc, hd) new_esEs16(vwx230, vwx240, app(ty_Maybe, beg)) -> new_esEs5(vwx230, vwx240, beg) new_esEs6(Left(vwx230), Left(vwx240), app(app(app(ty_@3, chb), chc), chd), cgb) -> new_esEs7(vwx230, vwx240, chb, chc, chd) new_lt20(vwx301, vwx401, ty_@0) -> new_lt14(vwx301, vwx401) new_primCmpNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat0(vwx3000, vwx4000) new_lt20(vwx301, vwx401, ty_Char) -> new_lt16(vwx301, vwx401) new_esEs6(Left(vwx230), Left(vwx240), ty_Ordering, cgb) -> new_esEs18(vwx230, vwx240) new_compare10(vwx300, vwx400, app(ty_Ratio, bdg)) -> new_compare7(vwx300, vwx400, bdg) new_esEs26(vwx230, vwx240, ty_Char) -> new_esEs19(vwx230, vwx240) new_esEs24(vwx232, vwx242, app(ty_Ratio, cce)) -> new_esEs9(vwx232, vwx242, cce) new_esEs26(vwx230, vwx240, ty_Float) -> new_esEs21(vwx230, vwx240) new_esEs25(vwx231, vwx241, ty_Char) -> new_esEs19(vwx231, vwx241) new_compare114(vwx300, vwx400, False, bg, bh, ca) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare12(Float(vwx300, Neg(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare9(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_lt20(vwx301, vwx401, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt6(vwx301, vwx401, bbg, bbh, bca) new_esEs9(:%(vwx230, vwx231), :%(vwx240, vwx241), bdf) -> new_asAs(new_esEs11(vwx230, vwx240, bdf), new_esEs10(vwx231, vwx241, bdf)) new_esEs27(vwx23, vwx24, ty_Int) -> new_esEs13(vwx23, vwx24) new_primEqNat0(Zero, Zero) -> True new_esEs24(vwx232, vwx242, ty_Bool) -> new_esEs17(vwx232, vwx242) new_esEs22(vwx231, vwx241, app(ty_[], bhc)) -> new_esEs15(vwx231, vwx241, bhc) new_not(EQ) -> new_not0 new_ltEs4(Left(vwx300), Left(vwx400), ty_@0, fb) -> new_ltEs12(vwx300, vwx400) new_esEs24(vwx232, vwx242, ty_Double) -> new_esEs20(vwx232, vwx242) new_lt16(vwx300, vwx400) -> new_esEs8(new_compare18(vwx300, vwx400)) new_asAs(False, vwx34) -> False new_ltEs4(Right(vwx300), Right(vwx400), gc, app(app(ty_@2, gd), ge)) -> new_ltEs7(vwx300, vwx400, gd, ge) new_pePe(True, vwx23, vwx24, vwx25, cfh) -> True new_ltEs4(Left(vwx300), Left(vwx400), ty_Char, fb) -> new_ltEs14(vwx300, vwx400) new_esEs27(vwx23, vwx24, app(ty_Maybe, bff)) -> new_esEs5(vwx23, vwx24, bff) new_esEs23(vwx230, vwx240, ty_@0) -> new_esEs14(vwx230, vwx240) new_lt20(vwx301, vwx401, ty_Float) -> new_lt12(vwx301, vwx401) new_ltEs4(Right(vwx300), Left(vwx400), gc, fb) -> False new_compare27(vwx300, vwx400, True) -> EQ new_compare19(Double(vwx300, Pos(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare9(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_esEs24(vwx232, vwx242, ty_Ordering) -> new_esEs18(vwx232, vwx242) new_esEs16(vwx230, vwx240, ty_Int) -> new_esEs13(vwx230, vwx240) new_compare6(vwx300, vwx400, h, ba) -> new_compare23(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) new_ltEs7(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, bb) -> new_pePe(new_lt10(vwx300, vwx400, cb), vwx300, vwx400, new_ltEs18(vwx301, vwx401, bb), cb) The set Q consists of the following terms: new_esEs24(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_primMulNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs16(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_lt17(x0, x1) new_not0 new_esEs16(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs20(Double(x0, x1), Double(x2, x3)) new_esEs27(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Int) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare112(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_lt10(x0, x1, ty_Integer) new_primCompAux0(x0, GT) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs10(Just(x0), Just(x1), ty_Integer) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare11(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, ty_Int) new_compare110(x0, x1, True) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs15(:(x0, x1), :(x2, x3), x4) new_esEs24(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs26(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs27(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs17(False, False) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_@0) new_esEs9(:%(x0, x1), :%(x2, x3), x4) new_esEs25(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Char) new_compare10(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(GT) new_asAs(True, x0) new_primEqNat0(Zero, Succ(x0)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs10(Just(x0), Just(x1), ty_Bool) new_esEs26(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare14(x0, x1) new_esEs8(LT) new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_ltEs11(True, True) new_esEs13(x0, x1) new_lt11(x0, x1, x2) new_compare27(x0, x1, True) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_compare114(x0, x1, True, x2, x3, x4) new_compare113(x0, x1, False) new_ltEs18(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, ty_@0) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_lt5(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_@0) new_compare112(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Float) new_lt7(x0, x1, x2, x3) new_sr0(x0, x1) new_esEs25(x0, x1, ty_Double) new_compare15(@0, @0) new_esEs22(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs15(EQ, EQ) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Int) new_lt10(x0, x1, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_pePe(True, x0, x1, x2, x3) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_@0) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_compare111(x0, x1, True, x2) new_esEs16(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) new_lt10(x0, x1, ty_Char) new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_compare10(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_lt19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt10(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs18(GT, GT) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_ltEs14(x0, x1) new_compare10(x0, x1, app(ty_[], x2)) new_esEs18(LT, EQ) new_esEs18(EQ, LT) new_esEs25(x0, x1, ty_Float) new_lt10(x0, x1, ty_Ordering) new_compare10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_compare114(x0, x1, False, x2, x3, x4) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs16(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_esEs15(:(x0, x1), [], x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_ltEs8(x0, x1, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs10(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs21(Float(x0, x1), Float(x2, x3)) new_compare12(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare115(x0, x1, True, x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_@0) new_ltEs10(Nothing, Just(x0), x1) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs15([], [], x0) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Bool) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs18(EQ, EQ) new_esEs8(EQ) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1, ty_Int) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primCompAux1(x0, x1, x2, x3) new_esEs11(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Bool) new_lt9(x0, x1) new_ltEs11(False, True) new_ltEs11(True, False) new_compare10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Integer) new_compare23(x0, x1, False, x2, x3) new_lt16(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Float) new_compare9(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs16(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs11(x0, x1, ty_Int) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt18(x0, x1) new_lt19(x0, x1, ty_@0) new_not(LT) new_compare111(x0, x1, False, x2) new_lt8(x0, x1) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare26(x0, x1, False, x2) new_esEs17(True, True) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Char) new_compare10(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, ty_Bool) new_lt12(x0, x1) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs22(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, x2) new_esEs19(Char(x0), Char(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(EQ, GT) new_esEs18(GT, EQ) new_esEs23(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Char) new_compare6(x0, x1, x2, x3) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs23(x0, x1, ty_Int) new_sr(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs5(Nothing, Nothing, x0) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_compare25(x0, x1, True, x2, x3) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, x0) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_primPlusNat0(Zero, Zero) new_ltEs12(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_compare16(x0, x1, x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Just(x0), Just(x1), ty_Double) new_esEs23(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare12(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare12(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs16(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Bool) new_primPlusNat0(Zero, Succ(x0)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt13(x0, x1, x2) new_esEs23(x0, x1, ty_Integer) new_ltEs15(GT, EQ) new_ltEs15(EQ, GT) new_ltEs6(x0, x1) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Int) new_compare24(x0, x1, True) new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_compare18(Char(x0), Char(x1)) new_compare17(x0, x1, x2, x3, x4) new_compare1([], [], x0) new_esEs17(False, True) new_esEs17(True, False) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs10(Nothing, Nothing, x0) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs10(Just(x0), Nothing, x1) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_compare28(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_compare13(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_compare12(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt14(x0, x1) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(LT, LT) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_compare26(x0, x1, True, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs19(x0, x1, ty_Float) new_esEs18(LT, GT) new_esEs18(GT, LT) new_esEs15([], :(x0, x1), x2) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_@0) new_esEs14(@0, @0) new_esEs27(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs22(x0, x1, ty_Float) new_esEs5(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, ty_Integer) new_ltEs10(Just(x0), Just(x1), ty_Int) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare10(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_lt10(x0, x1, ty_Double) new_not(EQ) new_esEs24(x0, x1, ty_Double) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs8(GT) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_ltEs17(x0, x1) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), x1) new_lt20(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs15(GT, GT) new_compare10(x0, x1, ty_Integer) new_ltEs10(Just(x0), Just(x1), ty_Char) new_compare10(x0, x1, ty_Ordering) new_ltEs11(False, False) new_primPlusNat0(Succ(x0), Zero) new_ltEs18(x0, x1, ty_Bool) new_compare8(x0, x1) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt19(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs27(x0, x1, ty_Char) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(x0, x1, ty_Int) new_primCompAux0(x0, LT) new_esEs12(Integer(x0), Integer(x1)) new_compare1([], :(x0, x1), x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, ty_Int) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_lt10(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare115(x0, x1, False, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Nothing, Just(x0), x1) new_compare10(x0, x1, ty_Char) new_ltEs10(Just(x0), Just(x1), ty_Float) new_compare27(x0, x1, False) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs15(LT, LT) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt19(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Int) new_lt19(x0, x1, ty_Ordering) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, True) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_lt20(x0, x1, ty_Double) new_compare10(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2, x3, x4) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, x2) new_compare25(x0, x1, False, x2, x3) new_pePe(False, x0, x1, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_compare10(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_ltEs16(x0, x1) new_primCmpNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare1(:(x0, x1), [], x2) new_primMulInt(Neg(x0), Neg(x1)) 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_compare2(vwx300, vwx400, False, h, ba) -> new_ltEs(vwx300, vwx400, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare5(vwx300, vwx400, bg, bh, ca) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_Maybe, cf)) -> new_ltEs1(vwx301, vwx401, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, be), bf), bb) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs3(vwx301, vwx401, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_lt0(vwx300, vwx400, bc) -> new_compare(vwx300, vwx400, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt(vwx300, vwx400, h, ba) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs1(Just(:(vwx300, vwx301)), Just(:(vwx400, vwx401)), app(ty_[], de)) -> new_primCompAux(vwx300, vwx400, new_compare1(vwx301, vwx401, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(app(ty_Either, be), bf)), bb)) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare3(vwx300, vwx400, bd) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_lt1(vwx300, vwx400, bd) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, bd), bb) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(ty_Maybe, bd)), bb)) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare20(vwx300, vwx400, False, bd) -> new_ltEs1(vwx300, vwx400, bd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(ty_Maybe, bce)) -> new_ltEs1(vwx302, vwx402, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs3(vwx302, vwx402, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vwx300, vwx400, False, bg, bh, ca) -> new_ltEs3(vwx300, vwx400, bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs0(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_primCompAux(vwx300, vwx400, new_compare1(vwx301, vwx401, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_primCompAux(vwx300, vwx400, new_compare1(vwx301, vwx401, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(vwx301, vwx401, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(app(ty_@2, bcb), bcc)) -> new_ltEs(vwx302, vwx402, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_compare(vwx301, vwx401, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt2(vwx300, vwx400, be, bf) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare4(vwx300, vwx400, be, bf) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, be, bf), be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_compare(vwx301, vwx401, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare0(vwx300, vwx400, h, ba) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare21(vwx300, vwx400, False, be, bf) -> new_ltEs2(vwx300, vwx400, be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(vwx300, vwx400, vwx35, app(app(ty_Either, eb), ec)) -> new_compare4(vwx300, vwx400, eb, ec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_Either, cg), da)) -> new_ltEs2(vwx301, vwx401, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(app(ty_Either, bcf), bcg)) -> new_ltEs2(vwx302, vwx402, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], bc), bb) -> new_compare(vwx300, vwx400, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vwx300, vwx400, vwx35, app(ty_[], dh)) -> new_compare(vwx300, vwx400, dh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_lt3(vwx300, vwx400, bg, bh, ca) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, bg), bh), ca), bb) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(app(app(ty_@3, bg), bh), ca)), bb)) -> new_compare22(vwx300, vwx400, new_esEs7(vwx300, vwx400, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_[], ce)) -> new_ltEs0(vwx301, vwx401, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, h), ba), bb) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, hg, app(ty_[], bcd)) -> new_ltEs0(vwx302, vwx402, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_primCompAux(vwx300, vwx400, vwx35, app(app(ty_@2, df), dg)) -> new_compare0(vwx300, vwx400, df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_primCompAux(vwx300, vwx400, vwx35, app(app(app(ty_@3, ed), ee), ef)) -> new_compare5(vwx300, vwx400, ed, ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vwx300, vwx400, vwx35, app(ty_Maybe, ea)) -> new_compare3(vwx300, vwx400, ea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(Right(vwx300), Right(vwx400), gc, app(ty_Maybe, gg)) -> new_ltEs1(vwx300, vwx400, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(vwx300), Left(vwx400), app(ty_Maybe, fd), fb) -> new_ltEs1(vwx300, vwx400, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(ty_Maybe, gg))) -> new_ltEs1(vwx300, vwx400, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(ty_Maybe, cf))) -> new_ltEs1(vwx301, vwx401, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(ty_Maybe, bce))) -> new_ltEs1(vwx302, vwx402, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(vwx30), Just(vwx40), app(ty_Maybe, eg)) -> new_ltEs1(vwx30, vwx40, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(ty_Maybe, fd)), fb)) -> new_ltEs1(vwx300, vwx400, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Left(vwx300), Left(vwx400), app(app(app(ty_@3, fh), ga), gb), fb) -> new_ltEs3(vwx300, vwx400, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(vwx300), Right(vwx400), gc, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs3(vwx300, vwx400, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(vwx300), Right(vwx400), gc, app(app(ty_@2, gd), ge)) -> new_ltEs(vwx300, vwx400, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx300), Left(vwx400), app(app(ty_@2, eh), fa), fb) -> new_ltEs(vwx300, vwx400, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(vwx300), Right(vwx400), gc, app(app(ty_Either, gh), ha)) -> new_ltEs2(vwx300, vwx400, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx300), Left(vwx400), app(app(ty_Either, ff), fg), fb) -> new_ltEs2(vwx300, vwx400, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Left(vwx300), Left(vwx400), app(ty_[], fc), fb) -> new_ltEs0(vwx300, vwx400, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx300), Right(vwx400), gc, app(ty_[], gf)) -> new_ltEs0(vwx300, vwx400, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs3(vwx300, vwx400, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(app(app(ty_@3, bch), bda), bdb))) -> new_ltEs3(vwx302, vwx402, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(app(app(ty_@3, fh), ga), gb)), fb)) -> new_ltEs3(vwx300, vwx400, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(app(app(ty_@3, db), dc), dd))) -> new_ltEs3(vwx301, vwx401, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(app(ty_@2, gd), ge))) -> new_ltEs(vwx300, vwx400, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(app(ty_@2, eh), fa)), fb)) -> new_ltEs(vwx300, vwx400, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(vwx301, vwx401, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(app(ty_@2, bcb), bcc))) -> new_ltEs(vwx302, vwx402, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(app(ty_@2, bba), bbb)), hh)) -> new_lt(vwx301, vwx401, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(app(ty_@2, he), hf)), hg), hh)) -> new_lt(vwx300, vwx400, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(app(ty_Either, cg), da))) -> new_ltEs2(vwx301, vwx401, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(app(ty_Either, gh), ha))) -> new_ltEs2(vwx300, vwx400, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(app(ty_Either, bcf), bcg))) -> new_ltEs2(vwx302, vwx402, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(app(ty_Either, ff), fg)), fb)) -> new_ltEs2(vwx300, vwx400, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(:(vwx300, vwx301)), Just(:(vwx400, vwx401)), app(ty_[], de)) -> new_compare(vwx301, vwx401, de) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, app(ty_[], bc)), bb)) -> new_compare(vwx300, vwx400, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(Left(vwx300)), Just(Left(vwx400)), app(app(ty_Either, app(ty_[], fc)), fb)) -> new_ltEs0(vwx300, vwx400, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(Right(vwx300)), Just(Right(vwx400)), app(app(ty_Either, gc), app(ty_[], gf))) -> new_ltEs0(vwx300, vwx400, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@2(vwx300, vwx301)), Just(@2(vwx400, vwx401)), app(app(ty_@2, cb), app(ty_[], ce))) -> new_ltEs0(vwx301, vwx401, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), hg), app(ty_[], bcd))) -> new_ltEs0(vwx302, vwx402, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(ty_Maybe, bab)), hg), hh)) -> new_lt1(vwx300, vwx400, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(ty_Maybe, bbd)), hh)) -> new_lt1(vwx301, vwx401, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hg), hh)) -> new_lt2(vwx300, vwx400, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(app(ty_Either, bbe), bbf)), hh)) -> new_lt2(vwx301, vwx401, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(ty_[], bbc)), hh)) -> new_lt0(vwx301, vwx401, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(ty_[], baa)), hg), hh)) -> new_lt0(vwx300, vwx400, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, bah), app(app(app(ty_@3, bbg), bbh), bca)), hh)) -> new_lt3(vwx301, vwx401, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Just(@3(vwx300, vwx301, vwx302)), Just(@3(vwx400, vwx401, vwx402)), app(app(app(ty_@3, app(app(app(ty_@3, bae), baf), bag)), hg), hh)) -> new_lt3(vwx300, vwx400, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, he), hf), hg, hh) -> new_lt(vwx300, vwx400, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(app(ty_@2, bba), bbb), hh) -> new_lt(vwx301, vwx401, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(ty_Maybe, bbd), hh) -> new_lt1(vwx301, vwx401, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bab), hg, hh) -> new_lt1(vwx300, vwx400, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(app(ty_Either, bbe), bbf), hh) -> new_lt2(vwx301, vwx401, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bac), bad), hg, hh) -> new_lt2(vwx300, vwx400, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(ty_[], bbc), hh) -> new_lt0(vwx301, vwx401, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], baa), hg, hh) -> new_lt0(vwx300, vwx400, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bae), baf), bag), hg, hh) -> new_lt3(vwx300, vwx400, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bah, app(app(app(ty_@3, bbg), bbh), bca), hh) -> new_lt3(vwx301, vwx401, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(vwx230), Just(vwx240), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx230, vwx240, hg, hh) new_esEs0(Left(vwx230), Left(vwx240), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx230, vwx240, cf, cg) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(vwx231, vwx241, fg, fh, ga) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(vwx230, vwx240, bdc, bdd) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(vwx231, vwx241, fa, fb) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(vwx231, vwx241, bcb, bcc) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(app(ty_Either, gd), ge), gc) -> new_esEs0(vwx230, vwx240, gd, ge) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(vwx232, vwx242, bah, bba) new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(app(ty_@2, bd), be)) -> new_esEs1(vwx230, vwx240, bd, be) new_esEs2(Just(vwx230), Just(vwx240), app(ty_[], hd)) -> new_esEs(vwx230, vwx240, hd) new_esEs0(Left(vwx230), Left(vwx240), app(ty_Maybe, da), cc) -> new_esEs2(vwx230, vwx240, da) new_esEs2(Just(vwx230), Just(vwx240), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx230, vwx240, bab, bac, bad) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(vwx230, vwx240, bdh, bea, beb) new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vwx230, vwx240, bg, bh, ca) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(ty_[], gb), gc) -> new_esEs(vwx230, vwx240, gb) new_esEs0(Right(vwx230), Right(vwx240), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx230, vwx240, dg, dh) new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), h) -> new_esEs(vwx231, vwx241, h) new_esEs2(Just(vwx230), Just(vwx240), app(ty_Maybe, baa)) -> new_esEs2(vwx230, vwx240, baa) new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(ty_[], ba)) -> new_esEs(vwx230, vwx240, ba) new_esEs0(Right(vwx230), Right(vwx240), de, app(ty_[], df)) -> new_esEs(vwx230, vwx240, df) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx232, vwx242, bbe, bbf, bbg) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(ty_Maybe, ff)) -> new_esEs2(vwx231, vwx241, ff) new_esEs0(Right(vwx230), Right(vwx240), de, app(ty_Maybe, ec)) -> new_esEs2(vwx230, vwx240, ec) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(ty_Maybe, gh), gc) -> new_esEs2(vwx230, vwx240, gh) new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(ty_Maybe, bf)) -> new_esEs2(vwx230, vwx240, bf) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(vwx230, vwx240, bde, bdf) new_esEs0(Left(vwx230), Left(vwx240), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx230, vwx240, cd, ce) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(vwx230, vwx240, ha, hb, hc) new_esEs0(Left(vwx230), Left(vwx240), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx230, vwx240, db, dc, dd) new_esEs2(Just(vwx230), Just(vwx240), app(app(ty_Either, he), hf)) -> new_esEs0(vwx230, vwx240, he, hf) new_esEs0(Right(vwx230), Right(vwx240), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx230, vwx240, ed, ee, ef) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(vwx231, vwx241, bcg, bch, bda) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(ty_[], bbh), bca) -> new_esEs(vwx231, vwx241, bbh) new_esEs0(Right(vwx230), Right(vwx240), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx230, vwx240, ea, eb) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(vwx231, vwx241, bcd, bce) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(ty_[], bag)) -> new_esEs(vwx232, vwx242, bag) new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(app(ty_Either, bb), bc)) -> new_esEs0(vwx230, vwx240, bb, bc) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(app(ty_@2, gf), gg), gc) -> new_esEs1(vwx230, vwx240, gf, gg) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(ty_[], eh)) -> new_esEs(vwx231, vwx241, eh) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(vwx232, vwx242, bbd) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(ty_[], bdb), baf, bca) -> new_esEs(vwx230, vwx240, bdb) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(vwx232, vwx242, bbb, bbc) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(vwx230, vwx240, bdg) new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(vwx231, vwx241, fc, fd) new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(vwx231, vwx241, bcf) new_esEs0(Left(vwx230), Left(vwx240), app(ty_[], cb), cc) -> new_esEs(vwx230, vwx240, 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(:(vwx230, vwx231), :(vwx240, vwx241), app(ty_Maybe, bf)) -> new_esEs2(vwx230, vwx240, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx230), Just(vwx240), app(ty_Maybe, baa)) -> new_esEs2(vwx230, vwx240, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(app(ty_Either, bb), bc)) -> new_esEs0(vwx230, vwx240, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx230), Just(vwx240), app(app(ty_Either, he), hf)) -> new_esEs0(vwx230, vwx240, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(app(ty_@2, bd), be)) -> new_esEs1(vwx230, vwx240, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx230), Just(vwx240), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx230, vwx240, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vwx230, vwx240, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx230), Just(vwx240), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx230, vwx240, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx230), Just(vwx240), app(ty_[], hd)) -> new_esEs(vwx230, vwx240, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(ty_Maybe, ff)) -> new_esEs2(vwx231, vwx241, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(ty_Maybe, gh), gc) -> new_esEs2(vwx230, vwx240, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(vwx231, vwx241, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(app(ty_Either, gd), ge), gc) -> new_esEs0(vwx230, vwx240, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(app(ty_@2, gf), gg), gc) -> new_esEs1(vwx230, vwx240, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(vwx231, vwx241, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(vwx231, vwx241, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(vwx230, vwx240, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), app(ty_[], gb), gc) -> new_esEs(vwx230, vwx240, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx230, vwx231), @2(vwx240, vwx241), eg, app(ty_[], eh)) -> new_esEs(vwx231, vwx241, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(vwx232, vwx242, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(vwx230, vwx240, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(vwx231, vwx241, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx230), Left(vwx240), app(ty_Maybe, da), cc) -> new_esEs2(vwx230, vwx240, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx230), Right(vwx240), de, app(ty_Maybe, ec)) -> new_esEs2(vwx230, vwx240, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(vwx230, vwx240, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(vwx231, vwx241, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(vwx232, vwx242, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(vwx230), Right(vwx240), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx230, vwx240, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx230), Left(vwx240), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx230, vwx240, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(vwx230, vwx240, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(vwx231, vwx241, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(vwx232, vwx242, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(vwx230, vwx240, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx232, vwx242, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(vwx231, vwx241, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, app(ty_[], bbh), bca) -> new_esEs(vwx231, vwx241, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), bae, baf, app(ty_[], bag)) -> new_esEs(vwx232, vwx242, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx230, vwx231, vwx232), @3(vwx240, vwx241, vwx242), app(ty_[], bdb), baf, bca) -> new_esEs(vwx230, vwx240, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(vwx230), Left(vwx240), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx230, vwx240, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(vwx230), Right(vwx240), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx230, vwx240, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx230), Left(vwx240), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx230, vwx240, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(vwx230), Right(vwx240), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx230, vwx240, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(vwx230), Right(vwx240), de, app(ty_[], df)) -> new_esEs(vwx230, vwx240, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx230), Left(vwx240), app(ty_[], cb), cc) -> new_esEs(vwx230, vwx240, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), h) -> new_esEs(vwx231, vwx241, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx230, vwx231), :(vwx240, vwx241), app(ty_[], ba)) -> new_esEs(vwx230, vwx240, 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(vwx40000), Succ(vwx30100)) -> new_primMulNat(vwx40000, Succ(vwx30100)) 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(vwx40000), Succ(vwx30100)) -> new_primMulNat(vwx40000, Succ(vwx30100)) 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(vwx2300), Succ(vwx2400)) -> new_primEqNat(vwx2300, vwx2400) 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(vwx2300), Succ(vwx2400)) -> new_primEqNat(vwx2300, vwx2400) 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(vwx5300), Succ(vwx301000)) -> new_primPlusNat(vwx5300, vwx301000) 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(vwx5300), Succ(vwx301000)) -> new_primPlusNat(vwx5300, vwx301000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES