/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 14 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 3 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) TransformationProof [EQUIVALENT, 2066 ms] (22) QDP (23) QDPSizeChangeProof [EQUIVALENT, 0 ms] (24) YES (25) QDP (26) QDPSizeChangeProof [EQUIVALENT, 0 ms] (27) YES (28) QDP (29) QDPSizeChangeProof [EQUIVALENT, 0 ms] (30) YES (31) QDP (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] (33) YES (34) QDP (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] (36) YES (37) QDP (38) QDPSizeChangeProof [EQUIVALENT, 109 ms] (39) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) 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; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) 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; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; " "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; " 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 vvy vvz = gcd3 vvy vvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } ; " "gcd1 True vvy vvz = error []; gcd1 vwu vwv vww = gcd0 vwv vww; " "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; gcd2 vwx vwy vwz = gcd0 vwy vwz; " "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; gcd3 vxu vxv = gcd0 vxu vxv; " 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; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find|key_to_find < keylookupFM fm_l key_to_find|key_to_find > keylookupFM fm_r key_to_find|otherwiseJust elt; " is transformed to "lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; " "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; " "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; " "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); " "lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); " "lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vyu vyv x y True = error []; reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; " "reduce2D vyu vyv = gcd vyu vyv; " "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.lookupFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.lookupFM vyw3 vyw4",fontsize=16,color="burlywood",shape="triangle"];2290[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 2290[label="",style="solid", color="burlywood", weight=9]; 2290 -> 5[label="",style="solid", color="burlywood", weight=3]; 2291[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];4 -> 2291[label="",style="solid", color="burlywood", weight=9]; 2291 -> 6[label="",style="solid", color="burlywood", weight=3]; 5[label="FiniteMap.lookupFM FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 6[label="FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="Nothing",fontsize=16,color="green",shape="box"];10[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (vyw4 < vyw30)",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 11[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare vyw4 vyw30 == LT)",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 12[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare3 vyw4 vyw30 == LT)",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 13[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare2 vyw4 vyw30 (vyw4 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];2292[label="vyw4/(vyw40,vyw41)",fontsize=10,color="white",style="solid",shape="box"];13 -> 2292[label="",style="solid", color="burlywood", weight=9]; 2292 -> 14[label="",style="solid", color="burlywood", weight=3]; 14[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (vyw40,vyw41) (compare2 (vyw40,vyw41) vyw30 ((vyw40,vyw41) == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];2293[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];14 -> 2293[label="",style="solid", color="burlywood", weight=9]; 2293 -> 15[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.lookupFM2 (vyw300,vyw301) vyw31 vyw32 vyw33 vyw34 (vyw40,vyw41) (compare2 (vyw40,vyw41) (vyw300,vyw301) ((vyw40,vyw41) == (vyw300,vyw301)) == LT)",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 16 -> 100[label="",style="dashed", color="red", weight=0]; 16[label="FiniteMap.lookupFM2 (vyw300,vyw301) vyw31 vyw32 vyw33 vyw34 (vyw40,vyw41) (compare2 (vyw40,vyw41) (vyw300,vyw301) (vyw40 == vyw300 && vyw41 == vyw301) == LT)",fontsize=16,color="magenta"];16 -> 101[label="",style="dashed", color="magenta", weight=3]; 16 -> 102[label="",style="dashed", color="magenta", weight=3]; 16 -> 103[label="",style="dashed", color="magenta", weight=3]; 16 -> 104[label="",style="dashed", color="magenta", weight=3]; 16 -> 105[label="",style="dashed", color="magenta", weight=3]; 16 -> 106[label="",style="dashed", color="magenta", weight=3]; 16 -> 107[label="",style="dashed", color="magenta", weight=3]; 16 -> 108[label="",style="dashed", color="magenta", weight=3]; 16 -> 109[label="",style="dashed", color="magenta", weight=3]; 101[label="vyw31",fontsize=16,color="green",shape="box"];102[label="vyw33",fontsize=16,color="green",shape="box"];103[label="vyw301",fontsize=16,color="green",shape="box"];104[label="vyw32",fontsize=16,color="green",shape="box"];105[label="vyw300",fontsize=16,color="green",shape="box"];106[label="vyw34",fontsize=16,color="green",shape="box"];107[label="vyw41",fontsize=16,color="green",shape="box"];108[label="vyw40",fontsize=16,color="green",shape="box"];109 -> 113[label="",style="dashed", color="red", weight=0]; 109[label="compare2 (vyw40,vyw41) (vyw300,vyw301) (vyw40 == vyw300 && vyw41 == vyw301) == LT",fontsize=16,color="magenta"];109 -> 114[label="",style="dashed", color="magenta", weight=3]; 109 -> 115[label="",style="dashed", color="magenta", weight=3]; 109 -> 116[label="",style="dashed", color="magenta", weight=3]; 109 -> 117[label="",style="dashed", color="magenta", weight=3]; 109 -> 118[label="",style="dashed", color="magenta", weight=3]; 100[label="FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) vyw24",fontsize=16,color="burlywood",shape="triangle"];2294[label="vyw24/False",fontsize=10,color="white",style="solid",shape="box"];100 -> 2294[label="",style="solid", color="burlywood", weight=9]; 2294 -> 119[label="",style="solid", color="burlywood", weight=3]; 2295[label="vyw24/True",fontsize=10,color="white",style="solid",shape="box"];100 -> 2295[label="",style="solid", color="burlywood", weight=9]; 2295 -> 120[label="",style="solid", color="burlywood", weight=3]; 114[label="vyw40",fontsize=16,color="green",shape="box"];115[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];2296[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2296[label="",style="solid", color="blue", weight=9]; 2296 -> 121[label="",style="solid", color="blue", weight=3]; 2297[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2297[label="",style="solid", color="blue", weight=9]; 2297 -> 122[label="",style="solid", color="blue", weight=3]; 2298[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2298[label="",style="solid", color="blue", weight=9]; 2298 -> 123[label="",style="solid", color="blue", weight=3]; 2299[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2299[label="",style="solid", color="blue", weight=9]; 2299 -> 124[label="",style="solid", color="blue", weight=3]; 2300[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2300[label="",style="solid", color="blue", weight=9]; 2300 -> 125[label="",style="solid", color="blue", weight=3]; 2301[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2301[label="",style="solid", color="blue", weight=9]; 2301 -> 126[label="",style="solid", color="blue", weight=3]; 2302[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2302[label="",style="solid", color="blue", weight=9]; 2302 -> 127[label="",style="solid", color="blue", weight=3]; 2303[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2303[label="",style="solid", color="blue", weight=9]; 2303 -> 128[label="",style="solid", color="blue", weight=3]; 2304[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2304[label="",style="solid", color="blue", weight=9]; 2304 -> 129[label="",style="solid", color="blue", weight=3]; 2305[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2305[label="",style="solid", color="blue", weight=9]; 2305 -> 130[label="",style="solid", color="blue", weight=3]; 2306[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2306[label="",style="solid", color="blue", weight=9]; 2306 -> 131[label="",style="solid", color="blue", weight=3]; 2307[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2307[label="",style="solid", color="blue", weight=9]; 2307 -> 132[label="",style="solid", color="blue", weight=3]; 2308[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2308[label="",style="solid", color="blue", weight=9]; 2308 -> 133[label="",style="solid", color="blue", weight=3]; 2309[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2309[label="",style="solid", color="blue", weight=9]; 2309 -> 134[label="",style="solid", color="blue", weight=3]; 116[label="vyw41",fontsize=16,color="green",shape="box"];117[label="vyw300",fontsize=16,color="green",shape="box"];118[label="vyw301",fontsize=16,color="green",shape="box"];113[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw35 && vyw32 == vyw34) == LT",fontsize=16,color="burlywood",shape="triangle"];2310[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];113 -> 2310[label="",style="solid", color="burlywood", weight=9]; 2310 -> 135[label="",style="solid", color="burlywood", weight=3]; 2311[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];113 -> 2311[label="",style="solid", color="burlywood", weight=9]; 2311 -> 136[label="",style="solid", color="burlywood", weight=3]; 119[label="FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) False",fontsize=16,color="black",shape="box"];119 -> 137[label="",style="solid", color="black", weight=3]; 120[label="FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True",fontsize=16,color="black",shape="box"];120 -> 138[label="",style="solid", color="black", weight=3]; 121[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2312[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];121 -> 2312[label="",style="solid", color="burlywood", weight=9]; 2312 -> 139[label="",style="solid", color="burlywood", weight=3]; 122[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2313[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];122 -> 2313[label="",style="solid", color="burlywood", weight=9]; 2313 -> 140[label="",style="solid", color="burlywood", weight=3]; 123[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2314[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];123 -> 2314[label="",style="solid", color="burlywood", weight=9]; 2314 -> 141[label="",style="solid", color="burlywood", weight=3]; 2315[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];123 -> 2315[label="",style="solid", color="burlywood", weight=9]; 2315 -> 142[label="",style="solid", color="burlywood", weight=3]; 2316[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];123 -> 2316[label="",style="solid", color="burlywood", weight=9]; 2316 -> 143[label="",style="solid", color="burlywood", weight=3]; 124[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];124 -> 144[label="",style="solid", color="black", weight=3]; 125[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2317[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];125 -> 2317[label="",style="solid", color="burlywood", weight=9]; 2317 -> 145[label="",style="solid", color="burlywood", weight=3]; 2318[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];125 -> 2318[label="",style="solid", color="burlywood", weight=9]; 2318 -> 146[label="",style="solid", color="burlywood", weight=3]; 126[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2319[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];126 -> 2319[label="",style="solid", color="burlywood", weight=9]; 2319 -> 147[label="",style="solid", color="burlywood", weight=3]; 127[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2320[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];127 -> 2320[label="",style="solid", color="burlywood", weight=9]; 2320 -> 148[label="",style="solid", color="burlywood", weight=3]; 2321[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];127 -> 2321[label="",style="solid", color="burlywood", weight=9]; 2321 -> 149[label="",style="solid", color="burlywood", weight=3]; 128[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2322[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];128 -> 2322[label="",style="solid", color="burlywood", weight=9]; 2322 -> 150[label="",style="solid", color="burlywood", weight=3]; 2323[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];128 -> 2323[label="",style="solid", color="burlywood", weight=9]; 2323 -> 151[label="",style="solid", color="burlywood", weight=3]; 129[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];129 -> 152[label="",style="solid", color="black", weight=3]; 130[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2324[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];130 -> 2324[label="",style="solid", color="burlywood", weight=9]; 2324 -> 153[label="",style="solid", color="burlywood", weight=3]; 131[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];131 -> 154[label="",style="solid", color="black", weight=3]; 132[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2325[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];132 -> 2325[label="",style="solid", color="burlywood", weight=9]; 2325 -> 155[label="",style="solid", color="burlywood", weight=3]; 2326[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];132 -> 2326[label="",style="solid", color="burlywood", weight=9]; 2326 -> 156[label="",style="solid", color="burlywood", weight=3]; 133[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];133 -> 157[label="",style="solid", color="black", weight=3]; 134[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2327[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];134 -> 2327[label="",style="solid", color="burlywood", weight=9]; 2327 -> 158[label="",style="solid", color="burlywood", weight=3]; 135[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (False && vyw32 == vyw34) == LT",fontsize=16,color="black",shape="box"];135 -> 159[label="",style="solid", color="black", weight=3]; 136[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (True && vyw32 == vyw34) == LT",fontsize=16,color="black",shape="box"];136 -> 160[label="",style="solid", color="black", weight=3]; 137 -> 203[label="",style="dashed", color="red", weight=0]; 137[label="FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) ((vyw21,vyw22) > (vyw15,vyw16))",fontsize=16,color="magenta"];137 -> 204[label="",style="dashed", color="magenta", weight=3]; 138 -> 4[label="",style="dashed", color="red", weight=0]; 138[label="FiniteMap.lookupFM vyw19 (vyw21,vyw22)",fontsize=16,color="magenta"];138 -> 162[label="",style="dashed", color="magenta", weight=3]; 138 -> 163[label="",style="dashed", color="magenta", weight=3]; 139[label="Integer vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];2328[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];139 -> 2328[label="",style="solid", color="burlywood", weight=9]; 2328 -> 164[label="",style="solid", color="burlywood", weight=3]; 140[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];2329[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];140 -> 2329[label="",style="solid", color="burlywood", weight=9]; 2329 -> 165[label="",style="solid", color="burlywood", weight=3]; 141[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];2330[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];141 -> 2330[label="",style="solid", color="burlywood", weight=9]; 2330 -> 166[label="",style="solid", color="burlywood", weight=3]; 2331[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];141 -> 2331[label="",style="solid", color="burlywood", weight=9]; 2331 -> 167[label="",style="solid", color="burlywood", weight=3]; 2332[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];141 -> 2332[label="",style="solid", color="burlywood", weight=9]; 2332 -> 168[label="",style="solid", color="burlywood", weight=3]; 142[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];2333[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];142 -> 2333[label="",style="solid", color="burlywood", weight=9]; 2333 -> 169[label="",style="solid", color="burlywood", weight=3]; 2334[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];142 -> 2334[label="",style="solid", color="burlywood", weight=9]; 2334 -> 170[label="",style="solid", color="burlywood", weight=3]; 2335[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];142 -> 2335[label="",style="solid", color="burlywood", weight=9]; 2335 -> 171[label="",style="solid", color="burlywood", weight=3]; 143[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];2336[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];143 -> 2336[label="",style="solid", color="burlywood", weight=9]; 2336 -> 172[label="",style="solid", color="burlywood", weight=3]; 2337[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];143 -> 2337[label="",style="solid", color="burlywood", weight=9]; 2337 -> 173[label="",style="solid", color="burlywood", weight=3]; 2338[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];143 -> 2338[label="",style="solid", color="burlywood", weight=9]; 2338 -> 174[label="",style="solid", color="burlywood", weight=3]; 144[label="primEqChar vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];2339[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];144 -> 2339[label="",style="solid", color="burlywood", weight=9]; 2339 -> 175[label="",style="solid", color="burlywood", weight=3]; 145[label="Left vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];2340[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];145 -> 2340[label="",style="solid", color="burlywood", weight=9]; 2340 -> 176[label="",style="solid", color="burlywood", weight=3]; 2341[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];145 -> 2341[label="",style="solid", color="burlywood", weight=9]; 2341 -> 177[label="",style="solid", color="burlywood", weight=3]; 146[label="Right vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];2342[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];146 -> 2342[label="",style="solid", color="burlywood", weight=9]; 2342 -> 178[label="",style="solid", color="burlywood", weight=3]; 2343[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];146 -> 2343[label="",style="solid", color="burlywood", weight=9]; 2343 -> 179[label="",style="solid", color="burlywood", weight=3]; 147[label="(vyw400,vyw401,vyw402) == vyw300",fontsize=16,color="burlywood",shape="box"];2344[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];147 -> 2344[label="",style="solid", color="burlywood", weight=9]; 2344 -> 180[label="",style="solid", color="burlywood", weight=3]; 148[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];2345[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];148 -> 2345[label="",style="solid", color="burlywood", weight=9]; 2345 -> 181[label="",style="solid", color="burlywood", weight=3]; 2346[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];148 -> 2346[label="",style="solid", color="burlywood", weight=9]; 2346 -> 182[label="",style="solid", color="burlywood", weight=3]; 149[label="Just vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];2347[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];149 -> 2347[label="",style="solid", color="burlywood", weight=9]; 2347 -> 183[label="",style="solid", color="burlywood", weight=3]; 2348[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];149 -> 2348[label="",style="solid", color="burlywood", weight=9]; 2348 -> 184[label="",style="solid", color="burlywood", weight=3]; 150[label="vyw400 : vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];2349[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];150 -> 2349[label="",style="solid", color="burlywood", weight=9]; 2349 -> 185[label="",style="solid", color="burlywood", weight=3]; 2350[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];150 -> 2350[label="",style="solid", color="burlywood", weight=9]; 2350 -> 186[label="",style="solid", color="burlywood", weight=3]; 151[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];2351[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];151 -> 2351[label="",style="solid", color="burlywood", weight=9]; 2351 -> 187[label="",style="solid", color="burlywood", weight=3]; 2352[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];151 -> 2352[label="",style="solid", color="burlywood", weight=9]; 2352 -> 188[label="",style="solid", color="burlywood", weight=3]; 152[label="primEqFloat vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];2353[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];152 -> 2353[label="",style="solid", color="burlywood", weight=9]; 2353 -> 189[label="",style="solid", color="burlywood", weight=3]; 153[label="vyw400 :% vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];2354[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];153 -> 2354[label="",style="solid", color="burlywood", weight=9]; 2354 -> 190[label="",style="solid", color="burlywood", weight=3]; 154[label="primEqDouble vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];2355[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];154 -> 2355[label="",style="solid", color="burlywood", weight=9]; 2355 -> 191[label="",style="solid", color="burlywood", weight=3]; 155[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];2356[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];155 -> 2356[label="",style="solid", color="burlywood", weight=9]; 2356 -> 192[label="",style="solid", color="burlywood", weight=3]; 2357[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];155 -> 2357[label="",style="solid", color="burlywood", weight=9]; 2357 -> 193[label="",style="solid", color="burlywood", weight=3]; 156[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];2358[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];156 -> 2358[label="",style="solid", color="burlywood", weight=9]; 2358 -> 194[label="",style="solid", color="burlywood", weight=3]; 2359[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];156 -> 2359[label="",style="solid", color="burlywood", weight=9]; 2359 -> 195[label="",style="solid", color="burlywood", weight=3]; 157[label="primEqInt vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];2360[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];157 -> 2360[label="",style="solid", color="burlywood", weight=9]; 2360 -> 196[label="",style="solid", color="burlywood", weight=3]; 2361[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];157 -> 2361[label="",style="solid", color="burlywood", weight=9]; 2361 -> 197[label="",style="solid", color="burlywood", weight=3]; 158[label="(vyw400,vyw401) == vyw300",fontsize=16,color="burlywood",shape="box"];2362[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];158 -> 2362[label="",style="solid", color="burlywood", weight=9]; 2362 -> 198[label="",style="solid", color="burlywood", weight=3]; 159 -> 123[label="",style="dashed", color="red", weight=0]; 159[label="compare2 (vyw31,vyw32) (vyw33,vyw34) False == LT",fontsize=16,color="magenta"];159 -> 199[label="",style="dashed", color="magenta", weight=3]; 159 -> 200[label="",style="dashed", color="magenta", weight=3]; 160 -> 123[label="",style="dashed", color="red", weight=0]; 160[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw32 == vyw34) == LT",fontsize=16,color="magenta"];160 -> 201[label="",style="dashed", color="magenta", weight=3]; 160 -> 202[label="",style="dashed", color="magenta", weight=3]; 204[label="(vyw21,vyw22) > (vyw15,vyw16)",fontsize=16,color="black",shape="box"];204 -> 206[label="",style="solid", color="black", weight=3]; 203[label="FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) vyw36",fontsize=16,color="burlywood",shape="triangle"];2363[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];203 -> 2363[label="",style="solid", color="burlywood", weight=9]; 2363 -> 207[label="",style="solid", color="burlywood", weight=3]; 2364[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];203 -> 2364[label="",style="solid", color="burlywood", weight=9]; 2364 -> 208[label="",style="solid", color="burlywood", weight=3]; 162[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];163[label="vyw19",fontsize=16,color="green",shape="box"];164[label="Integer vyw400 == Integer vyw3000",fontsize=16,color="black",shape="box"];164 -> 209[label="",style="solid", color="black", weight=3]; 165[label="() == ()",fontsize=16,color="black",shape="box"];165 -> 210[label="",style="solid", color="black", weight=3]; 166[label="LT == LT",fontsize=16,color="black",shape="box"];166 -> 211[label="",style="solid", color="black", weight=3]; 167[label="LT == EQ",fontsize=16,color="black",shape="box"];167 -> 212[label="",style="solid", color="black", weight=3]; 168[label="LT == GT",fontsize=16,color="black",shape="box"];168 -> 213[label="",style="solid", color="black", weight=3]; 169[label="EQ == LT",fontsize=16,color="black",shape="box"];169 -> 214[label="",style="solid", color="black", weight=3]; 170[label="EQ == EQ",fontsize=16,color="black",shape="box"];170 -> 215[label="",style="solid", color="black", weight=3]; 171[label="EQ == GT",fontsize=16,color="black",shape="box"];171 -> 216[label="",style="solid", color="black", weight=3]; 172[label="GT == LT",fontsize=16,color="black",shape="box"];172 -> 217[label="",style="solid", color="black", weight=3]; 173[label="GT == EQ",fontsize=16,color="black",shape="box"];173 -> 218[label="",style="solid", color="black", weight=3]; 174[label="GT == GT",fontsize=16,color="black",shape="box"];174 -> 219[label="",style="solid", color="black", weight=3]; 175[label="primEqChar (Char vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];2365[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];175 -> 2365[label="",style="solid", color="burlywood", weight=9]; 2365 -> 220[label="",style="solid", color="burlywood", weight=3]; 176[label="Left vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];176 -> 221[label="",style="solid", color="black", weight=3]; 177[label="Left vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];177 -> 222[label="",style="solid", color="black", weight=3]; 178[label="Right vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];178 -> 223[label="",style="solid", color="black", weight=3]; 179[label="Right vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];179 -> 224[label="",style="solid", color="black", weight=3]; 180[label="(vyw400,vyw401,vyw402) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];180 -> 225[label="",style="solid", color="black", weight=3]; 181[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];181 -> 226[label="",style="solid", color="black", weight=3]; 182[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];182 -> 227[label="",style="solid", color="black", weight=3]; 183[label="Just vyw400 == Nothing",fontsize=16,color="black",shape="box"];183 -> 228[label="",style="solid", color="black", weight=3]; 184[label="Just vyw400 == Just vyw3000",fontsize=16,color="black",shape="box"];184 -> 229[label="",style="solid", color="black", weight=3]; 185[label="vyw400 : vyw401 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];185 -> 230[label="",style="solid", color="black", weight=3]; 186[label="vyw400 : vyw401 == []",fontsize=16,color="black",shape="box"];186 -> 231[label="",style="solid", color="black", weight=3]; 187[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];187 -> 232[label="",style="solid", color="black", weight=3]; 188[label="[] == []",fontsize=16,color="black",shape="box"];188 -> 233[label="",style="solid", color="black", weight=3]; 189[label="primEqFloat (Float vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];2366[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];189 -> 2366[label="",style="solid", color="burlywood", weight=9]; 2366 -> 234[label="",style="solid", color="burlywood", weight=3]; 190[label="vyw400 :% vyw401 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];190 -> 235[label="",style="solid", color="black", weight=3]; 191[label="primEqDouble (Double vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];2367[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];191 -> 2367[label="",style="solid", color="burlywood", weight=9]; 2367 -> 236[label="",style="solid", color="burlywood", weight=3]; 192[label="False == False",fontsize=16,color="black",shape="box"];192 -> 237[label="",style="solid", color="black", weight=3]; 193[label="False == True",fontsize=16,color="black",shape="box"];193 -> 238[label="",style="solid", color="black", weight=3]; 194[label="True == False",fontsize=16,color="black",shape="box"];194 -> 239[label="",style="solid", color="black", weight=3]; 195[label="True == True",fontsize=16,color="black",shape="box"];195 -> 240[label="",style="solid", color="black", weight=3]; 196[label="primEqInt (Pos vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];2368[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];196 -> 2368[label="",style="solid", color="burlywood", weight=9]; 2368 -> 241[label="",style="solid", color="burlywood", weight=3]; 2369[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];196 -> 2369[label="",style="solid", color="burlywood", weight=9]; 2369 -> 242[label="",style="solid", color="burlywood", weight=3]; 197[label="primEqInt (Neg vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];2370[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];197 -> 2370[label="",style="solid", color="burlywood", weight=9]; 2370 -> 243[label="",style="solid", color="burlywood", weight=3]; 2371[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];197 -> 2371[label="",style="solid", color="burlywood", weight=9]; 2371 -> 244[label="",style="solid", color="burlywood", weight=3]; 198[label="(vyw400,vyw401) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];198 -> 245[label="",style="solid", color="black", weight=3]; 199[label="LT",fontsize=16,color="green",shape="box"];200 -> 1118[label="",style="dashed", color="red", weight=0]; 200[label="compare2 (vyw31,vyw32) (vyw33,vyw34) False",fontsize=16,color="magenta"];200 -> 1119[label="",style="dashed", color="magenta", weight=3]; 200 -> 1120[label="",style="dashed", color="magenta", weight=3]; 200 -> 1121[label="",style="dashed", color="magenta", weight=3]; 201[label="LT",fontsize=16,color="green",shape="box"];202 -> 1118[label="",style="dashed", color="red", weight=0]; 202[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw32 == vyw34)",fontsize=16,color="magenta"];202 -> 1122[label="",style="dashed", color="magenta", weight=3]; 202 -> 1123[label="",style="dashed", color="magenta", weight=3]; 202 -> 1124[label="",style="dashed", color="magenta", weight=3]; 206 -> 123[label="",style="dashed", color="red", weight=0]; 206[label="compare (vyw21,vyw22) (vyw15,vyw16) == GT",fontsize=16,color="magenta"];206 -> 258[label="",style="dashed", color="magenta", weight=3]; 206 -> 259[label="",style="dashed", color="magenta", weight=3]; 207[label="FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) False",fontsize=16,color="black",shape="box"];207 -> 260[label="",style="solid", color="black", weight=3]; 208[label="FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True",fontsize=16,color="black",shape="box"];208 -> 261[label="",style="solid", color="black", weight=3]; 209 -> 157[label="",style="dashed", color="red", weight=0]; 209[label="primEqInt vyw400 vyw3000",fontsize=16,color="magenta"];209 -> 262[label="",style="dashed", color="magenta", weight=3]; 209 -> 263[label="",style="dashed", color="magenta", weight=3]; 210[label="True",fontsize=16,color="green",shape="box"];211[label="True",fontsize=16,color="green",shape="box"];212[label="False",fontsize=16,color="green",shape="box"];213[label="False",fontsize=16,color="green",shape="box"];214[label="False",fontsize=16,color="green",shape="box"];215[label="True",fontsize=16,color="green",shape="box"];216[label="False",fontsize=16,color="green",shape="box"];217[label="False",fontsize=16,color="green",shape="box"];218[label="False",fontsize=16,color="green",shape="box"];219[label="True",fontsize=16,color="green",shape="box"];220[label="primEqChar (Char vyw400) (Char vyw3000)",fontsize=16,color="black",shape="box"];220 -> 264[label="",style="solid", color="black", weight=3]; 221[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2372[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2372[label="",style="solid", color="blue", weight=9]; 2372 -> 265[label="",style="solid", color="blue", weight=3]; 2373[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2373[label="",style="solid", color="blue", weight=9]; 2373 -> 266[label="",style="solid", color="blue", weight=3]; 2374[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2374[label="",style="solid", color="blue", weight=9]; 2374 -> 267[label="",style="solid", color="blue", weight=3]; 2375[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2375[label="",style="solid", color="blue", weight=9]; 2375 -> 268[label="",style="solid", color="blue", weight=3]; 2376[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2376[label="",style="solid", color="blue", weight=9]; 2376 -> 269[label="",style="solid", color="blue", weight=3]; 2377[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2377[label="",style="solid", color="blue", weight=9]; 2377 -> 270[label="",style="solid", color="blue", weight=3]; 2378[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2378[label="",style="solid", color="blue", weight=9]; 2378 -> 271[label="",style="solid", color="blue", weight=3]; 2379[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2379[label="",style="solid", color="blue", weight=9]; 2379 -> 272[label="",style="solid", color="blue", weight=3]; 2380[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2380[label="",style="solid", color="blue", weight=9]; 2380 -> 273[label="",style="solid", color="blue", weight=3]; 2381[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2381[label="",style="solid", color="blue", weight=9]; 2381 -> 274[label="",style="solid", color="blue", weight=3]; 2382[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2382[label="",style="solid", color="blue", weight=9]; 2382 -> 275[label="",style="solid", color="blue", weight=3]; 2383[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2383[label="",style="solid", color="blue", weight=9]; 2383 -> 276[label="",style="solid", color="blue", weight=3]; 2384[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2384[label="",style="solid", color="blue", weight=9]; 2384 -> 277[label="",style="solid", color="blue", weight=3]; 2385[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];221 -> 2385[label="",style="solid", color="blue", weight=9]; 2385 -> 278[label="",style="solid", color="blue", weight=3]; 222[label="False",fontsize=16,color="green",shape="box"];223[label="False",fontsize=16,color="green",shape="box"];224[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2386[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2386[label="",style="solid", color="blue", weight=9]; 2386 -> 279[label="",style="solid", color="blue", weight=3]; 2387[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2387[label="",style="solid", color="blue", weight=9]; 2387 -> 280[label="",style="solid", color="blue", weight=3]; 2388[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2388[label="",style="solid", color="blue", weight=9]; 2388 -> 281[label="",style="solid", color="blue", weight=3]; 2389[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2389[label="",style="solid", color="blue", weight=9]; 2389 -> 282[label="",style="solid", color="blue", weight=3]; 2390[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2390[label="",style="solid", color="blue", weight=9]; 2390 -> 283[label="",style="solid", color="blue", weight=3]; 2391[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2391[label="",style="solid", color="blue", weight=9]; 2391 -> 284[label="",style="solid", color="blue", weight=3]; 2392[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2392[label="",style="solid", color="blue", weight=9]; 2392 -> 285[label="",style="solid", color="blue", weight=3]; 2393[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2393[label="",style="solid", color="blue", weight=9]; 2393 -> 286[label="",style="solid", color="blue", weight=3]; 2394[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2394[label="",style="solid", color="blue", weight=9]; 2394 -> 287[label="",style="solid", color="blue", weight=3]; 2395[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2395[label="",style="solid", color="blue", weight=9]; 2395 -> 288[label="",style="solid", color="blue", weight=3]; 2396[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2396[label="",style="solid", color="blue", weight=9]; 2396 -> 289[label="",style="solid", color="blue", weight=3]; 2397[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2397[label="",style="solid", color="blue", weight=9]; 2397 -> 290[label="",style="solid", color="blue", weight=3]; 2398[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2398[label="",style="solid", color="blue", weight=9]; 2398 -> 291[label="",style="solid", color="blue", weight=3]; 2399[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2399[label="",style="solid", color="blue", weight=9]; 2399 -> 292[label="",style="solid", color="blue", weight=3]; 225 -> 415[label="",style="dashed", color="red", weight=0]; 225[label="vyw400 == vyw3000 && vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];225 -> 416[label="",style="dashed", color="magenta", weight=3]; 225 -> 417[label="",style="dashed", color="magenta", weight=3]; 226[label="True",fontsize=16,color="green",shape="box"];227[label="False",fontsize=16,color="green",shape="box"];228[label="False",fontsize=16,color="green",shape="box"];229[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2400[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2400[label="",style="solid", color="blue", weight=9]; 2400 -> 299[label="",style="solid", color="blue", weight=3]; 2401[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2401[label="",style="solid", color="blue", weight=9]; 2401 -> 300[label="",style="solid", color="blue", weight=3]; 2402[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2402[label="",style="solid", color="blue", weight=9]; 2402 -> 301[label="",style="solid", color="blue", weight=3]; 2403[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2403[label="",style="solid", color="blue", weight=9]; 2403 -> 302[label="",style="solid", color="blue", weight=3]; 2404[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2404[label="",style="solid", color="blue", weight=9]; 2404 -> 303[label="",style="solid", color="blue", weight=3]; 2405[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2405[label="",style="solid", color="blue", weight=9]; 2405 -> 304[label="",style="solid", color="blue", weight=3]; 2406[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2406[label="",style="solid", color="blue", weight=9]; 2406 -> 305[label="",style="solid", color="blue", weight=3]; 2407[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2407[label="",style="solid", color="blue", weight=9]; 2407 -> 306[label="",style="solid", color="blue", weight=3]; 2408[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2408[label="",style="solid", color="blue", weight=9]; 2408 -> 307[label="",style="solid", color="blue", weight=3]; 2409[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2409[label="",style="solid", color="blue", weight=9]; 2409 -> 308[label="",style="solid", color="blue", weight=3]; 2410[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2410[label="",style="solid", color="blue", weight=9]; 2410 -> 309[label="",style="solid", color="blue", weight=3]; 2411[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2411[label="",style="solid", color="blue", weight=9]; 2411 -> 310[label="",style="solid", color="blue", weight=3]; 2412[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2412[label="",style="solid", color="blue", weight=9]; 2412 -> 311[label="",style="solid", color="blue", weight=3]; 2413[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];229 -> 2413[label="",style="solid", color="blue", weight=9]; 2413 -> 312[label="",style="solid", color="blue", weight=3]; 230 -> 415[label="",style="dashed", color="red", weight=0]; 230[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];230 -> 418[label="",style="dashed", color="magenta", weight=3]; 230 -> 419[label="",style="dashed", color="magenta", weight=3]; 231[label="False",fontsize=16,color="green",shape="box"];232[label="False",fontsize=16,color="green",shape="box"];233[label="True",fontsize=16,color="green",shape="box"];234[label="primEqFloat (Float vyw400 vyw401) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];234 -> 324[label="",style="solid", color="black", weight=3]; 235 -> 415[label="",style="dashed", color="red", weight=0]; 235[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];235 -> 420[label="",style="dashed", color="magenta", weight=3]; 235 -> 421[label="",style="dashed", color="magenta", weight=3]; 236[label="primEqDouble (Double vyw400 vyw401) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];236 -> 325[label="",style="solid", color="black", weight=3]; 237[label="True",fontsize=16,color="green",shape="box"];238[label="False",fontsize=16,color="green",shape="box"];239[label="False",fontsize=16,color="green",shape="box"];240[label="True",fontsize=16,color="green",shape="box"];241[label="primEqInt (Pos (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];2414[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];241 -> 2414[label="",style="solid", color="burlywood", weight=9]; 2414 -> 326[label="",style="solid", color="burlywood", weight=3]; 2415[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];241 -> 2415[label="",style="solid", color="burlywood", weight=9]; 2415 -> 327[label="",style="solid", color="burlywood", weight=3]; 242[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];2416[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];242 -> 2416[label="",style="solid", color="burlywood", weight=9]; 2416 -> 328[label="",style="solid", color="burlywood", weight=3]; 2417[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];242 -> 2417[label="",style="solid", color="burlywood", weight=9]; 2417 -> 329[label="",style="solid", color="burlywood", weight=3]; 243[label="primEqInt (Neg (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];2418[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];243 -> 2418[label="",style="solid", color="burlywood", weight=9]; 2418 -> 330[label="",style="solid", color="burlywood", weight=3]; 2419[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];243 -> 2419[label="",style="solid", color="burlywood", weight=9]; 2419 -> 331[label="",style="solid", color="burlywood", weight=3]; 244[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];2420[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];244 -> 2420[label="",style="solid", color="burlywood", weight=9]; 2420 -> 332[label="",style="solid", color="burlywood", weight=3]; 2421[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];244 -> 2421[label="",style="solid", color="burlywood", weight=9]; 2421 -> 333[label="",style="solid", color="burlywood", weight=3]; 245 -> 415[label="",style="dashed", color="red", weight=0]; 245[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];245 -> 422[label="",style="dashed", color="magenta", weight=3]; 245 -> 423[label="",style="dashed", color="magenta", weight=3]; 1119[label="(vyw31,vyw32)",fontsize=16,color="green",shape="box"];1120[label="(vyw33,vyw34)",fontsize=16,color="green",shape="box"];1121[label="False",fontsize=16,color="green",shape="box"];1118[label="compare2 vyw43 vyw45 vyw82",fontsize=16,color="burlywood",shape="triangle"];2422[label="vyw82/False",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2422[label="",style="solid", color="burlywood", weight=9]; 2422 -> 1132[label="",style="solid", color="burlywood", weight=3]; 2423[label="vyw82/True",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2423[label="",style="solid", color="burlywood", weight=9]; 2423 -> 1133[label="",style="solid", color="burlywood", weight=3]; 1122[label="(vyw31,vyw32)",fontsize=16,color="green",shape="box"];1123[label="(vyw33,vyw34)",fontsize=16,color="green",shape="box"];1124[label="vyw32 == vyw34",fontsize=16,color="blue",shape="box"];2424[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2424[label="",style="solid", color="blue", weight=9]; 2424 -> 1134[label="",style="solid", color="blue", weight=3]; 2425[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2425[label="",style="solid", color="blue", weight=9]; 2425 -> 1135[label="",style="solid", color="blue", weight=3]; 2426[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2426[label="",style="solid", color="blue", weight=9]; 2426 -> 1136[label="",style="solid", color="blue", weight=3]; 2427[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2427[label="",style="solid", color="blue", weight=9]; 2427 -> 1137[label="",style="solid", color="blue", weight=3]; 2428[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2428[label="",style="solid", color="blue", weight=9]; 2428 -> 1138[label="",style="solid", color="blue", weight=3]; 2429[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2429[label="",style="solid", color="blue", weight=9]; 2429 -> 1139[label="",style="solid", color="blue", weight=3]; 2430[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2430[label="",style="solid", color="blue", weight=9]; 2430 -> 1140[label="",style="solid", color="blue", weight=3]; 2431[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2431[label="",style="solid", color="blue", weight=9]; 2431 -> 1141[label="",style="solid", color="blue", weight=3]; 2432[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2432[label="",style="solid", color="blue", weight=9]; 2432 -> 1142[label="",style="solid", color="blue", weight=3]; 2433[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2433[label="",style="solid", color="blue", weight=9]; 2433 -> 1143[label="",style="solid", color="blue", weight=3]; 2434[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2434[label="",style="solid", color="blue", weight=9]; 2434 -> 1144[label="",style="solid", color="blue", weight=3]; 2435[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2435[label="",style="solid", color="blue", weight=9]; 2435 -> 1145[label="",style="solid", color="blue", weight=3]; 2436[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2436[label="",style="solid", color="blue", weight=9]; 2436 -> 1146[label="",style="solid", color="blue", weight=3]; 2437[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 2437[label="",style="solid", color="blue", weight=9]; 2437 -> 1147[label="",style="solid", color="blue", weight=3]; 258[label="GT",fontsize=16,color="green",shape="box"];259[label="compare (vyw21,vyw22) (vyw15,vyw16)",fontsize=16,color="black",shape="box"];259 -> 350[label="",style="solid", color="black", weight=3]; 260[label="FiniteMap.lookupFM0 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) otherwise",fontsize=16,color="black",shape="box"];260 -> 351[label="",style="solid", color="black", weight=3]; 261 -> 4[label="",style="dashed", color="red", weight=0]; 261[label="FiniteMap.lookupFM vyw20 (vyw21,vyw22)",fontsize=16,color="magenta"];261 -> 352[label="",style="dashed", color="magenta", weight=3]; 261 -> 353[label="",style="dashed", color="magenta", weight=3]; 262[label="vyw3000",fontsize=16,color="green",shape="box"];263[label="vyw400",fontsize=16,color="green",shape="box"];264[label="primEqNat vyw400 vyw3000",fontsize=16,color="burlywood",shape="triangle"];2438[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];264 -> 2438[label="",style="solid", color="burlywood", weight=9]; 2438 -> 354[label="",style="solid", color="burlywood", weight=3]; 2439[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];264 -> 2439[label="",style="solid", color="burlywood", weight=9]; 2439 -> 355[label="",style="solid", color="burlywood", weight=3]; 265 -> 121[label="",style="dashed", color="red", weight=0]; 265[label="vyw400 == vyw3000",fontsize=16,color="magenta"];265 -> 356[label="",style="dashed", color="magenta", weight=3]; 265 -> 357[label="",style="dashed", color="magenta", weight=3]; 266 -> 122[label="",style="dashed", color="red", weight=0]; 266[label="vyw400 == vyw3000",fontsize=16,color="magenta"];266 -> 358[label="",style="dashed", color="magenta", weight=3]; 266 -> 359[label="",style="dashed", color="magenta", weight=3]; 267 -> 123[label="",style="dashed", color="red", weight=0]; 267[label="vyw400 == vyw3000",fontsize=16,color="magenta"];267 -> 360[label="",style="dashed", color="magenta", weight=3]; 267 -> 361[label="",style="dashed", color="magenta", weight=3]; 268 -> 124[label="",style="dashed", color="red", weight=0]; 268[label="vyw400 == vyw3000",fontsize=16,color="magenta"];268 -> 362[label="",style="dashed", color="magenta", weight=3]; 268 -> 363[label="",style="dashed", color="magenta", weight=3]; 269 -> 125[label="",style="dashed", color="red", weight=0]; 269[label="vyw400 == vyw3000",fontsize=16,color="magenta"];269 -> 364[label="",style="dashed", color="magenta", weight=3]; 269 -> 365[label="",style="dashed", color="magenta", weight=3]; 270 -> 126[label="",style="dashed", color="red", weight=0]; 270[label="vyw400 == vyw3000",fontsize=16,color="magenta"];270 -> 366[label="",style="dashed", color="magenta", weight=3]; 270 -> 367[label="",style="dashed", color="magenta", weight=3]; 271 -> 127[label="",style="dashed", color="red", weight=0]; 271[label="vyw400 == vyw3000",fontsize=16,color="magenta"];271 -> 368[label="",style="dashed", color="magenta", weight=3]; 271 -> 369[label="",style="dashed", color="magenta", weight=3]; 272 -> 128[label="",style="dashed", color="red", weight=0]; 272[label="vyw400 == vyw3000",fontsize=16,color="magenta"];272 -> 370[label="",style="dashed", color="magenta", weight=3]; 272 -> 371[label="",style="dashed", color="magenta", weight=3]; 273 -> 129[label="",style="dashed", color="red", weight=0]; 273[label="vyw400 == vyw3000",fontsize=16,color="magenta"];273 -> 372[label="",style="dashed", color="magenta", weight=3]; 273 -> 373[label="",style="dashed", color="magenta", weight=3]; 274 -> 130[label="",style="dashed", color="red", weight=0]; 274[label="vyw400 == vyw3000",fontsize=16,color="magenta"];274 -> 374[label="",style="dashed", color="magenta", weight=3]; 274 -> 375[label="",style="dashed", color="magenta", weight=3]; 275 -> 131[label="",style="dashed", color="red", weight=0]; 275[label="vyw400 == vyw3000",fontsize=16,color="magenta"];275 -> 376[label="",style="dashed", color="magenta", weight=3]; 275 -> 377[label="",style="dashed", color="magenta", weight=3]; 276 -> 132[label="",style="dashed", color="red", weight=0]; 276[label="vyw400 == vyw3000",fontsize=16,color="magenta"];276 -> 378[label="",style="dashed", color="magenta", weight=3]; 276 -> 379[label="",style="dashed", color="magenta", weight=3]; 277 -> 133[label="",style="dashed", color="red", weight=0]; 277[label="vyw400 == vyw3000",fontsize=16,color="magenta"];277 -> 380[label="",style="dashed", color="magenta", weight=3]; 277 -> 381[label="",style="dashed", color="magenta", weight=3]; 278 -> 134[label="",style="dashed", color="red", weight=0]; 278[label="vyw400 == vyw3000",fontsize=16,color="magenta"];278 -> 382[label="",style="dashed", color="magenta", weight=3]; 278 -> 383[label="",style="dashed", color="magenta", weight=3]; 279 -> 121[label="",style="dashed", color="red", weight=0]; 279[label="vyw400 == vyw3000",fontsize=16,color="magenta"];279 -> 384[label="",style="dashed", color="magenta", weight=3]; 279 -> 385[label="",style="dashed", color="magenta", weight=3]; 280 -> 122[label="",style="dashed", color="red", weight=0]; 280[label="vyw400 == vyw3000",fontsize=16,color="magenta"];280 -> 386[label="",style="dashed", color="magenta", weight=3]; 280 -> 387[label="",style="dashed", color="magenta", weight=3]; 281 -> 123[label="",style="dashed", color="red", weight=0]; 281[label="vyw400 == vyw3000",fontsize=16,color="magenta"];281 -> 388[label="",style="dashed", color="magenta", weight=3]; 281 -> 389[label="",style="dashed", color="magenta", weight=3]; 282 -> 124[label="",style="dashed", color="red", weight=0]; 282[label="vyw400 == vyw3000",fontsize=16,color="magenta"];282 -> 390[label="",style="dashed", color="magenta", weight=3]; 282 -> 391[label="",style="dashed", color="magenta", weight=3]; 283 -> 125[label="",style="dashed", color="red", weight=0]; 283[label="vyw400 == vyw3000",fontsize=16,color="magenta"];283 -> 392[label="",style="dashed", color="magenta", weight=3]; 283 -> 393[label="",style="dashed", color="magenta", weight=3]; 284 -> 126[label="",style="dashed", color="red", weight=0]; 284[label="vyw400 == vyw3000",fontsize=16,color="magenta"];284 -> 394[label="",style="dashed", color="magenta", weight=3]; 284 -> 395[label="",style="dashed", color="magenta", weight=3]; 285 -> 127[label="",style="dashed", color="red", weight=0]; 285[label="vyw400 == vyw3000",fontsize=16,color="magenta"];285 -> 396[label="",style="dashed", color="magenta", weight=3]; 285 -> 397[label="",style="dashed", color="magenta", weight=3]; 286 -> 128[label="",style="dashed", color="red", weight=0]; 286[label="vyw400 == vyw3000",fontsize=16,color="magenta"];286 -> 398[label="",style="dashed", color="magenta", weight=3]; 286 -> 399[label="",style="dashed", color="magenta", weight=3]; 287 -> 129[label="",style="dashed", color="red", weight=0]; 287[label="vyw400 == vyw3000",fontsize=16,color="magenta"];287 -> 400[label="",style="dashed", color="magenta", weight=3]; 287 -> 401[label="",style="dashed", color="magenta", weight=3]; 288 -> 130[label="",style="dashed", color="red", weight=0]; 288[label="vyw400 == vyw3000",fontsize=16,color="magenta"];288 -> 402[label="",style="dashed", color="magenta", weight=3]; 288 -> 403[label="",style="dashed", color="magenta", weight=3]; 289 -> 131[label="",style="dashed", color="red", weight=0]; 289[label="vyw400 == vyw3000",fontsize=16,color="magenta"];289 -> 404[label="",style="dashed", color="magenta", weight=3]; 289 -> 405[label="",style="dashed", color="magenta", weight=3]; 290 -> 132[label="",style="dashed", color="red", weight=0]; 290[label="vyw400 == vyw3000",fontsize=16,color="magenta"];290 -> 406[label="",style="dashed", color="magenta", weight=3]; 290 -> 407[label="",style="dashed", color="magenta", weight=3]; 291 -> 133[label="",style="dashed", color="red", weight=0]; 291[label="vyw400 == vyw3000",fontsize=16,color="magenta"];291 -> 408[label="",style="dashed", color="magenta", weight=3]; 291 -> 409[label="",style="dashed", color="magenta", weight=3]; 292 -> 134[label="",style="dashed", color="red", weight=0]; 292[label="vyw400 == vyw3000",fontsize=16,color="magenta"];292 -> 410[label="",style="dashed", color="magenta", weight=3]; 292 -> 411[label="",style="dashed", color="magenta", weight=3]; 416[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2440[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2440[label="",style="solid", color="blue", weight=9]; 2440 -> 428[label="",style="solid", color="blue", weight=3]; 2441[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2441[label="",style="solid", color="blue", weight=9]; 2441 -> 429[label="",style="solid", color="blue", weight=3]; 2442[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2442[label="",style="solid", color="blue", weight=9]; 2442 -> 430[label="",style="solid", color="blue", weight=3]; 2443[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2443[label="",style="solid", color="blue", weight=9]; 2443 -> 431[label="",style="solid", color="blue", weight=3]; 2444[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2444[label="",style="solid", color="blue", weight=9]; 2444 -> 432[label="",style="solid", color="blue", weight=3]; 2445[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2445[label="",style="solid", color="blue", weight=9]; 2445 -> 433[label="",style="solid", color="blue", weight=3]; 2446[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2446[label="",style="solid", color="blue", weight=9]; 2446 -> 434[label="",style="solid", color="blue", weight=3]; 2447[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2447[label="",style="solid", color="blue", weight=9]; 2447 -> 435[label="",style="solid", color="blue", weight=3]; 2448[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2448[label="",style="solid", color="blue", weight=9]; 2448 -> 436[label="",style="solid", color="blue", weight=3]; 2449[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2449[label="",style="solid", color="blue", weight=9]; 2449 -> 437[label="",style="solid", color="blue", weight=3]; 2450[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2450[label="",style="solid", color="blue", weight=9]; 2450 -> 438[label="",style="solid", color="blue", weight=3]; 2451[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2451[label="",style="solid", color="blue", weight=9]; 2451 -> 439[label="",style="solid", color="blue", weight=3]; 2452[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2452[label="",style="solid", color="blue", weight=9]; 2452 -> 440[label="",style="solid", color="blue", weight=3]; 2453[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];416 -> 2453[label="",style="solid", color="blue", weight=9]; 2453 -> 441[label="",style="solid", color="blue", weight=3]; 417 -> 415[label="",style="dashed", color="red", weight=0]; 417[label="vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];417 -> 442[label="",style="dashed", color="magenta", weight=3]; 417 -> 443[label="",style="dashed", color="magenta", weight=3]; 415[label="vyw63 && vyw64",fontsize=16,color="burlywood",shape="triangle"];2454[label="vyw63/False",fontsize=10,color="white",style="solid",shape="box"];415 -> 2454[label="",style="solid", color="burlywood", weight=9]; 2454 -> 444[label="",style="solid", color="burlywood", weight=3]; 2455[label="vyw63/True",fontsize=10,color="white",style="solid",shape="box"];415 -> 2455[label="",style="solid", color="burlywood", weight=9]; 2455 -> 445[label="",style="solid", color="burlywood", weight=3]; 299 -> 121[label="",style="dashed", color="red", weight=0]; 299[label="vyw400 == vyw3000",fontsize=16,color="magenta"];299 -> 446[label="",style="dashed", color="magenta", weight=3]; 299 -> 447[label="",style="dashed", color="magenta", weight=3]; 300 -> 122[label="",style="dashed", color="red", weight=0]; 300[label="vyw400 == vyw3000",fontsize=16,color="magenta"];300 -> 448[label="",style="dashed", color="magenta", weight=3]; 300 -> 449[label="",style="dashed", color="magenta", weight=3]; 301 -> 123[label="",style="dashed", color="red", weight=0]; 301[label="vyw400 == vyw3000",fontsize=16,color="magenta"];301 -> 450[label="",style="dashed", color="magenta", weight=3]; 301 -> 451[label="",style="dashed", color="magenta", weight=3]; 302 -> 124[label="",style="dashed", color="red", weight=0]; 302[label="vyw400 == vyw3000",fontsize=16,color="magenta"];302 -> 452[label="",style="dashed", color="magenta", weight=3]; 302 -> 453[label="",style="dashed", color="magenta", weight=3]; 303 -> 125[label="",style="dashed", color="red", weight=0]; 303[label="vyw400 == vyw3000",fontsize=16,color="magenta"];303 -> 454[label="",style="dashed", color="magenta", weight=3]; 303 -> 455[label="",style="dashed", color="magenta", weight=3]; 304 -> 126[label="",style="dashed", color="red", weight=0]; 304[label="vyw400 == vyw3000",fontsize=16,color="magenta"];304 -> 456[label="",style="dashed", color="magenta", weight=3]; 304 -> 457[label="",style="dashed", color="magenta", weight=3]; 305 -> 127[label="",style="dashed", color="red", weight=0]; 305[label="vyw400 == vyw3000",fontsize=16,color="magenta"];305 -> 458[label="",style="dashed", color="magenta", weight=3]; 305 -> 459[label="",style="dashed", color="magenta", weight=3]; 306 -> 128[label="",style="dashed", color="red", weight=0]; 306[label="vyw400 == vyw3000",fontsize=16,color="magenta"];306 -> 460[label="",style="dashed", color="magenta", weight=3]; 306 -> 461[label="",style="dashed", color="magenta", weight=3]; 307 -> 129[label="",style="dashed", color="red", weight=0]; 307[label="vyw400 == vyw3000",fontsize=16,color="magenta"];307 -> 462[label="",style="dashed", color="magenta", weight=3]; 307 -> 463[label="",style="dashed", color="magenta", weight=3]; 308 -> 130[label="",style="dashed", color="red", weight=0]; 308[label="vyw400 == vyw3000",fontsize=16,color="magenta"];308 -> 464[label="",style="dashed", color="magenta", weight=3]; 308 -> 465[label="",style="dashed", color="magenta", weight=3]; 309 -> 131[label="",style="dashed", color="red", weight=0]; 309[label="vyw400 == vyw3000",fontsize=16,color="magenta"];309 -> 466[label="",style="dashed", color="magenta", weight=3]; 309 -> 467[label="",style="dashed", color="magenta", weight=3]; 310 -> 132[label="",style="dashed", color="red", weight=0]; 310[label="vyw400 == vyw3000",fontsize=16,color="magenta"];310 -> 468[label="",style="dashed", color="magenta", weight=3]; 310 -> 469[label="",style="dashed", color="magenta", weight=3]; 311 -> 133[label="",style="dashed", color="red", weight=0]; 311[label="vyw400 == vyw3000",fontsize=16,color="magenta"];311 -> 470[label="",style="dashed", color="magenta", weight=3]; 311 -> 471[label="",style="dashed", color="magenta", weight=3]; 312 -> 134[label="",style="dashed", color="red", weight=0]; 312[label="vyw400 == vyw3000",fontsize=16,color="magenta"];312 -> 472[label="",style="dashed", color="magenta", weight=3]; 312 -> 473[label="",style="dashed", color="magenta", weight=3]; 418[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2456[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2456[label="",style="solid", color="blue", weight=9]; 2456 -> 474[label="",style="solid", color="blue", weight=3]; 2457[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2457[label="",style="solid", color="blue", weight=9]; 2457 -> 475[label="",style="solid", color="blue", weight=3]; 2458[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2458[label="",style="solid", color="blue", weight=9]; 2458 -> 476[label="",style="solid", color="blue", weight=3]; 2459[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2459[label="",style="solid", color="blue", weight=9]; 2459 -> 477[label="",style="solid", color="blue", weight=3]; 2460[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2460[label="",style="solid", color="blue", weight=9]; 2460 -> 478[label="",style="solid", color="blue", weight=3]; 2461[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2461[label="",style="solid", color="blue", weight=9]; 2461 -> 479[label="",style="solid", color="blue", weight=3]; 2462[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2462[label="",style="solid", color="blue", weight=9]; 2462 -> 480[label="",style="solid", color="blue", weight=3]; 2463[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2463[label="",style="solid", color="blue", weight=9]; 2463 -> 481[label="",style="solid", color="blue", weight=3]; 2464[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2464[label="",style="solid", color="blue", weight=9]; 2464 -> 482[label="",style="solid", color="blue", weight=3]; 2465[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2465[label="",style="solid", color="blue", weight=9]; 2465 -> 483[label="",style="solid", color="blue", weight=3]; 2466[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2466[label="",style="solid", color="blue", weight=9]; 2466 -> 484[label="",style="solid", color="blue", weight=3]; 2467[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2467[label="",style="solid", color="blue", weight=9]; 2467 -> 485[label="",style="solid", color="blue", weight=3]; 2468[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2468[label="",style="solid", color="blue", weight=9]; 2468 -> 486[label="",style="solid", color="blue", weight=3]; 2469[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];418 -> 2469[label="",style="solid", color="blue", weight=9]; 2469 -> 487[label="",style="solid", color="blue", weight=3]; 419 -> 128[label="",style="dashed", color="red", weight=0]; 419[label="vyw401 == vyw3001",fontsize=16,color="magenta"];419 -> 488[label="",style="dashed", color="magenta", weight=3]; 419 -> 489[label="",style="dashed", color="magenta", weight=3]; 324 -> 133[label="",style="dashed", color="red", weight=0]; 324[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];324 -> 490[label="",style="dashed", color="magenta", weight=3]; 324 -> 491[label="",style="dashed", color="magenta", weight=3]; 420[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2470[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];420 -> 2470[label="",style="solid", color="blue", weight=9]; 2470 -> 492[label="",style="solid", color="blue", weight=3]; 2471[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];420 -> 2471[label="",style="solid", color="blue", weight=9]; 2471 -> 493[label="",style="solid", color="blue", weight=3]; 421[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];2472[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2472[label="",style="solid", color="blue", weight=9]; 2472 -> 494[label="",style="solid", color="blue", weight=3]; 2473[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2473[label="",style="solid", color="blue", weight=9]; 2473 -> 495[label="",style="solid", color="blue", weight=3]; 325 -> 133[label="",style="dashed", color="red", weight=0]; 325[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];325 -> 496[label="",style="dashed", color="magenta", weight=3]; 325 -> 497[label="",style="dashed", color="magenta", weight=3]; 326[label="primEqInt (Pos (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2474[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];326 -> 2474[label="",style="solid", color="burlywood", weight=9]; 2474 -> 498[label="",style="solid", color="burlywood", weight=3]; 2475[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];326 -> 2475[label="",style="solid", color="burlywood", weight=9]; 2475 -> 499[label="",style="solid", color="burlywood", weight=3]; 327[label="primEqInt (Pos (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];327 -> 500[label="",style="solid", color="black", weight=3]; 328[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2476[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];328 -> 2476[label="",style="solid", color="burlywood", weight=9]; 2476 -> 501[label="",style="solid", color="burlywood", weight=3]; 2477[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];328 -> 2477[label="",style="solid", color="burlywood", weight=9]; 2477 -> 502[label="",style="solid", color="burlywood", weight=3]; 329[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2478[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];329 -> 2478[label="",style="solid", color="burlywood", weight=9]; 2478 -> 503[label="",style="solid", color="burlywood", weight=3]; 2479[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];329 -> 2479[label="",style="solid", color="burlywood", weight=9]; 2479 -> 504[label="",style="solid", color="burlywood", weight=3]; 330[label="primEqInt (Neg (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];330 -> 505[label="",style="solid", color="black", weight=3]; 331[label="primEqInt (Neg (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2480[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];331 -> 2480[label="",style="solid", color="burlywood", weight=9]; 2480 -> 506[label="",style="solid", color="burlywood", weight=3]; 2481[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];331 -> 2481[label="",style="solid", color="burlywood", weight=9]; 2481 -> 507[label="",style="solid", color="burlywood", weight=3]; 332[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2482[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];332 -> 2482[label="",style="solid", color="burlywood", weight=9]; 2482 -> 508[label="",style="solid", color="burlywood", weight=3]; 2483[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];332 -> 2483[label="",style="solid", color="burlywood", weight=9]; 2483 -> 509[label="",style="solid", color="burlywood", weight=3]; 333[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2484[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];333 -> 2484[label="",style="solid", color="burlywood", weight=9]; 2484 -> 510[label="",style="solid", color="burlywood", weight=3]; 2485[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];333 -> 2485[label="",style="solid", color="burlywood", weight=9]; 2485 -> 511[label="",style="solid", color="burlywood", weight=3]; 422[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2486[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2486[label="",style="solid", color="blue", weight=9]; 2486 -> 512[label="",style="solid", color="blue", weight=3]; 2487[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2487[label="",style="solid", color="blue", weight=9]; 2487 -> 513[label="",style="solid", color="blue", weight=3]; 2488[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2488[label="",style="solid", color="blue", weight=9]; 2488 -> 514[label="",style="solid", color="blue", weight=3]; 2489[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2489[label="",style="solid", color="blue", weight=9]; 2489 -> 515[label="",style="solid", color="blue", weight=3]; 2490[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2490[label="",style="solid", color="blue", weight=9]; 2490 -> 516[label="",style="solid", color="blue", weight=3]; 2491[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2491[label="",style="solid", color="blue", weight=9]; 2491 -> 517[label="",style="solid", color="blue", weight=3]; 2492[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2492[label="",style="solid", color="blue", weight=9]; 2492 -> 518[label="",style="solid", color="blue", weight=3]; 2493[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2493[label="",style="solid", color="blue", weight=9]; 2493 -> 519[label="",style="solid", color="blue", weight=3]; 2494[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2494[label="",style="solid", color="blue", weight=9]; 2494 -> 520[label="",style="solid", color="blue", weight=3]; 2495[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2495[label="",style="solid", color="blue", weight=9]; 2495 -> 521[label="",style="solid", color="blue", weight=3]; 2496[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2496[label="",style="solid", color="blue", weight=9]; 2496 -> 522[label="",style="solid", color="blue", weight=3]; 2497[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2497[label="",style="solid", color="blue", weight=9]; 2497 -> 523[label="",style="solid", color="blue", weight=3]; 2498[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2498[label="",style="solid", color="blue", weight=9]; 2498 -> 524[label="",style="solid", color="blue", weight=3]; 2499[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2499[label="",style="solid", color="blue", weight=9]; 2499 -> 525[label="",style="solid", color="blue", weight=3]; 423[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];2500[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2500[label="",style="solid", color="blue", weight=9]; 2500 -> 526[label="",style="solid", color="blue", weight=3]; 2501[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2501[label="",style="solid", color="blue", weight=9]; 2501 -> 527[label="",style="solid", color="blue", weight=3]; 2502[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2502[label="",style="solid", color="blue", weight=9]; 2502 -> 528[label="",style="solid", color="blue", weight=3]; 2503[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2503[label="",style="solid", color="blue", weight=9]; 2503 -> 529[label="",style="solid", color="blue", weight=3]; 2504[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2504[label="",style="solid", color="blue", weight=9]; 2504 -> 530[label="",style="solid", color="blue", weight=3]; 2505[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2505[label="",style="solid", color="blue", weight=9]; 2505 -> 531[label="",style="solid", color="blue", weight=3]; 2506[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2506[label="",style="solid", color="blue", weight=9]; 2506 -> 532[label="",style="solid", color="blue", weight=3]; 2507[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2507[label="",style="solid", color="blue", weight=9]; 2507 -> 533[label="",style="solid", color="blue", weight=3]; 2508[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2508[label="",style="solid", color="blue", weight=9]; 2508 -> 534[label="",style="solid", color="blue", weight=3]; 2509[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2509[label="",style="solid", color="blue", weight=9]; 2509 -> 535[label="",style="solid", color="blue", weight=3]; 2510[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2510[label="",style="solid", color="blue", weight=9]; 2510 -> 536[label="",style="solid", color="blue", weight=3]; 2511[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2511[label="",style="solid", color="blue", weight=9]; 2511 -> 537[label="",style="solid", color="blue", weight=3]; 2512[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2512[label="",style="solid", color="blue", weight=9]; 2512 -> 538[label="",style="solid", color="blue", weight=3]; 2513[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 2513[label="",style="solid", color="blue", weight=9]; 2513 -> 539[label="",style="solid", color="blue", weight=3]; 1132[label="compare2 vyw43 vyw45 False",fontsize=16,color="black",shape="box"];1132 -> 1152[label="",style="solid", color="black", weight=3]; 1133[label="compare2 vyw43 vyw45 True",fontsize=16,color="black",shape="box"];1133 -> 1153[label="",style="solid", color="black", weight=3]; 1134 -> 121[label="",style="dashed", color="red", weight=0]; 1134[label="vyw32 == vyw34",fontsize=16,color="magenta"];1134 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1135 -> 122[label="",style="dashed", color="red", weight=0]; 1135[label="vyw32 == vyw34",fontsize=16,color="magenta"];1135 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1136 -> 123[label="",style="dashed", color="red", weight=0]; 1136[label="vyw32 == vyw34",fontsize=16,color="magenta"];1136 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1137 -> 124[label="",style="dashed", color="red", weight=0]; 1137[label="vyw32 == vyw34",fontsize=16,color="magenta"];1137 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1138 -> 125[label="",style="dashed", color="red", weight=0]; 1138[label="vyw32 == vyw34",fontsize=16,color="magenta"];1138 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1139 -> 126[label="",style="dashed", color="red", weight=0]; 1139[label="vyw32 == vyw34",fontsize=16,color="magenta"];1139 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1140 -> 127[label="",style="dashed", color="red", weight=0]; 1140[label="vyw32 == vyw34",fontsize=16,color="magenta"];1140 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1141 -> 128[label="",style="dashed", color="red", weight=0]; 1141[label="vyw32 == vyw34",fontsize=16,color="magenta"];1141 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1142 -> 129[label="",style="dashed", color="red", weight=0]; 1142[label="vyw32 == vyw34",fontsize=16,color="magenta"];1142 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1143 -> 130[label="",style="dashed", color="red", weight=0]; 1143[label="vyw32 == vyw34",fontsize=16,color="magenta"];1143 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1144 -> 131[label="",style="dashed", color="red", weight=0]; 1144[label="vyw32 == vyw34",fontsize=16,color="magenta"];1144 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1145 -> 132[label="",style="dashed", color="red", weight=0]; 1145[label="vyw32 == vyw34",fontsize=16,color="magenta"];1145 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1146 -> 133[label="",style="dashed", color="red", weight=0]; 1146[label="vyw32 == vyw34",fontsize=16,color="magenta"];1146 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1147 -> 134[label="",style="dashed", color="red", weight=0]; 1147[label="vyw32 == vyw34",fontsize=16,color="magenta"];1147 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1181[label="",style="dashed", color="magenta", weight=3]; 350[label="compare3 (vyw21,vyw22) (vyw15,vyw16)",fontsize=16,color="black",shape="box"];350 -> 570[label="",style="solid", color="black", weight=3]; 351[label="FiniteMap.lookupFM0 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True",fontsize=16,color="black",shape="box"];351 -> 571[label="",style="solid", color="black", weight=3]; 352[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];353[label="vyw20",fontsize=16,color="green",shape="box"];354[label="primEqNat (Succ vyw4000) vyw3000",fontsize=16,color="burlywood",shape="box"];2514[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];354 -> 2514[label="",style="solid", color="burlywood", weight=9]; 2514 -> 572[label="",style="solid", color="burlywood", weight=3]; 2515[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];354 -> 2515[label="",style="solid", color="burlywood", weight=9]; 2515 -> 573[label="",style="solid", color="burlywood", weight=3]; 355[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];2516[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];355 -> 2516[label="",style="solid", color="burlywood", weight=9]; 2516 -> 574[label="",style="solid", color="burlywood", weight=3]; 2517[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];355 -> 2517[label="",style="solid", color="burlywood", weight=9]; 2517 -> 575[label="",style="solid", color="burlywood", weight=3]; 356[label="vyw3000",fontsize=16,color="green",shape="box"];357[label="vyw400",fontsize=16,color="green",shape="box"];358[label="vyw3000",fontsize=16,color="green",shape="box"];359[label="vyw400",fontsize=16,color="green",shape="box"];360[label="vyw3000",fontsize=16,color="green",shape="box"];361[label="vyw400",fontsize=16,color="green",shape="box"];362[label="vyw3000",fontsize=16,color="green",shape="box"];363[label="vyw400",fontsize=16,color="green",shape="box"];364[label="vyw3000",fontsize=16,color="green",shape="box"];365[label="vyw400",fontsize=16,color="green",shape="box"];366[label="vyw3000",fontsize=16,color="green",shape="box"];367[label="vyw400",fontsize=16,color="green",shape="box"];368[label="vyw3000",fontsize=16,color="green",shape="box"];369[label="vyw400",fontsize=16,color="green",shape="box"];370[label="vyw3000",fontsize=16,color="green",shape="box"];371[label="vyw400",fontsize=16,color="green",shape="box"];372[label="vyw3000",fontsize=16,color="green",shape="box"];373[label="vyw400",fontsize=16,color="green",shape="box"];374[label="vyw3000",fontsize=16,color="green",shape="box"];375[label="vyw400",fontsize=16,color="green",shape="box"];376[label="vyw3000",fontsize=16,color="green",shape="box"];377[label="vyw400",fontsize=16,color="green",shape="box"];378[label="vyw3000",fontsize=16,color="green",shape="box"];379[label="vyw400",fontsize=16,color="green",shape="box"];380[label="vyw3000",fontsize=16,color="green",shape="box"];381[label="vyw400",fontsize=16,color="green",shape="box"];382[label="vyw3000",fontsize=16,color="green",shape="box"];383[label="vyw400",fontsize=16,color="green",shape="box"];384[label="vyw3000",fontsize=16,color="green",shape="box"];385[label="vyw400",fontsize=16,color="green",shape="box"];386[label="vyw3000",fontsize=16,color="green",shape="box"];387[label="vyw400",fontsize=16,color="green",shape="box"];388[label="vyw3000",fontsize=16,color="green",shape="box"];389[label="vyw400",fontsize=16,color="green",shape="box"];390[label="vyw3000",fontsize=16,color="green",shape="box"];391[label="vyw400",fontsize=16,color="green",shape="box"];392[label="vyw3000",fontsize=16,color="green",shape="box"];393[label="vyw400",fontsize=16,color="green",shape="box"];394[label="vyw3000",fontsize=16,color="green",shape="box"];395[label="vyw400",fontsize=16,color="green",shape="box"];396[label="vyw3000",fontsize=16,color="green",shape="box"];397[label="vyw400",fontsize=16,color="green",shape="box"];398[label="vyw3000",fontsize=16,color="green",shape="box"];399[label="vyw400",fontsize=16,color="green",shape="box"];400[label="vyw3000",fontsize=16,color="green",shape="box"];401[label="vyw400",fontsize=16,color="green",shape="box"];402[label="vyw3000",fontsize=16,color="green",shape="box"];403[label="vyw400",fontsize=16,color="green",shape="box"];404[label="vyw3000",fontsize=16,color="green",shape="box"];405[label="vyw400",fontsize=16,color="green",shape="box"];406[label="vyw3000",fontsize=16,color="green",shape="box"];407[label="vyw400",fontsize=16,color="green",shape="box"];408[label="vyw3000",fontsize=16,color="green",shape="box"];409[label="vyw400",fontsize=16,color="green",shape="box"];410[label="vyw3000",fontsize=16,color="green",shape="box"];411[label="vyw400",fontsize=16,color="green",shape="box"];428 -> 121[label="",style="dashed", color="red", weight=0]; 428[label="vyw400 == vyw3000",fontsize=16,color="magenta"];428 -> 576[label="",style="dashed", color="magenta", weight=3]; 428 -> 577[label="",style="dashed", color="magenta", weight=3]; 429 -> 122[label="",style="dashed", color="red", weight=0]; 429[label="vyw400 == vyw3000",fontsize=16,color="magenta"];429 -> 578[label="",style="dashed", color="magenta", weight=3]; 429 -> 579[label="",style="dashed", color="magenta", weight=3]; 430 -> 123[label="",style="dashed", color="red", weight=0]; 430[label="vyw400 == vyw3000",fontsize=16,color="magenta"];430 -> 580[label="",style="dashed", color="magenta", weight=3]; 430 -> 581[label="",style="dashed", color="magenta", weight=3]; 431 -> 124[label="",style="dashed", color="red", weight=0]; 431[label="vyw400 == vyw3000",fontsize=16,color="magenta"];431 -> 582[label="",style="dashed", color="magenta", weight=3]; 431 -> 583[label="",style="dashed", color="magenta", weight=3]; 432 -> 125[label="",style="dashed", color="red", weight=0]; 432[label="vyw400 == vyw3000",fontsize=16,color="magenta"];432 -> 584[label="",style="dashed", color="magenta", weight=3]; 432 -> 585[label="",style="dashed", color="magenta", weight=3]; 433 -> 126[label="",style="dashed", color="red", weight=0]; 433[label="vyw400 == vyw3000",fontsize=16,color="magenta"];433 -> 586[label="",style="dashed", color="magenta", weight=3]; 433 -> 587[label="",style="dashed", color="magenta", weight=3]; 434 -> 127[label="",style="dashed", color="red", weight=0]; 434[label="vyw400 == vyw3000",fontsize=16,color="magenta"];434 -> 588[label="",style="dashed", color="magenta", weight=3]; 434 -> 589[label="",style="dashed", color="magenta", weight=3]; 435 -> 128[label="",style="dashed", color="red", weight=0]; 435[label="vyw400 == vyw3000",fontsize=16,color="magenta"];435 -> 590[label="",style="dashed", color="magenta", weight=3]; 435 -> 591[label="",style="dashed", color="magenta", weight=3]; 436 -> 129[label="",style="dashed", color="red", weight=0]; 436[label="vyw400 == vyw3000",fontsize=16,color="magenta"];436 -> 592[label="",style="dashed", color="magenta", weight=3]; 436 -> 593[label="",style="dashed", color="magenta", weight=3]; 437 -> 130[label="",style="dashed", color="red", weight=0]; 437[label="vyw400 == vyw3000",fontsize=16,color="magenta"];437 -> 594[label="",style="dashed", color="magenta", weight=3]; 437 -> 595[label="",style="dashed", color="magenta", weight=3]; 438 -> 131[label="",style="dashed", color="red", weight=0]; 438[label="vyw400 == vyw3000",fontsize=16,color="magenta"];438 -> 596[label="",style="dashed", color="magenta", weight=3]; 438 -> 597[label="",style="dashed", color="magenta", weight=3]; 439 -> 132[label="",style="dashed", color="red", weight=0]; 439[label="vyw400 == vyw3000",fontsize=16,color="magenta"];439 -> 598[label="",style="dashed", color="magenta", weight=3]; 439 -> 599[label="",style="dashed", color="magenta", weight=3]; 440 -> 133[label="",style="dashed", color="red", weight=0]; 440[label="vyw400 == vyw3000",fontsize=16,color="magenta"];440 -> 600[label="",style="dashed", color="magenta", weight=3]; 440 -> 601[label="",style="dashed", color="magenta", weight=3]; 441 -> 134[label="",style="dashed", color="red", weight=0]; 441[label="vyw400 == vyw3000",fontsize=16,color="magenta"];441 -> 602[label="",style="dashed", color="magenta", weight=3]; 441 -> 603[label="",style="dashed", color="magenta", weight=3]; 442[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];2518[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2518[label="",style="solid", color="blue", weight=9]; 2518 -> 604[label="",style="solid", color="blue", weight=3]; 2519[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2519[label="",style="solid", color="blue", weight=9]; 2519 -> 605[label="",style="solid", color="blue", weight=3]; 2520[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2520[label="",style="solid", color="blue", weight=9]; 2520 -> 606[label="",style="solid", color="blue", weight=3]; 2521[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2521[label="",style="solid", color="blue", weight=9]; 2521 -> 607[label="",style="solid", color="blue", weight=3]; 2522[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2522[label="",style="solid", color="blue", weight=9]; 2522 -> 608[label="",style="solid", color="blue", weight=3]; 2523[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2523[label="",style="solid", color="blue", weight=9]; 2523 -> 609[label="",style="solid", color="blue", weight=3]; 2524[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2524[label="",style="solid", color="blue", weight=9]; 2524 -> 610[label="",style="solid", color="blue", weight=3]; 2525[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2525[label="",style="solid", color="blue", weight=9]; 2525 -> 611[label="",style="solid", color="blue", weight=3]; 2526[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2526[label="",style="solid", color="blue", weight=9]; 2526 -> 612[label="",style="solid", color="blue", weight=3]; 2527[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2527[label="",style="solid", color="blue", weight=9]; 2527 -> 613[label="",style="solid", color="blue", weight=3]; 2528[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2528[label="",style="solid", color="blue", weight=9]; 2528 -> 614[label="",style="solid", color="blue", weight=3]; 2529[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2529[label="",style="solid", color="blue", weight=9]; 2529 -> 615[label="",style="solid", color="blue", weight=3]; 2530[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2530[label="",style="solid", color="blue", weight=9]; 2530 -> 616[label="",style="solid", color="blue", weight=3]; 2531[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 2531[label="",style="solid", color="blue", weight=9]; 2531 -> 617[label="",style="solid", color="blue", weight=3]; 443[label="vyw402 == vyw3002",fontsize=16,color="blue",shape="box"];2532[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2532[label="",style="solid", color="blue", weight=9]; 2532 -> 618[label="",style="solid", color="blue", weight=3]; 2533[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2533[label="",style="solid", color="blue", weight=9]; 2533 -> 619[label="",style="solid", color="blue", weight=3]; 2534[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2534[label="",style="solid", color="blue", weight=9]; 2534 -> 620[label="",style="solid", color="blue", weight=3]; 2535[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2535[label="",style="solid", color="blue", weight=9]; 2535 -> 621[label="",style="solid", color="blue", weight=3]; 2536[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2536[label="",style="solid", color="blue", weight=9]; 2536 -> 622[label="",style="solid", color="blue", weight=3]; 2537[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2537[label="",style="solid", color="blue", weight=9]; 2537 -> 623[label="",style="solid", color="blue", weight=3]; 2538[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2538[label="",style="solid", color="blue", weight=9]; 2538 -> 624[label="",style="solid", color="blue", weight=3]; 2539[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2539[label="",style="solid", color="blue", weight=9]; 2539 -> 625[label="",style="solid", color="blue", weight=3]; 2540[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2540[label="",style="solid", color="blue", weight=9]; 2540 -> 626[label="",style="solid", color="blue", weight=3]; 2541[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2541[label="",style="solid", color="blue", weight=9]; 2541 -> 627[label="",style="solid", color="blue", weight=3]; 2542[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2542[label="",style="solid", color="blue", weight=9]; 2542 -> 628[label="",style="solid", color="blue", weight=3]; 2543[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2543[label="",style="solid", color="blue", weight=9]; 2543 -> 629[label="",style="solid", color="blue", weight=3]; 2544[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2544[label="",style="solid", color="blue", weight=9]; 2544 -> 630[label="",style="solid", color="blue", weight=3]; 2545[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 2545[label="",style="solid", color="blue", weight=9]; 2545 -> 631[label="",style="solid", color="blue", weight=3]; 444[label="False && vyw64",fontsize=16,color="black",shape="box"];444 -> 632[label="",style="solid", color="black", weight=3]; 445[label="True && vyw64",fontsize=16,color="black",shape="box"];445 -> 633[label="",style="solid", color="black", weight=3]; 446[label="vyw3000",fontsize=16,color="green",shape="box"];447[label="vyw400",fontsize=16,color="green",shape="box"];448[label="vyw3000",fontsize=16,color="green",shape="box"];449[label="vyw400",fontsize=16,color="green",shape="box"];450[label="vyw3000",fontsize=16,color="green",shape="box"];451[label="vyw400",fontsize=16,color="green",shape="box"];452[label="vyw3000",fontsize=16,color="green",shape="box"];453[label="vyw400",fontsize=16,color="green",shape="box"];454[label="vyw3000",fontsize=16,color="green",shape="box"];455[label="vyw400",fontsize=16,color="green",shape="box"];456[label="vyw3000",fontsize=16,color="green",shape="box"];457[label="vyw400",fontsize=16,color="green",shape="box"];458[label="vyw3000",fontsize=16,color="green",shape="box"];459[label="vyw400",fontsize=16,color="green",shape="box"];460[label="vyw3000",fontsize=16,color="green",shape="box"];461[label="vyw400",fontsize=16,color="green",shape="box"];462[label="vyw3000",fontsize=16,color="green",shape="box"];463[label="vyw400",fontsize=16,color="green",shape="box"];464[label="vyw3000",fontsize=16,color="green",shape="box"];465[label="vyw400",fontsize=16,color="green",shape="box"];466[label="vyw3000",fontsize=16,color="green",shape="box"];467[label="vyw400",fontsize=16,color="green",shape="box"];468[label="vyw3000",fontsize=16,color="green",shape="box"];469[label="vyw400",fontsize=16,color="green",shape="box"];470[label="vyw3000",fontsize=16,color="green",shape="box"];471[label="vyw400",fontsize=16,color="green",shape="box"];472[label="vyw3000",fontsize=16,color="green",shape="box"];473[label="vyw400",fontsize=16,color="green",shape="box"];474 -> 121[label="",style="dashed", color="red", weight=0]; 474[label="vyw400 == vyw3000",fontsize=16,color="magenta"];474 -> 634[label="",style="dashed", color="magenta", weight=3]; 474 -> 635[label="",style="dashed", color="magenta", weight=3]; 475 -> 122[label="",style="dashed", color="red", weight=0]; 475[label="vyw400 == vyw3000",fontsize=16,color="magenta"];475 -> 636[label="",style="dashed", color="magenta", weight=3]; 475 -> 637[label="",style="dashed", color="magenta", weight=3]; 476 -> 123[label="",style="dashed", color="red", weight=0]; 476[label="vyw400 == vyw3000",fontsize=16,color="magenta"];476 -> 638[label="",style="dashed", color="magenta", weight=3]; 476 -> 639[label="",style="dashed", color="magenta", weight=3]; 477 -> 124[label="",style="dashed", color="red", weight=0]; 477[label="vyw400 == vyw3000",fontsize=16,color="magenta"];477 -> 640[label="",style="dashed", color="magenta", weight=3]; 477 -> 641[label="",style="dashed", color="magenta", weight=3]; 478 -> 125[label="",style="dashed", color="red", weight=0]; 478[label="vyw400 == vyw3000",fontsize=16,color="magenta"];478 -> 642[label="",style="dashed", color="magenta", weight=3]; 478 -> 643[label="",style="dashed", color="magenta", weight=3]; 479 -> 126[label="",style="dashed", color="red", weight=0]; 479[label="vyw400 == vyw3000",fontsize=16,color="magenta"];479 -> 644[label="",style="dashed", color="magenta", weight=3]; 479 -> 645[label="",style="dashed", color="magenta", weight=3]; 480 -> 127[label="",style="dashed", color="red", weight=0]; 480[label="vyw400 == vyw3000",fontsize=16,color="magenta"];480 -> 646[label="",style="dashed", color="magenta", weight=3]; 480 -> 647[label="",style="dashed", color="magenta", weight=3]; 481 -> 128[label="",style="dashed", color="red", weight=0]; 481[label="vyw400 == vyw3000",fontsize=16,color="magenta"];481 -> 648[label="",style="dashed", color="magenta", weight=3]; 481 -> 649[label="",style="dashed", color="magenta", weight=3]; 482 -> 129[label="",style="dashed", color="red", weight=0]; 482[label="vyw400 == vyw3000",fontsize=16,color="magenta"];482 -> 650[label="",style="dashed", color="magenta", weight=3]; 482 -> 651[label="",style="dashed", color="magenta", weight=3]; 483 -> 130[label="",style="dashed", color="red", weight=0]; 483[label="vyw400 == vyw3000",fontsize=16,color="magenta"];483 -> 652[label="",style="dashed", color="magenta", weight=3]; 483 -> 653[label="",style="dashed", color="magenta", weight=3]; 484 -> 131[label="",style="dashed", color="red", weight=0]; 484[label="vyw400 == vyw3000",fontsize=16,color="magenta"];484 -> 654[label="",style="dashed", color="magenta", weight=3]; 484 -> 655[label="",style="dashed", color="magenta", weight=3]; 485 -> 132[label="",style="dashed", color="red", weight=0]; 485[label="vyw400 == vyw3000",fontsize=16,color="magenta"];485 -> 656[label="",style="dashed", color="magenta", weight=3]; 485 -> 657[label="",style="dashed", color="magenta", weight=3]; 486 -> 133[label="",style="dashed", color="red", weight=0]; 486[label="vyw400 == vyw3000",fontsize=16,color="magenta"];486 -> 658[label="",style="dashed", color="magenta", weight=3]; 486 -> 659[label="",style="dashed", color="magenta", weight=3]; 487 -> 134[label="",style="dashed", color="red", weight=0]; 487[label="vyw400 == vyw3000",fontsize=16,color="magenta"];487 -> 660[label="",style="dashed", color="magenta", weight=3]; 487 -> 661[label="",style="dashed", color="magenta", weight=3]; 488[label="vyw3001",fontsize=16,color="green",shape="box"];489[label="vyw401",fontsize=16,color="green",shape="box"];490[label="vyw401 * vyw3000",fontsize=16,color="black",shape="triangle"];490 -> 662[label="",style="solid", color="black", weight=3]; 491 -> 490[label="",style="dashed", color="red", weight=0]; 491[label="vyw400 * vyw3001",fontsize=16,color="magenta"];491 -> 663[label="",style="dashed", color="magenta", weight=3]; 491 -> 664[label="",style="dashed", color="magenta", weight=3]; 492 -> 121[label="",style="dashed", color="red", weight=0]; 492[label="vyw400 == vyw3000",fontsize=16,color="magenta"];492 -> 665[label="",style="dashed", color="magenta", weight=3]; 492 -> 666[label="",style="dashed", color="magenta", weight=3]; 493 -> 133[label="",style="dashed", color="red", weight=0]; 493[label="vyw400 == vyw3000",fontsize=16,color="magenta"];493 -> 667[label="",style="dashed", color="magenta", weight=3]; 493 -> 668[label="",style="dashed", color="magenta", weight=3]; 494 -> 121[label="",style="dashed", color="red", weight=0]; 494[label="vyw401 == vyw3001",fontsize=16,color="magenta"];494 -> 669[label="",style="dashed", color="magenta", weight=3]; 494 -> 670[label="",style="dashed", color="magenta", weight=3]; 495 -> 133[label="",style="dashed", color="red", weight=0]; 495[label="vyw401 == vyw3001",fontsize=16,color="magenta"];495 -> 671[label="",style="dashed", color="magenta", weight=3]; 495 -> 672[label="",style="dashed", color="magenta", weight=3]; 496 -> 490[label="",style="dashed", color="red", weight=0]; 496[label="vyw401 * vyw3000",fontsize=16,color="magenta"];496 -> 673[label="",style="dashed", color="magenta", weight=3]; 496 -> 674[label="",style="dashed", color="magenta", weight=3]; 497 -> 490[label="",style="dashed", color="red", weight=0]; 497[label="vyw400 * vyw3001",fontsize=16,color="magenta"];497 -> 675[label="",style="dashed", color="magenta", weight=3]; 497 -> 676[label="",style="dashed", color="magenta", weight=3]; 498[label="primEqInt (Pos (Succ vyw4000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];498 -> 677[label="",style="solid", color="black", weight=3]; 499[label="primEqInt (Pos (Succ vyw4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];499 -> 678[label="",style="solid", color="black", weight=3]; 500[label="False",fontsize=16,color="green",shape="box"];501[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];501 -> 679[label="",style="solid", color="black", weight=3]; 502[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];502 -> 680[label="",style="solid", color="black", weight=3]; 503[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];503 -> 681[label="",style="solid", color="black", weight=3]; 504[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];504 -> 682[label="",style="solid", color="black", weight=3]; 505[label="False",fontsize=16,color="green",shape="box"];506[label="primEqInt (Neg (Succ vyw4000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];506 -> 683[label="",style="solid", color="black", weight=3]; 507[label="primEqInt (Neg (Succ vyw4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];507 -> 684[label="",style="solid", color="black", weight=3]; 508[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];508 -> 685[label="",style="solid", color="black", weight=3]; 509[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];509 -> 686[label="",style="solid", color="black", weight=3]; 510[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];510 -> 687[label="",style="solid", color="black", weight=3]; 511[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];511 -> 688[label="",style="solid", color="black", weight=3]; 512 -> 121[label="",style="dashed", color="red", weight=0]; 512[label="vyw400 == vyw3000",fontsize=16,color="magenta"];512 -> 689[label="",style="dashed", color="magenta", weight=3]; 512 -> 690[label="",style="dashed", color="magenta", weight=3]; 513 -> 122[label="",style="dashed", color="red", weight=0]; 513[label="vyw400 == vyw3000",fontsize=16,color="magenta"];513 -> 691[label="",style="dashed", color="magenta", weight=3]; 513 -> 692[label="",style="dashed", color="magenta", weight=3]; 514 -> 123[label="",style="dashed", color="red", weight=0]; 514[label="vyw400 == vyw3000",fontsize=16,color="magenta"];514 -> 693[label="",style="dashed", color="magenta", weight=3]; 514 -> 694[label="",style="dashed", color="magenta", weight=3]; 515 -> 124[label="",style="dashed", color="red", weight=0]; 515[label="vyw400 == vyw3000",fontsize=16,color="magenta"];515 -> 695[label="",style="dashed", color="magenta", weight=3]; 515 -> 696[label="",style="dashed", color="magenta", weight=3]; 516 -> 125[label="",style="dashed", color="red", weight=0]; 516[label="vyw400 == vyw3000",fontsize=16,color="magenta"];516 -> 697[label="",style="dashed", color="magenta", weight=3]; 516 -> 698[label="",style="dashed", color="magenta", weight=3]; 517 -> 126[label="",style="dashed", color="red", weight=0]; 517[label="vyw400 == vyw3000",fontsize=16,color="magenta"];517 -> 699[label="",style="dashed", color="magenta", weight=3]; 517 -> 700[label="",style="dashed", color="magenta", weight=3]; 518 -> 127[label="",style="dashed", color="red", weight=0]; 518[label="vyw400 == vyw3000",fontsize=16,color="magenta"];518 -> 701[label="",style="dashed", color="magenta", weight=3]; 518 -> 702[label="",style="dashed", color="magenta", weight=3]; 519 -> 128[label="",style="dashed", color="red", weight=0]; 519[label="vyw400 == vyw3000",fontsize=16,color="magenta"];519 -> 703[label="",style="dashed", color="magenta", weight=3]; 519 -> 704[label="",style="dashed", color="magenta", weight=3]; 520 -> 129[label="",style="dashed", color="red", weight=0]; 520[label="vyw400 == vyw3000",fontsize=16,color="magenta"];520 -> 705[label="",style="dashed", color="magenta", weight=3]; 520 -> 706[label="",style="dashed", color="magenta", weight=3]; 521 -> 130[label="",style="dashed", color="red", weight=0]; 521[label="vyw400 == vyw3000",fontsize=16,color="magenta"];521 -> 707[label="",style="dashed", color="magenta", weight=3]; 521 -> 708[label="",style="dashed", color="magenta", weight=3]; 522 -> 131[label="",style="dashed", color="red", weight=0]; 522[label="vyw400 == vyw3000",fontsize=16,color="magenta"];522 -> 709[label="",style="dashed", color="magenta", weight=3]; 522 -> 710[label="",style="dashed", color="magenta", weight=3]; 523 -> 132[label="",style="dashed", color="red", weight=0]; 523[label="vyw400 == vyw3000",fontsize=16,color="magenta"];523 -> 711[label="",style="dashed", color="magenta", weight=3]; 523 -> 712[label="",style="dashed", color="magenta", weight=3]; 524 -> 133[label="",style="dashed", color="red", weight=0]; 524[label="vyw400 == vyw3000",fontsize=16,color="magenta"];524 -> 713[label="",style="dashed", color="magenta", weight=3]; 524 -> 714[label="",style="dashed", color="magenta", weight=3]; 525 -> 134[label="",style="dashed", color="red", weight=0]; 525[label="vyw400 == vyw3000",fontsize=16,color="magenta"];525 -> 715[label="",style="dashed", color="magenta", weight=3]; 525 -> 716[label="",style="dashed", color="magenta", weight=3]; 526 -> 121[label="",style="dashed", color="red", weight=0]; 526[label="vyw401 == vyw3001",fontsize=16,color="magenta"];526 -> 717[label="",style="dashed", color="magenta", weight=3]; 526 -> 718[label="",style="dashed", color="magenta", weight=3]; 527 -> 122[label="",style="dashed", color="red", weight=0]; 527[label="vyw401 == vyw3001",fontsize=16,color="magenta"];527 -> 719[label="",style="dashed", color="magenta", weight=3]; 527 -> 720[label="",style="dashed", color="magenta", weight=3]; 528 -> 123[label="",style="dashed", color="red", weight=0]; 528[label="vyw401 == vyw3001",fontsize=16,color="magenta"];528 -> 721[label="",style="dashed", color="magenta", weight=3]; 528 -> 722[label="",style="dashed", color="magenta", weight=3]; 529 -> 124[label="",style="dashed", color="red", weight=0]; 529[label="vyw401 == vyw3001",fontsize=16,color="magenta"];529 -> 723[label="",style="dashed", color="magenta", weight=3]; 529 -> 724[label="",style="dashed", color="magenta", weight=3]; 530 -> 125[label="",style="dashed", color="red", weight=0]; 530[label="vyw401 == vyw3001",fontsize=16,color="magenta"];530 -> 725[label="",style="dashed", color="magenta", weight=3]; 530 -> 726[label="",style="dashed", color="magenta", weight=3]; 531 -> 126[label="",style="dashed", color="red", weight=0]; 531[label="vyw401 == vyw3001",fontsize=16,color="magenta"];531 -> 727[label="",style="dashed", color="magenta", weight=3]; 531 -> 728[label="",style="dashed", color="magenta", weight=3]; 532 -> 127[label="",style="dashed", color="red", weight=0]; 532[label="vyw401 == vyw3001",fontsize=16,color="magenta"];532 -> 729[label="",style="dashed", color="magenta", weight=3]; 532 -> 730[label="",style="dashed", color="magenta", weight=3]; 533 -> 128[label="",style="dashed", color="red", weight=0]; 533[label="vyw401 == vyw3001",fontsize=16,color="magenta"];533 -> 731[label="",style="dashed", color="magenta", weight=3]; 533 -> 732[label="",style="dashed", color="magenta", weight=3]; 534 -> 129[label="",style="dashed", color="red", weight=0]; 534[label="vyw401 == vyw3001",fontsize=16,color="magenta"];534 -> 733[label="",style="dashed", color="magenta", weight=3]; 534 -> 734[label="",style="dashed", color="magenta", weight=3]; 535 -> 130[label="",style="dashed", color="red", weight=0]; 535[label="vyw401 == vyw3001",fontsize=16,color="magenta"];535 -> 735[label="",style="dashed", color="magenta", weight=3]; 535 -> 736[label="",style="dashed", color="magenta", weight=3]; 536 -> 131[label="",style="dashed", color="red", weight=0]; 536[label="vyw401 == vyw3001",fontsize=16,color="magenta"];536 -> 737[label="",style="dashed", color="magenta", weight=3]; 536 -> 738[label="",style="dashed", color="magenta", weight=3]; 537 -> 132[label="",style="dashed", color="red", weight=0]; 537[label="vyw401 == vyw3001",fontsize=16,color="magenta"];537 -> 739[label="",style="dashed", color="magenta", weight=3]; 537 -> 740[label="",style="dashed", color="magenta", weight=3]; 538 -> 133[label="",style="dashed", color="red", weight=0]; 538[label="vyw401 == vyw3001",fontsize=16,color="magenta"];538 -> 741[label="",style="dashed", color="magenta", weight=3]; 538 -> 742[label="",style="dashed", color="magenta", weight=3]; 539 -> 134[label="",style="dashed", color="red", weight=0]; 539[label="vyw401 == vyw3001",fontsize=16,color="magenta"];539 -> 743[label="",style="dashed", color="magenta", weight=3]; 539 -> 744[label="",style="dashed", color="magenta", weight=3]; 1152[label="compare1 vyw43 vyw45 (vyw43 <= vyw45)",fontsize=16,color="burlywood",shape="box"];2546[label="vyw43/(vyw430,vyw431)",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2546[label="",style="solid", color="burlywood", weight=9]; 2546 -> 1186[label="",style="solid", color="burlywood", weight=3]; 1153[label="EQ",fontsize=16,color="green",shape="box"];1154[label="vyw34",fontsize=16,color="green",shape="box"];1155[label="vyw32",fontsize=16,color="green",shape="box"];1156[label="vyw34",fontsize=16,color="green",shape="box"];1157[label="vyw32",fontsize=16,color="green",shape="box"];1158[label="vyw34",fontsize=16,color="green",shape="box"];1159[label="vyw32",fontsize=16,color="green",shape="box"];1160[label="vyw34",fontsize=16,color="green",shape="box"];1161[label="vyw32",fontsize=16,color="green",shape="box"];1162[label="vyw34",fontsize=16,color="green",shape="box"];1163[label="vyw32",fontsize=16,color="green",shape="box"];1164[label="vyw34",fontsize=16,color="green",shape="box"];1165[label="vyw32",fontsize=16,color="green",shape="box"];1166[label="vyw34",fontsize=16,color="green",shape="box"];1167[label="vyw32",fontsize=16,color="green",shape="box"];1168[label="vyw34",fontsize=16,color="green",shape="box"];1169[label="vyw32",fontsize=16,color="green",shape="box"];1170[label="vyw34",fontsize=16,color="green",shape="box"];1171[label="vyw32",fontsize=16,color="green",shape="box"];1172[label="vyw34",fontsize=16,color="green",shape="box"];1173[label="vyw32",fontsize=16,color="green",shape="box"];1174[label="vyw34",fontsize=16,color="green",shape="box"];1175[label="vyw32",fontsize=16,color="green",shape="box"];1176[label="vyw34",fontsize=16,color="green",shape="box"];1177[label="vyw32",fontsize=16,color="green",shape="box"];1178[label="vyw34",fontsize=16,color="green",shape="box"];1179[label="vyw32",fontsize=16,color="green",shape="box"];1180[label="vyw34",fontsize=16,color="green",shape="box"];1181[label="vyw32",fontsize=16,color="green",shape="box"];570 -> 1118[label="",style="dashed", color="red", weight=0]; 570[label="compare2 (vyw21,vyw22) (vyw15,vyw16) ((vyw21,vyw22) == (vyw15,vyw16))",fontsize=16,color="magenta"];570 -> 1128[label="",style="dashed", color="magenta", weight=3]; 570 -> 1129[label="",style="dashed", color="magenta", weight=3]; 570 -> 1130[label="",style="dashed", color="magenta", weight=3]; 571[label="Just vyw17",fontsize=16,color="green",shape="box"];572[label="primEqNat (Succ vyw4000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];572 -> 751[label="",style="solid", color="black", weight=3]; 573[label="primEqNat (Succ vyw4000) Zero",fontsize=16,color="black",shape="box"];573 -> 752[label="",style="solid", color="black", weight=3]; 574[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];574 -> 753[label="",style="solid", color="black", weight=3]; 575[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];575 -> 754[label="",style="solid", color="black", weight=3]; 576[label="vyw3000",fontsize=16,color="green",shape="box"];577[label="vyw400",fontsize=16,color="green",shape="box"];578[label="vyw3000",fontsize=16,color="green",shape="box"];579[label="vyw400",fontsize=16,color="green",shape="box"];580[label="vyw3000",fontsize=16,color="green",shape="box"];581[label="vyw400",fontsize=16,color="green",shape="box"];582[label="vyw3000",fontsize=16,color="green",shape="box"];583[label="vyw400",fontsize=16,color="green",shape="box"];584[label="vyw3000",fontsize=16,color="green",shape="box"];585[label="vyw400",fontsize=16,color="green",shape="box"];586[label="vyw3000",fontsize=16,color="green",shape="box"];587[label="vyw400",fontsize=16,color="green",shape="box"];588[label="vyw3000",fontsize=16,color="green",shape="box"];589[label="vyw400",fontsize=16,color="green",shape="box"];590[label="vyw3000",fontsize=16,color="green",shape="box"];591[label="vyw400",fontsize=16,color="green",shape="box"];592[label="vyw3000",fontsize=16,color="green",shape="box"];593[label="vyw400",fontsize=16,color="green",shape="box"];594[label="vyw3000",fontsize=16,color="green",shape="box"];595[label="vyw400",fontsize=16,color="green",shape="box"];596[label="vyw3000",fontsize=16,color="green",shape="box"];597[label="vyw400",fontsize=16,color="green",shape="box"];598[label="vyw3000",fontsize=16,color="green",shape="box"];599[label="vyw400",fontsize=16,color="green",shape="box"];600[label="vyw3000",fontsize=16,color="green",shape="box"];601[label="vyw400",fontsize=16,color="green",shape="box"];602[label="vyw3000",fontsize=16,color="green",shape="box"];603[label="vyw400",fontsize=16,color="green",shape="box"];604 -> 121[label="",style="dashed", color="red", weight=0]; 604[label="vyw401 == vyw3001",fontsize=16,color="magenta"];604 -> 755[label="",style="dashed", color="magenta", weight=3]; 604 -> 756[label="",style="dashed", color="magenta", weight=3]; 605 -> 122[label="",style="dashed", color="red", weight=0]; 605[label="vyw401 == vyw3001",fontsize=16,color="magenta"];605 -> 757[label="",style="dashed", color="magenta", weight=3]; 605 -> 758[label="",style="dashed", color="magenta", weight=3]; 606 -> 123[label="",style="dashed", color="red", weight=0]; 606[label="vyw401 == vyw3001",fontsize=16,color="magenta"];606 -> 759[label="",style="dashed", color="magenta", weight=3]; 606 -> 760[label="",style="dashed", color="magenta", weight=3]; 607 -> 124[label="",style="dashed", color="red", weight=0]; 607[label="vyw401 == vyw3001",fontsize=16,color="magenta"];607 -> 761[label="",style="dashed", color="magenta", weight=3]; 607 -> 762[label="",style="dashed", color="magenta", weight=3]; 608 -> 125[label="",style="dashed", color="red", weight=0]; 608[label="vyw401 == vyw3001",fontsize=16,color="magenta"];608 -> 763[label="",style="dashed", color="magenta", weight=3]; 608 -> 764[label="",style="dashed", color="magenta", weight=3]; 609 -> 126[label="",style="dashed", color="red", weight=0]; 609[label="vyw401 == vyw3001",fontsize=16,color="magenta"];609 -> 765[label="",style="dashed", color="magenta", weight=3]; 609 -> 766[label="",style="dashed", color="magenta", weight=3]; 610 -> 127[label="",style="dashed", color="red", weight=0]; 610[label="vyw401 == vyw3001",fontsize=16,color="magenta"];610 -> 767[label="",style="dashed", color="magenta", weight=3]; 610 -> 768[label="",style="dashed", color="magenta", weight=3]; 611 -> 128[label="",style="dashed", color="red", weight=0]; 611[label="vyw401 == vyw3001",fontsize=16,color="magenta"];611 -> 769[label="",style="dashed", color="magenta", weight=3]; 611 -> 770[label="",style="dashed", color="magenta", weight=3]; 612 -> 129[label="",style="dashed", color="red", weight=0]; 612[label="vyw401 == vyw3001",fontsize=16,color="magenta"];612 -> 771[label="",style="dashed", color="magenta", weight=3]; 612 -> 772[label="",style="dashed", color="magenta", weight=3]; 613 -> 130[label="",style="dashed", color="red", weight=0]; 613[label="vyw401 == vyw3001",fontsize=16,color="magenta"];613 -> 773[label="",style="dashed", color="magenta", weight=3]; 613 -> 774[label="",style="dashed", color="magenta", weight=3]; 614 -> 131[label="",style="dashed", color="red", weight=0]; 614[label="vyw401 == vyw3001",fontsize=16,color="magenta"];614 -> 775[label="",style="dashed", color="magenta", weight=3]; 614 -> 776[label="",style="dashed", color="magenta", weight=3]; 615 -> 132[label="",style="dashed", color="red", weight=0]; 615[label="vyw401 == vyw3001",fontsize=16,color="magenta"];615 -> 777[label="",style="dashed", color="magenta", weight=3]; 615 -> 778[label="",style="dashed", color="magenta", weight=3]; 616 -> 133[label="",style="dashed", color="red", weight=0]; 616[label="vyw401 == vyw3001",fontsize=16,color="magenta"];616 -> 779[label="",style="dashed", color="magenta", weight=3]; 616 -> 780[label="",style="dashed", color="magenta", weight=3]; 617 -> 134[label="",style="dashed", color="red", weight=0]; 617[label="vyw401 == vyw3001",fontsize=16,color="magenta"];617 -> 781[label="",style="dashed", color="magenta", weight=3]; 617 -> 782[label="",style="dashed", color="magenta", weight=3]; 618 -> 121[label="",style="dashed", color="red", weight=0]; 618[label="vyw402 == vyw3002",fontsize=16,color="magenta"];618 -> 783[label="",style="dashed", color="magenta", weight=3]; 618 -> 784[label="",style="dashed", color="magenta", weight=3]; 619 -> 122[label="",style="dashed", color="red", weight=0]; 619[label="vyw402 == vyw3002",fontsize=16,color="magenta"];619 -> 785[label="",style="dashed", color="magenta", weight=3]; 619 -> 786[label="",style="dashed", color="magenta", weight=3]; 620 -> 123[label="",style="dashed", color="red", weight=0]; 620[label="vyw402 == vyw3002",fontsize=16,color="magenta"];620 -> 787[label="",style="dashed", color="magenta", weight=3]; 620 -> 788[label="",style="dashed", color="magenta", weight=3]; 621 -> 124[label="",style="dashed", color="red", weight=0]; 621[label="vyw402 == vyw3002",fontsize=16,color="magenta"];621 -> 789[label="",style="dashed", color="magenta", weight=3]; 621 -> 790[label="",style="dashed", color="magenta", weight=3]; 622 -> 125[label="",style="dashed", color="red", weight=0]; 622[label="vyw402 == vyw3002",fontsize=16,color="magenta"];622 -> 791[label="",style="dashed", color="magenta", weight=3]; 622 -> 792[label="",style="dashed", color="magenta", weight=3]; 623 -> 126[label="",style="dashed", color="red", weight=0]; 623[label="vyw402 == vyw3002",fontsize=16,color="magenta"];623 -> 793[label="",style="dashed", color="magenta", weight=3]; 623 -> 794[label="",style="dashed", color="magenta", weight=3]; 624 -> 127[label="",style="dashed", color="red", weight=0]; 624[label="vyw402 == vyw3002",fontsize=16,color="magenta"];624 -> 795[label="",style="dashed", color="magenta", weight=3]; 624 -> 796[label="",style="dashed", color="magenta", weight=3]; 625 -> 128[label="",style="dashed", color="red", weight=0]; 625[label="vyw402 == vyw3002",fontsize=16,color="magenta"];625 -> 797[label="",style="dashed", color="magenta", weight=3]; 625 -> 798[label="",style="dashed", color="magenta", weight=3]; 626 -> 129[label="",style="dashed", color="red", weight=0]; 626[label="vyw402 == vyw3002",fontsize=16,color="magenta"];626 -> 799[label="",style="dashed", color="magenta", weight=3]; 626 -> 800[label="",style="dashed", color="magenta", weight=3]; 627 -> 130[label="",style="dashed", color="red", weight=0]; 627[label="vyw402 == vyw3002",fontsize=16,color="magenta"];627 -> 801[label="",style="dashed", color="magenta", weight=3]; 627 -> 802[label="",style="dashed", color="magenta", weight=3]; 628 -> 131[label="",style="dashed", color="red", weight=0]; 628[label="vyw402 == vyw3002",fontsize=16,color="magenta"];628 -> 803[label="",style="dashed", color="magenta", weight=3]; 628 -> 804[label="",style="dashed", color="magenta", weight=3]; 629 -> 132[label="",style="dashed", color="red", weight=0]; 629[label="vyw402 == vyw3002",fontsize=16,color="magenta"];629 -> 805[label="",style="dashed", color="magenta", weight=3]; 629 -> 806[label="",style="dashed", color="magenta", weight=3]; 630 -> 133[label="",style="dashed", color="red", weight=0]; 630[label="vyw402 == vyw3002",fontsize=16,color="magenta"];630 -> 807[label="",style="dashed", color="magenta", weight=3]; 630 -> 808[label="",style="dashed", color="magenta", weight=3]; 631 -> 134[label="",style="dashed", color="red", weight=0]; 631[label="vyw402 == vyw3002",fontsize=16,color="magenta"];631 -> 809[label="",style="dashed", color="magenta", weight=3]; 631 -> 810[label="",style="dashed", color="magenta", weight=3]; 632[label="False",fontsize=16,color="green",shape="box"];633[label="vyw64",fontsize=16,color="green",shape="box"];634[label="vyw3000",fontsize=16,color="green",shape="box"];635[label="vyw400",fontsize=16,color="green",shape="box"];636[label="vyw3000",fontsize=16,color="green",shape="box"];637[label="vyw400",fontsize=16,color="green",shape="box"];638[label="vyw3000",fontsize=16,color="green",shape="box"];639[label="vyw400",fontsize=16,color="green",shape="box"];640[label="vyw3000",fontsize=16,color="green",shape="box"];641[label="vyw400",fontsize=16,color="green",shape="box"];642[label="vyw3000",fontsize=16,color="green",shape="box"];643[label="vyw400",fontsize=16,color="green",shape="box"];644[label="vyw3000",fontsize=16,color="green",shape="box"];645[label="vyw400",fontsize=16,color="green",shape="box"];646[label="vyw3000",fontsize=16,color="green",shape="box"];647[label="vyw400",fontsize=16,color="green",shape="box"];648[label="vyw3000",fontsize=16,color="green",shape="box"];649[label="vyw400",fontsize=16,color="green",shape="box"];650[label="vyw3000",fontsize=16,color="green",shape="box"];651[label="vyw400",fontsize=16,color="green",shape="box"];652[label="vyw3000",fontsize=16,color="green",shape="box"];653[label="vyw400",fontsize=16,color="green",shape="box"];654[label="vyw3000",fontsize=16,color="green",shape="box"];655[label="vyw400",fontsize=16,color="green",shape="box"];656[label="vyw3000",fontsize=16,color="green",shape="box"];657[label="vyw400",fontsize=16,color="green",shape="box"];658[label="vyw3000",fontsize=16,color="green",shape="box"];659[label="vyw400",fontsize=16,color="green",shape="box"];660[label="vyw3000",fontsize=16,color="green",shape="box"];661[label="vyw400",fontsize=16,color="green",shape="box"];662[label="primMulInt vyw401 vyw3000",fontsize=16,color="burlywood",shape="triangle"];2547[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];662 -> 2547[label="",style="solid", color="burlywood", weight=9]; 2547 -> 811[label="",style="solid", color="burlywood", weight=3]; 2548[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];662 -> 2548[label="",style="solid", color="burlywood", weight=9]; 2548 -> 812[label="",style="solid", color="burlywood", weight=3]; 663[label="vyw3001",fontsize=16,color="green",shape="box"];664[label="vyw400",fontsize=16,color="green",shape="box"];665[label="vyw3000",fontsize=16,color="green",shape="box"];666[label="vyw400",fontsize=16,color="green",shape="box"];667[label="vyw3000",fontsize=16,color="green",shape="box"];668[label="vyw400",fontsize=16,color="green",shape="box"];669[label="vyw3001",fontsize=16,color="green",shape="box"];670[label="vyw401",fontsize=16,color="green",shape="box"];671[label="vyw3001",fontsize=16,color="green",shape="box"];672[label="vyw401",fontsize=16,color="green",shape="box"];673[label="vyw3000",fontsize=16,color="green",shape="box"];674[label="vyw401",fontsize=16,color="green",shape="box"];675[label="vyw3001",fontsize=16,color="green",shape="box"];676[label="vyw400",fontsize=16,color="green",shape="box"];677 -> 264[label="",style="dashed", color="red", weight=0]; 677[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];677 -> 813[label="",style="dashed", color="magenta", weight=3]; 677 -> 814[label="",style="dashed", color="magenta", weight=3]; 678[label="False",fontsize=16,color="green",shape="box"];679[label="False",fontsize=16,color="green",shape="box"];680[label="True",fontsize=16,color="green",shape="box"];681[label="False",fontsize=16,color="green",shape="box"];682[label="True",fontsize=16,color="green",shape="box"];683 -> 264[label="",style="dashed", color="red", weight=0]; 683[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];683 -> 815[label="",style="dashed", color="magenta", weight=3]; 683 -> 816[label="",style="dashed", color="magenta", weight=3]; 684[label="False",fontsize=16,color="green",shape="box"];685[label="False",fontsize=16,color="green",shape="box"];686[label="True",fontsize=16,color="green",shape="box"];687[label="False",fontsize=16,color="green",shape="box"];688[label="True",fontsize=16,color="green",shape="box"];689[label="vyw3000",fontsize=16,color="green",shape="box"];690[label="vyw400",fontsize=16,color="green",shape="box"];691[label="vyw3000",fontsize=16,color="green",shape="box"];692[label="vyw400",fontsize=16,color="green",shape="box"];693[label="vyw3000",fontsize=16,color="green",shape="box"];694[label="vyw400",fontsize=16,color="green",shape="box"];695[label="vyw3000",fontsize=16,color="green",shape="box"];696[label="vyw400",fontsize=16,color="green",shape="box"];697[label="vyw3000",fontsize=16,color="green",shape="box"];698[label="vyw400",fontsize=16,color="green",shape="box"];699[label="vyw3000",fontsize=16,color="green",shape="box"];700[label="vyw400",fontsize=16,color="green",shape="box"];701[label="vyw3000",fontsize=16,color="green",shape="box"];702[label="vyw400",fontsize=16,color="green",shape="box"];703[label="vyw3000",fontsize=16,color="green",shape="box"];704[label="vyw400",fontsize=16,color="green",shape="box"];705[label="vyw3000",fontsize=16,color="green",shape="box"];706[label="vyw400",fontsize=16,color="green",shape="box"];707[label="vyw3000",fontsize=16,color="green",shape="box"];708[label="vyw400",fontsize=16,color="green",shape="box"];709[label="vyw3000",fontsize=16,color="green",shape="box"];710[label="vyw400",fontsize=16,color="green",shape="box"];711[label="vyw3000",fontsize=16,color="green",shape="box"];712[label="vyw400",fontsize=16,color="green",shape="box"];713[label="vyw3000",fontsize=16,color="green",shape="box"];714[label="vyw400",fontsize=16,color="green",shape="box"];715[label="vyw3000",fontsize=16,color="green",shape="box"];716[label="vyw400",fontsize=16,color="green",shape="box"];717[label="vyw3001",fontsize=16,color="green",shape="box"];718[label="vyw401",fontsize=16,color="green",shape="box"];719[label="vyw3001",fontsize=16,color="green",shape="box"];720[label="vyw401",fontsize=16,color="green",shape="box"];721[label="vyw3001",fontsize=16,color="green",shape="box"];722[label="vyw401",fontsize=16,color="green",shape="box"];723[label="vyw3001",fontsize=16,color="green",shape="box"];724[label="vyw401",fontsize=16,color="green",shape="box"];725[label="vyw3001",fontsize=16,color="green",shape="box"];726[label="vyw401",fontsize=16,color="green",shape="box"];727[label="vyw3001",fontsize=16,color="green",shape="box"];728[label="vyw401",fontsize=16,color="green",shape="box"];729[label="vyw3001",fontsize=16,color="green",shape="box"];730[label="vyw401",fontsize=16,color="green",shape="box"];731[label="vyw3001",fontsize=16,color="green",shape="box"];732[label="vyw401",fontsize=16,color="green",shape="box"];733[label="vyw3001",fontsize=16,color="green",shape="box"];734[label="vyw401",fontsize=16,color="green",shape="box"];735[label="vyw3001",fontsize=16,color="green",shape="box"];736[label="vyw401",fontsize=16,color="green",shape="box"];737[label="vyw3001",fontsize=16,color="green",shape="box"];738[label="vyw401",fontsize=16,color="green",shape="box"];739[label="vyw3001",fontsize=16,color="green",shape="box"];740[label="vyw401",fontsize=16,color="green",shape="box"];741[label="vyw3001",fontsize=16,color="green",shape="box"];742[label="vyw401",fontsize=16,color="green",shape="box"];743[label="vyw3001",fontsize=16,color="green",shape="box"];744[label="vyw401",fontsize=16,color="green",shape="box"];1186[label="compare1 (vyw430,vyw431) vyw45 ((vyw430,vyw431) <= vyw45)",fontsize=16,color="burlywood",shape="box"];2549[label="vyw45/(vyw450,vyw451)",fontsize=10,color="white",style="solid",shape="box"];1186 -> 2549[label="",style="solid", color="burlywood", weight=9]; 2549 -> 1189[label="",style="solid", color="burlywood", weight=3]; 1128[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];1129[label="(vyw15,vyw16)",fontsize=16,color="green",shape="box"];1130 -> 134[label="",style="dashed", color="red", weight=0]; 1130[label="(vyw21,vyw22) == (vyw15,vyw16)",fontsize=16,color="magenta"];1130 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1149[label="",style="dashed", color="magenta", weight=3]; 751 -> 264[label="",style="dashed", color="red", weight=0]; 751[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];751 -> 821[label="",style="dashed", color="magenta", weight=3]; 751 -> 822[label="",style="dashed", color="magenta", weight=3]; 752[label="False",fontsize=16,color="green",shape="box"];753[label="False",fontsize=16,color="green",shape="box"];754[label="True",fontsize=16,color="green",shape="box"];755[label="vyw3001",fontsize=16,color="green",shape="box"];756[label="vyw401",fontsize=16,color="green",shape="box"];757[label="vyw3001",fontsize=16,color="green",shape="box"];758[label="vyw401",fontsize=16,color="green",shape="box"];759[label="vyw3001",fontsize=16,color="green",shape="box"];760[label="vyw401",fontsize=16,color="green",shape="box"];761[label="vyw3001",fontsize=16,color="green",shape="box"];762[label="vyw401",fontsize=16,color="green",shape="box"];763[label="vyw3001",fontsize=16,color="green",shape="box"];764[label="vyw401",fontsize=16,color="green",shape="box"];765[label="vyw3001",fontsize=16,color="green",shape="box"];766[label="vyw401",fontsize=16,color="green",shape="box"];767[label="vyw3001",fontsize=16,color="green",shape="box"];768[label="vyw401",fontsize=16,color="green",shape="box"];769[label="vyw3001",fontsize=16,color="green",shape="box"];770[label="vyw401",fontsize=16,color="green",shape="box"];771[label="vyw3001",fontsize=16,color="green",shape="box"];772[label="vyw401",fontsize=16,color="green",shape="box"];773[label="vyw3001",fontsize=16,color="green",shape="box"];774[label="vyw401",fontsize=16,color="green",shape="box"];775[label="vyw3001",fontsize=16,color="green",shape="box"];776[label="vyw401",fontsize=16,color="green",shape="box"];777[label="vyw3001",fontsize=16,color="green",shape="box"];778[label="vyw401",fontsize=16,color="green",shape="box"];779[label="vyw3001",fontsize=16,color="green",shape="box"];780[label="vyw401",fontsize=16,color="green",shape="box"];781[label="vyw3001",fontsize=16,color="green",shape="box"];782[label="vyw401",fontsize=16,color="green",shape="box"];783[label="vyw3002",fontsize=16,color="green",shape="box"];784[label="vyw402",fontsize=16,color="green",shape="box"];785[label="vyw3002",fontsize=16,color="green",shape="box"];786[label="vyw402",fontsize=16,color="green",shape="box"];787[label="vyw3002",fontsize=16,color="green",shape="box"];788[label="vyw402",fontsize=16,color="green",shape="box"];789[label="vyw3002",fontsize=16,color="green",shape="box"];790[label="vyw402",fontsize=16,color="green",shape="box"];791[label="vyw3002",fontsize=16,color="green",shape="box"];792[label="vyw402",fontsize=16,color="green",shape="box"];793[label="vyw3002",fontsize=16,color="green",shape="box"];794[label="vyw402",fontsize=16,color="green",shape="box"];795[label="vyw3002",fontsize=16,color="green",shape="box"];796[label="vyw402",fontsize=16,color="green",shape="box"];797[label="vyw3002",fontsize=16,color="green",shape="box"];798[label="vyw402",fontsize=16,color="green",shape="box"];799[label="vyw3002",fontsize=16,color="green",shape="box"];800[label="vyw402",fontsize=16,color="green",shape="box"];801[label="vyw3002",fontsize=16,color="green",shape="box"];802[label="vyw402",fontsize=16,color="green",shape="box"];803[label="vyw3002",fontsize=16,color="green",shape="box"];804[label="vyw402",fontsize=16,color="green",shape="box"];805[label="vyw3002",fontsize=16,color="green",shape="box"];806[label="vyw402",fontsize=16,color="green",shape="box"];807[label="vyw3002",fontsize=16,color="green",shape="box"];808[label="vyw402",fontsize=16,color="green",shape="box"];809[label="vyw3002",fontsize=16,color="green",shape="box"];810[label="vyw402",fontsize=16,color="green",shape="box"];811[label="primMulInt (Pos vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];2550[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];811 -> 2550[label="",style="solid", color="burlywood", weight=9]; 2550 -> 823[label="",style="solid", color="burlywood", weight=3]; 2551[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];811 -> 2551[label="",style="solid", color="burlywood", weight=9]; 2551 -> 824[label="",style="solid", color="burlywood", weight=3]; 812[label="primMulInt (Neg vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];2552[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];812 -> 2552[label="",style="solid", color="burlywood", weight=9]; 2552 -> 825[label="",style="solid", color="burlywood", weight=3]; 2553[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];812 -> 2553[label="",style="solid", color="burlywood", weight=9]; 2553 -> 826[label="",style="solid", color="burlywood", weight=3]; 813[label="vyw4000",fontsize=16,color="green",shape="box"];814[label="vyw30000",fontsize=16,color="green",shape="box"];815[label="vyw4000",fontsize=16,color="green",shape="box"];816[label="vyw30000",fontsize=16,color="green",shape="box"];1189[label="compare1 (vyw430,vyw431) (vyw450,vyw451) ((vyw430,vyw431) <= (vyw450,vyw451))",fontsize=16,color="black",shape="box"];1189 -> 1191[label="",style="solid", color="black", weight=3]; 1148[label="(vyw15,vyw16)",fontsize=16,color="green",shape="box"];1149[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];821[label="vyw4000",fontsize=16,color="green",shape="box"];822[label="vyw30000",fontsize=16,color="green",shape="box"];823[label="primMulInt (Pos vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];823 -> 860[label="",style="solid", color="black", weight=3]; 824[label="primMulInt (Pos vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];824 -> 861[label="",style="solid", color="black", weight=3]; 825[label="primMulInt (Neg vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];825 -> 862[label="",style="solid", color="black", weight=3]; 826[label="primMulInt (Neg vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];826 -> 863[label="",style="solid", color="black", weight=3]; 1191 -> 1198[label="",style="dashed", color="red", weight=0]; 1191[label="compare1 (vyw430,vyw431) (vyw450,vyw451) (vyw430 < vyw450 || vyw430 == vyw450 && vyw431 <= vyw451)",fontsize=16,color="magenta"];1191 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1204[label="",style="dashed", color="magenta", weight=3]; 860[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];860 -> 908[label="",style="dashed", color="green", weight=3]; 861[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];861 -> 909[label="",style="dashed", color="green", weight=3]; 862[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];862 -> 910[label="",style="dashed", color="green", weight=3]; 863[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];863 -> 911[label="",style="dashed", color="green", weight=3]; 1199[label="vyw451",fontsize=16,color="green",shape="box"];1200[label="vyw450",fontsize=16,color="green",shape="box"];1201[label="vyw431",fontsize=16,color="green",shape="box"];1202[label="vyw430",fontsize=16,color="green",shape="box"];1203 -> 415[label="",style="dashed", color="red", weight=0]; 1203[label="vyw430 == vyw450 && vyw431 <= vyw451",fontsize=16,color="magenta"];1203 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1204[label="vyw430 < vyw450",fontsize=16,color="blue",shape="box"];2554[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2554[label="",style="solid", color="blue", weight=9]; 2554 -> 1213[label="",style="solid", color="blue", weight=3]; 2555[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2555[label="",style="solid", color="blue", weight=9]; 2555 -> 1214[label="",style="solid", color="blue", weight=3]; 2556[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2556[label="",style="solid", color="blue", weight=9]; 2556 -> 1215[label="",style="solid", color="blue", weight=3]; 2557[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2557[label="",style="solid", color="blue", weight=9]; 2557 -> 1216[label="",style="solid", color="blue", weight=3]; 2558[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2558[label="",style="solid", color="blue", weight=9]; 2558 -> 1217[label="",style="solid", color="blue", weight=3]; 2559[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2559[label="",style="solid", color="blue", weight=9]; 2559 -> 1218[label="",style="solid", color="blue", weight=3]; 2560[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2560[label="",style="solid", color="blue", weight=9]; 2560 -> 1219[label="",style="solid", color="blue", weight=3]; 2561[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2561[label="",style="solid", color="blue", weight=9]; 2561 -> 1220[label="",style="solid", color="blue", weight=3]; 2562[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2562[label="",style="solid", color="blue", weight=9]; 2562 -> 1221[label="",style="solid", color="blue", weight=3]; 2563[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2563[label="",style="solid", color="blue", weight=9]; 2563 -> 1222[label="",style="solid", color="blue", weight=3]; 2564[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2564[label="",style="solid", color="blue", weight=9]; 2564 -> 1223[label="",style="solid", color="blue", weight=3]; 2565[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2565[label="",style="solid", color="blue", weight=9]; 2565 -> 1224[label="",style="solid", color="blue", weight=3]; 2566[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2566[label="",style="solid", color="blue", weight=9]; 2566 -> 1225[label="",style="solid", color="blue", weight=3]; 2567[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2567[label="",style="solid", color="blue", weight=9]; 2567 -> 1226[label="",style="solid", color="blue", weight=3]; 1198[label="compare1 (vyw92,vyw93) (vyw94,vyw95) (vyw96 || vyw97)",fontsize=16,color="burlywood",shape="triangle"];2568[label="vyw96/False",fontsize=10,color="white",style="solid",shape="box"];1198 -> 2568[label="",style="solid", color="burlywood", weight=9]; 2568 -> 1227[label="",style="solid", color="burlywood", weight=3]; 2569[label="vyw96/True",fontsize=10,color="white",style="solid",shape="box"];1198 -> 2569[label="",style="solid", color="burlywood", weight=9]; 2569 -> 1228[label="",style="solid", color="burlywood", weight=3]; 908[label="primMulNat vyw4010 vyw30000",fontsize=16,color="burlywood",shape="triangle"];2570[label="vyw4010/Succ vyw40100",fontsize=10,color="white",style="solid",shape="box"];908 -> 2570[label="",style="solid", color="burlywood", weight=9]; 2570 -> 990[label="",style="solid", color="burlywood", weight=3]; 2571[label="vyw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];908 -> 2571[label="",style="solid", color="burlywood", weight=9]; 2571 -> 991[label="",style="solid", color="burlywood", weight=3]; 909 -> 908[label="",style="dashed", color="red", weight=0]; 909[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];909 -> 992[label="",style="dashed", color="magenta", weight=3]; 910 -> 908[label="",style="dashed", color="red", weight=0]; 910[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];910 -> 993[label="",style="dashed", color="magenta", weight=3]; 911 -> 908[label="",style="dashed", color="red", weight=0]; 911[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];911 -> 994[label="",style="dashed", color="magenta", weight=3]; 911 -> 995[label="",style="dashed", color="magenta", weight=3]; 1211[label="vyw430 == vyw450",fontsize=16,color="blue",shape="box"];2572[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2572[label="",style="solid", color="blue", weight=9]; 2572 -> 1233[label="",style="solid", color="blue", weight=3]; 2573[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2573[label="",style="solid", color="blue", weight=9]; 2573 -> 1234[label="",style="solid", color="blue", weight=3]; 2574[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2574[label="",style="solid", color="blue", weight=9]; 2574 -> 1235[label="",style="solid", color="blue", weight=3]; 2575[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2575[label="",style="solid", color="blue", weight=9]; 2575 -> 1236[label="",style="solid", color="blue", weight=3]; 2576[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2576[label="",style="solid", color="blue", weight=9]; 2576 -> 1237[label="",style="solid", color="blue", weight=3]; 2577[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2577[label="",style="solid", color="blue", weight=9]; 2577 -> 1238[label="",style="solid", color="blue", weight=3]; 2578[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2578[label="",style="solid", color="blue", weight=9]; 2578 -> 1239[label="",style="solid", color="blue", weight=3]; 2579[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2579[label="",style="solid", color="blue", weight=9]; 2579 -> 1240[label="",style="solid", color="blue", weight=3]; 2580[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2580[label="",style="solid", color="blue", weight=9]; 2580 -> 1241[label="",style="solid", color="blue", weight=3]; 2581[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2581[label="",style="solid", color="blue", weight=9]; 2581 -> 1242[label="",style="solid", color="blue", weight=3]; 2582[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2582[label="",style="solid", color="blue", weight=9]; 2582 -> 1243[label="",style="solid", color="blue", weight=3]; 2583[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2583[label="",style="solid", color="blue", weight=9]; 2583 -> 1244[label="",style="solid", color="blue", weight=3]; 2584[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2584[label="",style="solid", color="blue", weight=9]; 2584 -> 1245[label="",style="solid", color="blue", weight=3]; 2585[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 2585[label="",style="solid", color="blue", weight=9]; 2585 -> 1246[label="",style="solid", color="blue", weight=3]; 1212[label="vyw431 <= vyw451",fontsize=16,color="blue",shape="box"];2586[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2586[label="",style="solid", color="blue", weight=9]; 2586 -> 1247[label="",style="solid", color="blue", weight=3]; 2587[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2587[label="",style="solid", color="blue", weight=9]; 2587 -> 1248[label="",style="solid", color="blue", weight=3]; 2588[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2588[label="",style="solid", color="blue", weight=9]; 2588 -> 1249[label="",style="solid", color="blue", weight=3]; 2589[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2589[label="",style="solid", color="blue", weight=9]; 2589 -> 1250[label="",style="solid", color="blue", weight=3]; 2590[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2590[label="",style="solid", color="blue", weight=9]; 2590 -> 1251[label="",style="solid", color="blue", weight=3]; 2591[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2591[label="",style="solid", color="blue", weight=9]; 2591 -> 1252[label="",style="solid", color="blue", weight=3]; 2592[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2592[label="",style="solid", color="blue", weight=9]; 2592 -> 1253[label="",style="solid", color="blue", weight=3]; 2593[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2593[label="",style="solid", color="blue", weight=9]; 2593 -> 1254[label="",style="solid", color="blue", weight=3]; 2594[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2594[label="",style="solid", color="blue", weight=9]; 2594 -> 1255[label="",style="solid", color="blue", weight=3]; 2595[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2595[label="",style="solid", color="blue", weight=9]; 2595 -> 1256[label="",style="solid", color="blue", weight=3]; 2596[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2596[label="",style="solid", color="blue", weight=9]; 2596 -> 1257[label="",style="solid", color="blue", weight=3]; 2597[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2597[label="",style="solid", color="blue", weight=9]; 2597 -> 1258[label="",style="solid", color="blue", weight=3]; 2598[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2598[label="",style="solid", color="blue", weight=9]; 2598 -> 1259[label="",style="solid", color="blue", weight=3]; 2599[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2599[label="",style="solid", color="blue", weight=9]; 2599 -> 1260[label="",style="solid", color="blue", weight=3]; 1213[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1213 -> 1261[label="",style="solid", color="black", weight=3]; 1214[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1214 -> 1262[label="",style="solid", color="black", weight=3]; 1215[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1215 -> 1263[label="",style="solid", color="black", weight=3]; 1216[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1216 -> 1264[label="",style="solid", color="black", weight=3]; 1217[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1217 -> 1265[label="",style="solid", color="black", weight=3]; 1218[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1218 -> 1266[label="",style="solid", color="black", weight=3]; 1219[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1219 -> 1267[label="",style="solid", color="black", weight=3]; 1220[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1220 -> 1268[label="",style="solid", color="black", weight=3]; 1221[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1221 -> 1269[label="",style="solid", color="black", weight=3]; 1222[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1222 -> 1270[label="",style="solid", color="black", weight=3]; 1223[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1223 -> 1271[label="",style="solid", color="black", weight=3]; 1224[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1224 -> 1272[label="",style="solid", color="black", weight=3]; 1225[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1225 -> 1273[label="",style="solid", color="black", weight=3]; 1226[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1226 -> 1274[label="",style="solid", color="black", weight=3]; 1227[label="compare1 (vyw92,vyw93) (vyw94,vyw95) (False || vyw97)",fontsize=16,color="black",shape="box"];1227 -> 1275[label="",style="solid", color="black", weight=3]; 1228[label="compare1 (vyw92,vyw93) (vyw94,vyw95) (True || vyw97)",fontsize=16,color="black",shape="box"];1228 -> 1276[label="",style="solid", color="black", weight=3]; 990[label="primMulNat (Succ vyw40100) vyw30000",fontsize=16,color="burlywood",shape="box"];2600[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];990 -> 2600[label="",style="solid", color="burlywood", weight=9]; 2600 -> 1045[label="",style="solid", color="burlywood", weight=3]; 2601[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];990 -> 2601[label="",style="solid", color="burlywood", weight=9]; 2601 -> 1046[label="",style="solid", color="burlywood", weight=3]; 991[label="primMulNat Zero vyw30000",fontsize=16,color="burlywood",shape="box"];2602[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];991 -> 2602[label="",style="solid", color="burlywood", weight=9]; 2602 -> 1047[label="",style="solid", color="burlywood", weight=3]; 2603[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];991 -> 2603[label="",style="solid", color="burlywood", weight=9]; 2603 -> 1048[label="",style="solid", color="burlywood", weight=3]; 992[label="vyw30000",fontsize=16,color="green",shape="box"];993[label="vyw4010",fontsize=16,color="green",shape="box"];994[label="vyw4010",fontsize=16,color="green",shape="box"];995[label="vyw30000",fontsize=16,color="green",shape="box"];1233 -> 124[label="",style="dashed", color="red", weight=0]; 1233[label="vyw430 == vyw450",fontsize=16,color="magenta"];1233 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1234 -> 125[label="",style="dashed", color="red", weight=0]; 1234[label="vyw430 == vyw450",fontsize=16,color="magenta"];1234 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1235 -> 123[label="",style="dashed", color="red", weight=0]; 1235[label="vyw430 == vyw450",fontsize=16,color="magenta"];1235 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1236 -> 130[label="",style="dashed", color="red", weight=0]; 1236[label="vyw430 == vyw450",fontsize=16,color="magenta"];1236 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1237 -> 134[label="",style="dashed", color="red", weight=0]; 1237[label="vyw430 == vyw450",fontsize=16,color="magenta"];1237 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1238 -> 132[label="",style="dashed", color="red", weight=0]; 1238[label="vyw430 == vyw450",fontsize=16,color="magenta"];1238 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1239 -> 126[label="",style="dashed", color="red", weight=0]; 1239[label="vyw430 == vyw450",fontsize=16,color="magenta"];1239 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1240 -> 121[label="",style="dashed", color="red", weight=0]; 1240[label="vyw430 == vyw450",fontsize=16,color="magenta"];1240 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1241 -> 128[label="",style="dashed", color="red", weight=0]; 1241[label="vyw430 == vyw450",fontsize=16,color="magenta"];1241 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1242 -> 127[label="",style="dashed", color="red", weight=0]; 1242[label="vyw430 == vyw450",fontsize=16,color="magenta"];1242 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1243 -> 129[label="",style="dashed", color="red", weight=0]; 1243[label="vyw430 == vyw450",fontsize=16,color="magenta"];1243 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1244 -> 131[label="",style="dashed", color="red", weight=0]; 1244[label="vyw430 == vyw450",fontsize=16,color="magenta"];1244 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1245 -> 122[label="",style="dashed", color="red", weight=0]; 1245[label="vyw430 == vyw450",fontsize=16,color="magenta"];1245 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1246 -> 133[label="",style="dashed", color="red", weight=0]; 1246[label="vyw430 == vyw450",fontsize=16,color="magenta"];1246 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1246 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1247[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1247 -> 1309[label="",style="solid", color="black", weight=3]; 1248[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2604[label="vyw431/Left vyw4310",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2604[label="",style="solid", color="burlywood", weight=9]; 2604 -> 1310[label="",style="solid", color="burlywood", weight=3]; 2605[label="vyw431/Right vyw4310",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2605[label="",style="solid", color="burlywood", weight=9]; 2605 -> 1311[label="",style="solid", color="burlywood", weight=3]; 1249[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2606[label="vyw431/LT",fontsize=10,color="white",style="solid",shape="box"];1249 -> 2606[label="",style="solid", color="burlywood", weight=9]; 2606 -> 1312[label="",style="solid", color="burlywood", weight=3]; 2607[label="vyw431/EQ",fontsize=10,color="white",style="solid",shape="box"];1249 -> 2607[label="",style="solid", color="burlywood", weight=9]; 2607 -> 1313[label="",style="solid", color="burlywood", weight=3]; 2608[label="vyw431/GT",fontsize=10,color="white",style="solid",shape="box"];1249 -> 2608[label="",style="solid", color="burlywood", weight=9]; 2608 -> 1314[label="",style="solid", color="burlywood", weight=3]; 1250[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1250 -> 1315[label="",style="solid", color="black", weight=3]; 1251[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2609[label="vyw431/(vyw4310,vyw4311)",fontsize=10,color="white",style="solid",shape="box"];1251 -> 2609[label="",style="solid", color="burlywood", weight=9]; 2609 -> 1316[label="",style="solid", color="burlywood", weight=3]; 1252[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2610[label="vyw431/False",fontsize=10,color="white",style="solid",shape="box"];1252 -> 2610[label="",style="solid", color="burlywood", weight=9]; 2610 -> 1317[label="",style="solid", color="burlywood", weight=3]; 2611[label="vyw431/True",fontsize=10,color="white",style="solid",shape="box"];1252 -> 2611[label="",style="solid", color="burlywood", weight=9]; 2611 -> 1318[label="",style="solid", color="burlywood", weight=3]; 1253[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2612[label="vyw431/(vyw4310,vyw4311,vyw4312)",fontsize=10,color="white",style="solid",shape="box"];1253 -> 2612[label="",style="solid", color="burlywood", weight=9]; 2612 -> 1319[label="",style="solid", color="burlywood", weight=3]; 1254[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1254 -> 1320[label="",style="solid", color="black", weight=3]; 1255[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1255 -> 1321[label="",style="solid", color="black", weight=3]; 1256[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2613[label="vyw431/Nothing",fontsize=10,color="white",style="solid",shape="box"];1256 -> 2613[label="",style="solid", color="burlywood", weight=9]; 2613 -> 1322[label="",style="solid", color="burlywood", weight=3]; 2614[label="vyw431/Just vyw4310",fontsize=10,color="white",style="solid",shape="box"];1256 -> 2614[label="",style="solid", color="burlywood", weight=9]; 2614 -> 1323[label="",style="solid", color="burlywood", weight=3]; 1257[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1257 -> 1324[label="",style="solid", color="black", weight=3]; 1258[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1258 -> 1325[label="",style="solid", color="black", weight=3]; 1259[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1259 -> 1326[label="",style="solid", color="black", weight=3]; 1260[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1260 -> 1327[label="",style="solid", color="black", weight=3]; 1261 -> 123[label="",style="dashed", color="red", weight=0]; 1261[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1261 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1262 -> 123[label="",style="dashed", color="red", weight=0]; 1262[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1262 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1263 -> 123[label="",style="dashed", color="red", weight=0]; 1263[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1263 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1264 -> 123[label="",style="dashed", color="red", weight=0]; 1264[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1264 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1265 -> 123[label="",style="dashed", color="red", weight=0]; 1265[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1265 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1266 -> 123[label="",style="dashed", color="red", weight=0]; 1266[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1266 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1267 -> 123[label="",style="dashed", color="red", weight=0]; 1267[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1267 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1268 -> 123[label="",style="dashed", color="red", weight=0]; 1268[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1268 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1269 -> 123[label="",style="dashed", color="red", weight=0]; 1269[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1269 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1270 -> 123[label="",style="dashed", color="red", weight=0]; 1270[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1270 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1271 -> 123[label="",style="dashed", color="red", weight=0]; 1271[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1271 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1272 -> 123[label="",style="dashed", color="red", weight=0]; 1272[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1272 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1273 -> 123[label="",style="dashed", color="red", weight=0]; 1273[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1273 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1274 -> 123[label="",style="dashed", color="red", weight=0]; 1274[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1274 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1275[label="compare1 (vyw92,vyw93) (vyw94,vyw95) vyw97",fontsize=16,color="burlywood",shape="triangle"];2615[label="vyw97/False",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2615[label="",style="solid", color="burlywood", weight=9]; 2615 -> 1356[label="",style="solid", color="burlywood", weight=3]; 2616[label="vyw97/True",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2616[label="",style="solid", color="burlywood", weight=9]; 2616 -> 1357[label="",style="solid", color="burlywood", weight=3]; 1276 -> 1275[label="",style="dashed", color="red", weight=0]; 1276[label="compare1 (vyw92,vyw93) (vyw94,vyw95) True",fontsize=16,color="magenta"];1276 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1045[label="primMulNat (Succ vyw40100) (Succ vyw300000)",fontsize=16,color="black",shape="box"];1045 -> 1108[label="",style="solid", color="black", weight=3]; 1046[label="primMulNat (Succ vyw40100) Zero",fontsize=16,color="black",shape="box"];1046 -> 1109[label="",style="solid", color="black", weight=3]; 1047[label="primMulNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];1047 -> 1110[label="",style="solid", color="black", weight=3]; 1048[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1048 -> 1111[label="",style="solid", color="black", weight=3]; 1281[label="vyw450",fontsize=16,color="green",shape="box"];1282[label="vyw430",fontsize=16,color="green",shape="box"];1283[label="vyw450",fontsize=16,color="green",shape="box"];1284[label="vyw430",fontsize=16,color="green",shape="box"];1285[label="vyw450",fontsize=16,color="green",shape="box"];1286[label="vyw430",fontsize=16,color="green",shape="box"];1287[label="vyw450",fontsize=16,color="green",shape="box"];1288[label="vyw430",fontsize=16,color="green",shape="box"];1289[label="vyw450",fontsize=16,color="green",shape="box"];1290[label="vyw430",fontsize=16,color="green",shape="box"];1291[label="vyw450",fontsize=16,color="green",shape="box"];1292[label="vyw430",fontsize=16,color="green",shape="box"];1293[label="vyw450",fontsize=16,color="green",shape="box"];1294[label="vyw430",fontsize=16,color="green",shape="box"];1295[label="vyw450",fontsize=16,color="green",shape="box"];1296[label="vyw430",fontsize=16,color="green",shape="box"];1297[label="vyw450",fontsize=16,color="green",shape="box"];1298[label="vyw430",fontsize=16,color="green",shape="box"];1299[label="vyw450",fontsize=16,color="green",shape="box"];1300[label="vyw430",fontsize=16,color="green",shape="box"];1301[label="vyw450",fontsize=16,color="green",shape="box"];1302[label="vyw430",fontsize=16,color="green",shape="box"];1303[label="vyw450",fontsize=16,color="green",shape="box"];1304[label="vyw430",fontsize=16,color="green",shape="box"];1305[label="vyw450",fontsize=16,color="green",shape="box"];1306[label="vyw430",fontsize=16,color="green",shape="box"];1307[label="vyw450",fontsize=16,color="green",shape="box"];1308[label="vyw430",fontsize=16,color="green",shape="box"];1309[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1309 -> 1360[label="",style="solid", color="black", weight=3]; 1310[label="Left vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2617[label="vyw451/Left vyw4510",fontsize=10,color="white",style="solid",shape="box"];1310 -> 2617[label="",style="solid", color="burlywood", weight=9]; 2617 -> 1361[label="",style="solid", color="burlywood", weight=3]; 2618[label="vyw451/Right vyw4510",fontsize=10,color="white",style="solid",shape="box"];1310 -> 2618[label="",style="solid", color="burlywood", weight=9]; 2618 -> 1362[label="",style="solid", color="burlywood", weight=3]; 1311[label="Right vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2619[label="vyw451/Left vyw4510",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2619[label="",style="solid", color="burlywood", weight=9]; 2619 -> 1363[label="",style="solid", color="burlywood", weight=3]; 2620[label="vyw451/Right vyw4510",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2620[label="",style="solid", color="burlywood", weight=9]; 2620 -> 1364[label="",style="solid", color="burlywood", weight=3]; 1312[label="LT <= vyw451",fontsize=16,color="burlywood",shape="box"];2621[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1312 -> 2621[label="",style="solid", color="burlywood", weight=9]; 2621 -> 1365[label="",style="solid", color="burlywood", weight=3]; 2622[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1312 -> 2622[label="",style="solid", color="burlywood", weight=9]; 2622 -> 1366[label="",style="solid", color="burlywood", weight=3]; 2623[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1312 -> 2623[label="",style="solid", color="burlywood", weight=9]; 2623 -> 1367[label="",style="solid", color="burlywood", weight=3]; 1313[label="EQ <= vyw451",fontsize=16,color="burlywood",shape="box"];2624[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1313 -> 2624[label="",style="solid", color="burlywood", weight=9]; 2624 -> 1368[label="",style="solid", color="burlywood", weight=3]; 2625[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1313 -> 2625[label="",style="solid", color="burlywood", weight=9]; 2625 -> 1369[label="",style="solid", color="burlywood", weight=3]; 2626[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1313 -> 2626[label="",style="solid", color="burlywood", weight=9]; 2626 -> 1370[label="",style="solid", color="burlywood", weight=3]; 1314[label="GT <= vyw451",fontsize=16,color="burlywood",shape="box"];2627[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1314 -> 2627[label="",style="solid", color="burlywood", weight=9]; 2627 -> 1371[label="",style="solid", color="burlywood", weight=3]; 2628[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1314 -> 2628[label="",style="solid", color="burlywood", weight=9]; 2628 -> 1372[label="",style="solid", color="burlywood", weight=3]; 2629[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1314 -> 2629[label="",style="solid", color="burlywood", weight=9]; 2629 -> 1373[label="",style="solid", color="burlywood", weight=3]; 1315[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1315 -> 1374[label="",style="solid", color="black", weight=3]; 1316[label="(vyw4310,vyw4311) <= vyw451",fontsize=16,color="burlywood",shape="box"];2630[label="vyw451/(vyw4510,vyw4511)",fontsize=10,color="white",style="solid",shape="box"];1316 -> 2630[label="",style="solid", color="burlywood", weight=9]; 2630 -> 1375[label="",style="solid", color="burlywood", weight=3]; 1317[label="False <= vyw451",fontsize=16,color="burlywood",shape="box"];2631[label="vyw451/False",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2631[label="",style="solid", color="burlywood", weight=9]; 2631 -> 1376[label="",style="solid", color="burlywood", weight=3]; 2632[label="vyw451/True",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2632[label="",style="solid", color="burlywood", weight=9]; 2632 -> 1377[label="",style="solid", color="burlywood", weight=3]; 1318[label="True <= vyw451",fontsize=16,color="burlywood",shape="box"];2633[label="vyw451/False",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2633[label="",style="solid", color="burlywood", weight=9]; 2633 -> 1378[label="",style="solid", color="burlywood", weight=3]; 2634[label="vyw451/True",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2634[label="",style="solid", color="burlywood", weight=9]; 2634 -> 1379[label="",style="solid", color="burlywood", weight=3]; 1319[label="(vyw4310,vyw4311,vyw4312) <= vyw451",fontsize=16,color="burlywood",shape="box"];2635[label="vyw451/(vyw4510,vyw4511,vyw4512)",fontsize=10,color="white",style="solid",shape="box"];1319 -> 2635[label="",style="solid", color="burlywood", weight=9]; 2635 -> 1380[label="",style="solid", color="burlywood", weight=3]; 1320[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1320 -> 1381[label="",style="solid", color="black", weight=3]; 1321[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1321 -> 1382[label="",style="solid", color="black", weight=3]; 1322[label="Nothing <= vyw451",fontsize=16,color="burlywood",shape="box"];2636[label="vyw451/Nothing",fontsize=10,color="white",style="solid",shape="box"];1322 -> 2636[label="",style="solid", color="burlywood", weight=9]; 2636 -> 1383[label="",style="solid", color="burlywood", weight=3]; 2637[label="vyw451/Just vyw4510",fontsize=10,color="white",style="solid",shape="box"];1322 -> 2637[label="",style="solid", color="burlywood", weight=9]; 2637 -> 1384[label="",style="solid", color="burlywood", weight=3]; 1323[label="Just vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2638[label="vyw451/Nothing",fontsize=10,color="white",style="solid",shape="box"];1323 -> 2638[label="",style="solid", color="burlywood", weight=9]; 2638 -> 1385[label="",style="solid", color="burlywood", weight=3]; 2639[label="vyw451/Just vyw4510",fontsize=10,color="white",style="solid",shape="box"];1323 -> 2639[label="",style="solid", color="burlywood", weight=9]; 2639 -> 1386[label="",style="solid", color="burlywood", weight=3]; 1324[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1324 -> 1387[label="",style="solid", color="black", weight=3]; 1325[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1325 -> 1388[label="",style="solid", color="black", weight=3]; 1326[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1326 -> 1389[label="",style="solid", color="black", weight=3]; 1327[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1327 -> 1390[label="",style="solid", color="black", weight=3]; 1328[label="LT",fontsize=16,color="green",shape="box"];1329[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1329 -> 1391[label="",style="solid", color="black", weight=3]; 1330[label="LT",fontsize=16,color="green",shape="box"];1331[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1331 -> 1392[label="",style="solid", color="black", weight=3]; 1332[label="LT",fontsize=16,color="green",shape="box"];1333[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1333 -> 1393[label="",style="solid", color="black", weight=3]; 1334[label="LT",fontsize=16,color="green",shape="box"];1335[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2640[label="vyw430/vyw4300 :% vyw4301",fontsize=10,color="white",style="solid",shape="box"];1335 -> 2640[label="",style="solid", color="burlywood", weight=9]; 2640 -> 1394[label="",style="solid", color="burlywood", weight=3]; 1336[label="LT",fontsize=16,color="green",shape="box"];1337[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1337 -> 1395[label="",style="solid", color="black", weight=3]; 1338[label="LT",fontsize=16,color="green",shape="box"];1339[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1339 -> 1396[label="",style="solid", color="black", weight=3]; 1340[label="LT",fontsize=16,color="green",shape="box"];1341[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1341 -> 1397[label="",style="solid", color="black", weight=3]; 1342[label="LT",fontsize=16,color="green",shape="box"];1343[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2641[label="vyw430/Integer vyw4300",fontsize=10,color="white",style="solid",shape="box"];1343 -> 2641[label="",style="solid", color="burlywood", weight=9]; 2641 -> 1398[label="",style="solid", color="burlywood", weight=3]; 1344[label="LT",fontsize=16,color="green",shape="box"];1345[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2642[label="vyw430/vyw4300 : vyw4301",fontsize=10,color="white",style="solid",shape="box"];1345 -> 2642[label="",style="solid", color="burlywood", weight=9]; 2642 -> 1399[label="",style="solid", color="burlywood", weight=3]; 2643[label="vyw430/[]",fontsize=10,color="white",style="solid",shape="box"];1345 -> 2643[label="",style="solid", color="burlywood", weight=9]; 2643 -> 1400[label="",style="solid", color="burlywood", weight=3]; 1346[label="LT",fontsize=16,color="green",shape="box"];1347[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1347 -> 1401[label="",style="solid", color="black", weight=3]; 1348[label="LT",fontsize=16,color="green",shape="box"];1349[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1349 -> 1402[label="",style="solid", color="black", weight=3]; 1350[label="LT",fontsize=16,color="green",shape="box"];1351[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1351 -> 1403[label="",style="solid", color="black", weight=3]; 1352[label="LT",fontsize=16,color="green",shape="box"];1353[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2644[label="vyw430/()",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2644[label="",style="solid", color="burlywood", weight=9]; 2644 -> 1404[label="",style="solid", color="burlywood", weight=3]; 1354[label="LT",fontsize=16,color="green",shape="box"];1355[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1355 -> 1405[label="",style="solid", color="black", weight=3]; 1356[label="compare1 (vyw92,vyw93) (vyw94,vyw95) False",fontsize=16,color="black",shape="box"];1356 -> 1406[label="",style="solid", color="black", weight=3]; 1357[label="compare1 (vyw92,vyw93) (vyw94,vyw95) True",fontsize=16,color="black",shape="box"];1357 -> 1407[label="",style="solid", color="black", weight=3]; 1358[label="True",fontsize=16,color="green",shape="box"];1108 -> 1150[label="",style="dashed", color="red", weight=0]; 1108[label="primPlusNat (primMulNat vyw40100 (Succ vyw300000)) (Succ vyw300000)",fontsize=16,color="magenta"];1108 -> 1151[label="",style="dashed", color="magenta", weight=3]; 1109[label="Zero",fontsize=16,color="green",shape="box"];1110[label="Zero",fontsize=16,color="green",shape="box"];1111[label="Zero",fontsize=16,color="green",shape="box"];1360 -> 1410[label="",style="dashed", color="red", weight=0]; 1360[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1360 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1361[label="Left vyw4310 <= Left vyw4510",fontsize=16,color="black",shape="box"];1361 -> 1419[label="",style="solid", color="black", weight=3]; 1362[label="Left vyw4310 <= Right vyw4510",fontsize=16,color="black",shape="box"];1362 -> 1420[label="",style="solid", color="black", weight=3]; 1363[label="Right vyw4310 <= Left vyw4510",fontsize=16,color="black",shape="box"];1363 -> 1421[label="",style="solid", color="black", weight=3]; 1364[label="Right vyw4310 <= Right vyw4510",fontsize=16,color="black",shape="box"];1364 -> 1422[label="",style="solid", color="black", weight=3]; 1365[label="LT <= LT",fontsize=16,color="black",shape="box"];1365 -> 1423[label="",style="solid", color="black", weight=3]; 1366[label="LT <= EQ",fontsize=16,color="black",shape="box"];1366 -> 1424[label="",style="solid", color="black", weight=3]; 1367[label="LT <= GT",fontsize=16,color="black",shape="box"];1367 -> 1425[label="",style="solid", color="black", weight=3]; 1368[label="EQ <= LT",fontsize=16,color="black",shape="box"];1368 -> 1426[label="",style="solid", color="black", weight=3]; 1369[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1369 -> 1427[label="",style="solid", color="black", weight=3]; 1370[label="EQ <= GT",fontsize=16,color="black",shape="box"];1370 -> 1428[label="",style="solid", color="black", weight=3]; 1371[label="GT <= LT",fontsize=16,color="black",shape="box"];1371 -> 1429[label="",style="solid", color="black", weight=3]; 1372[label="GT <= EQ",fontsize=16,color="black",shape="box"];1372 -> 1430[label="",style="solid", color="black", weight=3]; 1373[label="GT <= GT",fontsize=16,color="black",shape="box"];1373 -> 1431[label="",style="solid", color="black", weight=3]; 1374 -> 1410[label="",style="dashed", color="red", weight=0]; 1374[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1374 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1375[label="(vyw4310,vyw4311) <= (vyw4510,vyw4511)",fontsize=16,color="black",shape="box"];1375 -> 1432[label="",style="solid", color="black", weight=3]; 1376[label="False <= False",fontsize=16,color="black",shape="box"];1376 -> 1433[label="",style="solid", color="black", weight=3]; 1377[label="False <= True",fontsize=16,color="black",shape="box"];1377 -> 1434[label="",style="solid", color="black", weight=3]; 1378[label="True <= False",fontsize=16,color="black",shape="box"];1378 -> 1435[label="",style="solid", color="black", weight=3]; 1379[label="True <= True",fontsize=16,color="black",shape="box"];1379 -> 1436[label="",style="solid", color="black", weight=3]; 1380[label="(vyw4310,vyw4311,vyw4312) <= (vyw4510,vyw4511,vyw4512)",fontsize=16,color="black",shape="box"];1380 -> 1437[label="",style="solid", color="black", weight=3]; 1381 -> 1410[label="",style="dashed", color="red", weight=0]; 1381[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1381 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1410[label="",style="dashed", color="red", weight=0]; 1382[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1382 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1383[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1383 -> 1438[label="",style="solid", color="black", weight=3]; 1384[label="Nothing <= Just vyw4510",fontsize=16,color="black",shape="box"];1384 -> 1439[label="",style="solid", color="black", weight=3]; 1385[label="Just vyw4310 <= Nothing",fontsize=16,color="black",shape="box"];1385 -> 1440[label="",style="solid", color="black", weight=3]; 1386[label="Just vyw4310 <= Just vyw4510",fontsize=16,color="black",shape="box"];1386 -> 1441[label="",style="solid", color="black", weight=3]; 1387 -> 1410[label="",style="dashed", color="red", weight=0]; 1387[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1387 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1410[label="",style="dashed", color="red", weight=0]; 1388[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1388 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1410[label="",style="dashed", color="red", weight=0]; 1389[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1389 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1410[label="",style="dashed", color="red", weight=0]; 1390[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1390 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1391[label="primCmpChar vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2645[label="vyw430/Char vyw4300",fontsize=10,color="white",style="solid",shape="box"];1391 -> 2645[label="",style="solid", color="burlywood", weight=9]; 2645 -> 1442[label="",style="solid", color="burlywood", weight=3]; 1392[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1392 -> 1443[label="",style="solid", color="black", weight=3]; 1393[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1393 -> 1444[label="",style="solid", color="black", weight=3]; 1394[label="compare (vyw4300 :% vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2646[label="vyw450/vyw4500 :% vyw4501",fontsize=10,color="white",style="solid",shape="box"];1394 -> 2646[label="",style="solid", color="burlywood", weight=9]; 2646 -> 1445[label="",style="solid", color="burlywood", weight=3]; 1395[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1395 -> 1446[label="",style="solid", color="black", weight=3]; 1396[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1396 -> 1447[label="",style="solid", color="black", weight=3]; 1397[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1397 -> 1448[label="",style="solid", color="black", weight=3]; 1398[label="compare (Integer vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2647[label="vyw450/Integer vyw4500",fontsize=10,color="white",style="solid",shape="box"];1398 -> 2647[label="",style="solid", color="burlywood", weight=9]; 2647 -> 1449[label="",style="solid", color="burlywood", weight=3]; 1399[label="compare (vyw4300 : vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2648[label="vyw450/vyw4500 : vyw4501",fontsize=10,color="white",style="solid",shape="box"];1399 -> 2648[label="",style="solid", color="burlywood", weight=9]; 2648 -> 1450[label="",style="solid", color="burlywood", weight=3]; 2649[label="vyw450/[]",fontsize=10,color="white",style="solid",shape="box"];1399 -> 2649[label="",style="solid", color="burlywood", weight=9]; 2649 -> 1451[label="",style="solid", color="burlywood", weight=3]; 1400[label="compare [] vyw450",fontsize=16,color="burlywood",shape="box"];2650[label="vyw450/vyw4500 : vyw4501",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2650[label="",style="solid", color="burlywood", weight=9]; 2650 -> 1452[label="",style="solid", color="burlywood", weight=3]; 2651[label="vyw450/[]",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2651[label="",style="solid", color="burlywood", weight=9]; 2651 -> 1453[label="",style="solid", color="burlywood", weight=3]; 1401[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1401 -> 1454[label="",style="solid", color="black", weight=3]; 1402[label="primCmpFloat vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2652[label="vyw430/Float vyw4300 vyw4301",fontsize=10,color="white",style="solid",shape="box"];1402 -> 2652[label="",style="solid", color="burlywood", weight=9]; 2652 -> 1455[label="",style="solid", color="burlywood", weight=3]; 1403[label="primCmpDouble vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2653[label="vyw430/Double vyw4300 vyw4301",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2653[label="",style="solid", color="burlywood", weight=9]; 2653 -> 1456[label="",style="solid", color="burlywood", weight=3]; 1404[label="compare () vyw450",fontsize=16,color="burlywood",shape="box"];2654[label="vyw450/()",fontsize=10,color="white",style="solid",shape="box"];1404 -> 2654[label="",style="solid", color="burlywood", weight=9]; 2654 -> 1457[label="",style="solid", color="burlywood", weight=3]; 1405[label="primCmpInt vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2655[label="vyw430/Pos vyw4300",fontsize=10,color="white",style="solid",shape="box"];1405 -> 2655[label="",style="solid", color="burlywood", weight=9]; 2655 -> 1458[label="",style="solid", color="burlywood", weight=3]; 2656[label="vyw430/Neg vyw4300",fontsize=10,color="white",style="solid",shape="box"];1405 -> 2656[label="",style="solid", color="burlywood", weight=9]; 2656 -> 1459[label="",style="solid", color="burlywood", weight=3]; 1406[label="compare0 (vyw92,vyw93) (vyw94,vyw95) otherwise",fontsize=16,color="black",shape="box"];1406 -> 1460[label="",style="solid", color="black", weight=3]; 1407[label="LT",fontsize=16,color="green",shape="box"];1151 -> 908[label="",style="dashed", color="red", weight=0]; 1151[label="primMulNat vyw40100 (Succ vyw300000)",fontsize=16,color="magenta"];1151 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1150[label="primPlusNat vyw83 (Succ vyw300000)",fontsize=16,color="burlywood",shape="triangle"];2657[label="vyw83/Succ vyw830",fontsize=10,color="white",style="solid",shape="box"];1150 -> 2657[label="",style="solid", color="burlywood", weight=9]; 2657 -> 1184[label="",style="solid", color="burlywood", weight=3]; 2658[label="vyw83/Zero",fontsize=10,color="white",style="solid",shape="box"];1150 -> 2658[label="",style="solid", color="burlywood", weight=9]; 2658 -> 1185[label="",style="solid", color="burlywood", weight=3]; 1411 -> 123[label="",style="dashed", color="red", weight=0]; 1411[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1411 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1410[label="not vyw98",fontsize=16,color="burlywood",shape="triangle"];2659[label="vyw98/False",fontsize=10,color="white",style="solid",shape="box"];1410 -> 2659[label="",style="solid", color="burlywood", weight=9]; 2659 -> 1463[label="",style="solid", color="burlywood", weight=3]; 2660[label="vyw98/True",fontsize=10,color="white",style="solid",shape="box"];1410 -> 2660[label="",style="solid", color="burlywood", weight=9]; 2660 -> 1464[label="",style="solid", color="burlywood", weight=3]; 1419[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2661[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2661[label="",style="solid", color="blue", weight=9]; 2661 -> 1479[label="",style="solid", color="blue", weight=3]; 2662[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2662[label="",style="solid", color="blue", weight=9]; 2662 -> 1480[label="",style="solid", color="blue", weight=3]; 2663[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2663[label="",style="solid", color="blue", weight=9]; 2663 -> 1481[label="",style="solid", color="blue", weight=3]; 2664[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2664[label="",style="solid", color="blue", weight=9]; 2664 -> 1482[label="",style="solid", color="blue", weight=3]; 2665[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2665[label="",style="solid", color="blue", weight=9]; 2665 -> 1483[label="",style="solid", color="blue", weight=3]; 2666[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2666[label="",style="solid", color="blue", weight=9]; 2666 -> 1484[label="",style="solid", color="blue", weight=3]; 2667[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2667[label="",style="solid", color="blue", weight=9]; 2667 -> 1485[label="",style="solid", color="blue", weight=3]; 2668[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2668[label="",style="solid", color="blue", weight=9]; 2668 -> 1486[label="",style="solid", color="blue", weight=3]; 2669[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2669[label="",style="solid", color="blue", weight=9]; 2669 -> 1487[label="",style="solid", color="blue", weight=3]; 2670[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2670[label="",style="solid", color="blue", weight=9]; 2670 -> 1488[label="",style="solid", color="blue", weight=3]; 2671[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2671[label="",style="solid", color="blue", weight=9]; 2671 -> 1489[label="",style="solid", color="blue", weight=3]; 2672[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2672[label="",style="solid", color="blue", weight=9]; 2672 -> 1490[label="",style="solid", color="blue", weight=3]; 2673[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2673[label="",style="solid", color="blue", weight=9]; 2673 -> 1491[label="",style="solid", color="blue", weight=3]; 2674[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1419 -> 2674[label="",style="solid", color="blue", weight=9]; 2674 -> 1492[label="",style="solid", color="blue", weight=3]; 1420[label="True",fontsize=16,color="green",shape="box"];1421[label="False",fontsize=16,color="green",shape="box"];1422[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2675[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2675[label="",style="solid", color="blue", weight=9]; 2675 -> 1493[label="",style="solid", color="blue", weight=3]; 2676[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2676[label="",style="solid", color="blue", weight=9]; 2676 -> 1494[label="",style="solid", color="blue", weight=3]; 2677[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2677[label="",style="solid", color="blue", weight=9]; 2677 -> 1495[label="",style="solid", color="blue", weight=3]; 2678[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2678[label="",style="solid", color="blue", weight=9]; 2678 -> 1496[label="",style="solid", color="blue", weight=3]; 2679[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2679[label="",style="solid", color="blue", weight=9]; 2679 -> 1497[label="",style="solid", color="blue", weight=3]; 2680[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2680[label="",style="solid", color="blue", weight=9]; 2680 -> 1498[label="",style="solid", color="blue", weight=3]; 2681[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2681[label="",style="solid", color="blue", weight=9]; 2681 -> 1499[label="",style="solid", color="blue", weight=3]; 2682[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2682[label="",style="solid", color="blue", weight=9]; 2682 -> 1500[label="",style="solid", color="blue", weight=3]; 2683[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2683[label="",style="solid", color="blue", weight=9]; 2683 -> 1501[label="",style="solid", color="blue", weight=3]; 2684[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2684[label="",style="solid", color="blue", weight=9]; 2684 -> 1502[label="",style="solid", color="blue", weight=3]; 2685[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2685[label="",style="solid", color="blue", weight=9]; 2685 -> 1503[label="",style="solid", color="blue", weight=3]; 2686[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2686[label="",style="solid", color="blue", weight=9]; 2686 -> 1504[label="",style="solid", color="blue", weight=3]; 2687[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2687[label="",style="solid", color="blue", weight=9]; 2687 -> 1505[label="",style="solid", color="blue", weight=3]; 2688[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2688[label="",style="solid", color="blue", weight=9]; 2688 -> 1506[label="",style="solid", color="blue", weight=3]; 1423[label="True",fontsize=16,color="green",shape="box"];1424[label="True",fontsize=16,color="green",shape="box"];1425[label="True",fontsize=16,color="green",shape="box"];1426[label="False",fontsize=16,color="green",shape="box"];1427[label="True",fontsize=16,color="green",shape="box"];1428[label="True",fontsize=16,color="green",shape="box"];1429[label="False",fontsize=16,color="green",shape="box"];1430[label="False",fontsize=16,color="green",shape="box"];1431[label="True",fontsize=16,color="green",shape="box"];1412 -> 123[label="",style="dashed", color="red", weight=0]; 1412[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1412 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1620[label="",style="dashed", color="red", weight=0]; 1432[label="vyw4310 < vyw4510 || vyw4310 == vyw4510 && vyw4311 <= vyw4511",fontsize=16,color="magenta"];1432 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1433[label="True",fontsize=16,color="green",shape="box"];1434[label="True",fontsize=16,color="green",shape="box"];1435[label="False",fontsize=16,color="green",shape="box"];1436[label="True",fontsize=16,color="green",shape="box"];1437 -> 1620[label="",style="dashed", color="red", weight=0]; 1437[label="vyw4310 < vyw4510 || vyw4310 == vyw4510 && (vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512)",fontsize=16,color="magenta"];1437 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1413 -> 123[label="",style="dashed", color="red", weight=0]; 1413[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1413 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1414 -> 123[label="",style="dashed", color="red", weight=0]; 1414[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1414 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1438[label="True",fontsize=16,color="green",shape="box"];1439[label="True",fontsize=16,color="green",shape="box"];1440[label="False",fontsize=16,color="green",shape="box"];1441[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2689[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2689[label="",style="solid", color="blue", weight=9]; 2689 -> 1512[label="",style="solid", color="blue", weight=3]; 2690[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2690[label="",style="solid", color="blue", weight=9]; 2690 -> 1513[label="",style="solid", color="blue", weight=3]; 2691[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2691[label="",style="solid", color="blue", weight=9]; 2691 -> 1514[label="",style="solid", color="blue", weight=3]; 2692[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2692[label="",style="solid", color="blue", weight=9]; 2692 -> 1515[label="",style="solid", color="blue", weight=3]; 2693[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2693[label="",style="solid", color="blue", weight=9]; 2693 -> 1516[label="",style="solid", color="blue", weight=3]; 2694[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2694[label="",style="solid", color="blue", weight=9]; 2694 -> 1517[label="",style="solid", color="blue", weight=3]; 2695[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2695[label="",style="solid", color="blue", weight=9]; 2695 -> 1518[label="",style="solid", color="blue", weight=3]; 2696[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2696[label="",style="solid", color="blue", weight=9]; 2696 -> 1519[label="",style="solid", color="blue", weight=3]; 2697[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2697[label="",style="solid", color="blue", weight=9]; 2697 -> 1520[label="",style="solid", color="blue", weight=3]; 2698[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2698[label="",style="solid", color="blue", weight=9]; 2698 -> 1521[label="",style="solid", color="blue", weight=3]; 2699[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2699[label="",style="solid", color="blue", weight=9]; 2699 -> 1522[label="",style="solid", color="blue", weight=3]; 2700[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2700[label="",style="solid", color="blue", weight=9]; 2700 -> 1523[label="",style="solid", color="blue", weight=3]; 2701[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2701[label="",style="solid", color="blue", weight=9]; 2701 -> 1524[label="",style="solid", color="blue", weight=3]; 2702[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2702[label="",style="solid", color="blue", weight=9]; 2702 -> 1525[label="",style="solid", color="blue", weight=3]; 1415 -> 123[label="",style="dashed", color="red", weight=0]; 1415[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1415 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1416 -> 123[label="",style="dashed", color="red", weight=0]; 1416[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1416 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1417 -> 123[label="",style="dashed", color="red", weight=0]; 1417[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1417 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1418 -> 123[label="",style="dashed", color="red", weight=0]; 1418[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1418 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1442[label="primCmpChar (Char vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2703[label="vyw450/Char vyw4500",fontsize=10,color="white",style="solid",shape="box"];1442 -> 2703[label="",style="solid", color="burlywood", weight=9]; 2703 -> 1526[label="",style="solid", color="burlywood", weight=3]; 1443 -> 1527[label="",style="dashed", color="red", weight=0]; 1443[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1443 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1529[label="",style="dashed", color="red", weight=0]; 1444[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1444 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1445[label="compare (vyw4300 :% vyw4301) (vyw4500 :% vyw4501)",fontsize=16,color="black",shape="box"];1445 -> 1531[label="",style="solid", color="black", weight=3]; 1446 -> 1118[label="",style="dashed", color="red", weight=0]; 1446[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1446 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1535[label="",style="dashed", color="red", weight=0]; 1447[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1447 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1537[label="",style="dashed", color="red", weight=0]; 1448[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1448 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1449[label="compare (Integer vyw4300) (Integer vyw4500)",fontsize=16,color="black",shape="box"];1449 -> 1539[label="",style="solid", color="black", weight=3]; 1450[label="compare (vyw4300 : vyw4301) (vyw4500 : vyw4501)",fontsize=16,color="black",shape="box"];1450 -> 1540[label="",style="solid", color="black", weight=3]; 1451[label="compare (vyw4300 : vyw4301) []",fontsize=16,color="black",shape="box"];1451 -> 1541[label="",style="solid", color="black", weight=3]; 1452[label="compare [] (vyw4500 : vyw4501)",fontsize=16,color="black",shape="box"];1452 -> 1542[label="",style="solid", color="black", weight=3]; 1453[label="compare [] []",fontsize=16,color="black",shape="box"];1453 -> 1543[label="",style="solid", color="black", weight=3]; 1454 -> 1544[label="",style="dashed", color="red", weight=0]; 1454[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1454 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1455[label="primCmpFloat (Float vyw4300 vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2704[label="vyw4301/Pos vyw43010",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2704[label="",style="solid", color="burlywood", weight=9]; 2704 -> 1546[label="",style="solid", color="burlywood", weight=3]; 2705[label="vyw4301/Neg vyw43010",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2705[label="",style="solid", color="burlywood", weight=9]; 2705 -> 1547[label="",style="solid", color="burlywood", weight=3]; 1456[label="primCmpDouble (Double vyw4300 vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2706[label="vyw4301/Pos vyw43010",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2706[label="",style="solid", color="burlywood", weight=9]; 2706 -> 1548[label="",style="solid", color="burlywood", weight=3]; 2707[label="vyw4301/Neg vyw43010",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2707[label="",style="solid", color="burlywood", weight=9]; 2707 -> 1549[label="",style="solid", color="burlywood", weight=3]; 1457[label="compare () ()",fontsize=16,color="black",shape="box"];1457 -> 1550[label="",style="solid", color="black", weight=3]; 1458[label="primCmpInt (Pos vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2708[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2708[label="",style="solid", color="burlywood", weight=9]; 2708 -> 1551[label="",style="solid", color="burlywood", weight=3]; 2709[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 1552[label="",style="solid", color="burlywood", weight=3]; 1459[label="primCmpInt (Neg vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2710[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1459 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 1553[label="",style="solid", color="burlywood", weight=3]; 2711[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1459 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 1554[label="",style="solid", color="burlywood", weight=3]; 1460[label="compare0 (vyw92,vyw93) (vyw94,vyw95) True",fontsize=16,color="black",shape="box"];1460 -> 1555[label="",style="solid", color="black", weight=3]; 1182[label="vyw40100",fontsize=16,color="green",shape="box"];1183[label="Succ vyw300000",fontsize=16,color="green",shape="box"];1184[label="primPlusNat (Succ vyw830) (Succ vyw300000)",fontsize=16,color="black",shape="box"];1184 -> 1187[label="",style="solid", color="black", weight=3]; 1185[label="primPlusNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];1185 -> 1188[label="",style="solid", color="black", weight=3]; 1461[label="GT",fontsize=16,color="green",shape="box"];1462 -> 1329[label="",style="dashed", color="red", weight=0]; 1462[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1462 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1463[label="not False",fontsize=16,color="black",shape="box"];1463 -> 1558[label="",style="solid", color="black", weight=3]; 1464[label="not True",fontsize=16,color="black",shape="box"];1464 -> 1559[label="",style="solid", color="black", weight=3]; 1479 -> 1247[label="",style="dashed", color="red", weight=0]; 1479[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1479 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1248[label="",style="dashed", color="red", weight=0]; 1480[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1480 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1249[label="",style="dashed", color="red", weight=0]; 1481[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1481 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1250[label="",style="dashed", color="red", weight=0]; 1482[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1482 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1251[label="",style="dashed", color="red", weight=0]; 1483[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1483 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1252[label="",style="dashed", color="red", weight=0]; 1484[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1484 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1253[label="",style="dashed", color="red", weight=0]; 1485[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1485 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1254[label="",style="dashed", color="red", weight=0]; 1486[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1486 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1255[label="",style="dashed", color="red", weight=0]; 1487[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1487 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1256[label="",style="dashed", color="red", weight=0]; 1488[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1488 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1257[label="",style="dashed", color="red", weight=0]; 1489[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1489 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1258[label="",style="dashed", color="red", weight=0]; 1490[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1490 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1259[label="",style="dashed", color="red", weight=0]; 1491[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1491 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1260[label="",style="dashed", color="red", weight=0]; 1492[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1492 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1247[label="",style="dashed", color="red", weight=0]; 1493[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1493 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1248[label="",style="dashed", color="red", weight=0]; 1494[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1494 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1249[label="",style="dashed", color="red", weight=0]; 1495[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1495 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1250[label="",style="dashed", color="red", weight=0]; 1496[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1496 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1251[label="",style="dashed", color="red", weight=0]; 1497[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1497 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1252[label="",style="dashed", color="red", weight=0]; 1498[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1498 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1253[label="",style="dashed", color="red", weight=0]; 1499[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1499 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1254[label="",style="dashed", color="red", weight=0]; 1500[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1500 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1255[label="",style="dashed", color="red", weight=0]; 1501[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1501 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1256[label="",style="dashed", color="red", weight=0]; 1502[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1502 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1257[label="",style="dashed", color="red", weight=0]; 1503[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1503 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1258[label="",style="dashed", color="red", weight=0]; 1504[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1504 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1259[label="",style="dashed", color="red", weight=0]; 1505[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1505 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1260[label="",style="dashed", color="red", weight=0]; 1506[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1506 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1465[label="GT",fontsize=16,color="green",shape="box"];1466 -> 1335[label="",style="dashed", color="red", weight=0]; 1466[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1466 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1621 -> 415[label="",style="dashed", color="red", weight=0]; 1621[label="vyw4310 == vyw4510 && vyw4311 <= vyw4511",fontsize=16,color="magenta"];1621 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1622[label="vyw4310 < vyw4510",fontsize=16,color="blue",shape="box"];2712[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2712[label="",style="solid", color="blue", weight=9]; 2712 -> 1629[label="",style="solid", color="blue", weight=3]; 2713[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2713[label="",style="solid", color="blue", weight=9]; 2713 -> 1630[label="",style="solid", color="blue", weight=3]; 2714[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2714[label="",style="solid", color="blue", weight=9]; 2714 -> 1631[label="",style="solid", color="blue", weight=3]; 2715[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2715[label="",style="solid", color="blue", weight=9]; 2715 -> 1632[label="",style="solid", color="blue", weight=3]; 2716[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2716[label="",style="solid", color="blue", weight=9]; 2716 -> 1633[label="",style="solid", color="blue", weight=3]; 2717[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2717[label="",style="solid", color="blue", weight=9]; 2717 -> 1634[label="",style="solid", color="blue", weight=3]; 2718[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2718[label="",style="solid", color="blue", weight=9]; 2718 -> 1635[label="",style="solid", color="blue", weight=3]; 2719[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2719[label="",style="solid", color="blue", weight=9]; 2719 -> 1636[label="",style="solid", color="blue", weight=3]; 2720[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2720[label="",style="solid", color="blue", weight=9]; 2720 -> 1637[label="",style="solid", color="blue", weight=3]; 2721[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2721[label="",style="solid", color="blue", weight=9]; 2721 -> 1638[label="",style="solid", color="blue", weight=3]; 2722[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2722[label="",style="solid", color="blue", weight=9]; 2722 -> 1639[label="",style="solid", color="blue", weight=3]; 2723[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2723[label="",style="solid", color="blue", weight=9]; 2723 -> 1640[label="",style="solid", color="blue", weight=3]; 2724[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2724[label="",style="solid", color="blue", weight=9]; 2724 -> 1641[label="",style="solid", color="blue", weight=3]; 2725[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2725[label="",style="solid", color="blue", weight=9]; 2725 -> 1642[label="",style="solid", color="blue", weight=3]; 1620[label="vyw109 || vyw110",fontsize=16,color="burlywood",shape="triangle"];2726[label="vyw109/False",fontsize=10,color="white",style="solid",shape="box"];1620 -> 2726[label="",style="solid", color="burlywood", weight=9]; 2726 -> 1643[label="",style="solid", color="burlywood", weight=3]; 2727[label="vyw109/True",fontsize=10,color="white",style="solid",shape="box"];1620 -> 2727[label="",style="solid", color="burlywood", weight=9]; 2727 -> 1644[label="",style="solid", color="burlywood", weight=3]; 1623 -> 415[label="",style="dashed", color="red", weight=0]; 1623[label="vyw4310 == vyw4510 && (vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512)",fontsize=16,color="magenta"];1623 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1624[label="vyw4310 < vyw4510",fontsize=16,color="blue",shape="box"];2728[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2728[label="",style="solid", color="blue", weight=9]; 2728 -> 1647[label="",style="solid", color="blue", weight=3]; 2729[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2729[label="",style="solid", color="blue", weight=9]; 2729 -> 1648[label="",style="solid", color="blue", weight=3]; 2730[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2730[label="",style="solid", color="blue", weight=9]; 2730 -> 1649[label="",style="solid", color="blue", weight=3]; 2731[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2731[label="",style="solid", color="blue", weight=9]; 2731 -> 1650[label="",style="solid", color="blue", weight=3]; 2732[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2732[label="",style="solid", color="blue", weight=9]; 2732 -> 1651[label="",style="solid", color="blue", weight=3]; 2733[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2733[label="",style="solid", color="blue", weight=9]; 2733 -> 1652[label="",style="solid", color="blue", weight=3]; 2734[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2734[label="",style="solid", color="blue", weight=9]; 2734 -> 1653[label="",style="solid", color="blue", weight=3]; 2735[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2735[label="",style="solid", color="blue", weight=9]; 2735 -> 1654[label="",style="solid", color="blue", weight=3]; 2736[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2736[label="",style="solid", color="blue", weight=9]; 2736 -> 1655[label="",style="solid", color="blue", weight=3]; 2737[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2737[label="",style="solid", color="blue", weight=9]; 2737 -> 1656[label="",style="solid", color="blue", weight=3]; 2738[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2738[label="",style="solid", color="blue", weight=9]; 2738 -> 1657[label="",style="solid", color="blue", weight=3]; 2739[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2739[label="",style="solid", color="blue", weight=9]; 2739 -> 1658[label="",style="solid", color="blue", weight=3]; 2740[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2740[label="",style="solid", color="blue", weight=9]; 2740 -> 1659[label="",style="solid", color="blue", weight=3]; 2741[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2741[label="",style="solid", color="blue", weight=9]; 2741 -> 1660[label="",style="solid", color="blue", weight=3]; 1467[label="GT",fontsize=16,color="green",shape="box"];1468 -> 1343[label="",style="dashed", color="red", weight=0]; 1468[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1468 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1469[label="GT",fontsize=16,color="green",shape="box"];1470 -> 1345[label="",style="dashed", color="red", weight=0]; 1470[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1470 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1247[label="",style="dashed", color="red", weight=0]; 1512[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1512 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1248[label="",style="dashed", color="red", weight=0]; 1513[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1513 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1249[label="",style="dashed", color="red", weight=0]; 1514[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1514 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1250[label="",style="dashed", color="red", weight=0]; 1515[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1515 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1251[label="",style="dashed", color="red", weight=0]; 1516[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1516 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1252[label="",style="dashed", color="red", weight=0]; 1517[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1517 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1253[label="",style="dashed", color="red", weight=0]; 1518[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1518 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1254[label="",style="dashed", color="red", weight=0]; 1519[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1519 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1255[label="",style="dashed", color="red", weight=0]; 1520[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1520 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1256[label="",style="dashed", color="red", weight=0]; 1521[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1521 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1257[label="",style="dashed", color="red", weight=0]; 1522[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1522 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1258[label="",style="dashed", color="red", weight=0]; 1523[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1523 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1259[label="",style="dashed", color="red", weight=0]; 1524[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1524 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1260[label="",style="dashed", color="red", weight=0]; 1525[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1525 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1471[label="GT",fontsize=16,color="green",shape="box"];1472 -> 1349[label="",style="dashed", color="red", weight=0]; 1472[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1472 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1473[label="GT",fontsize=16,color="green",shape="box"];1474 -> 1351[label="",style="dashed", color="red", weight=0]; 1474[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1474 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1475[label="GT",fontsize=16,color="green",shape="box"];1476 -> 1353[label="",style="dashed", color="red", weight=0]; 1476[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1476 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1477[label="GT",fontsize=16,color="green",shape="box"];1478 -> 1355[label="",style="dashed", color="red", weight=0]; 1478[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1478 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1526[label="primCmpChar (Char vyw4300) (Char vyw4500)",fontsize=16,color="black",shape="box"];1526 -> 1701[label="",style="solid", color="black", weight=3]; 1528 -> 125[label="",style="dashed", color="red", weight=0]; 1528[label="vyw430 == vyw450",fontsize=16,color="magenta"];1528 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1527[label="compare2 vyw430 vyw450 vyw101",fontsize=16,color="burlywood",shape="triangle"];2742[label="vyw101/False",fontsize=10,color="white",style="solid",shape="box"];1527 -> 2742[label="",style="solid", color="burlywood", weight=9]; 2742 -> 1704[label="",style="solid", color="burlywood", weight=3]; 2743[label="vyw101/True",fontsize=10,color="white",style="solid",shape="box"];1527 -> 2743[label="",style="solid", color="burlywood", weight=9]; 2743 -> 1705[label="",style="solid", color="burlywood", weight=3]; 1530 -> 123[label="",style="dashed", color="red", weight=0]; 1530[label="vyw430 == vyw450",fontsize=16,color="magenta"];1530 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1529[label="compare2 vyw430 vyw450 vyw102",fontsize=16,color="burlywood",shape="triangle"];2744[label="vyw102/False",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2744[label="",style="solid", color="burlywood", weight=9]; 2744 -> 1708[label="",style="solid", color="burlywood", weight=3]; 2745[label="vyw102/True",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2745[label="",style="solid", color="burlywood", weight=9]; 2745 -> 1709[label="",style="solid", color="burlywood", weight=3]; 1531[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="blue",shape="box"];2746[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1531 -> 2746[label="",style="solid", color="blue", weight=9]; 2746 -> 1710[label="",style="solid", color="blue", weight=3]; 2747[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1531 -> 2747[label="",style="solid", color="blue", weight=9]; 2747 -> 1711[label="",style="solid", color="blue", weight=3]; 1532[label="vyw430",fontsize=16,color="green",shape="box"];1533[label="vyw450",fontsize=16,color="green",shape="box"];1534 -> 134[label="",style="dashed", color="red", weight=0]; 1534[label="vyw430 == vyw450",fontsize=16,color="magenta"];1534 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1536 -> 132[label="",style="dashed", color="red", weight=0]; 1536[label="vyw430 == vyw450",fontsize=16,color="magenta"];1536 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1535[label="compare2 vyw430 vyw450 vyw103",fontsize=16,color="burlywood",shape="triangle"];2748[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];1535 -> 2748[label="",style="solid", color="burlywood", weight=9]; 2748 -> 1716[label="",style="solid", color="burlywood", weight=3]; 2749[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];1535 -> 2749[label="",style="solid", color="burlywood", weight=9]; 2749 -> 1717[label="",style="solid", color="burlywood", weight=3]; 1538 -> 126[label="",style="dashed", color="red", weight=0]; 1538[label="vyw430 == vyw450",fontsize=16,color="magenta"];1538 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1537[label="compare2 vyw430 vyw450 vyw104",fontsize=16,color="burlywood",shape="triangle"];2750[label="vyw104/False",fontsize=10,color="white",style="solid",shape="box"];1537 -> 2750[label="",style="solid", color="burlywood", weight=9]; 2750 -> 1720[label="",style="solid", color="burlywood", weight=3]; 2751[label="vyw104/True",fontsize=10,color="white",style="solid",shape="box"];1537 -> 2751[label="",style="solid", color="burlywood", weight=9]; 2751 -> 1721[label="",style="solid", color="burlywood", weight=3]; 1539 -> 1405[label="",style="dashed", color="red", weight=0]; 1539[label="primCmpInt vyw4300 vyw4500",fontsize=16,color="magenta"];1539 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1724[label="",style="dashed", color="red", weight=0]; 1540[label="primCompAux vyw4300 vyw4500 (compare vyw4301 vyw4501)",fontsize=16,color="magenta"];1540 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1541[label="GT",fontsize=16,color="green",shape="box"];1542[label="LT",fontsize=16,color="green",shape="box"];1543[label="EQ",fontsize=16,color="green",shape="box"];1545 -> 127[label="",style="dashed", color="red", weight=0]; 1545[label="vyw430 == vyw450",fontsize=16,color="magenta"];1545 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1544[label="compare2 vyw430 vyw450 vyw105",fontsize=16,color="burlywood",shape="triangle"];2752[label="vyw105/False",fontsize=10,color="white",style="solid",shape="box"];1544 -> 2752[label="",style="solid", color="burlywood", weight=9]; 2752 -> 1728[label="",style="solid", color="burlywood", weight=3]; 2753[label="vyw105/True",fontsize=10,color="white",style="solid",shape="box"];1544 -> 2753[label="",style="solid", color="burlywood", weight=9]; 2753 -> 1729[label="",style="solid", color="burlywood", weight=3]; 1546[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2754[label="vyw450/Float vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2754[label="",style="solid", color="burlywood", weight=9]; 2754 -> 1730[label="",style="solid", color="burlywood", weight=3]; 1547[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2755[label="vyw450/Float vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1547 -> 2755[label="",style="solid", color="burlywood", weight=9]; 2755 -> 1731[label="",style="solid", color="burlywood", weight=3]; 1548[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2756[label="vyw450/Double vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1548 -> 2756[label="",style="solid", color="burlywood", weight=9]; 2756 -> 1732[label="",style="solid", color="burlywood", weight=3]; 1549[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2757[label="vyw450/Double vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1549 -> 2757[label="",style="solid", color="burlywood", weight=9]; 2757 -> 1733[label="",style="solid", color="burlywood", weight=3]; 1550[label="EQ",fontsize=16,color="green",shape="box"];1551[label="primCmpInt (Pos (Succ vyw43000)) vyw450",fontsize=16,color="burlywood",shape="box"];2758[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1551 -> 2758[label="",style="solid", color="burlywood", weight=9]; 2758 -> 1734[label="",style="solid", color="burlywood", weight=3]; 2759[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1551 -> 2759[label="",style="solid", color="burlywood", weight=9]; 2759 -> 1735[label="",style="solid", color="burlywood", weight=3]; 1552[label="primCmpInt (Pos Zero) vyw450",fontsize=16,color="burlywood",shape="box"];2760[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1552 -> 2760[label="",style="solid", color="burlywood", weight=9]; 2760 -> 1736[label="",style="solid", color="burlywood", weight=3]; 2761[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1552 -> 2761[label="",style="solid", color="burlywood", weight=9]; 2761 -> 1737[label="",style="solid", color="burlywood", weight=3]; 1553[label="primCmpInt (Neg (Succ vyw43000)) vyw450",fontsize=16,color="burlywood",shape="box"];2762[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1553 -> 2762[label="",style="solid", color="burlywood", weight=9]; 2762 -> 1738[label="",style="solid", color="burlywood", weight=3]; 2763[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1553 -> 2763[label="",style="solid", color="burlywood", weight=9]; 2763 -> 1739[label="",style="solid", color="burlywood", weight=3]; 1554[label="primCmpInt (Neg Zero) vyw450",fontsize=16,color="burlywood",shape="box"];2764[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1554 -> 2764[label="",style="solid", color="burlywood", weight=9]; 2764 -> 1740[label="",style="solid", color="burlywood", weight=3]; 2765[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1554 -> 2765[label="",style="solid", color="burlywood", weight=9]; 2765 -> 1741[label="",style="solid", color="burlywood", weight=3]; 1555[label="GT",fontsize=16,color="green",shape="box"];1187[label="Succ (Succ (primPlusNat vyw830 vyw300000))",fontsize=16,color="green",shape="box"];1187 -> 1190[label="",style="dashed", color="green", weight=3]; 1188[label="Succ vyw300000",fontsize=16,color="green",shape="box"];1556[label="vyw451",fontsize=16,color="green",shape="box"];1557[label="vyw431",fontsize=16,color="green",shape="box"];1558[label="True",fontsize=16,color="green",shape="box"];1559[label="False",fontsize=16,color="green",shape="box"];1560[label="vyw4510",fontsize=16,color="green",shape="box"];1561[label="vyw4310",fontsize=16,color="green",shape="box"];1562[label="vyw4510",fontsize=16,color="green",shape="box"];1563[label="vyw4310",fontsize=16,color="green",shape="box"];1564[label="vyw4510",fontsize=16,color="green",shape="box"];1565[label="vyw4310",fontsize=16,color="green",shape="box"];1566[label="vyw4510",fontsize=16,color="green",shape="box"];1567[label="vyw4310",fontsize=16,color="green",shape="box"];1568[label="vyw4510",fontsize=16,color="green",shape="box"];1569[label="vyw4310",fontsize=16,color="green",shape="box"];1570[label="vyw4510",fontsize=16,color="green",shape="box"];1571[label="vyw4310",fontsize=16,color="green",shape="box"];1572[label="vyw4510",fontsize=16,color="green",shape="box"];1573[label="vyw4310",fontsize=16,color="green",shape="box"];1574[label="vyw4510",fontsize=16,color="green",shape="box"];1575[label="vyw4310",fontsize=16,color="green",shape="box"];1576[label="vyw4510",fontsize=16,color="green",shape="box"];1577[label="vyw4310",fontsize=16,color="green",shape="box"];1578[label="vyw4510",fontsize=16,color="green",shape="box"];1579[label="vyw4310",fontsize=16,color="green",shape="box"];1580[label="vyw4510",fontsize=16,color="green",shape="box"];1581[label="vyw4310",fontsize=16,color="green",shape="box"];1582[label="vyw4510",fontsize=16,color="green",shape="box"];1583[label="vyw4310",fontsize=16,color="green",shape="box"];1584[label="vyw4510",fontsize=16,color="green",shape="box"];1585[label="vyw4310",fontsize=16,color="green",shape="box"];1586[label="vyw4510",fontsize=16,color="green",shape="box"];1587[label="vyw4310",fontsize=16,color="green",shape="box"];1588[label="vyw4510",fontsize=16,color="green",shape="box"];1589[label="vyw4310",fontsize=16,color="green",shape="box"];1590[label="vyw4510",fontsize=16,color="green",shape="box"];1591[label="vyw4310",fontsize=16,color="green",shape="box"];1592[label="vyw4510",fontsize=16,color="green",shape="box"];1593[label="vyw4310",fontsize=16,color="green",shape="box"];1594[label="vyw4510",fontsize=16,color="green",shape="box"];1595[label="vyw4310",fontsize=16,color="green",shape="box"];1596[label="vyw4510",fontsize=16,color="green",shape="box"];1597[label="vyw4310",fontsize=16,color="green",shape="box"];1598[label="vyw4510",fontsize=16,color="green",shape="box"];1599[label="vyw4310",fontsize=16,color="green",shape="box"];1600[label="vyw4510",fontsize=16,color="green",shape="box"];1601[label="vyw4310",fontsize=16,color="green",shape="box"];1602[label="vyw4510",fontsize=16,color="green",shape="box"];1603[label="vyw4310",fontsize=16,color="green",shape="box"];1604[label="vyw4510",fontsize=16,color="green",shape="box"];1605[label="vyw4310",fontsize=16,color="green",shape="box"];1606[label="vyw4510",fontsize=16,color="green",shape="box"];1607[label="vyw4310",fontsize=16,color="green",shape="box"];1608[label="vyw4510",fontsize=16,color="green",shape="box"];1609[label="vyw4310",fontsize=16,color="green",shape="box"];1610[label="vyw4510",fontsize=16,color="green",shape="box"];1611[label="vyw4310",fontsize=16,color="green",shape="box"];1612[label="vyw4510",fontsize=16,color="green",shape="box"];1613[label="vyw4310",fontsize=16,color="green",shape="box"];1614[label="vyw4510",fontsize=16,color="green",shape="box"];1615[label="vyw4310",fontsize=16,color="green",shape="box"];1616[label="vyw451",fontsize=16,color="green",shape="box"];1617[label="vyw431",fontsize=16,color="green",shape="box"];1627[label="vyw4310 == vyw4510",fontsize=16,color="blue",shape="box"];2766[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2766[label="",style="solid", color="blue", weight=9]; 2766 -> 1742[label="",style="solid", color="blue", weight=3]; 2767[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2767[label="",style="solid", color="blue", weight=9]; 2767 -> 1743[label="",style="solid", color="blue", weight=3]; 2768[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2768[label="",style="solid", color="blue", weight=9]; 2768 -> 1744[label="",style="solid", color="blue", weight=3]; 2769[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2769[label="",style="solid", color="blue", weight=9]; 2769 -> 1745[label="",style="solid", color="blue", weight=3]; 2770[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2770[label="",style="solid", color="blue", weight=9]; 2770 -> 1746[label="",style="solid", color="blue", weight=3]; 2771[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2771[label="",style="solid", color="blue", weight=9]; 2771 -> 1747[label="",style="solid", color="blue", weight=3]; 2772[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2772[label="",style="solid", color="blue", weight=9]; 2772 -> 1748[label="",style="solid", color="blue", weight=3]; 2773[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2773[label="",style="solid", color="blue", weight=9]; 2773 -> 1749[label="",style="solid", color="blue", weight=3]; 2774[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2774[label="",style="solid", color="blue", weight=9]; 2774 -> 1750[label="",style="solid", color="blue", weight=3]; 2775[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2775[label="",style="solid", color="blue", weight=9]; 2775 -> 1751[label="",style="solid", color="blue", weight=3]; 2776[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2776[label="",style="solid", color="blue", weight=9]; 2776 -> 1752[label="",style="solid", color="blue", weight=3]; 2777[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2777[label="",style="solid", color="blue", weight=9]; 2777 -> 1753[label="",style="solid", color="blue", weight=3]; 2778[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2778[label="",style="solid", color="blue", weight=9]; 2778 -> 1754[label="",style="solid", color="blue", weight=3]; 2779[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2779[label="",style="solid", color="blue", weight=9]; 2779 -> 1755[label="",style="solid", color="blue", weight=3]; 1628[label="vyw4311 <= vyw4511",fontsize=16,color="blue",shape="box"];2780[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2780[label="",style="solid", color="blue", weight=9]; 2780 -> 1756[label="",style="solid", color="blue", weight=3]; 2781[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2781[label="",style="solid", color="blue", weight=9]; 2781 -> 1757[label="",style="solid", color="blue", weight=3]; 2782[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2782[label="",style="solid", color="blue", weight=9]; 2782 -> 1758[label="",style="solid", color="blue", weight=3]; 2783[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2783[label="",style="solid", color="blue", weight=9]; 2783 -> 1759[label="",style="solid", color="blue", weight=3]; 2784[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2784[label="",style="solid", color="blue", weight=9]; 2784 -> 1760[label="",style="solid", color="blue", weight=3]; 2785[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2785[label="",style="solid", color="blue", weight=9]; 2785 -> 1761[label="",style="solid", color="blue", weight=3]; 2786[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2786[label="",style="solid", color="blue", weight=9]; 2786 -> 1762[label="",style="solid", color="blue", weight=3]; 2787[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2787[label="",style="solid", color="blue", weight=9]; 2787 -> 1763[label="",style="solid", color="blue", weight=3]; 2788[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2788[label="",style="solid", color="blue", weight=9]; 2788 -> 1764[label="",style="solid", color="blue", weight=3]; 2789[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2789[label="",style="solid", color="blue", weight=9]; 2789 -> 1765[label="",style="solid", color="blue", weight=3]; 2790[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2790[label="",style="solid", color="blue", weight=9]; 2790 -> 1766[label="",style="solid", color="blue", weight=3]; 2791[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2791[label="",style="solid", color="blue", weight=9]; 2791 -> 1767[label="",style="solid", color="blue", weight=3]; 2792[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2792[label="",style="solid", color="blue", weight=9]; 2792 -> 1768[label="",style="solid", color="blue", weight=3]; 2793[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2793[label="",style="solid", color="blue", weight=9]; 2793 -> 1769[label="",style="solid", color="blue", weight=3]; 1629 -> 1213[label="",style="dashed", color="red", weight=0]; 1629[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1629 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1214[label="",style="dashed", color="red", weight=0]; 1630[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1630 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1215[label="",style="dashed", color="red", weight=0]; 1631[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1631 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1216[label="",style="dashed", color="red", weight=0]; 1632[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1632 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1217[label="",style="dashed", color="red", weight=0]; 1633[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1633 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1218[label="",style="dashed", color="red", weight=0]; 1634[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1634 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1635 -> 1219[label="",style="dashed", color="red", weight=0]; 1635[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1635 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1635 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1220[label="",style="dashed", color="red", weight=0]; 1636[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1636 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1221[label="",style="dashed", color="red", weight=0]; 1637[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1637 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1638 -> 1222[label="",style="dashed", color="red", weight=0]; 1638[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1638 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1638 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1223[label="",style="dashed", color="red", weight=0]; 1639[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1639 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1224[label="",style="dashed", color="red", weight=0]; 1640[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1640 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1225[label="",style="dashed", color="red", weight=0]; 1641[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1641 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1226[label="",style="dashed", color="red", weight=0]; 1642[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1642 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1643[label="False || vyw110",fontsize=16,color="black",shape="box"];1643 -> 1798[label="",style="solid", color="black", weight=3]; 1644[label="True || vyw110",fontsize=16,color="black",shape="box"];1644 -> 1799[label="",style="solid", color="black", weight=3]; 1645[label="vyw4310 == vyw4510",fontsize=16,color="blue",shape="box"];2794[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2794[label="",style="solid", color="blue", weight=9]; 2794 -> 1800[label="",style="solid", color="blue", weight=3]; 2795[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2795[label="",style="solid", color="blue", weight=9]; 2795 -> 1801[label="",style="solid", color="blue", weight=3]; 2796[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2796[label="",style="solid", color="blue", weight=9]; 2796 -> 1802[label="",style="solid", color="blue", weight=3]; 2797[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2797[label="",style="solid", color="blue", weight=9]; 2797 -> 1803[label="",style="solid", color="blue", weight=3]; 2798[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2798[label="",style="solid", color="blue", weight=9]; 2798 -> 1804[label="",style="solid", color="blue", weight=3]; 2799[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2799[label="",style="solid", color="blue", weight=9]; 2799 -> 1805[label="",style="solid", color="blue", weight=3]; 2800[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2800[label="",style="solid", color="blue", weight=9]; 2800 -> 1806[label="",style="solid", color="blue", weight=3]; 2801[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2801[label="",style="solid", color="blue", weight=9]; 2801 -> 1807[label="",style="solid", color="blue", weight=3]; 2802[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2802[label="",style="solid", color="blue", weight=9]; 2802 -> 1808[label="",style="solid", color="blue", weight=3]; 2803[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2803[label="",style="solid", color="blue", weight=9]; 2803 -> 1809[label="",style="solid", color="blue", weight=3]; 2804[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2804[label="",style="solid", color="blue", weight=9]; 2804 -> 1810[label="",style="solid", color="blue", weight=3]; 2805[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2805[label="",style="solid", color="blue", weight=9]; 2805 -> 1811[label="",style="solid", color="blue", weight=3]; 2806[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 1812[label="",style="solid", color="blue", weight=3]; 2807[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 1813[label="",style="solid", color="blue", weight=3]; 1646 -> 1620[label="",style="dashed", color="red", weight=0]; 1646[label="vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512",fontsize=16,color="magenta"];1646 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1646 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1213[label="",style="dashed", color="red", weight=0]; 1647[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1647 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1214[label="",style="dashed", color="red", weight=0]; 1648[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1648 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1215[label="",style="dashed", color="red", weight=0]; 1649[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1649 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1216[label="",style="dashed", color="red", weight=0]; 1650[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1650 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1217[label="",style="dashed", color="red", weight=0]; 1651[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1651 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1218[label="",style="dashed", color="red", weight=0]; 1652[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1652 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1219[label="",style="dashed", color="red", weight=0]; 1653[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1653 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1220[label="",style="dashed", color="red", weight=0]; 1654[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1654 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1221[label="",style="dashed", color="red", weight=0]; 1655[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1655 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1222[label="",style="dashed", color="red", weight=0]; 1656[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1656 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1223[label="",style="dashed", color="red", weight=0]; 1657[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1657 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1224[label="",style="dashed", color="red", weight=0]; 1658[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1658 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1225[label="",style="dashed", color="red", weight=0]; 1659[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1659 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1226[label="",style="dashed", color="red", weight=0]; 1660[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1660 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1661[label="vyw451",fontsize=16,color="green",shape="box"];1662[label="vyw431",fontsize=16,color="green",shape="box"];1663[label="vyw451",fontsize=16,color="green",shape="box"];1664[label="vyw431",fontsize=16,color="green",shape="box"];1665[label="vyw4510",fontsize=16,color="green",shape="box"];1666[label="vyw4310",fontsize=16,color="green",shape="box"];1667[label="vyw4510",fontsize=16,color="green",shape="box"];1668[label="vyw4310",fontsize=16,color="green",shape="box"];1669[label="vyw4510",fontsize=16,color="green",shape="box"];1670[label="vyw4310",fontsize=16,color="green",shape="box"];1671[label="vyw4510",fontsize=16,color="green",shape="box"];1672[label="vyw4310",fontsize=16,color="green",shape="box"];1673[label="vyw4510",fontsize=16,color="green",shape="box"];1674[label="vyw4310",fontsize=16,color="green",shape="box"];1675[label="vyw4510",fontsize=16,color="green",shape="box"];1676[label="vyw4310",fontsize=16,color="green",shape="box"];1677[label="vyw4510",fontsize=16,color="green",shape="box"];1678[label="vyw4310",fontsize=16,color="green",shape="box"];1679[label="vyw4510",fontsize=16,color="green",shape="box"];1680[label="vyw4310",fontsize=16,color="green",shape="box"];1681[label="vyw4510",fontsize=16,color="green",shape="box"];1682[label="vyw4310",fontsize=16,color="green",shape="box"];1683[label="vyw4510",fontsize=16,color="green",shape="box"];1684[label="vyw4310",fontsize=16,color="green",shape="box"];1685[label="vyw4510",fontsize=16,color="green",shape="box"];1686[label="vyw4310",fontsize=16,color="green",shape="box"];1687[label="vyw4510",fontsize=16,color="green",shape="box"];1688[label="vyw4310",fontsize=16,color="green",shape="box"];1689[label="vyw4510",fontsize=16,color="green",shape="box"];1690[label="vyw4310",fontsize=16,color="green",shape="box"];1691[label="vyw4510",fontsize=16,color="green",shape="box"];1692[label="vyw4310",fontsize=16,color="green",shape="box"];1693[label="vyw451",fontsize=16,color="green",shape="box"];1694[label="vyw431",fontsize=16,color="green",shape="box"];1695[label="vyw451",fontsize=16,color="green",shape="box"];1696[label="vyw431",fontsize=16,color="green",shape="box"];1697[label="vyw451",fontsize=16,color="green",shape="box"];1698[label="vyw431",fontsize=16,color="green",shape="box"];1699[label="vyw451",fontsize=16,color="green",shape="box"];1700[label="vyw431",fontsize=16,color="green",shape="box"];1701[label="primCmpNat vyw4300 vyw4500",fontsize=16,color="burlywood",shape="triangle"];2808[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1701 -> 2808[label="",style="solid", color="burlywood", weight=9]; 2808 -> 1844[label="",style="solid", color="burlywood", weight=3]; 2809[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1701 -> 2809[label="",style="solid", color="burlywood", weight=9]; 2809 -> 1845[label="",style="solid", color="burlywood", weight=3]; 1702[label="vyw450",fontsize=16,color="green",shape="box"];1703[label="vyw430",fontsize=16,color="green",shape="box"];1704[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1704 -> 1846[label="",style="solid", color="black", weight=3]; 1705[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1705 -> 1847[label="",style="solid", color="black", weight=3]; 1706[label="vyw450",fontsize=16,color="green",shape="box"];1707[label="vyw430",fontsize=16,color="green",shape="box"];1708[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1708 -> 1848[label="",style="solid", color="black", weight=3]; 1709[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1709 -> 1849[label="",style="solid", color="black", weight=3]; 1710 -> 1343[label="",style="dashed", color="red", weight=0]; 1710[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="magenta"];1710 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1710 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1355[label="",style="dashed", color="red", weight=0]; 1711[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="magenta"];1711 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1712[label="vyw450",fontsize=16,color="green",shape="box"];1713[label="vyw430",fontsize=16,color="green",shape="box"];1714[label="vyw450",fontsize=16,color="green",shape="box"];1715[label="vyw430",fontsize=16,color="green",shape="box"];1716[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1716 -> 1854[label="",style="solid", color="black", weight=3]; 1717[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1717 -> 1855[label="",style="solid", color="black", weight=3]; 1718[label="vyw450",fontsize=16,color="green",shape="box"];1719[label="vyw430",fontsize=16,color="green",shape="box"];1720[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1720 -> 1856[label="",style="solid", color="black", weight=3]; 1721[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1721 -> 1857[label="",style="solid", color="black", weight=3]; 1722[label="vyw4500",fontsize=16,color="green",shape="box"];1723[label="vyw4300",fontsize=16,color="green",shape="box"];1725 -> 1345[label="",style="dashed", color="red", weight=0]; 1725[label="compare vyw4301 vyw4501",fontsize=16,color="magenta"];1725 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1724[label="primCompAux vyw4300 vyw4500 vyw111",fontsize=16,color="black",shape="triangle"];1724 -> 1860[label="",style="solid", color="black", weight=3]; 1726[label="vyw450",fontsize=16,color="green",shape="box"];1727[label="vyw430",fontsize=16,color="green",shape="box"];1728[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1728 -> 1861[label="",style="solid", color="black", weight=3]; 1729[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1729 -> 1862[label="",style="solid", color="black", weight=3]; 1730[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2810[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1730 -> 2810[label="",style="solid", color="burlywood", weight=9]; 2810 -> 1863[label="",style="solid", color="burlywood", weight=3]; 2811[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1730 -> 2811[label="",style="solid", color="burlywood", weight=9]; 2811 -> 1864[label="",style="solid", color="burlywood", weight=3]; 1731[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2812[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1731 -> 2812[label="",style="solid", color="burlywood", weight=9]; 2812 -> 1865[label="",style="solid", color="burlywood", weight=3]; 2813[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1731 -> 2813[label="",style="solid", color="burlywood", weight=9]; 2813 -> 1866[label="",style="solid", color="burlywood", weight=3]; 1732[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2814[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1732 -> 2814[label="",style="solid", color="burlywood", weight=9]; 2814 -> 1867[label="",style="solid", color="burlywood", weight=3]; 2815[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1732 -> 2815[label="",style="solid", color="burlywood", weight=9]; 2815 -> 1868[label="",style="solid", color="burlywood", weight=3]; 1733[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2816[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1733 -> 2816[label="",style="solid", color="burlywood", weight=9]; 2816 -> 1869[label="",style="solid", color="burlywood", weight=3]; 2817[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1733 -> 2817[label="",style="solid", color="burlywood", weight=9]; 2817 -> 1870[label="",style="solid", color="burlywood", weight=3]; 1734[label="primCmpInt (Pos (Succ vyw43000)) (Pos vyw4500)",fontsize=16,color="black",shape="box"];1734 -> 1871[label="",style="solid", color="black", weight=3]; 1735[label="primCmpInt (Pos (Succ vyw43000)) (Neg vyw4500)",fontsize=16,color="black",shape="box"];1735 -> 1872[label="",style="solid", color="black", weight=3]; 1736[label="primCmpInt (Pos Zero) (Pos vyw4500)",fontsize=16,color="burlywood",shape="box"];2818[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2818[label="",style="solid", color="burlywood", weight=9]; 2818 -> 1873[label="",style="solid", color="burlywood", weight=3]; 2819[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2819[label="",style="solid", color="burlywood", weight=9]; 2819 -> 1874[label="",style="solid", color="burlywood", weight=3]; 1737[label="primCmpInt (Pos Zero) (Neg vyw4500)",fontsize=16,color="burlywood",shape="box"];2820[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1737 -> 2820[label="",style="solid", color="burlywood", weight=9]; 2820 -> 1875[label="",style="solid", color="burlywood", weight=3]; 2821[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1737 -> 2821[label="",style="solid", color="burlywood", weight=9]; 2821 -> 1876[label="",style="solid", color="burlywood", weight=3]; 1738[label="primCmpInt (Neg (Succ vyw43000)) (Pos vyw4500)",fontsize=16,color="black",shape="box"];1738 -> 1877[label="",style="solid", color="black", weight=3]; 1739[label="primCmpInt (Neg (Succ vyw43000)) (Neg vyw4500)",fontsize=16,color="black",shape="box"];1739 -> 1878[label="",style="solid", color="black", weight=3]; 1740[label="primCmpInt (Neg Zero) (Pos vyw4500)",fontsize=16,color="burlywood",shape="box"];2822[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1740 -> 2822[label="",style="solid", color="burlywood", weight=9]; 2822 -> 1879[label="",style="solid", color="burlywood", weight=3]; 2823[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1740 -> 2823[label="",style="solid", color="burlywood", weight=9]; 2823 -> 1880[label="",style="solid", color="burlywood", weight=3]; 1741[label="primCmpInt (Neg Zero) (Neg vyw4500)",fontsize=16,color="burlywood",shape="box"];2824[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1741 -> 2824[label="",style="solid", color="burlywood", weight=9]; 2824 -> 1881[label="",style="solid", color="burlywood", weight=3]; 2825[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1741 -> 2825[label="",style="solid", color="burlywood", weight=9]; 2825 -> 1882[label="",style="solid", color="burlywood", weight=3]; 1190[label="primPlusNat vyw830 vyw300000",fontsize=16,color="burlywood",shape="triangle"];2826[label="vyw830/Succ vyw8300",fontsize=10,color="white",style="solid",shape="box"];1190 -> 2826[label="",style="solid", color="burlywood", weight=9]; 2826 -> 1192[label="",style="solid", color="burlywood", weight=3]; 2827[label="vyw830/Zero",fontsize=10,color="white",style="solid",shape="box"];1190 -> 2827[label="",style="solid", color="burlywood", weight=9]; 2827 -> 1193[label="",style="solid", color="burlywood", weight=3]; 1742 -> 124[label="",style="dashed", color="red", weight=0]; 1742[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1742 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1743 -> 125[label="",style="dashed", color="red", weight=0]; 1743[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1743 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1744 -> 123[label="",style="dashed", color="red", weight=0]; 1744[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1744 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1745 -> 130[label="",style="dashed", color="red", weight=0]; 1745[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1745 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1746 -> 134[label="",style="dashed", color="red", weight=0]; 1746[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1746 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1747 -> 132[label="",style="dashed", color="red", weight=0]; 1747[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1747 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1748 -> 126[label="",style="dashed", color="red", weight=0]; 1748[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1748 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1749 -> 121[label="",style="dashed", color="red", weight=0]; 1749[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1749 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1750 -> 128[label="",style="dashed", color="red", weight=0]; 1750[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1750 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1751 -> 127[label="",style="dashed", color="red", weight=0]; 1751[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1751 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1752 -> 129[label="",style="dashed", color="red", weight=0]; 1752[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1752 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1753 -> 131[label="",style="dashed", color="red", weight=0]; 1753[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1753 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1754 -> 122[label="",style="dashed", color="red", weight=0]; 1754[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1754 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1755 -> 133[label="",style="dashed", color="red", weight=0]; 1755[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1755 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1247[label="",style="dashed", color="red", weight=0]; 1756[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1756 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1248[label="",style="dashed", color="red", weight=0]; 1757[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1757 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1249[label="",style="dashed", color="red", weight=0]; 1758[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1758 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1250[label="",style="dashed", color="red", weight=0]; 1759[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1759 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1251[label="",style="dashed", color="red", weight=0]; 1760[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1760 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1252[label="",style="dashed", color="red", weight=0]; 1761[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1761 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1253[label="",style="dashed", color="red", weight=0]; 1762[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1762 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1254[label="",style="dashed", color="red", weight=0]; 1763[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1763 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1255[label="",style="dashed", color="red", weight=0]; 1764[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1764 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1256[label="",style="dashed", color="red", weight=0]; 1765[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1765 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1257[label="",style="dashed", color="red", weight=0]; 1766[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1766 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1258[label="",style="dashed", color="red", weight=0]; 1767[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1767 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1259[label="",style="dashed", color="red", weight=0]; 1768[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1768 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1260[label="",style="dashed", color="red", weight=0]; 1769[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1769 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1770[label="vyw4510",fontsize=16,color="green",shape="box"];1771[label="vyw4310",fontsize=16,color="green",shape="box"];1772[label="vyw4510",fontsize=16,color="green",shape="box"];1773[label="vyw4310",fontsize=16,color="green",shape="box"];1774[label="vyw4510",fontsize=16,color="green",shape="box"];1775[label="vyw4310",fontsize=16,color="green",shape="box"];1776[label="vyw4510",fontsize=16,color="green",shape="box"];1777[label="vyw4310",fontsize=16,color="green",shape="box"];1778[label="vyw4510",fontsize=16,color="green",shape="box"];1779[label="vyw4310",fontsize=16,color="green",shape="box"];1780[label="vyw4510",fontsize=16,color="green",shape="box"];1781[label="vyw4310",fontsize=16,color="green",shape="box"];1782[label="vyw4510",fontsize=16,color="green",shape="box"];1783[label="vyw4310",fontsize=16,color="green",shape="box"];1784[label="vyw4510",fontsize=16,color="green",shape="box"];1785[label="vyw4310",fontsize=16,color="green",shape="box"];1786[label="vyw4510",fontsize=16,color="green",shape="box"];1787[label="vyw4310",fontsize=16,color="green",shape="box"];1788[label="vyw4510",fontsize=16,color="green",shape="box"];1789[label="vyw4310",fontsize=16,color="green",shape="box"];1790[label="vyw4510",fontsize=16,color="green",shape="box"];1791[label="vyw4310",fontsize=16,color="green",shape="box"];1792[label="vyw4510",fontsize=16,color="green",shape="box"];1793[label="vyw4310",fontsize=16,color="green",shape="box"];1794[label="vyw4510",fontsize=16,color="green",shape="box"];1795[label="vyw4310",fontsize=16,color="green",shape="box"];1796[label="vyw4510",fontsize=16,color="green",shape="box"];1797[label="vyw4310",fontsize=16,color="green",shape="box"];1798[label="vyw110",fontsize=16,color="green",shape="box"];1799[label="True",fontsize=16,color="green",shape="box"];1800 -> 124[label="",style="dashed", color="red", weight=0]; 1800[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1800 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1800 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1801 -> 125[label="",style="dashed", color="red", weight=0]; 1801[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1801 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1801 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1802 -> 123[label="",style="dashed", color="red", weight=0]; 1802[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1802 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1802 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1803 -> 130[label="",style="dashed", color="red", weight=0]; 1803[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1803 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1803 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1804 -> 134[label="",style="dashed", color="red", weight=0]; 1804[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1804 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1804 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1805 -> 132[label="",style="dashed", color="red", weight=0]; 1805[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1805 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1805 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1806 -> 126[label="",style="dashed", color="red", weight=0]; 1806[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1806 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1806 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1807 -> 121[label="",style="dashed", color="red", weight=0]; 1807[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1807 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1807 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1808 -> 128[label="",style="dashed", color="red", weight=0]; 1808[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1808 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1808 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1809 -> 127[label="",style="dashed", color="red", weight=0]; 1809[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1809 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1809 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1810 -> 129[label="",style="dashed", color="red", weight=0]; 1810[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1810 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1810 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1811 -> 131[label="",style="dashed", color="red", weight=0]; 1811[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1811 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1811 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1812 -> 122[label="",style="dashed", color="red", weight=0]; 1812[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1812 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1812 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1813 -> 133[label="",style="dashed", color="red", weight=0]; 1813[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1813 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1813 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1814 -> 415[label="",style="dashed", color="red", weight=0]; 1814[label="vyw4311 == vyw4511 && vyw4312 <= vyw4512",fontsize=16,color="magenta"];1814 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1814 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1815[label="vyw4311 < vyw4511",fontsize=16,color="blue",shape="box"];2828[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 1969[label="",style="solid", color="blue", weight=3]; 2829[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2829[label="",style="solid", color="blue", weight=9]; 2829 -> 1970[label="",style="solid", color="blue", weight=3]; 2830[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2830[label="",style="solid", color="blue", weight=9]; 2830 -> 1971[label="",style="solid", color="blue", weight=3]; 2831[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 1972[label="",style="solid", color="blue", weight=3]; 2832[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 1973[label="",style="solid", color="blue", weight=3]; 2833[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 1974[label="",style="solid", color="blue", weight=3]; 2834[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2834[label="",style="solid", color="blue", weight=9]; 2834 -> 1975[label="",style="solid", color="blue", weight=3]; 2835[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 1976[label="",style="solid", color="blue", weight=3]; 2836[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 1977[label="",style="solid", color="blue", weight=3]; 2837[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 1978[label="",style="solid", color="blue", weight=3]; 2838[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2838[label="",style="solid", color="blue", weight=9]; 2838 -> 1979[label="",style="solid", color="blue", weight=3]; 2839[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2839[label="",style="solid", color="blue", weight=9]; 2839 -> 1980[label="",style="solid", color="blue", weight=3]; 2840[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2840[label="",style="solid", color="blue", weight=9]; 2840 -> 1981[label="",style="solid", color="blue", weight=3]; 2841[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2841[label="",style="solid", color="blue", weight=9]; 2841 -> 1982[label="",style="solid", color="blue", weight=3]; 1816[label="vyw4510",fontsize=16,color="green",shape="box"];1817[label="vyw4310",fontsize=16,color="green",shape="box"];1818[label="vyw4510",fontsize=16,color="green",shape="box"];1819[label="vyw4310",fontsize=16,color="green",shape="box"];1820[label="vyw4510",fontsize=16,color="green",shape="box"];1821[label="vyw4310",fontsize=16,color="green",shape="box"];1822[label="vyw4510",fontsize=16,color="green",shape="box"];1823[label="vyw4310",fontsize=16,color="green",shape="box"];1824[label="vyw4510",fontsize=16,color="green",shape="box"];1825[label="vyw4310",fontsize=16,color="green",shape="box"];1826[label="vyw4510",fontsize=16,color="green",shape="box"];1827[label="vyw4310",fontsize=16,color="green",shape="box"];1828[label="vyw4510",fontsize=16,color="green",shape="box"];1829[label="vyw4310",fontsize=16,color="green",shape="box"];1830[label="vyw4510",fontsize=16,color="green",shape="box"];1831[label="vyw4310",fontsize=16,color="green",shape="box"];1832[label="vyw4510",fontsize=16,color="green",shape="box"];1833[label="vyw4310",fontsize=16,color="green",shape="box"];1834[label="vyw4510",fontsize=16,color="green",shape="box"];1835[label="vyw4310",fontsize=16,color="green",shape="box"];1836[label="vyw4510",fontsize=16,color="green",shape="box"];1837[label="vyw4310",fontsize=16,color="green",shape="box"];1838[label="vyw4510",fontsize=16,color="green",shape="box"];1839[label="vyw4310",fontsize=16,color="green",shape="box"];1840[label="vyw4510",fontsize=16,color="green",shape="box"];1841[label="vyw4310",fontsize=16,color="green",shape="box"];1842[label="vyw4510",fontsize=16,color="green",shape="box"];1843[label="vyw4310",fontsize=16,color="green",shape="box"];1844[label="primCmpNat (Succ vyw43000) vyw4500",fontsize=16,color="burlywood",shape="box"];2842[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1844 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 1983[label="",style="solid", color="burlywood", weight=3]; 2843[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1844 -> 2843[label="",style="solid", color="burlywood", weight=9]; 2843 -> 1984[label="",style="solid", color="burlywood", weight=3]; 1845[label="primCmpNat Zero vyw4500",fontsize=16,color="burlywood",shape="box"];2844[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1845 -> 2844[label="",style="solid", color="burlywood", weight=9]; 2844 -> 1985[label="",style="solid", color="burlywood", weight=3]; 2845[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1845 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 1986[label="",style="solid", color="burlywood", weight=3]; 1846 -> 1987[label="",style="dashed", color="red", weight=0]; 1846[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1846 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1847[label="EQ",fontsize=16,color="green",shape="box"];1848 -> 1989[label="",style="dashed", color="red", weight=0]; 1848[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1848 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1849[label="EQ",fontsize=16,color="green",shape="box"];1850[label="vyw4500 * vyw4301",fontsize=16,color="burlywood",shape="triangle"];2846[label="vyw4500/Integer vyw45000",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 1991[label="",style="solid", color="burlywood", weight=3]; 1851 -> 1850[label="",style="dashed", color="red", weight=0]; 1851[label="vyw4300 * vyw4501",fontsize=16,color="magenta"];1851 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1851 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1852 -> 490[label="",style="dashed", color="red", weight=0]; 1852[label="vyw4500 * vyw4301",fontsize=16,color="magenta"];1852 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1852 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1853 -> 490[label="",style="dashed", color="red", weight=0]; 1853[label="vyw4300 * vyw4501",fontsize=16,color="magenta"];1853 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1853 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1854 -> 1998[label="",style="dashed", color="red", weight=0]; 1854[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1854 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1855[label="EQ",fontsize=16,color="green",shape="box"];1856 -> 2000[label="",style="dashed", color="red", weight=0]; 1856[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1856 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1857[label="EQ",fontsize=16,color="green",shape="box"];1858[label="vyw4501",fontsize=16,color="green",shape="box"];1859[label="vyw4301",fontsize=16,color="green",shape="box"];1860 -> 2002[label="",style="dashed", color="red", weight=0]; 1860[label="primCompAux0 vyw111 (compare vyw4300 vyw4500)",fontsize=16,color="magenta"];1860 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1860 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2005[label="",style="dashed", color="red", weight=0]; 1861[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1861 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1862[label="EQ",fontsize=16,color="green",shape="box"];1863[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1863 -> 2007[label="",style="solid", color="black", weight=3]; 1864[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1864 -> 2008[label="",style="solid", color="black", weight=3]; 1865[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1865 -> 2009[label="",style="solid", color="black", weight=3]; 1866[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1866 -> 2010[label="",style="solid", color="black", weight=3]; 1867[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1867 -> 2011[label="",style="solid", color="black", weight=3]; 1868[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1868 -> 2012[label="",style="solid", color="black", weight=3]; 1869[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1869 -> 2013[label="",style="solid", color="black", weight=3]; 1870[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1870 -> 2014[label="",style="solid", color="black", weight=3]; 1871 -> 1701[label="",style="dashed", color="red", weight=0]; 1871[label="primCmpNat (Succ vyw43000) vyw4500",fontsize=16,color="magenta"];1871 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1872[label="GT",fontsize=16,color="green",shape="box"];1873[label="primCmpInt (Pos Zero) (Pos (Succ vyw45000))",fontsize=16,color="black",shape="box"];1873 -> 2017[label="",style="solid", color="black", weight=3]; 1874[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1874 -> 2018[label="",style="solid", color="black", weight=3]; 1875[label="primCmpInt (Pos Zero) (Neg (Succ vyw45000))",fontsize=16,color="black",shape="box"];1875 -> 2019[label="",style="solid", color="black", weight=3]; 1876[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1876 -> 2020[label="",style="solid", color="black", weight=3]; 1877[label="LT",fontsize=16,color="green",shape="box"];1878 -> 1701[label="",style="dashed", color="red", weight=0]; 1878[label="primCmpNat vyw4500 (Succ vyw43000)",fontsize=16,color="magenta"];1878 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1879[label="primCmpInt (Neg Zero) (Pos (Succ vyw45000))",fontsize=16,color="black",shape="box"];1879 -> 2023[label="",style="solid", color="black", weight=3]; 1880[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1880 -> 2024[label="",style="solid", color="black", weight=3]; 1881[label="primCmpInt (Neg Zero) (Neg (Succ vyw45000))",fontsize=16,color="black",shape="box"];1881 -> 2025[label="",style="solid", color="black", weight=3]; 1882[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1882 -> 2026[label="",style="solid", color="black", weight=3]; 1192[label="primPlusNat (Succ vyw8300) vyw300000",fontsize=16,color="burlywood",shape="box"];2847[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];1192 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 1229[label="",style="solid", color="burlywood", weight=3]; 2848[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];1192 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 1230[label="",style="solid", color="burlywood", weight=3]; 1193[label="primPlusNat Zero vyw300000",fontsize=16,color="burlywood",shape="box"];2849[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];1193 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 1231[label="",style="solid", color="burlywood", weight=3]; 2850[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];1193 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 1232[label="",style="solid", color="burlywood", weight=3]; 1883[label="vyw4510",fontsize=16,color="green",shape="box"];1884[label="vyw4310",fontsize=16,color="green",shape="box"];1885[label="vyw4510",fontsize=16,color="green",shape="box"];1886[label="vyw4310",fontsize=16,color="green",shape="box"];1887[label="vyw4510",fontsize=16,color="green",shape="box"];1888[label="vyw4310",fontsize=16,color="green",shape="box"];1889[label="vyw4510",fontsize=16,color="green",shape="box"];1890[label="vyw4310",fontsize=16,color="green",shape="box"];1891[label="vyw4510",fontsize=16,color="green",shape="box"];1892[label="vyw4310",fontsize=16,color="green",shape="box"];1893[label="vyw4510",fontsize=16,color="green",shape="box"];1894[label="vyw4310",fontsize=16,color="green",shape="box"];1895[label="vyw4510",fontsize=16,color="green",shape="box"];1896[label="vyw4310",fontsize=16,color="green",shape="box"];1897[label="vyw4510",fontsize=16,color="green",shape="box"];1898[label="vyw4310",fontsize=16,color="green",shape="box"];1899[label="vyw4510",fontsize=16,color="green",shape="box"];1900[label="vyw4310",fontsize=16,color="green",shape="box"];1901[label="vyw4510",fontsize=16,color="green",shape="box"];1902[label="vyw4310",fontsize=16,color="green",shape="box"];1903[label="vyw4510",fontsize=16,color="green",shape="box"];1904[label="vyw4310",fontsize=16,color="green",shape="box"];1905[label="vyw4510",fontsize=16,color="green",shape="box"];1906[label="vyw4310",fontsize=16,color="green",shape="box"];1907[label="vyw4510",fontsize=16,color="green",shape="box"];1908[label="vyw4310",fontsize=16,color="green",shape="box"];1909[label="vyw4510",fontsize=16,color="green",shape="box"];1910[label="vyw4310",fontsize=16,color="green",shape="box"];1911[label="vyw4511",fontsize=16,color="green",shape="box"];1912[label="vyw4311",fontsize=16,color="green",shape="box"];1913[label="vyw4511",fontsize=16,color="green",shape="box"];1914[label="vyw4311",fontsize=16,color="green",shape="box"];1915[label="vyw4511",fontsize=16,color="green",shape="box"];1916[label="vyw4311",fontsize=16,color="green",shape="box"];1917[label="vyw4511",fontsize=16,color="green",shape="box"];1918[label="vyw4311",fontsize=16,color="green",shape="box"];1919[label="vyw4511",fontsize=16,color="green",shape="box"];1920[label="vyw4311",fontsize=16,color="green",shape="box"];1921[label="vyw4511",fontsize=16,color="green",shape="box"];1922[label="vyw4311",fontsize=16,color="green",shape="box"];1923[label="vyw4511",fontsize=16,color="green",shape="box"];1924[label="vyw4311",fontsize=16,color="green",shape="box"];1925[label="vyw4511",fontsize=16,color="green",shape="box"];1926[label="vyw4311",fontsize=16,color="green",shape="box"];1927[label="vyw4511",fontsize=16,color="green",shape="box"];1928[label="vyw4311",fontsize=16,color="green",shape="box"];1929[label="vyw4511",fontsize=16,color="green",shape="box"];1930[label="vyw4311",fontsize=16,color="green",shape="box"];1931[label="vyw4511",fontsize=16,color="green",shape="box"];1932[label="vyw4311",fontsize=16,color="green",shape="box"];1933[label="vyw4511",fontsize=16,color="green",shape="box"];1934[label="vyw4311",fontsize=16,color="green",shape="box"];1935[label="vyw4511",fontsize=16,color="green",shape="box"];1936[label="vyw4311",fontsize=16,color="green",shape="box"];1937[label="vyw4511",fontsize=16,color="green",shape="box"];1938[label="vyw4311",fontsize=16,color="green",shape="box"];1939[label="vyw4510",fontsize=16,color="green",shape="box"];1940[label="vyw4310",fontsize=16,color="green",shape="box"];1941[label="vyw4510",fontsize=16,color="green",shape="box"];1942[label="vyw4310",fontsize=16,color="green",shape="box"];1943[label="vyw4510",fontsize=16,color="green",shape="box"];1944[label="vyw4310",fontsize=16,color="green",shape="box"];1945[label="vyw4510",fontsize=16,color="green",shape="box"];1946[label="vyw4310",fontsize=16,color="green",shape="box"];1947[label="vyw4510",fontsize=16,color="green",shape="box"];1948[label="vyw4310",fontsize=16,color="green",shape="box"];1949[label="vyw4510",fontsize=16,color="green",shape="box"];1950[label="vyw4310",fontsize=16,color="green",shape="box"];1951[label="vyw4510",fontsize=16,color="green",shape="box"];1952[label="vyw4310",fontsize=16,color="green",shape="box"];1953[label="vyw4510",fontsize=16,color="green",shape="box"];1954[label="vyw4310",fontsize=16,color="green",shape="box"];1955[label="vyw4510",fontsize=16,color="green",shape="box"];1956[label="vyw4310",fontsize=16,color="green",shape="box"];1957[label="vyw4510",fontsize=16,color="green",shape="box"];1958[label="vyw4310",fontsize=16,color="green",shape="box"];1959[label="vyw4510",fontsize=16,color="green",shape="box"];1960[label="vyw4310",fontsize=16,color="green",shape="box"];1961[label="vyw4510",fontsize=16,color="green",shape="box"];1962[label="vyw4310",fontsize=16,color="green",shape="box"];1963[label="vyw4510",fontsize=16,color="green",shape="box"];1964[label="vyw4310",fontsize=16,color="green",shape="box"];1965[label="vyw4510",fontsize=16,color="green",shape="box"];1966[label="vyw4310",fontsize=16,color="green",shape="box"];1967[label="vyw4311 == vyw4511",fontsize=16,color="blue",shape="box"];2851[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2851[label="",style="solid", color="blue", weight=9]; 2851 -> 2027[label="",style="solid", color="blue", weight=3]; 2852[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2852[label="",style="solid", color="blue", weight=9]; 2852 -> 2028[label="",style="solid", color="blue", weight=3]; 2853[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2853[label="",style="solid", color="blue", weight=9]; 2853 -> 2029[label="",style="solid", color="blue", weight=3]; 2854[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2854[label="",style="solid", color="blue", weight=9]; 2854 -> 2030[label="",style="solid", color="blue", weight=3]; 2855[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2855[label="",style="solid", color="blue", weight=9]; 2855 -> 2031[label="",style="solid", color="blue", weight=3]; 2856[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 2032[label="",style="solid", color="blue", weight=3]; 2857[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2857[label="",style="solid", color="blue", weight=9]; 2857 -> 2033[label="",style="solid", color="blue", weight=3]; 2858[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 2034[label="",style="solid", color="blue", weight=3]; 2859[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 2035[label="",style="solid", color="blue", weight=3]; 2860[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 2036[label="",style="solid", color="blue", weight=3]; 2861[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2861[label="",style="solid", color="blue", weight=9]; 2861 -> 2037[label="",style="solid", color="blue", weight=3]; 2862[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2862[label="",style="solid", color="blue", weight=9]; 2862 -> 2038[label="",style="solid", color="blue", weight=3]; 2863[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 2039[label="",style="solid", color="blue", weight=3]; 2864[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1967 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 2040[label="",style="solid", color="blue", weight=3]; 1968[label="vyw4312 <= vyw4512",fontsize=16,color="blue",shape="box"];2865[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2865[label="",style="solid", color="blue", weight=9]; 2865 -> 2041[label="",style="solid", color="blue", weight=3]; 2866[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 2042[label="",style="solid", color="blue", weight=3]; 2867[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 2043[label="",style="solid", color="blue", weight=3]; 2868[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 2044[label="",style="solid", color="blue", weight=3]; 2869[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2869[label="",style="solid", color="blue", weight=9]; 2869 -> 2045[label="",style="solid", color="blue", weight=3]; 2870[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2870[label="",style="solid", color="blue", weight=9]; 2870 -> 2046[label="",style="solid", color="blue", weight=3]; 2871[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2871[label="",style="solid", color="blue", weight=9]; 2871 -> 2047[label="",style="solid", color="blue", weight=3]; 2872[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2872[label="",style="solid", color="blue", weight=9]; 2872 -> 2048[label="",style="solid", color="blue", weight=3]; 2873[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2873[label="",style="solid", color="blue", weight=9]; 2873 -> 2049[label="",style="solid", color="blue", weight=3]; 2874[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2874[label="",style="solid", color="blue", weight=9]; 2874 -> 2050[label="",style="solid", color="blue", weight=3]; 2875[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2875[label="",style="solid", color="blue", weight=9]; 2875 -> 2051[label="",style="solid", color="blue", weight=3]; 2876[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 2052[label="",style="solid", color="blue", weight=3]; 2877[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 2053[label="",style="solid", color="blue", weight=3]; 2878[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2878[label="",style="solid", color="blue", weight=9]; 2878 -> 2054[label="",style="solid", color="blue", weight=3]; 1969 -> 1213[label="",style="dashed", color="red", weight=0]; 1969[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1969 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1214[label="",style="dashed", color="red", weight=0]; 1970[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1970 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1971 -> 1215[label="",style="dashed", color="red", weight=0]; 1971[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1971 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1216[label="",style="dashed", color="red", weight=0]; 1972[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1972 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1217[label="",style="dashed", color="red", weight=0]; 1973[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1973 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1218[label="",style="dashed", color="red", weight=0]; 1974[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1974 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1219[label="",style="dashed", color="red", weight=0]; 1975[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1975 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1976 -> 1220[label="",style="dashed", color="red", weight=0]; 1976[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1976 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1977 -> 1221[label="",style="dashed", color="red", weight=0]; 1977[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1977 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1978 -> 1222[label="",style="dashed", color="red", weight=0]; 1978[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1978 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1223[label="",style="dashed", color="red", weight=0]; 1979[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1979 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1224[label="",style="dashed", color="red", weight=0]; 1980[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1980 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1225[label="",style="dashed", color="red", weight=0]; 1981[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1981 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1226[label="",style="dashed", color="red", weight=0]; 1982[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1982 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1983[label="primCmpNat (Succ vyw43000) (Succ vyw45000)",fontsize=16,color="black",shape="box"];1983 -> 2083[label="",style="solid", color="black", weight=3]; 1984[label="primCmpNat (Succ vyw43000) Zero",fontsize=16,color="black",shape="box"];1984 -> 2084[label="",style="solid", color="black", weight=3]; 1985[label="primCmpNat Zero (Succ vyw45000)",fontsize=16,color="black",shape="box"];1985 -> 2085[label="",style="solid", color="black", weight=3]; 1986[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1986 -> 2086[label="",style="solid", color="black", weight=3]; 1988 -> 1248[label="",style="dashed", color="red", weight=0]; 1988[label="vyw430 <= vyw450",fontsize=16,color="magenta"];1988 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1987[label="compare1 vyw430 vyw450 vyw112",fontsize=16,color="burlywood",shape="triangle"];2879[label="vyw112/False",fontsize=10,color="white",style="solid",shape="box"];1987 -> 2879[label="",style="solid", color="burlywood", weight=9]; 2879 -> 2089[label="",style="solid", color="burlywood", weight=3]; 2880[label="vyw112/True",fontsize=10,color="white",style="solid",shape="box"];1987 -> 2880[label="",style="solid", color="burlywood", weight=9]; 2880 -> 2090[label="",style="solid", color="burlywood", weight=3]; 1990 -> 1249[label="",style="dashed", color="red", weight=0]; 1990[label="vyw430 <= vyw450",fontsize=16,color="magenta"];1990 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1989[label="compare1 vyw430 vyw450 vyw113",fontsize=16,color="burlywood",shape="triangle"];2881[label="vyw113/False",fontsize=10,color="white",style="solid",shape="box"];1989 -> 2881[label="",style="solid", color="burlywood", weight=9]; 2881 -> 2093[label="",style="solid", color="burlywood", weight=3]; 2882[label="vyw113/True",fontsize=10,color="white",style="solid",shape="box"];1989 -> 2882[label="",style="solid", color="burlywood", weight=9]; 2882 -> 2094[label="",style="solid", color="burlywood", weight=3]; 1991[label="Integer vyw45000 * vyw4301",fontsize=16,color="burlywood",shape="box"];2883[label="vyw4301/Integer vyw43010",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2883[label="",style="solid", color="burlywood", weight=9]; 2883 -> 2095[label="",style="solid", color="burlywood", weight=3]; 1992[label="vyw4300",fontsize=16,color="green",shape="box"];1993[label="vyw4501",fontsize=16,color="green",shape="box"];1994[label="vyw4301",fontsize=16,color="green",shape="box"];1995[label="vyw4500",fontsize=16,color="green",shape="box"];1996[label="vyw4501",fontsize=16,color="green",shape="box"];1997[label="vyw4300",fontsize=16,color="green",shape="box"];1999 -> 1252[label="",style="dashed", color="red", weight=0]; 1999[label="vyw430 <= vyw450",fontsize=16,color="magenta"];1999 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1998[label="compare1 vyw430 vyw450 vyw114",fontsize=16,color="burlywood",shape="triangle"];2884[label="vyw114/False",fontsize=10,color="white",style="solid",shape="box"];1998 -> 2884[label="",style="solid", color="burlywood", weight=9]; 2884 -> 2098[label="",style="solid", color="burlywood", weight=3]; 2885[label="vyw114/True",fontsize=10,color="white",style="solid",shape="box"];1998 -> 2885[label="",style="solid", color="burlywood", weight=9]; 2885 -> 2099[label="",style="solid", color="burlywood", weight=3]; 2001 -> 1253[label="",style="dashed", color="red", weight=0]; 2001[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2001 -> 2100[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2101[label="",style="dashed", color="magenta", weight=3]; 2000[label="compare1 vyw430 vyw450 vyw115",fontsize=16,color="burlywood",shape="triangle"];2886[label="vyw115/False",fontsize=10,color="white",style="solid",shape="box"];2000 -> 2886[label="",style="solid", color="burlywood", weight=9]; 2886 -> 2102[label="",style="solid", color="burlywood", weight=3]; 2887[label="vyw115/True",fontsize=10,color="white",style="solid",shape="box"];2000 -> 2887[label="",style="solid", color="burlywood", weight=9]; 2887 -> 2103[label="",style="solid", color="burlywood", weight=3]; 2003[label="vyw111",fontsize=16,color="green",shape="box"];2004[label="compare vyw4300 vyw4500",fontsize=16,color="blue",shape="box"];2888[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 2104[label="",style="solid", color="blue", weight=3]; 2889[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 2105[label="",style="solid", color="blue", weight=3]; 2890[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2890[label="",style="solid", color="blue", weight=9]; 2890 -> 2106[label="",style="solid", color="blue", weight=3]; 2891[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 2107[label="",style="solid", color="blue", weight=3]; 2892[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 2108[label="",style="solid", color="blue", weight=3]; 2893[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 2109[label="",style="solid", color="blue", weight=3]; 2894[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2894[label="",style="solid", color="blue", weight=9]; 2894 -> 2110[label="",style="solid", color="blue", weight=3]; 2895[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2895[label="",style="solid", color="blue", weight=9]; 2895 -> 2111[label="",style="solid", color="blue", weight=3]; 2896[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2896[label="",style="solid", color="blue", weight=9]; 2896 -> 2112[label="",style="solid", color="blue", weight=3]; 2897[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2897[label="",style="solid", color="blue", weight=9]; 2897 -> 2113[label="",style="solid", color="blue", weight=3]; 2898[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2898[label="",style="solid", color="blue", weight=9]; 2898 -> 2114[label="",style="solid", color="blue", weight=3]; 2899[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2899[label="",style="solid", color="blue", weight=9]; 2899 -> 2115[label="",style="solid", color="blue", weight=3]; 2900[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2900[label="",style="solid", color="blue", weight=9]; 2900 -> 2116[label="",style="solid", color="blue", weight=3]; 2901[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2901[label="",style="solid", color="blue", weight=9]; 2901 -> 2117[label="",style="solid", color="blue", weight=3]; 2002[label="primCompAux0 vyw119 vyw120",fontsize=16,color="burlywood",shape="triangle"];2902[label="vyw120/LT",fontsize=10,color="white",style="solid",shape="box"];2002 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 2118[label="",style="solid", color="burlywood", weight=3]; 2903[label="vyw120/EQ",fontsize=10,color="white",style="solid",shape="box"];2002 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 2119[label="",style="solid", color="burlywood", weight=3]; 2904[label="vyw120/GT",fontsize=10,color="white",style="solid",shape="box"];2002 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 2120[label="",style="solid", color="burlywood", weight=3]; 2006 -> 1256[label="",style="dashed", color="red", weight=0]; 2006[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2006 -> 2121[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2122[label="",style="dashed", color="magenta", weight=3]; 2005[label="compare1 vyw430 vyw450 vyw121",fontsize=16,color="burlywood",shape="triangle"];2905[label="vyw121/False",fontsize=10,color="white",style="solid",shape="box"];2005 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 2123[label="",style="solid", color="burlywood", weight=3]; 2906[label="vyw121/True",fontsize=10,color="white",style="solid",shape="box"];2005 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 2124[label="",style="solid", color="burlywood", weight=3]; 2007 -> 1355[label="",style="dashed", color="red", weight=0]; 2007[label="compare (vyw4300 * Pos vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2007 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2008 -> 1355[label="",style="dashed", color="red", weight=0]; 2008[label="compare (vyw4300 * Pos vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2008 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2009 -> 1355[label="",style="dashed", color="red", weight=0]; 2009[label="compare (vyw4300 * Neg vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2009 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2010 -> 1355[label="",style="dashed", color="red", weight=0]; 2010[label="compare (vyw4300 * Neg vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2010 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2011 -> 1355[label="",style="dashed", color="red", weight=0]; 2011[label="compare (vyw4300 * Pos vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2011 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2012 -> 1355[label="",style="dashed", color="red", weight=0]; 2012[label="compare (vyw4300 * Pos vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2012 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2013 -> 1355[label="",style="dashed", color="red", weight=0]; 2013[label="compare (vyw4300 * Neg vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2013 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2014 -> 1355[label="",style="dashed", color="red", weight=0]; 2014[label="compare (vyw4300 * Neg vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2014 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2015[label="vyw4500",fontsize=16,color="green",shape="box"];2016[label="Succ vyw43000",fontsize=16,color="green",shape="box"];2017 -> 1701[label="",style="dashed", color="red", weight=0]; 2017[label="primCmpNat Zero (Succ vyw45000)",fontsize=16,color="magenta"];2017 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2142[label="",style="dashed", color="magenta", weight=3]; 2018[label="EQ",fontsize=16,color="green",shape="box"];2019[label="GT",fontsize=16,color="green",shape="box"];2020[label="EQ",fontsize=16,color="green",shape="box"];2021[label="Succ vyw43000",fontsize=16,color="green",shape="box"];2022[label="vyw4500",fontsize=16,color="green",shape="box"];2023[label="LT",fontsize=16,color="green",shape="box"];2024[label="EQ",fontsize=16,color="green",shape="box"];2025 -> 1701[label="",style="dashed", color="red", weight=0]; 2025[label="primCmpNat (Succ vyw45000) Zero",fontsize=16,color="magenta"];2025 -> 2143[label="",style="dashed", color="magenta", weight=3]; 2025 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2026[label="EQ",fontsize=16,color="green",shape="box"];1229[label="primPlusNat (Succ vyw8300) (Succ vyw3000000)",fontsize=16,color="black",shape="box"];1229 -> 1277[label="",style="solid", color="black", weight=3]; 1230[label="primPlusNat (Succ vyw8300) Zero",fontsize=16,color="black",shape="box"];1230 -> 1278[label="",style="solid", color="black", weight=3]; 1231[label="primPlusNat Zero (Succ vyw3000000)",fontsize=16,color="black",shape="box"];1231 -> 1279[label="",style="solid", color="black", weight=3]; 1232[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1232 -> 1280[label="",style="solid", color="black", weight=3]; 2027 -> 124[label="",style="dashed", color="red", weight=0]; 2027[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2027 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2028 -> 125[label="",style="dashed", color="red", weight=0]; 2028[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2028 -> 2147[label="",style="dashed", color="magenta", weight=3]; 2028 -> 2148[label="",style="dashed", color="magenta", weight=3]; 2029 -> 123[label="",style="dashed", color="red", weight=0]; 2029[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2029 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2150[label="",style="dashed", color="magenta", weight=3]; 2030 -> 130[label="",style="dashed", color="red", weight=0]; 2030[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2030 -> 2151[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2152[label="",style="dashed", color="magenta", weight=3]; 2031 -> 134[label="",style="dashed", color="red", weight=0]; 2031[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2031 -> 2153[label="",style="dashed", color="magenta", weight=3]; 2031 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2032 -> 132[label="",style="dashed", color="red", weight=0]; 2032[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2032 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2032 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2033 -> 126[label="",style="dashed", color="red", weight=0]; 2033[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2033 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2033 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2034 -> 121[label="",style="dashed", color="red", weight=0]; 2034[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2034 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2034 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2035 -> 128[label="",style="dashed", color="red", weight=0]; 2035[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2035 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2036 -> 127[label="",style="dashed", color="red", weight=0]; 2036[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2036 -> 2163[label="",style="dashed", color="magenta", weight=3]; 2036 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2037 -> 129[label="",style="dashed", color="red", weight=0]; 2037[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2037 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2037 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2038 -> 131[label="",style="dashed", color="red", weight=0]; 2038[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2038 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2038 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2039 -> 122[label="",style="dashed", color="red", weight=0]; 2039[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2039 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2039 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2040 -> 133[label="",style="dashed", color="red", weight=0]; 2040[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2040 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2040 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2041 -> 1247[label="",style="dashed", color="red", weight=0]; 2041[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2041 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2041 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2042 -> 1248[label="",style="dashed", color="red", weight=0]; 2042[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2042 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2042 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2043 -> 1249[label="",style="dashed", color="red", weight=0]; 2043[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2043 -> 2177[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2044 -> 1250[label="",style="dashed", color="red", weight=0]; 2044[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2044 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2044 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2045 -> 1251[label="",style="dashed", color="red", weight=0]; 2045[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2045 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2045 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2046 -> 1252[label="",style="dashed", color="red", weight=0]; 2046[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2046 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2047 -> 1253[label="",style="dashed", color="red", weight=0]; 2047[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2047 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2048 -> 1254[label="",style="dashed", color="red", weight=0]; 2048[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2048 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2048 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2049 -> 1255[label="",style="dashed", color="red", weight=0]; 2049[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2049 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2050 -> 1256[label="",style="dashed", color="red", weight=0]; 2050[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2050 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2051 -> 1257[label="",style="dashed", color="red", weight=0]; 2051[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2051 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2052 -> 1258[label="",style="dashed", color="red", weight=0]; 2052[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2052 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2053 -> 1259[label="",style="dashed", color="red", weight=0]; 2053[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2053 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2054 -> 1260[label="",style="dashed", color="red", weight=0]; 2054[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2054 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2055[label="vyw4511",fontsize=16,color="green",shape="box"];2056[label="vyw4311",fontsize=16,color="green",shape="box"];2057[label="vyw4511",fontsize=16,color="green",shape="box"];2058[label="vyw4311",fontsize=16,color="green",shape="box"];2059[label="vyw4511",fontsize=16,color="green",shape="box"];2060[label="vyw4311",fontsize=16,color="green",shape="box"];2061[label="vyw4511",fontsize=16,color="green",shape="box"];2062[label="vyw4311",fontsize=16,color="green",shape="box"];2063[label="vyw4511",fontsize=16,color="green",shape="box"];2064[label="vyw4311",fontsize=16,color="green",shape="box"];2065[label="vyw4511",fontsize=16,color="green",shape="box"];2066[label="vyw4311",fontsize=16,color="green",shape="box"];2067[label="vyw4511",fontsize=16,color="green",shape="box"];2068[label="vyw4311",fontsize=16,color="green",shape="box"];2069[label="vyw4511",fontsize=16,color="green",shape="box"];2070[label="vyw4311",fontsize=16,color="green",shape="box"];2071[label="vyw4511",fontsize=16,color="green",shape="box"];2072[label="vyw4311",fontsize=16,color="green",shape="box"];2073[label="vyw4511",fontsize=16,color="green",shape="box"];2074[label="vyw4311",fontsize=16,color="green",shape="box"];2075[label="vyw4511",fontsize=16,color="green",shape="box"];2076[label="vyw4311",fontsize=16,color="green",shape="box"];2077[label="vyw4511",fontsize=16,color="green",shape="box"];2078[label="vyw4311",fontsize=16,color="green",shape="box"];2079[label="vyw4511",fontsize=16,color="green",shape="box"];2080[label="vyw4311",fontsize=16,color="green",shape="box"];2081[label="vyw4511",fontsize=16,color="green",shape="box"];2082[label="vyw4311",fontsize=16,color="green",shape="box"];2083 -> 1701[label="",style="dashed", color="red", weight=0]; 2083[label="primCmpNat vyw43000 vyw45000",fontsize=16,color="magenta"];2083 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2084[label="GT",fontsize=16,color="green",shape="box"];2085[label="LT",fontsize=16,color="green",shape="box"];2086[label="EQ",fontsize=16,color="green",shape="box"];2087[label="vyw450",fontsize=16,color="green",shape="box"];2088[label="vyw430",fontsize=16,color="green",shape="box"];2089[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2089 -> 2203[label="",style="solid", color="black", weight=3]; 2090[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2090 -> 2204[label="",style="solid", color="black", weight=3]; 2091[label="vyw450",fontsize=16,color="green",shape="box"];2092[label="vyw430",fontsize=16,color="green",shape="box"];2093[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2093 -> 2205[label="",style="solid", color="black", weight=3]; 2094[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2094 -> 2206[label="",style="solid", color="black", weight=3]; 2095[label="Integer vyw45000 * Integer vyw43010",fontsize=16,color="black",shape="box"];2095 -> 2207[label="",style="solid", color="black", weight=3]; 2096[label="vyw450",fontsize=16,color="green",shape="box"];2097[label="vyw430",fontsize=16,color="green",shape="box"];2098[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2098 -> 2208[label="",style="solid", color="black", weight=3]; 2099[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2099 -> 2209[label="",style="solid", color="black", weight=3]; 2100[label="vyw450",fontsize=16,color="green",shape="box"];2101[label="vyw430",fontsize=16,color="green",shape="box"];2102[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2102 -> 2210[label="",style="solid", color="black", weight=3]; 2103[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2103 -> 2211[label="",style="solid", color="black", weight=3]; 2104 -> 1329[label="",style="dashed", color="red", weight=0]; 2104[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2104 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2105 -> 1331[label="",style="dashed", color="red", weight=0]; 2105[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2105 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2106 -> 1333[label="",style="dashed", color="red", weight=0]; 2106[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2106 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2107 -> 1335[label="",style="dashed", color="red", weight=0]; 2107[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2107 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2108 -> 1337[label="",style="dashed", color="red", weight=0]; 2108[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2108 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2109 -> 1339[label="",style="dashed", color="red", weight=0]; 2109[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2109 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2110 -> 1341[label="",style="dashed", color="red", weight=0]; 2110[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2110 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2111 -> 1343[label="",style="dashed", color="red", weight=0]; 2111[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2111 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2112 -> 1345[label="",style="dashed", color="red", weight=0]; 2112[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2112 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2113 -> 1347[label="",style="dashed", color="red", weight=0]; 2113[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2113 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2114 -> 1349[label="",style="dashed", color="red", weight=0]; 2114[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2114 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2115 -> 1351[label="",style="dashed", color="red", weight=0]; 2115[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2115 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2116 -> 1353[label="",style="dashed", color="red", weight=0]; 2116[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2116 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2117 -> 1355[label="",style="dashed", color="red", weight=0]; 2117[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2117 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2118[label="primCompAux0 vyw119 LT",fontsize=16,color="black",shape="box"];2118 -> 2240[label="",style="solid", color="black", weight=3]; 2119[label="primCompAux0 vyw119 EQ",fontsize=16,color="black",shape="box"];2119 -> 2241[label="",style="solid", color="black", weight=3]; 2120[label="primCompAux0 vyw119 GT",fontsize=16,color="black",shape="box"];2120 -> 2242[label="",style="solid", color="black", weight=3]; 2121[label="vyw450",fontsize=16,color="green",shape="box"];2122[label="vyw430",fontsize=16,color="green",shape="box"];2123[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2123 -> 2243[label="",style="solid", color="black", weight=3]; 2124[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2124 -> 2244[label="",style="solid", color="black", weight=3]; 2125 -> 490[label="",style="dashed", color="red", weight=0]; 2125[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2125 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2126 -> 490[label="",style="dashed", color="red", weight=0]; 2126[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2126 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2127 -> 490[label="",style="dashed", color="red", weight=0]; 2127[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2127 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2128 -> 490[label="",style="dashed", color="red", weight=0]; 2128[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2128 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2129 -> 490[label="",style="dashed", color="red", weight=0]; 2129[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2129 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2130 -> 490[label="",style="dashed", color="red", weight=0]; 2130[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2130 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2130 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2131 -> 490[label="",style="dashed", color="red", weight=0]; 2131[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2131 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2131 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2132 -> 490[label="",style="dashed", color="red", weight=0]; 2132[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2132 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2133 -> 490[label="",style="dashed", color="red", weight=0]; 2133[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2133 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2134 -> 490[label="",style="dashed", color="red", weight=0]; 2134[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2134 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2135 -> 490[label="",style="dashed", color="red", weight=0]; 2135[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2135 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2136 -> 490[label="",style="dashed", color="red", weight=0]; 2136[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2136 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2136 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2137 -> 490[label="",style="dashed", color="red", weight=0]; 2137[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2137 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2138 -> 490[label="",style="dashed", color="red", weight=0]; 2138[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2138 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2138 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2139 -> 490[label="",style="dashed", color="red", weight=0]; 2139[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2139 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2139 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2140 -> 490[label="",style="dashed", color="red", weight=0]; 2140[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2140 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2140 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2141[label="Succ vyw45000",fontsize=16,color="green",shape="box"];2142[label="Zero",fontsize=16,color="green",shape="box"];2143[label="Zero",fontsize=16,color="green",shape="box"];2144[label="Succ vyw45000",fontsize=16,color="green",shape="box"];1277[label="Succ (Succ (primPlusNat vyw8300 vyw3000000))",fontsize=16,color="green",shape="box"];1277 -> 1359[label="",style="dashed", color="green", weight=3]; 1278[label="Succ vyw8300",fontsize=16,color="green",shape="box"];1279[label="Succ vyw3000000",fontsize=16,color="green",shape="box"];1280[label="Zero",fontsize=16,color="green",shape="box"];2145[label="vyw4511",fontsize=16,color="green",shape="box"];2146[label="vyw4311",fontsize=16,color="green",shape="box"];2147[label="vyw4511",fontsize=16,color="green",shape="box"];2148[label="vyw4311",fontsize=16,color="green",shape="box"];2149[label="vyw4511",fontsize=16,color="green",shape="box"];2150[label="vyw4311",fontsize=16,color="green",shape="box"];2151[label="vyw4511",fontsize=16,color="green",shape="box"];2152[label="vyw4311",fontsize=16,color="green",shape="box"];2153[label="vyw4511",fontsize=16,color="green",shape="box"];2154[label="vyw4311",fontsize=16,color="green",shape="box"];2155[label="vyw4511",fontsize=16,color="green",shape="box"];2156[label="vyw4311",fontsize=16,color="green",shape="box"];2157[label="vyw4511",fontsize=16,color="green",shape="box"];2158[label="vyw4311",fontsize=16,color="green",shape="box"];2159[label="vyw4511",fontsize=16,color="green",shape="box"];2160[label="vyw4311",fontsize=16,color="green",shape="box"];2161[label="vyw4511",fontsize=16,color="green",shape="box"];2162[label="vyw4311",fontsize=16,color="green",shape="box"];2163[label="vyw4511",fontsize=16,color="green",shape="box"];2164[label="vyw4311",fontsize=16,color="green",shape="box"];2165[label="vyw4511",fontsize=16,color="green",shape="box"];2166[label="vyw4311",fontsize=16,color="green",shape="box"];2167[label="vyw4511",fontsize=16,color="green",shape="box"];2168[label="vyw4311",fontsize=16,color="green",shape="box"];2169[label="vyw4511",fontsize=16,color="green",shape="box"];2170[label="vyw4311",fontsize=16,color="green",shape="box"];2171[label="vyw4511",fontsize=16,color="green",shape="box"];2172[label="vyw4311",fontsize=16,color="green",shape="box"];2173[label="vyw4512",fontsize=16,color="green",shape="box"];2174[label="vyw4312",fontsize=16,color="green",shape="box"];2175[label="vyw4512",fontsize=16,color="green",shape="box"];2176[label="vyw4312",fontsize=16,color="green",shape="box"];2177[label="vyw4512",fontsize=16,color="green",shape="box"];2178[label="vyw4312",fontsize=16,color="green",shape="box"];2179[label="vyw4512",fontsize=16,color="green",shape="box"];2180[label="vyw4312",fontsize=16,color="green",shape="box"];2181[label="vyw4512",fontsize=16,color="green",shape="box"];2182[label="vyw4312",fontsize=16,color="green",shape="box"];2183[label="vyw4512",fontsize=16,color="green",shape="box"];2184[label="vyw4312",fontsize=16,color="green",shape="box"];2185[label="vyw4512",fontsize=16,color="green",shape="box"];2186[label="vyw4312",fontsize=16,color="green",shape="box"];2187[label="vyw4512",fontsize=16,color="green",shape="box"];2188[label="vyw4312",fontsize=16,color="green",shape="box"];2189[label="vyw4512",fontsize=16,color="green",shape="box"];2190[label="vyw4312",fontsize=16,color="green",shape="box"];2191[label="vyw4512",fontsize=16,color="green",shape="box"];2192[label="vyw4312",fontsize=16,color="green",shape="box"];2193[label="vyw4512",fontsize=16,color="green",shape="box"];2194[label="vyw4312",fontsize=16,color="green",shape="box"];2195[label="vyw4512",fontsize=16,color="green",shape="box"];2196[label="vyw4312",fontsize=16,color="green",shape="box"];2197[label="vyw4512",fontsize=16,color="green",shape="box"];2198[label="vyw4312",fontsize=16,color="green",shape="box"];2199[label="vyw4512",fontsize=16,color="green",shape="box"];2200[label="vyw4312",fontsize=16,color="green",shape="box"];2201[label="vyw45000",fontsize=16,color="green",shape="box"];2202[label="vyw43000",fontsize=16,color="green",shape="box"];2203[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2203 -> 2277[label="",style="solid", color="black", weight=3]; 2204[label="LT",fontsize=16,color="green",shape="box"];2205[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2205 -> 2278[label="",style="solid", color="black", weight=3]; 2206[label="LT",fontsize=16,color="green",shape="box"];2207[label="Integer (primMulInt vyw45000 vyw43010)",fontsize=16,color="green",shape="box"];2207 -> 2279[label="",style="dashed", color="green", weight=3]; 2208[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2208 -> 2280[label="",style="solid", color="black", weight=3]; 2209[label="LT",fontsize=16,color="green",shape="box"];2210[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2210 -> 2281[label="",style="solid", color="black", weight=3]; 2211[label="LT",fontsize=16,color="green",shape="box"];2212[label="vyw4500",fontsize=16,color="green",shape="box"];2213[label="vyw4300",fontsize=16,color="green",shape="box"];2214[label="vyw4500",fontsize=16,color="green",shape="box"];2215[label="vyw4300",fontsize=16,color="green",shape="box"];2216[label="vyw4500",fontsize=16,color="green",shape="box"];2217[label="vyw4300",fontsize=16,color="green",shape="box"];2218[label="vyw4500",fontsize=16,color="green",shape="box"];2219[label="vyw4300",fontsize=16,color="green",shape="box"];2220[label="vyw4500",fontsize=16,color="green",shape="box"];2221[label="vyw4300",fontsize=16,color="green",shape="box"];2222[label="vyw4500",fontsize=16,color="green",shape="box"];2223[label="vyw4300",fontsize=16,color="green",shape="box"];2224[label="vyw4500",fontsize=16,color="green",shape="box"];2225[label="vyw4300",fontsize=16,color="green",shape="box"];2226[label="vyw4500",fontsize=16,color="green",shape="box"];2227[label="vyw4300",fontsize=16,color="green",shape="box"];2228[label="vyw4500",fontsize=16,color="green",shape="box"];2229[label="vyw4300",fontsize=16,color="green",shape="box"];2230[label="vyw4500",fontsize=16,color="green",shape="box"];2231[label="vyw4300",fontsize=16,color="green",shape="box"];2232[label="vyw4500",fontsize=16,color="green",shape="box"];2233[label="vyw4300",fontsize=16,color="green",shape="box"];2234[label="vyw4500",fontsize=16,color="green",shape="box"];2235[label="vyw4300",fontsize=16,color="green",shape="box"];2236[label="vyw4500",fontsize=16,color="green",shape="box"];2237[label="vyw4300",fontsize=16,color="green",shape="box"];2238[label="vyw4500",fontsize=16,color="green",shape="box"];2239[label="vyw4300",fontsize=16,color="green",shape="box"];2240[label="LT",fontsize=16,color="green",shape="box"];2241[label="vyw119",fontsize=16,color="green",shape="box"];2242[label="GT",fontsize=16,color="green",shape="box"];2243[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2243 -> 2282[label="",style="solid", color="black", weight=3]; 2244[label="LT",fontsize=16,color="green",shape="box"];2245[label="vyw4500",fontsize=16,color="green",shape="box"];2246[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2247[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2248[label="vyw4300",fontsize=16,color="green",shape="box"];2249[label="vyw4500",fontsize=16,color="green",shape="box"];2250[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2251[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2252[label="vyw4300",fontsize=16,color="green",shape="box"];2253[label="vyw4500",fontsize=16,color="green",shape="box"];2254[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2255[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2256[label="vyw4300",fontsize=16,color="green",shape="box"];2257[label="vyw4500",fontsize=16,color="green",shape="box"];2258[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2259[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2260[label="vyw4300",fontsize=16,color="green",shape="box"];2261[label="vyw4500",fontsize=16,color="green",shape="box"];2262[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2263[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2264[label="vyw4300",fontsize=16,color="green",shape="box"];2265[label="vyw4500",fontsize=16,color="green",shape="box"];2266[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2267[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2268[label="vyw4300",fontsize=16,color="green",shape="box"];2269[label="vyw4500",fontsize=16,color="green",shape="box"];2270[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2271[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2272[label="vyw4300",fontsize=16,color="green",shape="box"];2273[label="vyw4500",fontsize=16,color="green",shape="box"];2274[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2275[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2276[label="vyw4300",fontsize=16,color="green",shape="box"];1359 -> 1190[label="",style="dashed", color="red", weight=0]; 1359[label="primPlusNat vyw8300 vyw3000000",fontsize=16,color="magenta"];1359 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1359 -> 1409[label="",style="dashed", color="magenta", weight=3]; 2277[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2277 -> 2283[label="",style="solid", color="black", weight=3]; 2278[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2278 -> 2284[label="",style="solid", color="black", weight=3]; 2279 -> 662[label="",style="dashed", color="red", weight=0]; 2279[label="primMulInt vyw45000 vyw43010",fontsize=16,color="magenta"];2279 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2280[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2280 -> 2287[label="",style="solid", color="black", weight=3]; 2281[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2281 -> 2288[label="",style="solid", color="black", weight=3]; 2282[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2282 -> 2289[label="",style="solid", color="black", weight=3]; 1408[label="vyw8300",fontsize=16,color="green",shape="box"];1409[label="vyw3000000",fontsize=16,color="green",shape="box"];2283[label="GT",fontsize=16,color="green",shape="box"];2284[label="GT",fontsize=16,color="green",shape="box"];2285[label="vyw43010",fontsize=16,color="green",shape="box"];2286[label="vyw45000",fontsize=16,color="green",shape="box"];2287[label="GT",fontsize=16,color="green",shape="box"];2288[label="GT",fontsize=16,color="green",shape="box"];2289[label="GT",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat(vyw43000, vyw45000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) 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(vyw43000), Succ(vyw45000)) -> new_primCmpNat(vyw43000, vyw45000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw20, @2(vyw21, vyw22), h, ba, bb) new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw19, @2(vyw21, vyw22), h, ba, bb) new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs11(new_compare28(@2(vyw21, vyw22), @2(vyw15, vyw16), new_esEs5(@2(vyw21, vyw22), @2(vyw15, vyw16), ba, bb), ba, bb), GT), h, ba, bb) new_lookupFM(Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw40, vyw41), bc, bd, be) -> new_lookupFM2(vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw40, vyw41, new_esEs30(vyw40, vyw41, vyw300, vyw301, new_esEs31(vyw40, vyw300, bd), bd, be), bc, bd, be) The TRS R consists of the following rules: new_lt19(vyw4311, vyw4511, app(app(ty_Either, cab), cac)) -> new_lt7(vyw4311, vyw4511, cab, cac) new_esEs31(vyw40, vyw300, app(ty_[], eb)) -> new_esEs13(vyw40, vyw300, eb) new_esEs4(Left(vyw400), Left(vyw3000), ty_Double, df) -> new_esEs16(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, app(ty_Maybe, bdd)) -> new_ltEs15(vyw4311, vyw4511, bdd) new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt20(vyw4310, vyw4510, ty_Float) -> new_lt15(vyw4310, vyw4510) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vyw110) -> True new_compare12(vyw430, vyw450, False, bae, baf) -> GT new_ltEs19(vyw4312, vyw4512, ty_@0) -> new_ltEs5(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, app(ty_Maybe, bde)) -> new_ltEs15(vyw431, vyw451, bde) new_ltEs19(vyw4312, vyw4512, app(app(ty_Either, cbd), cbe)) -> new_ltEs9(vyw4312, vyw4512, cbd, cbe) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_lt5(vyw4310, vyw4510, ty_Char) -> new_lt6(vyw4310, vyw4510) new_esEs29(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_compare5(vyw430, vyw450) -> new_compare210(vyw430, vyw450, new_esEs17(vyw430, vyw450)) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_esEs32(vyw32, vyw34, ty_Ordering) -> new_esEs11(vyw32, vyw34) new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs9(vyw4311, vyw4511) new_esEs4(Left(vyw400), Right(vyw3000), de, df) -> False new_esEs4(Right(vyw400), Left(vyw3000), de, df) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw4310, vyw4510, bec, bed, bee) new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs16(vyw4311, vyw4511) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs7(vyw400, vyw3000, cf) new_esEs22(vyw4310, vyw4510, app(app(ty_Either, bgh), bha)) -> new_esEs4(vyw4310, vyw4510, bgh, bha) new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_esEs22(vyw4310, vyw4510, ty_Int) -> new_esEs8(vyw4310, vyw4510) new_compare211(vyw430, vyw450, True, ccf) -> EQ new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(app(ty_Either, ddf), ddg)) -> new_ltEs9(vyw4310, vyw4510, ddf, ddg) new_esEs28(vyw401, vyw3001, app(ty_Maybe, cfg)) -> new_esEs7(vyw401, vyw3001, cfg) new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) new_lt21(vyw430, vyw450, app(ty_Ratio, cda)) -> new_lt9(vyw430, vyw450, cda) new_esEs29(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_compare27(vyw430, vyw450, False) -> new_compare13(vyw430, vyw450, new_ltEs10(vyw430, vyw450)) new_compare26(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) new_ltEs10(GT, LT) -> False new_esEs14(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs7(vyw4311, vyw4511, ty_Double) -> new_ltEs17(vyw4311, vyw4511) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_@2, chd), che), df) -> new_esEs5(vyw400, vyw3000, chd, che) new_lt4(vyw430, vyw450) -> new_esEs11(new_compare5(vyw430, vyw450), LT) new_esEs18(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_compare210(vyw430, vyw450, False) -> new_compare110(vyw430, vyw450, new_ltEs12(vyw430, vyw450)) new_lt19(vyw4311, vyw4511, ty_Ordering) -> new_lt8(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, ty_Integer) -> new_lt12(vyw4310, vyw4510) new_ltEs20(vyw431, vyw451, ty_Bool) -> new_ltEs12(vyw431, vyw451) new_esEs21(vyw4310, vyw4510, app(ty_[], bca)) -> new_esEs13(vyw4310, vyw4510, bca) new_esEs18(vyw400, vyw3000, app(ty_Ratio, ff)) -> new_esEs15(vyw400, vyw3000, ff) new_ltEs7(vyw4311, vyw4511, app(ty_[], bdc)) -> new_ltEs4(vyw4311, vyw4511, bdc) new_lt5(vyw4310, vyw4510, ty_@0) -> new_lt17(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Ordering) -> new_esEs11(vyw4310, vyw4510) new_lt20(vyw4310, vyw4510, ty_Bool) -> new_lt4(vyw4310, vyw4510) new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_esEs20(vyw402, vyw3002, app(app(ty_@2, bac), bad)) -> new_esEs5(vyw402, vyw3002, bac, bad) new_lt16(vyw430, vyw450) -> new_esEs11(new_compare25(vyw430, vyw450), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Double, cdf) -> new_ltEs17(vyw4310, vyw4510) new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bea), beb)) -> new_ltEs6(vyw4310, vyw4510, bea, beb) new_esEs24(vyw430, vyw450, app(ty_Ratio, cda)) -> new_esEs15(vyw430, vyw450, cda) new_ltEs10(EQ, LT) -> False new_lt20(vyw4310, vyw4510, app(ty_[], bhh)) -> new_lt13(vyw4310, vyw4510, bhh) new_esEs24(vyw430, vyw450, ty_@0) -> new_esEs10(vyw430, vyw450) new_ltEs7(vyw4311, vyw4511, ty_@0) -> new_ltEs5(vyw4311, vyw4511) new_ltEs19(vyw4312, vyw4512, app(app(ty_@2, cbg), cbh)) -> new_ltEs6(vyw4312, vyw4512, cbg, cbh) new_esEs29(vyw400, vyw3000, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs6(vyw400, vyw3000, dfb, dfc, dfd) new_esEs5(@2(vyw400, vyw401), @2(vyw3000, vyw3001), ed, ee) -> new_asAs(new_esEs27(vyw400, vyw3000, ed), new_esEs28(vyw401, vyw3001, ee)) new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(app(ty_@2, ha), hb)) -> new_esEs5(vyw401, vyw3001, ha, hb) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_@0, cdf) -> new_ltEs5(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, ty_Ordering) -> new_compare14(vyw4300, vyw4500) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Ratio, da)) -> new_esEs15(vyw400, vyw3000, da) new_esEs31(vyw40, vyw300, app(app(ty_@2, ed), ee)) -> new_esEs5(vyw40, vyw300, ed, ee) new_esEs7(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) new_not(True) -> False new_lt5(vyw4310, vyw4510, app(ty_Maybe, bcb)) -> new_lt14(vyw4310, vyw4510, bcb) new_lt5(vyw4310, vyw4510, app(app(ty_@2, bbd), bbe)) -> new_lt10(vyw4310, vyw4510, bbd, bbe) new_lt14(vyw430, vyw450, ccf) -> new_esEs11(new_compare19(vyw430, vyw450, ccf), LT) new_compare7(vyw4300, vyw4500, ty_Bool) -> new_compare5(vyw4300, vyw4500) new_primCompAux00(vyw119, LT) -> LT new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw4310, vyw4510, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs6(vyw4310, vyw4510, bbf, bbg, bbh) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, app(ty_[], cbb)) -> new_lt13(vyw4311, vyw4511, cbb) new_esEs27(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs10(vyw4311, vyw4511) new_esEs27(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_lt15(vyw430, vyw450) -> new_esEs11(new_compare24(vyw430, vyw450), LT) new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, he), hf), hg)) -> new_esEs6(vyw402, vyw3002, he, hf, hg) new_esEs24(vyw430, vyw450, ty_Float) -> new_esEs14(vyw430, vyw450) new_esEs29(vyw400, vyw3000, app(ty_[], dff)) -> new_esEs13(vyw400, vyw3000, dff) new_esEs4(Left(vyw400), Left(vyw3000), ty_@0, df) -> new_esEs10(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, app(app(ty_Either, bcc), bcd)) -> new_ltEs9(vyw4311, vyw4511, bcc, bcd) new_ltEs19(vyw4312, vyw4512, ty_Double) -> new_ltEs17(vyw4312, vyw4512) new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs19(vyw4312, vyw4512, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs13(vyw4312, vyw4512, cca, ccb, ccc) new_esEs28(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_lt5(vyw4310, vyw4510, ty_Int) -> new_lt18(vyw4310, vyw4510) new_ltEs19(vyw4312, vyw4512, ty_Bool) -> new_ltEs12(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, ty_Int) -> new_ltEs18(vyw431, vyw451) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_esEs13([], [], eb) -> True new_compare25(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_ltEs7(vyw4311, vyw4511, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs13(vyw4311, vyw4511, bch, bda, bdb) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Float) -> new_esEs14(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, ty_Int) -> new_ltEs18(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, app(app(ty_Either, bgh), bha)) -> new_lt7(vyw4310, vyw4510, bgh, bha) new_lt19(vyw4311, vyw4511, ty_Integer) -> new_lt12(vyw4311, vyw4511) new_lt8(vyw430, vyw450) -> new_esEs11(new_compare14(vyw430, vyw450), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Bool, cdf) -> new_ltEs12(vyw4310, vyw4510) new_primCompAux00(vyw119, GT) -> GT new_lt19(vyw4311, vyw4511, app(ty_Ratio, cad)) -> new_lt9(vyw4311, vyw4511, cad) new_compare110(vyw430, vyw450, True) -> LT new_ltEs9(Left(vyw4310), Right(vyw4510), cde, cdf) -> True new_ltEs7(vyw4311, vyw4511, app(app(ty_@2, bcf), bcg)) -> new_ltEs6(vyw4311, vyw4511, bcf, bcg) new_compare7(vyw4300, vyw4500, ty_Double) -> new_compare25(vyw4300, vyw4500) new_ltEs20(vyw431, vyw451, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(vyw431, vyw451, bge, bgf, bgg) new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT new_esEs20(vyw402, vyw3002, app(ty_Ratio, bab)) -> new_esEs15(vyw402, vyw3002, bab) new_esEs4(Right(vyw400), Right(vyw3000), de, app(ty_[], dad)) -> new_esEs13(vyw400, vyw3000, dad) new_ltEs10(GT, EQ) -> False new_compare11(vyw92, vyw93, vyw94, vyw95, True, bf, bg) -> LT new_esEs4(Left(vyw400), Left(vyw3000), ty_Integer, df) -> new_esEs9(vyw400, vyw3000) new_lt19(vyw4311, vyw4511, ty_Float) -> new_lt15(vyw4311, vyw4511) new_esEs32(vyw32, vyw34, ty_Bool) -> new_esEs17(vyw32, vyw34) new_ltEs20(vyw431, vyw451, ty_@0) -> new_ltEs5(vyw431, vyw451) new_compare7(vyw4300, vyw4500, app(ty_Ratio, bfc)) -> new_compare15(vyw4300, vyw4500, bfc) new_esEs31(vyw40, vyw300, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs6(vyw40, vyw300, dg, dh, ea) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_[], chb), df) -> new_esEs13(vyw400, vyw3000, chb) new_primCmpNat0(Zero, Succ(vyw45000)) -> LT new_esEs21(vyw4310, vyw4510, ty_Ordering) -> new_esEs11(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, app(app(ty_@2, bbd), bbe)) -> new_esEs5(vyw4310, vyw4510, bbd, bbe) new_esEs28(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) new_esEs19(vyw401, vyw3001, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(vyw401, vyw3001, gc, gd, ge) new_lt5(vyw4310, vyw4510, app(ty_Ratio, bbc)) -> new_lt9(vyw4310, vyw4510, bbc) new_ltEs20(vyw431, vyw451, ty_Double) -> new_ltEs17(vyw431, vyw451) new_compare210(vyw430, vyw450, True) -> EQ new_esEs28(vyw401, vyw3001, ty_Char) -> new_esEs12(vyw401, vyw3001) new_compare14(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs11(vyw430, vyw450)) new_esEs24(vyw430, vyw450, app(ty_[], beh)) -> new_esEs13(vyw430, vyw450, beh) new_esEs22(vyw4310, vyw4510, ty_Double) -> new_esEs16(vyw4310, vyw4510) new_esEs30(vyw31, vyw32, vyw33, vyw34, True, dah, dba) -> new_esEs11(new_compare28(@2(vyw31, vyw32), @2(vyw33, vyw34), new_esEs32(vyw32, vyw34, dba), dah, dba), LT) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_primCmpNat0(Succ(vyw43000), Zero) -> GT new_pePe(False, vyw110) -> vyw110 new_esEs7(Nothing, Just(vyw3000), bh) -> False new_esEs7(Just(vyw400), Nothing, bh) -> False new_lt21(vyw430, vyw450, app(ty_[], beh)) -> new_lt13(vyw430, vyw450, beh) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs14(vyw4310, vyw4510) new_esEs27(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, ty_Float) -> new_compare24(vyw4300, vyw4500) new_esEs21(vyw4310, vyw4510, app(app(ty_Either, bba), bbb)) -> new_esEs4(vyw4310, vyw4510, bba, bbb) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Int) -> new_esEs8(vyw400, vyw3000) new_lt7(vyw430, vyw450, bae, baf) -> new_esEs11(new_compare9(vyw430, vyw450, bae, baf), LT) new_ltEs4(vyw431, vyw451, dd) -> new_not(new_esEs11(new_compare0(vyw431, vyw451, dd), GT)) new_esEs4(Right(vyw400), Right(vyw3000), de, app(app(ty_@2, daf), dag)) -> new_esEs5(vyw400, vyw3000, daf, dag) new_ltEs8(vyw431, vyw451) -> new_not(new_esEs11(new_compare8(vyw431, vyw451), GT)) new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_Ratio, bdh)) -> new_ltEs11(vyw4310, vyw4510, bdh) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_esEs32(vyw32, vyw34, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs6(vyw32, vyw34, dbd, dbe, dbf) new_compare16(vyw430, vyw450, bgc, bgd) -> new_compare28(vyw430, vyw450, new_esEs5(vyw430, vyw450, bgc, bgd), bgc, bgd) new_esEs7(Nothing, Nothing, bh) -> True new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs11(vyw4311, vyw4511) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dcf), cdf) -> new_ltEs11(vyw4310, vyw4510, dcf) new_lt21(vyw430, vyw450, ty_Integer) -> new_lt12(vyw430, vyw450) new_esEs21(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) new_ltEs15(Nothing, Nothing, bde) -> True new_ltEs19(vyw4312, vyw4512, ty_Int) -> new_ltEs18(vyw4312, vyw4512) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs18(vyw4310, vyw4510) new_esEs7(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs31(vyw40, vyw300, app(app(ty_Either, de), df)) -> new_esEs4(vyw40, vyw300, de, df) new_esEs29(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_ltEs20(vyw431, vyw451, app(app(ty_@2, bag), bah)) -> new_ltEs6(vyw431, vyw451, bag, bah) new_esEs7(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs9(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Nothing, bde) -> False new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_[], cg)) -> new_esEs13(vyw400, vyw3000, cg) new_compare24(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(ty_Either, dcd), dce), cdf) -> new_ltEs9(vyw4310, vyw4510, dcd, dce) new_esEs18(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT new_esEs32(vyw32, vyw34, ty_Double) -> new_esEs16(vyw32, vyw34) new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_esEs21(vyw4310, vyw4510, ty_Int) -> new_esEs8(vyw4310, vyw4510) new_esEs23(vyw4311, vyw4511, app(app(ty_Either, cab), cac)) -> new_esEs4(vyw4311, vyw4511, cab, cac) new_esEs13(:(vyw400, vyw401), [], eb) -> False new_esEs13([], :(vyw3000, vyw3001), eb) -> False new_lt11(vyw430, vyw450, cdb, cdc, cdd) -> new_esEs11(new_compare17(vyw430, vyw450, cdb, cdc, cdd), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_[], ddd), cdf) -> new_ltEs4(vyw4310, vyw4510, ddd) new_esEs24(vyw430, vyw450, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs6(vyw430, vyw450, cdb, cdc, cdd) new_lt6(vyw430, vyw450) -> new_esEs11(new_compare8(vyw430, vyw450), LT) new_primMulNat0(Succ(vyw40100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_esEs24(vyw430, vyw450, ty_Integer) -> new_esEs9(vyw430, vyw450) new_esEs7(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs6(vyw400, vyw3000, cc, cd, ce) new_esEs24(vyw430, vyw450, ty_Char) -> new_esEs12(vyw430, vyw450) new_compare18(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) new_esEs22(vyw4310, vyw4510, app(ty_Maybe, caa)) -> new_esEs7(vyw4310, vyw4510, caa) new_esEs4(Right(vyw400), Right(vyw3000), de, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(vyw400, vyw3000, chh, daa, dab) new_primPlusNat1(Succ(vyw830), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw830, vyw300000))) new_esEs23(vyw4311, vyw4511, app(ty_Maybe, cbc)) -> new_esEs7(vyw4311, vyw4511, cbc) new_lt20(vyw4310, vyw4510, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_lt11(vyw4310, vyw4510, bhe, bhf, bhg) new_ltEs12(False, True) -> True new_primPlusNat0(Succ(vyw8300), Zero) -> Succ(vyw8300) new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs11(LT, LT) -> True new_ltEs13(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bge, bgf, bgg) -> new_pePe(new_lt20(vyw4310, vyw4510, bge), new_asAs(new_esEs22(vyw4310, vyw4510, bge), new_pePe(new_lt19(vyw4311, vyw4511, bgf), new_asAs(new_esEs23(vyw4311, vyw4511, bgf), new_ltEs19(vyw4312, vyw4512, bgg))))) new_ltEs19(vyw4312, vyw4512, ty_Integer) -> new_ltEs14(vyw4312, vyw4512) new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) new_compare24(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs19(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) new_lt21(vyw430, vyw450, ty_Int) -> new_lt18(vyw430, vyw450) new_compare211(vyw430, vyw450, False, ccf) -> new_compare111(vyw430, vyw450, new_ltEs15(vyw430, vyw450, ccf), ccf) new_esEs22(vyw4310, vyw4510, app(ty_Ratio, bhb)) -> new_esEs15(vyw4310, vyw4510, bhb) new_esEs32(vyw32, vyw34, app(app(ty_Either, dbb), dbc)) -> new_esEs4(vyw32, vyw34, dbb, dbc) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Ordering) -> new_ltEs10(vyw4310, vyw4510) new_lt17(vyw430, vyw450) -> new_esEs11(new_compare6(vyw430, vyw450), LT) new_esEs19(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_esEs30(vyw31, vyw32, vyw33, vyw34, False, dah, dba) -> new_esEs11(new_compare28(@2(vyw31, vyw32), @2(vyw33, vyw34), False, dah, dba), LT) new_lt21(vyw430, vyw450, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(vyw430, vyw450, cdb, cdc, cdd) new_esEs22(vyw4310, vyw4510, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs6(vyw4310, vyw4510, bhe, bhf, bhg) new_esEs28(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Int, cdf) -> new_ltEs18(vyw4310, vyw4510) new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs14(vyw40, vyw300) new_esEs18(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs23(vyw4311, vyw4511, app(app(ty_@2, cae), caf)) -> new_esEs5(vyw4311, vyw4511, cae, caf) new_lt21(vyw430, vyw450, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw430, vyw450, bgc, bgd) new_ltEs20(vyw431, vyw451, app(app(ty_Either, cde), cdf)) -> new_ltEs9(vyw431, vyw451, cde, cdf) new_esEs23(vyw4311, vyw4511, app(ty_Ratio, cad)) -> new_esEs15(vyw4311, vyw4511, cad) new_esEs26(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_esEs18(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_esEs24(vyw430, vyw450, app(ty_Maybe, ccf)) -> new_esEs7(vyw430, vyw450, ccf) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(ty_@2, dcg), dch), cdf) -> new_ltEs6(vyw4310, vyw4510, dcg, dch) new_esEs4(Left(vyw400), Left(vyw3000), ty_Ordering, df) -> new_esEs11(vyw400, vyw3000) new_ltEs12(True, True) -> True new_esEs32(vyw32, vyw34, ty_Int) -> new_esEs8(vyw32, vyw34) new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs6(vyw4311, vyw4511, cag, cah, cba) new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) new_esEs29(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_compare212(vyw430, vyw450, True, cdb, cdc, cdd) -> EQ new_esEs19(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) new_compare11(vyw92, vyw93, vyw94, vyw95, False, bf, bg) -> GT new_ltEs7(vyw4311, vyw4511, app(ty_Ratio, bce)) -> new_ltEs11(vyw4311, vyw4511, bce) new_esEs25(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_esEs32(vyw32, vyw34, ty_Float) -> new_esEs14(vyw32, vyw34) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(app(ty_@2, dea), deb)) -> new_ltEs6(vyw4310, vyw4510, dea, deb) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Float) -> new_ltEs16(vyw4310, vyw4510) new_esEs7(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_@2, db), dc)) -> new_esEs5(vyw400, vyw3000, db, dc) new_lt13(vyw430, vyw450, beh) -> new_esEs11(new_compare0(vyw430, vyw450, beh), LT) new_ltEs19(vyw4312, vyw4512, app(ty_Maybe, cce)) -> new_ltEs15(vyw4312, vyw4512, cce) new_esEs24(vyw430, vyw450, app(app(ty_@2, bgc), bgd)) -> new_esEs5(vyw430, vyw450, bgc, bgd) new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs14(vyw402, vyw3002) new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bdf), bdg)) -> new_ltEs9(vyw4310, vyw4510, bdf, bdg) new_lt10(vyw430, vyw450, bgc, bgd) -> new_esEs11(new_compare16(vyw430, vyw450, bgc, bgd), LT) new_ltEs17(vyw431, vyw451) -> new_not(new_esEs11(new_compare25(vyw431, vyw451), GT)) new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) new_lt5(vyw4310, vyw4510, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt11(vyw4310, vyw4510, bbf, bbg, bbh) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_Maybe, beg)) -> new_ltEs15(vyw4310, vyw4510, beg) new_esEs4(Right(vyw400), Right(vyw3000), de, app(ty_Ratio, dae)) -> new_esEs15(vyw400, vyw3000, dae) new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) new_lt5(vyw4310, vyw4510, ty_Bool) -> new_lt4(vyw4310, vyw4510) new_lt18(vyw430, vyw450) -> new_esEs11(new_compare26(vyw430, vyw450), LT) new_esEs18(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_lt19(vyw4311, vyw4511, app(ty_Maybe, cbc)) -> new_lt14(vyw4311, vyw4511, cbc) new_esEs27(vyw400, vyw3000, app(app(ty_@2, ceh), cfa)) -> new_esEs5(vyw400, vyw3000, ceh, cfa) new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_esEs12(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_lt5(vyw4310, vyw4510, app(ty_[], bca)) -> new_lt13(vyw4310, vyw4510, bca) new_lt19(vyw4311, vyw4511, ty_Int) -> new_lt18(vyw4311, vyw4511) new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs9(vyw40, vyw300) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Double) -> new_ltEs17(vyw4310, vyw4510) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Ratio, chc), df) -> new_esEs15(vyw400, vyw3000, chc) new_esEs23(vyw4311, vyw4511, app(ty_[], cbb)) -> new_esEs13(vyw4311, vyw4511, cbb) new_esEs27(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs24(vyw430, vyw450, ty_Ordering) -> new_esEs11(vyw430, vyw450) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Char, cdf) -> new_ltEs8(vyw4310, vyw4510) new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) new_ltEs20(vyw431, vyw451, ty_Integer) -> new_ltEs14(vyw431, vyw451) new_ltEs7(vyw4311, vyw4511, ty_Char) -> new_ltEs8(vyw4311, vyw4511) new_esEs27(vyw400, vyw3000, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs6(vyw400, vyw3000, ceb, cec, ced) new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs17(vyw402, vyw3002) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Maybe, cha), df) -> new_esEs7(vyw400, vyw3000, cha) new_compare7(vyw4300, vyw4500, ty_@0) -> new_compare6(vyw4300, vyw4500) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Integer, cdf) -> new_ltEs14(vyw4310, vyw4510) new_ltEs9(Right(vyw4310), Left(vyw4510), cde, cdf) -> False new_lt19(vyw4311, vyw4511, app(app(app(ty_@3, cag), cah), cba)) -> new_lt11(vyw4311, vyw4511, cag, cah, cba) new_lt19(vyw4311, vyw4511, app(app(ty_@2, cae), caf)) -> new_lt10(vyw4311, vyw4511, cae, caf) new_lt5(vyw4310, vyw4510, ty_Float) -> new_lt15(vyw4310, vyw4510) new_ltEs20(vyw431, vyw451, ty_Char) -> new_ltEs8(vyw431, vyw451) new_ltEs7(vyw4311, vyw4511, ty_Integer) -> new_ltEs14(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, ty_Double) -> new_lt16(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, ty_Integer) -> new_esEs9(vyw4310, vyw4510) new_compare0([], :(vyw4500, vyw4501), beh) -> LT new_asAs(True, vyw64) -> vyw64 new_esEs21(vyw4310, vyw4510, ty_@0) -> new_esEs10(vyw4310, vyw4510) new_compare28(@2(vyw430, vyw431), @2(vyw450, vyw451), False, ccg, cch) -> new_compare10(vyw430, vyw431, vyw450, vyw451, new_lt21(vyw430, vyw450, ccg), new_asAs(new_esEs24(vyw430, vyw450, ccg), new_ltEs20(vyw431, vyw451, cch)), ccg, cch) new_esEs29(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_esEs27(vyw400, vyw3000, app(ty_[], cef)) -> new_esEs13(vyw400, vyw3000, cef) new_lt20(vyw4310, vyw4510, app(app(ty_@2, bhc), bhd)) -> new_lt10(vyw4310, vyw4510, bhc, bhd) new_lt19(vyw4311, vyw4511, ty_@0) -> new_lt17(vyw4311, vyw4511) new_esEs32(vyw32, vyw34, app(ty_Ratio, dca)) -> new_esEs15(vyw32, vyw34, dca) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs10(LT, LT) -> True new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Int) -> new_ltEs18(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, ty_Double) -> new_lt16(vyw4311, vyw4511) new_esEs28(vyw401, vyw3001, ty_Ordering) -> new_esEs11(vyw401, vyw3001) new_lt5(vyw4310, vyw4510, ty_Integer) -> new_lt12(vyw4310, vyw4510) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_Either, cgd), cge), df) -> new_esEs4(vyw400, vyw3000, cgd, cge) new_esEs21(vyw4310, vyw4510, ty_Double) -> new_esEs16(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, app(ty_Ratio, bbc)) -> new_esEs15(vyw4310, vyw4510, bbc) new_esEs4(Right(vyw400), Right(vyw3000), de, app(ty_Maybe, dac)) -> new_esEs7(vyw400, vyw3000, dac) new_esEs27(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) new_ltEs11(vyw431, vyw451, cdg) -> new_not(new_esEs11(new_compare15(vyw431, vyw451, cdg), GT)) new_ltEs20(vyw431, vyw451, ty_Float) -> new_ltEs16(vyw431, vyw451) new_ltEs20(vyw431, vyw451, app(ty_Ratio, cdg)) -> new_ltEs11(vyw431, vyw451, cdg) new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) new_compare110(vyw430, vyw450, False) -> GT new_esEs24(vyw430, vyw450, ty_Int) -> new_esEs8(vyw430, vyw450) new_compare8(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) new_esEs18(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_lt20(vyw4310, vyw4510, ty_@0) -> new_lt17(vyw4310, vyw4510) new_primCompAux00(vyw119, EQ) -> vyw119 new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Double) -> new_esEs16(vyw400, vyw3000) new_compare0([], [], beh) -> EQ new_esEs20(vyw402, vyw3002, app(app(ty_Either, hc), hd)) -> new_esEs4(vyw402, vyw3002, hc, hd) new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs13(vyw4310, vyw4510, dec, ded, dee) new_esEs19(vyw401, vyw3001, app(app(ty_Either, ga), gb)) -> new_esEs4(vyw401, vyw3001, ga, gb) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_Either, ca), cb)) -> new_esEs4(vyw400, vyw3000, ca, cb) new_ltEs6(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bag, bah) -> new_pePe(new_lt5(vyw4310, vyw4510, bag), new_asAs(new_esEs21(vyw4310, vyw4510, bag), new_ltEs7(vyw4311, vyw4511, bah))) new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs11(vyw402, vyw3002) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs14(vyw4311, vyw4511) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(ty_Maybe, deg)) -> new_ltEs15(vyw4310, vyw4510, deg) new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs12(vyw4311, vyw4511) new_esEs22(vyw4310, vyw4510, app(app(ty_@2, bhc), bhd)) -> new_esEs5(vyw4310, vyw4510, bhc, bhd) new_ltEs12(True, False) -> False new_esEs31(vyw40, vyw300, app(ty_Maybe, bh)) -> new_esEs7(vyw40, vyw300, bh) new_esEs19(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_lt5(vyw4310, vyw4510, app(app(ty_Either, bba), bbb)) -> new_lt7(vyw4310, vyw4510, bba, bbb) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_@0) -> new_esEs10(vyw400, vyw3000) new_ltEs19(vyw4312, vyw4512, ty_Char) -> new_ltEs8(vyw4312, vyw4512) new_ltEs7(vyw4311, vyw4511, ty_Float) -> new_ltEs16(vyw4311, vyw4511) new_esEs29(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, ty_@0) -> new_esEs10(vyw4310, vyw4510) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) new_compare9(vyw430, vyw450, bae, baf) -> new_compare29(vyw430, vyw450, new_esEs4(vyw430, vyw450, bae, baf), bae, baf) new_ltEs19(vyw4312, vyw4512, app(ty_Ratio, cbf)) -> new_ltEs11(vyw4312, vyw4512, cbf) new_esEs9(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_lt21(vyw430, vyw450, app(ty_Maybe, ccf)) -> new_lt14(vyw430, vyw450, ccf) new_esEs4(Right(vyw400), Right(vyw3000), de, app(app(ty_Either, chf), chg)) -> new_esEs4(vyw400, vyw3000, chf, chg) new_lt20(vyw4310, vyw4510, ty_Int) -> new_lt18(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, app(ty_[], bga)) -> new_compare0(vyw4300, vyw4500, bga) new_esEs32(vyw32, vyw34, app(app(ty_@2, dcb), dcc)) -> new_esEs5(vyw32, vyw34, dcb, dcc) new_ltEs5(vyw431, vyw451) -> new_not(new_esEs11(new_compare6(vyw431, vyw451), GT)) new_compare25(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_ltEs12(False, False) -> True new_lt20(vyw4310, vyw4510, app(ty_Maybe, caa)) -> new_lt14(vyw4310, vyw4510, caa) new_esEs29(vyw400, vyw3000, app(app(ty_Either, deh), dfa)) -> new_esEs4(vyw400, vyw3000, deh, dfa) new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs21(vyw4310, vyw4510, app(ty_Maybe, bcb)) -> new_esEs7(vyw4310, vyw4510, bcb) new_ltEs10(GT, GT) -> True new_esEs4(Left(vyw400), Left(vyw3000), ty_Char, df) -> new_esEs12(vyw400, vyw3000) new_esEs11(EQ, EQ) -> True new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Bool) -> new_ltEs12(vyw4310, vyw4510) new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_lt9(vyw430, vyw450, cda) -> new_esEs11(new_compare15(vyw430, vyw450, cda), LT) new_compare10(vyw92, vyw93, vyw94, vyw95, True, vyw97, bf, bg) -> new_compare11(vyw92, vyw93, vyw94, vyw95, True, bf, bg) new_esEs31(vyw40, vyw300, app(ty_Ratio, ec)) -> new_esEs15(vyw40, vyw300, ec) new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) new_esEs28(vyw401, vyw3001, app(ty_[], cfh)) -> new_esEs13(vyw401, vyw3001, cfh) new_esEs32(vyw32, vyw34, app(ty_Maybe, dbg)) -> new_esEs7(vyw32, vyw34, dbg) new_lt21(vyw430, vyw450, ty_Bool) -> new_lt4(vyw430, vyw450) new_lt12(vyw430, vyw450) -> new_esEs11(new_compare18(vyw430, vyw450), LT) new_compare25(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare25(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs24(vyw430, vyw450, app(app(ty_Either, bae), baf)) -> new_esEs4(vyw430, vyw450, bae, baf) new_esEs4(Left(vyw400), Left(vyw3000), ty_Float, df) -> new_esEs14(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(ty_Ratio, gh)) -> new_esEs15(vyw401, vyw3001, gh) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs10(LT, EQ) -> True new_esEs18(vyw400, vyw3000, app(app(ty_Either, ef), eg)) -> new_esEs4(vyw400, vyw3000, ef, eg) new_esEs28(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) new_compare111(vyw430, vyw450, False, ccf) -> GT new_primCompAux0(vyw4300, vyw4500, vyw111, beh) -> new_primCompAux00(vyw111, new_compare7(vyw4300, vyw4500, beh)) new_esEs17(True, True) -> True new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_compare212(vyw430, vyw450, False, cdb, cdc, cdd) -> new_compare112(vyw430, vyw450, new_ltEs13(vyw430, vyw450, cdb, cdc, cdd), cdb, cdc, cdd) new_esEs4(Left(vyw400), Left(vyw3000), ty_Bool, df) -> new_esEs17(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, ty_Char) -> new_compare8(vyw4300, vyw4500) new_compare29(vyw430, vyw450, False, bae, baf) -> new_compare12(vyw430, vyw450, new_ltEs9(vyw430, vyw450, bae, baf), bae, baf) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, dda), ddb), ddc), cdf) -> new_ltEs13(vyw4310, vyw4510, dda, ddb, ddc) new_esEs27(vyw400, vyw3000, app(ty_Maybe, cee)) -> new_esEs7(vyw400, vyw3000, cee) new_esEs4(Left(vyw400), Left(vyw3000), ty_Int, df) -> new_esEs8(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs17(vyw4310, vyw4510) new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs8(vyw4311, vyw4511) new_esEs18(vyw400, vyw3000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs6(vyw400, vyw3000, eh, fa, fb) new_lt20(vyw4310, vyw4510, app(ty_Ratio, bhb)) -> new_lt9(vyw4310, vyw4510, bhb) new_esEs21(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) new_compare24(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare24(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_compare7(vyw4300, vyw4500, app(app(app(ty_@3, bff), bfg), bfh)) -> new_compare17(vyw4300, vyw4500, bff, bfg, bfh) new_lt21(vyw430, vyw450, ty_Char) -> new_lt6(vyw430, vyw450) new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs17(vyw4311, vyw4511) new_not(False) -> True new_compare112(vyw430, vyw450, True, cdb, cdc, cdd) -> LT new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs12(vyw4310, vyw4510) new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), eb) -> new_asAs(new_esEs29(vyw400, vyw3000, eb), new_esEs13(vyw401, vyw3001, eb)) new_esEs20(vyw402, vyw3002, app(ty_Maybe, hh)) -> new_esEs7(vyw402, vyw3002, hh) new_ltEs15(Nothing, Just(vyw4510), bde) -> True new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs16(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, app(app(ty_@2, bfd), bfe)) -> new_compare16(vyw4300, vyw4500, bfd, bfe) new_compare0(:(vyw4300, vyw4301), [], beh) -> GT new_esEs32(vyw32, vyw34, ty_Integer) -> new_esEs9(vyw32, vyw34) new_esEs32(vyw32, vyw34, app(ty_[], dbh)) -> new_esEs13(vyw32, vyw34, dbh) new_primPlusNat0(Succ(vyw8300), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw8300, vyw3000000))) new_esEs27(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, app(ty_[], bhh)) -> new_esEs13(vyw4310, vyw4510, bhh) new_esEs27(vyw400, vyw3000, app(ty_Ratio, ceg)) -> new_esEs15(vyw400, vyw3000, ceg) new_compare7(vyw4300, vyw4500, ty_Int) -> new_compare26(vyw4300, vyw4500) new_ltEs16(vyw431, vyw451) -> new_not(new_esEs11(new_compare24(vyw431, vyw451), GT)) new_esEs22(vyw4310, vyw4510, ty_Integer) -> new_esEs9(vyw4310, vyw4510) new_ltEs10(EQ, GT) -> True new_esEs10(@0, @0) -> True new_esEs29(vyw400, vyw3000, app(ty_Ratio, dfg)) -> new_esEs15(vyw400, vyw3000, dfg) new_compare112(vyw430, vyw450, False, cdb, cdc, cdd) -> GT new_compare13(vyw430, vyw450, True) -> LT new_compare15(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare26(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) new_esEs21(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) new_esEs24(vyw430, vyw450, ty_Double) -> new_esEs16(vyw430, vyw450) new_ltEs10(EQ, EQ) -> True new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(ty_[], def)) -> new_ltEs4(vyw4310, vyw4510, def) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(ty_Ratio, ddh)) -> new_ltEs11(vyw4310, vyw4510, ddh) new_esEs7(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs14(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(ty_Maybe, gf)) -> new_esEs7(vyw401, vyw3001, gf) new_lt5(vyw4310, vyw4510, ty_Ordering) -> new_lt8(vyw4310, vyw4510) new_esEs29(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_esEs18(vyw400, vyw3000, app(ty_[], fd)) -> new_esEs13(vyw400, vyw3000, fd) new_esEs19(vyw401, vyw3001, ty_Ordering) -> new_esEs11(vyw401, vyw3001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs6(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), dg, dh, ea) -> new_asAs(new_esEs18(vyw400, vyw3000, dg), new_asAs(new_esEs19(vyw401, vyw3001, dh), new_esEs20(vyw402, vyw3002, ea))) new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), beh) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, beh), beh) new_esEs18(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs28(vyw401, vyw3001, app(app(ty_@2, cgb), cgc)) -> new_esEs5(vyw401, vyw3001, cgb, cgc) new_esEs18(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_Maybe, dde), cdf) -> new_ltEs15(vyw4310, vyw4510, dde) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Ordering, cdf) -> new_ltEs10(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, ty_Bool) -> new_lt4(vyw4311, vyw4511) new_compare111(vyw430, vyw450, True, ccf) -> LT new_lt21(vyw430, vyw450, ty_Float) -> new_lt15(vyw430, vyw450) new_esEs28(vyw401, vyw3001, app(app(ty_Either, cfb), cfc)) -> new_esEs4(vyw401, vyw3001, cfb, cfc) new_lt20(vyw4310, vyw4510, ty_Ordering) -> new_lt8(vyw4310, vyw4510) new_compare15(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare18(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) new_ltEs7(vyw4311, vyw4511, ty_Ordering) -> new_ltEs10(vyw4311, vyw4511) new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs11(vyw40, vyw300) new_compare6(@0, @0) -> EQ new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_esEs7(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs17(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, app(app(ty_Either, bfa), bfb)) -> new_compare9(vyw4300, vyw4500, bfa, bfb) new_compare7(vyw4300, vyw4500, app(ty_Maybe, bgb)) -> new_compare19(vyw4300, vyw4500, bgb) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs10(vyw4310, vyw4510) new_compare29(vyw430, vyw450, True, bae, baf) -> EQ new_compare17(vyw430, vyw450, cdb, cdc, cdd) -> new_compare212(vyw430, vyw450, new_esEs6(vyw430, vyw450, cdb, cdc, cdd), cdb, cdc, cdd) new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs12(vyw40, vyw300) new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) new_lt21(vyw430, vyw450, app(app(ty_Either, bae), baf)) -> new_lt7(vyw430, vyw450, bae, baf) new_esEs7(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs26(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_lt19(vyw4311, vyw4511, ty_Char) -> new_lt6(vyw4311, vyw4511) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Float, cdf) -> new_ltEs16(vyw4310, vyw4510) new_ltEs19(vyw4312, vyw4512, ty_Float) -> new_ltEs16(vyw4312, vyw4512) new_ltEs14(vyw431, vyw451) -> new_not(new_esEs11(new_compare18(vyw431, vyw451), GT)) new_ltEs7(vyw4311, vyw4511, ty_Bool) -> new_ltEs12(vyw4311, vyw4511) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(vyw32, vyw34, ty_Char) -> new_esEs12(vyw32, vyw34) new_esEs18(vyw400, vyw3000, app(ty_Maybe, fc)) -> new_esEs7(vyw400, vyw3000, fc) new_esEs32(vyw32, vyw34, ty_@0) -> new_esEs10(vyw32, vyw34) new_ltEs20(vyw431, vyw451, app(ty_[], dd)) -> new_ltEs4(vyw431, vyw451, dd) new_lt20(vyw4310, vyw4510, ty_Char) -> new_lt6(vyw4310, vyw4510) new_lt21(vyw430, vyw450, ty_@0) -> new_lt17(vyw430, vyw450) new_esEs18(vyw400, vyw3000, app(app(ty_@2, fg), fh)) -> new_esEs5(vyw400, vyw3000, fg, fh) new_lt5(vyw4310, vyw4510, ty_Double) -> new_lt16(vyw4310, vyw4510) new_esEs24(vyw430, vyw450, ty_Bool) -> new_esEs17(vyw430, vyw450) new_primEqNat0(Zero, Zero) -> True new_esEs25(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_compare13(vyw430, vyw450, False) -> GT new_esEs19(vyw401, vyw3001, ty_Char) -> new_esEs12(vyw401, vyw3001) new_esEs28(vyw401, vyw3001, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(vyw401, vyw3001, cfd, cfe, cff) new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) new_compare7(vyw4300, vyw4500, ty_Integer) -> new_compare18(vyw4300, vyw4500) new_esEs29(vyw400, vyw3000, app(app(ty_@2, dfh), dga)) -> new_esEs5(vyw400, vyw3000, dfh, dga) new_compare19(vyw430, vyw450, ccf) -> new_compare211(vyw430, vyw450, new_esEs7(vyw430, vyw450, ccf), ccf) new_lt21(vyw430, vyw450, ty_Double) -> new_lt16(vyw430, vyw450) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_[], bef)) -> new_ltEs4(vyw4310, vyw4510, bef) new_ltEs10(LT, GT) -> True new_ltEs18(vyw431, vyw451) -> new_not(new_esEs11(new_compare26(vyw431, vyw451), GT)) new_esEs19(vyw401, vyw3001, app(ty_[], gg)) -> new_esEs13(vyw401, vyw3001, gg) new_ltEs19(vyw4312, vyw4512, app(ty_[], ccd)) -> new_ltEs4(vyw4312, vyw4512, ccd) new_asAs(False, vyw64) -> False new_esEs19(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_lt21(vyw430, vyw450, ty_Ordering) -> new_lt8(vyw430, vyw450) new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs12(vyw402, vyw3002) new_esEs28(vyw401, vyw3001, app(ty_Ratio, cga)) -> new_esEs15(vyw401, vyw3001, cga) new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs9(vyw402, vyw3002) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_compare28(vyw43, vyw45, True, ccg, cch) -> EQ new_esEs29(vyw400, vyw3000, app(ty_Maybe, dfe)) -> new_esEs7(vyw400, vyw3000, dfe) new_esEs27(vyw400, vyw3000, app(app(ty_Either, cdh), cea)) -> new_esEs4(vyw400, vyw3000, cdh, cea) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Integer) -> new_ltEs14(vyw4310, vyw4510) new_esEs19(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) new_esEs4(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, cgf), cgg), cgh), df) -> new_esEs6(vyw400, vyw3000, cgf, cgg, cgh) new_ltEs19(vyw4312, vyw4512, ty_Ordering) -> new_ltEs10(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, ty_Ordering) -> new_ltEs10(vyw431, vyw451) new_compare10(vyw92, vyw93, vyw94, vyw95, False, vyw97, bf, bg) -> new_compare11(vyw92, vyw93, vyw94, vyw95, vyw97, bf, bg) new_compare27(vyw430, vyw450, True) -> EQ new_compare12(vyw430, vyw450, True, bae, baf) -> LT new_esEs20(vyw402, vyw3002, app(ty_[], baa)) -> new_esEs13(vyw402, vyw3002, baa) new_esEs15(:%(vyw400, vyw401), :%(vyw3000, vyw3001), ec) -> new_asAs(new_esEs25(vyw400, vyw3000, ec), new_esEs26(vyw401, vyw3001, ec)) new_esEs29(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) The set Q consists of the following terms: new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, ty_Integer) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs9(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs20(x0, x1, ty_Double) new_lt9(x0, x1, x2) new_ltEs9(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primPlusNat0(Zero, Succ(x0)) new_esEs20(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, app(ty_[], x2)) new_compare24(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare24(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare24(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs9(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, ty_Integer) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs10(LT, LT) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Int) new_ltEs9(Right(x0), Right(x1), x2, ty_Ordering) new_compare11(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1) new_ltEs9(Left(x0), Right(x1), x2, x3) new_ltEs9(Right(x0), Left(x1), x2, x3) new_ltEs16(x0, x1) new_compare28(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs17(False, False) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare211(x0, x1, True, x2) new_ltEs19(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Double) new_ltEs9(Left(x0), Left(x1), app(ty_[], x2), x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare24(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_primCompAux00(x0, GT) new_esEs22(x0, x1, ty_Integer) new_compare6(@0, @0) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Bool) new_esEs7(Nothing, Just(x0), x1) new_esEs32(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs26(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Double) new_compare29(x0, x1, True, x2, x3) new_ltEs8(x0, x1) new_esEs23(x0, x1, ty_@0) new_ltEs10(GT, EQ) new_ltEs10(EQ, GT) new_esEs28(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Double) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(x0, x1) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt14(x0, x1, x2) new_compare9(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Float) new_ltEs9(Right(x0), Right(x1), x2, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, x0) new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_esEs14(Float(x0, x1), Float(x2, x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_ltEs9(Right(x0), Right(x1), x2, ty_Char) new_compare0([], :(x0, x1), x2) new_ltEs9(Right(x0), Right(x1), x2, ty_Double) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt21(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt5(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_lt19(x0, x1, ty_Integer) new_ltEs10(EQ, LT) new_ltEs10(GT, GT) new_ltEs10(LT, EQ) new_ltEs20(x0, x1, ty_Bool) new_ltEs9(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs13([], :(x0, x1), x2) new_compare11(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_Float) new_lt18(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs19(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs9(Left(x0), Left(x1), ty_Double, x2) new_ltEs7(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs18(x0, x1, ty_Float) new_esEs11(LT, GT) new_esEs11(GT, LT) new_esEs7(Just(x0), Nothing, x1) new_ltEs20(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Bool) new_compare13(x0, x1, False) new_compare14(x0, x1) new_compare7(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_ltEs9(Right(x0), Right(x1), x2, ty_Integer) new_esEs24(x0, x1, ty_Int) new_compare210(x0, x1, False) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare112(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs21(x0, x1, ty_Int) new_primEqNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_ltEs7(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Ordering) new_pePe(True, x0) new_esEs22(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare25(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare25(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, x2) new_lt10(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt5(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_lt12(x0, x1) new_lt5(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_primPlusNat1(Succ(x0), x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Float) new_esEs13(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Bool) new_esEs12(Char(x0), Char(x1)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Nothing, x1) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_lt6(x0, x1) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_compare17(x0, x1, x2, x3, x4) new_esEs19(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, False, x2, x3) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_compare211(x0, x1, False, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs16(Double(x0, x1), Double(x2, x3)) new_compare111(x0, x1, False, x2) new_ltEs15(Nothing, Just(x0), x1) new_ltEs9(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Integer) new_ltEs18(x0, x1) new_primMulNat0(Succ(x0), Zero) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt19(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Bool) new_ltEs11(x0, x1, x2) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_esEs24(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_lt21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Zero) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(x0, x1) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs19(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs9(Integer(x0), Integer(x1)) new_esEs17(True, True) new_ltEs10(EQ, EQ) new_ltEs7(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_primCompAux00(x0, LT) new_lt19(x0, x1, ty_Ordering) new_ltEs9(Left(x0), Left(x1), ty_Bool, x2) new_ltEs15(Nothing, Nothing, x0) new_esEs19(x0, x1, ty_Integer) new_compare12(x0, x1, True, x2, x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, False) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare7(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Right(x0), Right(x1), x2, ty_Float) new_compare110(x0, x1, False) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare7(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_esEs13([], [], x0) new_primPlusNat0(Zero, Zero) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_compare25(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare7(x0, x1, ty_Integer) new_ltEs5(x0, x1) new_not(True) new_esEs18(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs10(GT, LT) new_ltEs10(LT, GT) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Succ(x0)) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs12(True, True) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(x0, x1, x2) new_compare7(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs21(x0, x1, ty_Bool) new_compare7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Int) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(False, True) new_ltEs12(True, False) new_compare27(x0, x1, True) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(x0, x1, ty_Bool) new_esEs17(False, True) new_esEs17(True, False) new_esEs18(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Char) new_asAs(True, x0) new_compare13(x0, x1, True) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1) new_lt7(x0, x1, x2, x3) new_lt21(x0, x1, ty_Int) new_esEs18(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Char) new_sr(x0, x1) new_esEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Double) new_esEs11(EQ, EQ) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs31(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, ty_Char) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Double) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs9(Left(x0), Left(x1), ty_Ordering, x2) new_lt21(x0, x1, ty_Char) new_compare7(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_compare8(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Float) new_compare18(Integer(x0), Integer(x1)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs9(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, True, x2) new_ltEs20(x0, x1, ty_@0) new_compare7(x0, x1, ty_Double) new_compare110(x0, x1, True) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt5(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) new_esEs19(x0, x1, ty_Ordering) new_compare7(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs21(x0, x1, ty_Ordering) new_compare26(x0, x1) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_compare28(@2(x0, x1), @2(x2, x3), False, x4, x5) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_ltEs19(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare19(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_esEs11(GT, GT) new_esEs24(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Bool) new_compare7(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_esEs24(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_@0) new_esEs21(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs28(x0, x1, ty_Ordering) new_ltEs9(Left(x0), Left(x1), ty_Int, x2) new_compare112(x0, x1, True, x2, x3, x4) new_esEs26(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt8(x0, x1) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_lt20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_@0) new_lt5(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(False, False) new_esEs31(x0, x1, ty_Int) new_lt5(x0, x1, ty_Float) new_ltEs9(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs28(x0, x1, ty_Integer) new_compare7(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(LT, LT) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Left(x0), Left(x1), ty_Char, x2) new_esEs18(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare29(x0, x1, False, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Float) new_ltEs9(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs19(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_lt15(x0, x1) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare16(x0, x1, x2, x3) new_ltEs9(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Double) new_lt5(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Integer) new_pePe(False, x0) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_lt11(x0, x1, x2, x3, x4) new_compare210(x0, x1, True) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpNat0(Zero, Zero) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare212(x0, x1, True, x2, x3, x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs11(new_compare28(@2(vyw21, vyw22), @2(vyw15, vyw16), new_esEs5(@2(vyw21, vyw22), @2(vyw15, vyw16), ba, bb), ba, bb), GT), h, ba, bb) at position [8,0,2] we obtained the following new rules [LPAR04]: (new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs11(new_compare28(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs27(vyw21, vyw15, ba), new_esEs28(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb),new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs11(new_compare28(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs27(vyw21, vyw15, ba), new_esEs28(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb)) ---------------------------------------- (22) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw20, @2(vyw21, vyw22), h, ba, bb) new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw19, @2(vyw21, vyw22), h, ba, bb) new_lookupFM(Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw40, vyw41), bc, bd, be) -> new_lookupFM2(vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw40, vyw41, new_esEs30(vyw40, vyw41, vyw300, vyw301, new_esEs31(vyw40, vyw300, bd), bd, be), bc, bd, be) new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs11(new_compare28(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs27(vyw21, vyw15, ba), new_esEs28(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb) The TRS R consists of the following rules: new_lt19(vyw4311, vyw4511, app(app(ty_Either, cab), cac)) -> new_lt7(vyw4311, vyw4511, cab, cac) new_esEs31(vyw40, vyw300, app(ty_[], eb)) -> new_esEs13(vyw40, vyw300, eb) new_esEs4(Left(vyw400), Left(vyw3000), ty_Double, df) -> new_esEs16(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, app(ty_Maybe, bdd)) -> new_ltEs15(vyw4311, vyw4511, bdd) new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt20(vyw4310, vyw4510, ty_Float) -> new_lt15(vyw4310, vyw4510) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vyw110) -> True new_compare12(vyw430, vyw450, False, bae, baf) -> GT new_ltEs19(vyw4312, vyw4512, ty_@0) -> new_ltEs5(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, app(ty_Maybe, bde)) -> new_ltEs15(vyw431, vyw451, bde) new_ltEs19(vyw4312, vyw4512, app(app(ty_Either, cbd), cbe)) -> new_ltEs9(vyw4312, vyw4512, cbd, cbe) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_lt5(vyw4310, vyw4510, ty_Char) -> new_lt6(vyw4310, vyw4510) new_esEs29(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_compare5(vyw430, vyw450) -> new_compare210(vyw430, vyw450, new_esEs17(vyw430, vyw450)) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_esEs32(vyw32, vyw34, ty_Ordering) -> new_esEs11(vyw32, vyw34) new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs9(vyw4311, vyw4511) new_esEs4(Left(vyw400), Right(vyw3000), de, df) -> False new_esEs4(Right(vyw400), Left(vyw3000), de, df) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs13(vyw4310, vyw4510, bec, bed, bee) new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs16(vyw4311, vyw4511) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Maybe, cf)) -> new_esEs7(vyw400, vyw3000, cf) new_esEs22(vyw4310, vyw4510, app(app(ty_Either, bgh), bha)) -> new_esEs4(vyw4310, vyw4510, bgh, bha) new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_esEs22(vyw4310, vyw4510, ty_Int) -> new_esEs8(vyw4310, vyw4510) new_compare211(vyw430, vyw450, True, ccf) -> EQ new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(app(ty_Either, ddf), ddg)) -> new_ltEs9(vyw4310, vyw4510, ddf, ddg) new_esEs28(vyw401, vyw3001, app(ty_Maybe, cfg)) -> new_esEs7(vyw401, vyw3001, cfg) new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) new_lt21(vyw430, vyw450, app(ty_Ratio, cda)) -> new_lt9(vyw430, vyw450, cda) new_esEs29(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_compare27(vyw430, vyw450, False) -> new_compare13(vyw430, vyw450, new_ltEs10(vyw430, vyw450)) new_compare26(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) new_ltEs10(GT, LT) -> False new_esEs14(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs7(vyw4311, vyw4511, ty_Double) -> new_ltEs17(vyw4311, vyw4511) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_@2, chd), che), df) -> new_esEs5(vyw400, vyw3000, chd, che) new_lt4(vyw430, vyw450) -> new_esEs11(new_compare5(vyw430, vyw450), LT) new_esEs18(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_compare210(vyw430, vyw450, False) -> new_compare110(vyw430, vyw450, new_ltEs12(vyw430, vyw450)) new_lt19(vyw4311, vyw4511, ty_Ordering) -> new_lt8(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, ty_Integer) -> new_lt12(vyw4310, vyw4510) new_ltEs20(vyw431, vyw451, ty_Bool) -> new_ltEs12(vyw431, vyw451) new_esEs21(vyw4310, vyw4510, app(ty_[], bca)) -> new_esEs13(vyw4310, vyw4510, bca) new_esEs18(vyw400, vyw3000, app(ty_Ratio, ff)) -> new_esEs15(vyw400, vyw3000, ff) new_ltEs7(vyw4311, vyw4511, app(ty_[], bdc)) -> new_ltEs4(vyw4311, vyw4511, bdc) new_lt5(vyw4310, vyw4510, ty_@0) -> new_lt17(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Ordering) -> new_esEs11(vyw4310, vyw4510) new_lt20(vyw4310, vyw4510, ty_Bool) -> new_lt4(vyw4310, vyw4510) new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_esEs20(vyw402, vyw3002, app(app(ty_@2, bac), bad)) -> new_esEs5(vyw402, vyw3002, bac, bad) new_lt16(vyw430, vyw450) -> new_esEs11(new_compare25(vyw430, vyw450), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Double, cdf) -> new_ltEs17(vyw4310, vyw4510) new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bea), beb)) -> new_ltEs6(vyw4310, vyw4510, bea, beb) new_esEs24(vyw430, vyw450, app(ty_Ratio, cda)) -> new_esEs15(vyw430, vyw450, cda) new_ltEs10(EQ, LT) -> False new_lt20(vyw4310, vyw4510, app(ty_[], bhh)) -> new_lt13(vyw4310, vyw4510, bhh) new_esEs24(vyw430, vyw450, ty_@0) -> new_esEs10(vyw430, vyw450) new_ltEs7(vyw4311, vyw4511, ty_@0) -> new_ltEs5(vyw4311, vyw4511) new_ltEs19(vyw4312, vyw4512, app(app(ty_@2, cbg), cbh)) -> new_ltEs6(vyw4312, vyw4512, cbg, cbh) new_esEs29(vyw400, vyw3000, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs6(vyw400, vyw3000, dfb, dfc, dfd) new_esEs5(@2(vyw400, vyw401), @2(vyw3000, vyw3001), ed, ee) -> new_asAs(new_esEs27(vyw400, vyw3000, ed), new_esEs28(vyw401, vyw3001, ee)) new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(app(ty_@2, ha), hb)) -> new_esEs5(vyw401, vyw3001, ha, hb) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_@0, cdf) -> new_ltEs5(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, ty_Ordering) -> new_compare14(vyw4300, vyw4500) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Ratio, da)) -> new_esEs15(vyw400, vyw3000, da) new_esEs31(vyw40, vyw300, app(app(ty_@2, ed), ee)) -> new_esEs5(vyw40, vyw300, ed, ee) new_esEs7(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) new_not(True) -> False new_lt5(vyw4310, vyw4510, app(ty_Maybe, bcb)) -> new_lt14(vyw4310, vyw4510, bcb) new_lt5(vyw4310, vyw4510, app(app(ty_@2, bbd), bbe)) -> new_lt10(vyw4310, vyw4510, bbd, bbe) new_lt14(vyw430, vyw450, ccf) -> new_esEs11(new_compare19(vyw430, vyw450, ccf), LT) new_compare7(vyw4300, vyw4500, ty_Bool) -> new_compare5(vyw4300, vyw4500) new_primCompAux00(vyw119, LT) -> LT new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw4310, vyw4510, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs6(vyw4310, vyw4510, bbf, bbg, bbh) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, app(ty_[], cbb)) -> new_lt13(vyw4311, vyw4511, cbb) new_esEs27(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs10(vyw4311, vyw4511) new_esEs27(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_lt15(vyw430, vyw450) -> new_esEs11(new_compare24(vyw430, vyw450), LT) new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, he), hf), hg)) -> new_esEs6(vyw402, vyw3002, he, hf, hg) new_esEs24(vyw430, vyw450, ty_Float) -> new_esEs14(vyw430, vyw450) new_esEs29(vyw400, vyw3000, app(ty_[], dff)) -> new_esEs13(vyw400, vyw3000, dff) new_esEs4(Left(vyw400), Left(vyw3000), ty_@0, df) -> new_esEs10(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, app(app(ty_Either, bcc), bcd)) -> new_ltEs9(vyw4311, vyw4511, bcc, bcd) new_ltEs19(vyw4312, vyw4512, ty_Double) -> new_ltEs17(vyw4312, vyw4512) new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs19(vyw4312, vyw4512, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs13(vyw4312, vyw4512, cca, ccb, ccc) new_esEs28(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_lt5(vyw4310, vyw4510, ty_Int) -> new_lt18(vyw4310, vyw4510) new_ltEs19(vyw4312, vyw4512, ty_Bool) -> new_ltEs12(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, ty_Int) -> new_ltEs18(vyw431, vyw451) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_esEs13([], [], eb) -> True new_compare25(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_ltEs7(vyw4311, vyw4511, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs13(vyw4311, vyw4511, bch, bda, bdb) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Float) -> new_esEs14(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, ty_Int) -> new_ltEs18(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, app(app(ty_Either, bgh), bha)) -> new_lt7(vyw4310, vyw4510, bgh, bha) new_lt19(vyw4311, vyw4511, ty_Integer) -> new_lt12(vyw4311, vyw4511) new_lt8(vyw430, vyw450) -> new_esEs11(new_compare14(vyw430, vyw450), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Bool, cdf) -> new_ltEs12(vyw4310, vyw4510) new_primCompAux00(vyw119, GT) -> GT new_lt19(vyw4311, vyw4511, app(ty_Ratio, cad)) -> new_lt9(vyw4311, vyw4511, cad) new_compare110(vyw430, vyw450, True) -> LT new_ltEs9(Left(vyw4310), Right(vyw4510), cde, cdf) -> True new_ltEs7(vyw4311, vyw4511, app(app(ty_@2, bcf), bcg)) -> new_ltEs6(vyw4311, vyw4511, bcf, bcg) new_compare7(vyw4300, vyw4500, ty_Double) -> new_compare25(vyw4300, vyw4500) new_ltEs20(vyw431, vyw451, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(vyw431, vyw451, bge, bgf, bgg) new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT new_esEs20(vyw402, vyw3002, app(ty_Ratio, bab)) -> new_esEs15(vyw402, vyw3002, bab) new_esEs4(Right(vyw400), Right(vyw3000), de, app(ty_[], dad)) -> new_esEs13(vyw400, vyw3000, dad) new_ltEs10(GT, EQ) -> False new_compare11(vyw92, vyw93, vyw94, vyw95, True, bf, bg) -> LT new_esEs4(Left(vyw400), Left(vyw3000), ty_Integer, df) -> new_esEs9(vyw400, vyw3000) new_lt19(vyw4311, vyw4511, ty_Float) -> new_lt15(vyw4311, vyw4511) new_esEs32(vyw32, vyw34, ty_Bool) -> new_esEs17(vyw32, vyw34) new_ltEs20(vyw431, vyw451, ty_@0) -> new_ltEs5(vyw431, vyw451) new_compare7(vyw4300, vyw4500, app(ty_Ratio, bfc)) -> new_compare15(vyw4300, vyw4500, bfc) new_esEs31(vyw40, vyw300, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs6(vyw40, vyw300, dg, dh, ea) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_[], chb), df) -> new_esEs13(vyw400, vyw3000, chb) new_primCmpNat0(Zero, Succ(vyw45000)) -> LT new_esEs21(vyw4310, vyw4510, ty_Ordering) -> new_esEs11(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, app(app(ty_@2, bbd), bbe)) -> new_esEs5(vyw4310, vyw4510, bbd, bbe) new_esEs28(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) new_esEs19(vyw401, vyw3001, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(vyw401, vyw3001, gc, gd, ge) new_lt5(vyw4310, vyw4510, app(ty_Ratio, bbc)) -> new_lt9(vyw4310, vyw4510, bbc) new_ltEs20(vyw431, vyw451, ty_Double) -> new_ltEs17(vyw431, vyw451) new_compare210(vyw430, vyw450, True) -> EQ new_esEs28(vyw401, vyw3001, ty_Char) -> new_esEs12(vyw401, vyw3001) new_compare14(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs11(vyw430, vyw450)) new_esEs24(vyw430, vyw450, app(ty_[], beh)) -> new_esEs13(vyw430, vyw450, beh) new_esEs22(vyw4310, vyw4510, ty_Double) -> new_esEs16(vyw4310, vyw4510) new_esEs30(vyw31, vyw32, vyw33, vyw34, True, dah, dba) -> new_esEs11(new_compare28(@2(vyw31, vyw32), @2(vyw33, vyw34), new_esEs32(vyw32, vyw34, dba), dah, dba), LT) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_primCmpNat0(Succ(vyw43000), Zero) -> GT new_pePe(False, vyw110) -> vyw110 new_esEs7(Nothing, Just(vyw3000), bh) -> False new_esEs7(Just(vyw400), Nothing, bh) -> False new_lt21(vyw430, vyw450, app(ty_[], beh)) -> new_lt13(vyw430, vyw450, beh) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs14(vyw4310, vyw4510) new_esEs27(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, ty_Float) -> new_compare24(vyw4300, vyw4500) new_esEs21(vyw4310, vyw4510, app(app(ty_Either, bba), bbb)) -> new_esEs4(vyw4310, vyw4510, bba, bbb) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Int) -> new_esEs8(vyw400, vyw3000) new_lt7(vyw430, vyw450, bae, baf) -> new_esEs11(new_compare9(vyw430, vyw450, bae, baf), LT) new_ltEs4(vyw431, vyw451, dd) -> new_not(new_esEs11(new_compare0(vyw431, vyw451, dd), GT)) new_esEs4(Right(vyw400), Right(vyw3000), de, app(app(ty_@2, daf), dag)) -> new_esEs5(vyw400, vyw3000, daf, dag) new_ltEs8(vyw431, vyw451) -> new_not(new_esEs11(new_compare8(vyw431, vyw451), GT)) new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs8(vyw40, vyw300) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_Ratio, bdh)) -> new_ltEs11(vyw4310, vyw4510, bdh) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_esEs32(vyw32, vyw34, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs6(vyw32, vyw34, dbd, dbe, dbf) new_compare16(vyw430, vyw450, bgc, bgd) -> new_compare28(vyw430, vyw450, new_esEs5(vyw430, vyw450, bgc, bgd), bgc, bgd) new_esEs7(Nothing, Nothing, bh) -> True new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs11(vyw4311, vyw4511) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dcf), cdf) -> new_ltEs11(vyw4310, vyw4510, dcf) new_lt21(vyw430, vyw450, ty_Integer) -> new_lt12(vyw430, vyw450) new_esEs21(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) new_ltEs15(Nothing, Nothing, bde) -> True new_ltEs19(vyw4312, vyw4512, ty_Int) -> new_ltEs18(vyw4312, vyw4512) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs18(vyw4310, vyw4510) new_esEs7(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs31(vyw40, vyw300, app(app(ty_Either, de), df)) -> new_esEs4(vyw40, vyw300, de, df) new_esEs29(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_ltEs20(vyw431, vyw451, app(app(ty_@2, bag), bah)) -> new_ltEs6(vyw431, vyw451, bag, bah) new_esEs7(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs9(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Nothing, bde) -> False new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_[], cg)) -> new_esEs13(vyw400, vyw3000, cg) new_compare24(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(ty_Either, dcd), dce), cdf) -> new_ltEs9(vyw4310, vyw4510, dcd, dce) new_esEs18(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT new_esEs32(vyw32, vyw34, ty_Double) -> new_esEs16(vyw32, vyw34) new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_esEs21(vyw4310, vyw4510, ty_Int) -> new_esEs8(vyw4310, vyw4510) new_esEs23(vyw4311, vyw4511, app(app(ty_Either, cab), cac)) -> new_esEs4(vyw4311, vyw4511, cab, cac) new_esEs13(:(vyw400, vyw401), [], eb) -> False new_esEs13([], :(vyw3000, vyw3001), eb) -> False new_lt11(vyw430, vyw450, cdb, cdc, cdd) -> new_esEs11(new_compare17(vyw430, vyw450, cdb, cdc, cdd), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_[], ddd), cdf) -> new_ltEs4(vyw4310, vyw4510, ddd) new_esEs24(vyw430, vyw450, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs6(vyw430, vyw450, cdb, cdc, cdd) new_lt6(vyw430, vyw450) -> new_esEs11(new_compare8(vyw430, vyw450), LT) new_primMulNat0(Succ(vyw40100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_esEs24(vyw430, vyw450, ty_Integer) -> new_esEs9(vyw430, vyw450) new_esEs7(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs6(vyw400, vyw3000, cc, cd, ce) new_esEs24(vyw430, vyw450, ty_Char) -> new_esEs12(vyw430, vyw450) new_compare18(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) new_esEs22(vyw4310, vyw4510, app(ty_Maybe, caa)) -> new_esEs7(vyw4310, vyw4510, caa) new_esEs4(Right(vyw400), Right(vyw3000), de, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(vyw400, vyw3000, chh, daa, dab) new_primPlusNat1(Succ(vyw830), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw830, vyw300000))) new_esEs23(vyw4311, vyw4511, app(ty_Maybe, cbc)) -> new_esEs7(vyw4311, vyw4511, cbc) new_lt20(vyw4310, vyw4510, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_lt11(vyw4310, vyw4510, bhe, bhf, bhg) new_ltEs12(False, True) -> True new_primPlusNat0(Succ(vyw8300), Zero) -> Succ(vyw8300) new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs11(LT, LT) -> True new_ltEs13(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bge, bgf, bgg) -> new_pePe(new_lt20(vyw4310, vyw4510, bge), new_asAs(new_esEs22(vyw4310, vyw4510, bge), new_pePe(new_lt19(vyw4311, vyw4511, bgf), new_asAs(new_esEs23(vyw4311, vyw4511, bgf), new_ltEs19(vyw4312, vyw4512, bgg))))) new_ltEs19(vyw4312, vyw4512, ty_Integer) -> new_ltEs14(vyw4312, vyw4512) new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) new_compare24(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs19(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) new_lt21(vyw430, vyw450, ty_Int) -> new_lt18(vyw430, vyw450) new_compare211(vyw430, vyw450, False, ccf) -> new_compare111(vyw430, vyw450, new_ltEs15(vyw430, vyw450, ccf), ccf) new_esEs22(vyw4310, vyw4510, app(ty_Ratio, bhb)) -> new_esEs15(vyw4310, vyw4510, bhb) new_esEs32(vyw32, vyw34, app(app(ty_Either, dbb), dbc)) -> new_esEs4(vyw32, vyw34, dbb, dbc) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Ordering) -> new_ltEs10(vyw4310, vyw4510) new_lt17(vyw430, vyw450) -> new_esEs11(new_compare6(vyw430, vyw450), LT) new_esEs19(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_esEs30(vyw31, vyw32, vyw33, vyw34, False, dah, dba) -> new_esEs11(new_compare28(@2(vyw31, vyw32), @2(vyw33, vyw34), False, dah, dba), LT) new_lt21(vyw430, vyw450, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(vyw430, vyw450, cdb, cdc, cdd) new_esEs22(vyw4310, vyw4510, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs6(vyw4310, vyw4510, bhe, bhf, bhg) new_esEs28(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Int, cdf) -> new_ltEs18(vyw4310, vyw4510) new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs14(vyw40, vyw300) new_esEs18(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs23(vyw4311, vyw4511, app(app(ty_@2, cae), caf)) -> new_esEs5(vyw4311, vyw4511, cae, caf) new_lt21(vyw430, vyw450, app(app(ty_@2, bgc), bgd)) -> new_lt10(vyw430, vyw450, bgc, bgd) new_ltEs20(vyw431, vyw451, app(app(ty_Either, cde), cdf)) -> new_ltEs9(vyw431, vyw451, cde, cdf) new_esEs23(vyw4311, vyw4511, app(ty_Ratio, cad)) -> new_esEs15(vyw4311, vyw4511, cad) new_esEs26(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_esEs18(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_esEs24(vyw430, vyw450, app(ty_Maybe, ccf)) -> new_esEs7(vyw430, vyw450, ccf) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(ty_@2, dcg), dch), cdf) -> new_ltEs6(vyw4310, vyw4510, dcg, dch) new_esEs4(Left(vyw400), Left(vyw3000), ty_Ordering, df) -> new_esEs11(vyw400, vyw3000) new_ltEs12(True, True) -> True new_esEs32(vyw32, vyw34, ty_Int) -> new_esEs8(vyw32, vyw34) new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs6(vyw4311, vyw4511, cag, cah, cba) new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) new_esEs29(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_compare212(vyw430, vyw450, True, cdb, cdc, cdd) -> EQ new_esEs19(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) new_compare11(vyw92, vyw93, vyw94, vyw95, False, bf, bg) -> GT new_ltEs7(vyw4311, vyw4511, app(ty_Ratio, bce)) -> new_ltEs11(vyw4311, vyw4511, bce) new_esEs25(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_esEs32(vyw32, vyw34, ty_Float) -> new_esEs14(vyw32, vyw34) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(app(ty_@2, dea), deb)) -> new_ltEs6(vyw4310, vyw4510, dea, deb) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Float) -> new_ltEs16(vyw4310, vyw4510) new_esEs7(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_@2, db), dc)) -> new_esEs5(vyw400, vyw3000, db, dc) new_lt13(vyw430, vyw450, beh) -> new_esEs11(new_compare0(vyw430, vyw450, beh), LT) new_ltEs19(vyw4312, vyw4512, app(ty_Maybe, cce)) -> new_ltEs15(vyw4312, vyw4512, cce) new_esEs24(vyw430, vyw450, app(app(ty_@2, bgc), bgd)) -> new_esEs5(vyw430, vyw450, bgc, bgd) new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs14(vyw402, vyw3002) new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bdf), bdg)) -> new_ltEs9(vyw4310, vyw4510, bdf, bdg) new_lt10(vyw430, vyw450, bgc, bgd) -> new_esEs11(new_compare16(vyw430, vyw450, bgc, bgd), LT) new_ltEs17(vyw431, vyw451) -> new_not(new_esEs11(new_compare25(vyw431, vyw451), GT)) new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) new_lt5(vyw4310, vyw4510, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt11(vyw4310, vyw4510, bbf, bbg, bbh) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_Maybe, beg)) -> new_ltEs15(vyw4310, vyw4510, beg) new_esEs4(Right(vyw400), Right(vyw3000), de, app(ty_Ratio, dae)) -> new_esEs15(vyw400, vyw3000, dae) new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) new_lt5(vyw4310, vyw4510, ty_Bool) -> new_lt4(vyw4310, vyw4510) new_lt18(vyw430, vyw450) -> new_esEs11(new_compare26(vyw430, vyw450), LT) new_esEs18(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_lt19(vyw4311, vyw4511, app(ty_Maybe, cbc)) -> new_lt14(vyw4311, vyw4511, cbc) new_esEs27(vyw400, vyw3000, app(app(ty_@2, ceh), cfa)) -> new_esEs5(vyw400, vyw3000, ceh, cfa) new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_esEs12(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_lt5(vyw4310, vyw4510, app(ty_[], bca)) -> new_lt13(vyw4310, vyw4510, bca) new_lt19(vyw4311, vyw4511, ty_Int) -> new_lt18(vyw4311, vyw4511) new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs9(vyw40, vyw300) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Double) -> new_ltEs17(vyw4310, vyw4510) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Ratio, chc), df) -> new_esEs15(vyw400, vyw3000, chc) new_esEs23(vyw4311, vyw4511, app(ty_[], cbb)) -> new_esEs13(vyw4311, vyw4511, cbb) new_esEs27(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs24(vyw430, vyw450, ty_Ordering) -> new_esEs11(vyw430, vyw450) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Char, cdf) -> new_ltEs8(vyw4310, vyw4510) new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) new_ltEs20(vyw431, vyw451, ty_Integer) -> new_ltEs14(vyw431, vyw451) new_ltEs7(vyw4311, vyw4511, ty_Char) -> new_ltEs8(vyw4311, vyw4511) new_esEs27(vyw400, vyw3000, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs6(vyw400, vyw3000, ceb, cec, ced) new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs17(vyw402, vyw3002) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Maybe, cha), df) -> new_esEs7(vyw400, vyw3000, cha) new_compare7(vyw4300, vyw4500, ty_@0) -> new_compare6(vyw4300, vyw4500) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Integer, cdf) -> new_ltEs14(vyw4310, vyw4510) new_ltEs9(Right(vyw4310), Left(vyw4510), cde, cdf) -> False new_lt19(vyw4311, vyw4511, app(app(app(ty_@3, cag), cah), cba)) -> new_lt11(vyw4311, vyw4511, cag, cah, cba) new_lt19(vyw4311, vyw4511, app(app(ty_@2, cae), caf)) -> new_lt10(vyw4311, vyw4511, cae, caf) new_lt5(vyw4310, vyw4510, ty_Float) -> new_lt15(vyw4310, vyw4510) new_ltEs20(vyw431, vyw451, ty_Char) -> new_ltEs8(vyw431, vyw451) new_ltEs7(vyw4311, vyw4511, ty_Integer) -> new_ltEs14(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, ty_Double) -> new_lt16(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, ty_Integer) -> new_esEs9(vyw4310, vyw4510) new_compare0([], :(vyw4500, vyw4501), beh) -> LT new_asAs(True, vyw64) -> vyw64 new_esEs21(vyw4310, vyw4510, ty_@0) -> new_esEs10(vyw4310, vyw4510) new_compare28(@2(vyw430, vyw431), @2(vyw450, vyw451), False, ccg, cch) -> new_compare10(vyw430, vyw431, vyw450, vyw451, new_lt21(vyw430, vyw450, ccg), new_asAs(new_esEs24(vyw430, vyw450, ccg), new_ltEs20(vyw431, vyw451, cch)), ccg, cch) new_esEs29(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_esEs27(vyw400, vyw3000, app(ty_[], cef)) -> new_esEs13(vyw400, vyw3000, cef) new_lt20(vyw4310, vyw4510, app(app(ty_@2, bhc), bhd)) -> new_lt10(vyw4310, vyw4510, bhc, bhd) new_lt19(vyw4311, vyw4511, ty_@0) -> new_lt17(vyw4311, vyw4511) new_esEs32(vyw32, vyw34, app(ty_Ratio, dca)) -> new_esEs15(vyw32, vyw34, dca) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs10(LT, LT) -> True new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Int) -> new_ltEs18(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, ty_Double) -> new_lt16(vyw4311, vyw4511) new_esEs28(vyw401, vyw3001, ty_Ordering) -> new_esEs11(vyw401, vyw3001) new_lt5(vyw4310, vyw4510, ty_Integer) -> new_lt12(vyw4310, vyw4510) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_Either, cgd), cge), df) -> new_esEs4(vyw400, vyw3000, cgd, cge) new_esEs21(vyw4310, vyw4510, ty_Double) -> new_esEs16(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, app(ty_Ratio, bbc)) -> new_esEs15(vyw4310, vyw4510, bbc) new_esEs4(Right(vyw400), Right(vyw3000), de, app(ty_Maybe, dac)) -> new_esEs7(vyw400, vyw3000, dac) new_esEs27(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) new_ltEs11(vyw431, vyw451, cdg) -> new_not(new_esEs11(new_compare15(vyw431, vyw451, cdg), GT)) new_ltEs20(vyw431, vyw451, ty_Float) -> new_ltEs16(vyw431, vyw451) new_ltEs20(vyw431, vyw451, app(ty_Ratio, cdg)) -> new_ltEs11(vyw431, vyw451, cdg) new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) new_compare110(vyw430, vyw450, False) -> GT new_esEs24(vyw430, vyw450, ty_Int) -> new_esEs8(vyw430, vyw450) new_compare8(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) new_esEs18(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_lt20(vyw4310, vyw4510, ty_@0) -> new_lt17(vyw4310, vyw4510) new_primCompAux00(vyw119, EQ) -> vyw119 new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Double) -> new_esEs16(vyw400, vyw3000) new_compare0([], [], beh) -> EQ new_esEs20(vyw402, vyw3002, app(app(ty_Either, hc), hd)) -> new_esEs4(vyw402, vyw3002, hc, hd) new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(app(app(ty_@3, dec), ded), dee)) -> new_ltEs13(vyw4310, vyw4510, dec, ded, dee) new_esEs19(vyw401, vyw3001, app(app(ty_Either, ga), gb)) -> new_esEs4(vyw401, vyw3001, ga, gb) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_Either, ca), cb)) -> new_esEs4(vyw400, vyw3000, ca, cb) new_ltEs6(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bag, bah) -> new_pePe(new_lt5(vyw4310, vyw4510, bag), new_asAs(new_esEs21(vyw4310, vyw4510, bag), new_ltEs7(vyw4311, vyw4511, bah))) new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs11(vyw402, vyw3002) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs14(vyw4311, vyw4511) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(ty_Maybe, deg)) -> new_ltEs15(vyw4310, vyw4510, deg) new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs12(vyw4311, vyw4511) new_esEs22(vyw4310, vyw4510, app(app(ty_@2, bhc), bhd)) -> new_esEs5(vyw4310, vyw4510, bhc, bhd) new_ltEs12(True, False) -> False new_esEs31(vyw40, vyw300, app(ty_Maybe, bh)) -> new_esEs7(vyw40, vyw300, bh) new_esEs19(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_lt5(vyw4310, vyw4510, app(app(ty_Either, bba), bbb)) -> new_lt7(vyw4310, vyw4510, bba, bbb) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_@0) -> new_esEs10(vyw400, vyw3000) new_ltEs19(vyw4312, vyw4512, ty_Char) -> new_ltEs8(vyw4312, vyw4512) new_ltEs7(vyw4311, vyw4511, ty_Float) -> new_ltEs16(vyw4311, vyw4511) new_esEs29(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, ty_@0) -> new_esEs10(vyw4310, vyw4510) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) new_compare9(vyw430, vyw450, bae, baf) -> new_compare29(vyw430, vyw450, new_esEs4(vyw430, vyw450, bae, baf), bae, baf) new_ltEs19(vyw4312, vyw4512, app(ty_Ratio, cbf)) -> new_ltEs11(vyw4312, vyw4512, cbf) new_esEs9(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_lt21(vyw430, vyw450, app(ty_Maybe, ccf)) -> new_lt14(vyw430, vyw450, ccf) new_esEs4(Right(vyw400), Right(vyw3000), de, app(app(ty_Either, chf), chg)) -> new_esEs4(vyw400, vyw3000, chf, chg) new_lt20(vyw4310, vyw4510, ty_Int) -> new_lt18(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, app(ty_[], bga)) -> new_compare0(vyw4300, vyw4500, bga) new_esEs32(vyw32, vyw34, app(app(ty_@2, dcb), dcc)) -> new_esEs5(vyw32, vyw34, dcb, dcc) new_ltEs5(vyw431, vyw451) -> new_not(new_esEs11(new_compare6(vyw431, vyw451), GT)) new_compare25(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_ltEs12(False, False) -> True new_lt20(vyw4310, vyw4510, app(ty_Maybe, caa)) -> new_lt14(vyw4310, vyw4510, caa) new_esEs29(vyw400, vyw3000, app(app(ty_Either, deh), dfa)) -> new_esEs4(vyw400, vyw3000, deh, dfa) new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs21(vyw4310, vyw4510, app(ty_Maybe, bcb)) -> new_esEs7(vyw4310, vyw4510, bcb) new_ltEs10(GT, GT) -> True new_esEs4(Left(vyw400), Left(vyw3000), ty_Char, df) -> new_esEs12(vyw400, vyw3000) new_esEs11(EQ, EQ) -> True new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Bool) -> new_ltEs12(vyw4310, vyw4510) new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_lt9(vyw430, vyw450, cda) -> new_esEs11(new_compare15(vyw430, vyw450, cda), LT) new_compare10(vyw92, vyw93, vyw94, vyw95, True, vyw97, bf, bg) -> new_compare11(vyw92, vyw93, vyw94, vyw95, True, bf, bg) new_esEs31(vyw40, vyw300, app(ty_Ratio, ec)) -> new_esEs15(vyw40, vyw300, ec) new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) new_esEs28(vyw401, vyw3001, app(ty_[], cfh)) -> new_esEs13(vyw401, vyw3001, cfh) new_esEs32(vyw32, vyw34, app(ty_Maybe, dbg)) -> new_esEs7(vyw32, vyw34, dbg) new_lt21(vyw430, vyw450, ty_Bool) -> new_lt4(vyw430, vyw450) new_lt12(vyw430, vyw450) -> new_esEs11(new_compare18(vyw430, vyw450), LT) new_compare25(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare25(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs24(vyw430, vyw450, app(app(ty_Either, bae), baf)) -> new_esEs4(vyw430, vyw450, bae, baf) new_esEs4(Left(vyw400), Left(vyw3000), ty_Float, df) -> new_esEs14(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(ty_Ratio, gh)) -> new_esEs15(vyw401, vyw3001, gh) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs10(LT, EQ) -> True new_esEs18(vyw400, vyw3000, app(app(ty_Either, ef), eg)) -> new_esEs4(vyw400, vyw3000, ef, eg) new_esEs28(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) new_compare111(vyw430, vyw450, False, ccf) -> GT new_primCompAux0(vyw4300, vyw4500, vyw111, beh) -> new_primCompAux00(vyw111, new_compare7(vyw4300, vyw4500, beh)) new_esEs17(True, True) -> True new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_compare212(vyw430, vyw450, False, cdb, cdc, cdd) -> new_compare112(vyw430, vyw450, new_ltEs13(vyw430, vyw450, cdb, cdc, cdd), cdb, cdc, cdd) new_esEs4(Left(vyw400), Left(vyw3000), ty_Bool, df) -> new_esEs17(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, ty_Char) -> new_compare8(vyw4300, vyw4500) new_compare29(vyw430, vyw450, False, bae, baf) -> new_compare12(vyw430, vyw450, new_ltEs9(vyw430, vyw450, bae, baf), bae, baf) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, dda), ddb), ddc), cdf) -> new_ltEs13(vyw4310, vyw4510, dda, ddb, ddc) new_esEs27(vyw400, vyw3000, app(ty_Maybe, cee)) -> new_esEs7(vyw400, vyw3000, cee) new_esEs4(Left(vyw400), Left(vyw3000), ty_Int, df) -> new_esEs8(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs17(vyw4310, vyw4510) new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs8(vyw4311, vyw4511) new_esEs18(vyw400, vyw3000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs6(vyw400, vyw3000, eh, fa, fb) new_lt20(vyw4310, vyw4510, app(ty_Ratio, bhb)) -> new_lt9(vyw4310, vyw4510, bhb) new_esEs21(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) new_compare24(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare24(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_compare7(vyw4300, vyw4500, app(app(app(ty_@3, bff), bfg), bfh)) -> new_compare17(vyw4300, vyw4500, bff, bfg, bfh) new_lt21(vyw430, vyw450, ty_Char) -> new_lt6(vyw430, vyw450) new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs17(vyw4311, vyw4511) new_not(False) -> True new_compare112(vyw430, vyw450, True, cdb, cdc, cdd) -> LT new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs12(vyw4310, vyw4510) new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), eb) -> new_asAs(new_esEs29(vyw400, vyw3000, eb), new_esEs13(vyw401, vyw3001, eb)) new_esEs20(vyw402, vyw3002, app(ty_Maybe, hh)) -> new_esEs7(vyw402, vyw3002, hh) new_ltEs15(Nothing, Just(vyw4510), bde) -> True new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs16(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, app(app(ty_@2, bfd), bfe)) -> new_compare16(vyw4300, vyw4500, bfd, bfe) new_compare0(:(vyw4300, vyw4301), [], beh) -> GT new_esEs32(vyw32, vyw34, ty_Integer) -> new_esEs9(vyw32, vyw34) new_esEs32(vyw32, vyw34, app(ty_[], dbh)) -> new_esEs13(vyw32, vyw34, dbh) new_primPlusNat0(Succ(vyw8300), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw8300, vyw3000000))) new_esEs27(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, app(ty_[], bhh)) -> new_esEs13(vyw4310, vyw4510, bhh) new_esEs27(vyw400, vyw3000, app(ty_Ratio, ceg)) -> new_esEs15(vyw400, vyw3000, ceg) new_compare7(vyw4300, vyw4500, ty_Int) -> new_compare26(vyw4300, vyw4500) new_ltEs16(vyw431, vyw451) -> new_not(new_esEs11(new_compare24(vyw431, vyw451), GT)) new_esEs22(vyw4310, vyw4510, ty_Integer) -> new_esEs9(vyw4310, vyw4510) new_ltEs10(EQ, GT) -> True new_esEs10(@0, @0) -> True new_esEs29(vyw400, vyw3000, app(ty_Ratio, dfg)) -> new_esEs15(vyw400, vyw3000, dfg) new_compare112(vyw430, vyw450, False, cdb, cdc, cdd) -> GT new_compare13(vyw430, vyw450, True) -> LT new_compare15(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare26(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) new_esEs21(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) new_esEs24(vyw430, vyw450, ty_Double) -> new_esEs16(vyw430, vyw450) new_ltEs10(EQ, EQ) -> True new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(ty_[], def)) -> new_ltEs4(vyw4310, vyw4510, def) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, app(ty_Ratio, ddh)) -> new_ltEs11(vyw4310, vyw4510, ddh) new_esEs7(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs14(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(ty_Maybe, gf)) -> new_esEs7(vyw401, vyw3001, gf) new_lt5(vyw4310, vyw4510, ty_Ordering) -> new_lt8(vyw4310, vyw4510) new_esEs29(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_esEs18(vyw400, vyw3000, app(ty_[], fd)) -> new_esEs13(vyw400, vyw3000, fd) new_esEs19(vyw401, vyw3001, ty_Ordering) -> new_esEs11(vyw401, vyw3001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs6(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), dg, dh, ea) -> new_asAs(new_esEs18(vyw400, vyw3000, dg), new_asAs(new_esEs19(vyw401, vyw3001, dh), new_esEs20(vyw402, vyw3002, ea))) new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), beh) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, beh), beh) new_esEs18(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs28(vyw401, vyw3001, app(app(ty_@2, cgb), cgc)) -> new_esEs5(vyw401, vyw3001, cgb, cgc) new_esEs18(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_Maybe, dde), cdf) -> new_ltEs15(vyw4310, vyw4510, dde) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Ordering, cdf) -> new_ltEs10(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, ty_Bool) -> new_lt4(vyw4311, vyw4511) new_compare111(vyw430, vyw450, True, ccf) -> LT new_lt21(vyw430, vyw450, ty_Float) -> new_lt15(vyw430, vyw450) new_esEs28(vyw401, vyw3001, app(app(ty_Either, cfb), cfc)) -> new_esEs4(vyw401, vyw3001, cfb, cfc) new_lt20(vyw4310, vyw4510, ty_Ordering) -> new_lt8(vyw4310, vyw4510) new_compare15(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare18(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) new_ltEs7(vyw4311, vyw4511, ty_Ordering) -> new_ltEs10(vyw4311, vyw4511) new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs11(vyw40, vyw300) new_compare6(@0, @0) -> EQ new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_esEs7(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs17(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, app(app(ty_Either, bfa), bfb)) -> new_compare9(vyw4300, vyw4500, bfa, bfb) new_compare7(vyw4300, vyw4500, app(ty_Maybe, bgb)) -> new_compare19(vyw4300, vyw4500, bgb) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs10(vyw4310, vyw4510) new_compare29(vyw430, vyw450, True, bae, baf) -> EQ new_compare17(vyw430, vyw450, cdb, cdc, cdd) -> new_compare212(vyw430, vyw450, new_esEs6(vyw430, vyw450, cdb, cdc, cdd), cdb, cdc, cdd) new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs12(vyw40, vyw300) new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) new_lt21(vyw430, vyw450, app(app(ty_Either, bae), baf)) -> new_lt7(vyw430, vyw450, bae, baf) new_esEs7(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs26(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_lt19(vyw4311, vyw4511, ty_Char) -> new_lt6(vyw4311, vyw4511) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Float, cdf) -> new_ltEs16(vyw4310, vyw4510) new_ltEs19(vyw4312, vyw4512, ty_Float) -> new_ltEs16(vyw4312, vyw4512) new_ltEs14(vyw431, vyw451) -> new_not(new_esEs11(new_compare18(vyw431, vyw451), GT)) new_ltEs7(vyw4311, vyw4511, ty_Bool) -> new_ltEs12(vyw4311, vyw4511) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(vyw32, vyw34, ty_Char) -> new_esEs12(vyw32, vyw34) new_esEs18(vyw400, vyw3000, app(ty_Maybe, fc)) -> new_esEs7(vyw400, vyw3000, fc) new_esEs32(vyw32, vyw34, ty_@0) -> new_esEs10(vyw32, vyw34) new_ltEs20(vyw431, vyw451, app(ty_[], dd)) -> new_ltEs4(vyw431, vyw451, dd) new_lt20(vyw4310, vyw4510, ty_Char) -> new_lt6(vyw4310, vyw4510) new_lt21(vyw430, vyw450, ty_@0) -> new_lt17(vyw430, vyw450) new_esEs18(vyw400, vyw3000, app(app(ty_@2, fg), fh)) -> new_esEs5(vyw400, vyw3000, fg, fh) new_lt5(vyw4310, vyw4510, ty_Double) -> new_lt16(vyw4310, vyw4510) new_esEs24(vyw430, vyw450, ty_Bool) -> new_esEs17(vyw430, vyw450) new_primEqNat0(Zero, Zero) -> True new_esEs25(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_compare13(vyw430, vyw450, False) -> GT new_esEs19(vyw401, vyw3001, ty_Char) -> new_esEs12(vyw401, vyw3001) new_esEs28(vyw401, vyw3001, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(vyw401, vyw3001, cfd, cfe, cff) new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) new_compare7(vyw4300, vyw4500, ty_Integer) -> new_compare18(vyw4300, vyw4500) new_esEs29(vyw400, vyw3000, app(app(ty_@2, dfh), dga)) -> new_esEs5(vyw400, vyw3000, dfh, dga) new_compare19(vyw430, vyw450, ccf) -> new_compare211(vyw430, vyw450, new_esEs7(vyw430, vyw450, ccf), ccf) new_lt21(vyw430, vyw450, ty_Double) -> new_lt16(vyw430, vyw450) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_[], bef)) -> new_ltEs4(vyw4310, vyw4510, bef) new_ltEs10(LT, GT) -> True new_ltEs18(vyw431, vyw451) -> new_not(new_esEs11(new_compare26(vyw431, vyw451), GT)) new_esEs19(vyw401, vyw3001, app(ty_[], gg)) -> new_esEs13(vyw401, vyw3001, gg) new_ltEs19(vyw4312, vyw4512, app(ty_[], ccd)) -> new_ltEs4(vyw4312, vyw4512, ccd) new_asAs(False, vyw64) -> False new_esEs19(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_lt21(vyw430, vyw450, ty_Ordering) -> new_lt8(vyw430, vyw450) new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs12(vyw402, vyw3002) new_esEs28(vyw401, vyw3001, app(ty_Ratio, cga)) -> new_esEs15(vyw401, vyw3001, cga) new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs10(vyw40, vyw300) new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs9(vyw402, vyw3002) new_esEs4(Right(vyw400), Right(vyw3000), de, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_compare28(vyw43, vyw45, True, ccg, cch) -> EQ new_esEs29(vyw400, vyw3000, app(ty_Maybe, dfe)) -> new_esEs7(vyw400, vyw3000, dfe) new_esEs27(vyw400, vyw3000, app(app(ty_Either, cdh), cea)) -> new_esEs4(vyw400, vyw3000, cdh, cea) new_ltEs9(Right(vyw4310), Right(vyw4510), cde, ty_Integer) -> new_ltEs14(vyw4310, vyw4510) new_esEs19(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) new_esEs4(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, cgf), cgg), cgh), df) -> new_esEs6(vyw400, vyw3000, cgf, cgg, cgh) new_ltEs19(vyw4312, vyw4512, ty_Ordering) -> new_ltEs10(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, ty_Ordering) -> new_ltEs10(vyw431, vyw451) new_compare10(vyw92, vyw93, vyw94, vyw95, False, vyw97, bf, bg) -> new_compare11(vyw92, vyw93, vyw94, vyw95, vyw97, bf, bg) new_compare27(vyw430, vyw450, True) -> EQ new_compare12(vyw430, vyw450, True, bae, baf) -> LT new_esEs20(vyw402, vyw3002, app(ty_[], baa)) -> new_esEs13(vyw402, vyw3002, baa) new_esEs15(:%(vyw400, vyw401), :%(vyw3000, vyw3001), ec) -> new_asAs(new_esEs25(vyw400, vyw3000, ec), new_esEs26(vyw401, vyw3001, ec)) new_esEs29(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) The set Q consists of the following terms: new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, ty_Integer) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs9(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs20(x0, x1, ty_Double) new_lt9(x0, x1, x2) new_ltEs9(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primPlusNat0(Zero, Succ(x0)) new_esEs20(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, app(ty_[], x2)) new_compare24(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare24(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare24(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs9(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, ty_Integer) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs10(LT, LT) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Int) new_ltEs9(Right(x0), Right(x1), x2, ty_Ordering) new_compare11(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1) new_ltEs9(Left(x0), Right(x1), x2, x3) new_ltEs9(Right(x0), Left(x1), x2, x3) new_ltEs16(x0, x1) new_compare28(x0, x1, True, x2, x3) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs17(False, False) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare211(x0, x1, True, x2) new_ltEs19(x0, x1, ty_Integer) new_compare212(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Double) new_ltEs9(Left(x0), Left(x1), app(ty_[], x2), x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare24(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_primCompAux00(x0, GT) new_esEs22(x0, x1, ty_Integer) new_compare6(@0, @0) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Bool) new_esEs7(Nothing, Just(x0), x1) new_esEs32(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs26(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Double) new_compare29(x0, x1, True, x2, x3) new_ltEs8(x0, x1) new_esEs23(x0, x1, ty_@0) new_ltEs10(GT, EQ) new_ltEs10(EQ, GT) new_esEs28(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Double) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(x0, x1) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt14(x0, x1, x2) new_compare9(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Float) new_ltEs9(Right(x0), Right(x1), x2, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, x0) new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_esEs14(Float(x0, x1), Float(x2, x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_ltEs9(Right(x0), Right(x1), x2, ty_Char) new_compare0([], :(x0, x1), x2) new_ltEs9(Right(x0), Right(x1), x2, ty_Double) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt21(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt5(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_lt19(x0, x1, ty_Integer) new_ltEs10(EQ, LT) new_ltEs10(GT, GT) new_ltEs10(LT, EQ) new_ltEs20(x0, x1, ty_Bool) new_ltEs9(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs13([], :(x0, x1), x2) new_compare11(x0, x1, x2, x3, False, x4, x5) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_Float) new_lt18(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs19(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs9(Left(x0), Left(x1), ty_Double, x2) new_ltEs7(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_esEs18(x0, x1, ty_Float) new_esEs11(LT, GT) new_esEs11(GT, LT) new_esEs7(Just(x0), Nothing, x1) new_ltEs20(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Bool) new_compare13(x0, x1, False) new_compare14(x0, x1) new_compare7(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_ltEs9(Right(x0), Right(x1), x2, ty_Integer) new_esEs24(x0, x1, ty_Int) new_compare210(x0, x1, False) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare112(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs21(x0, x1, ty_Int) new_primEqNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_ltEs7(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Ordering) new_pePe(True, x0) new_esEs22(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare25(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare25(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, x2) new_lt10(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt5(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_lt12(x0, x1) new_lt5(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_primPlusNat1(Succ(x0), x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Float) new_esEs13(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Bool) new_esEs12(Char(x0), Char(x1)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Nothing, x1) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_lt6(x0, x1) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_compare17(x0, x1, x2, x3, x4) new_esEs19(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, False, x2, x3) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_compare211(x0, x1, False, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs27(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs16(Double(x0, x1), Double(x2, x3)) new_compare111(x0, x1, False, x2) new_ltEs15(Nothing, Just(x0), x1) new_ltEs9(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Integer) new_ltEs18(x0, x1) new_primMulNat0(Succ(x0), Zero) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt19(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Bool) new_ltEs11(x0, x1, x2) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_esEs24(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_lt21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Zero) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(x0, x1) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs19(x0, x1, ty_@0) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs9(Integer(x0), Integer(x1)) new_esEs17(True, True) new_ltEs10(EQ, EQ) new_ltEs7(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_primCompAux00(x0, LT) new_lt19(x0, x1, ty_Ordering) new_ltEs9(Left(x0), Left(x1), ty_Bool, x2) new_ltEs15(Nothing, Nothing, x0) new_esEs19(x0, x1, ty_Integer) new_compare12(x0, x1, True, x2, x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, False) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare7(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Right(x0), Right(x1), x2, ty_Float) new_compare110(x0, x1, False) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare7(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_esEs13([], [], x0) new_primPlusNat0(Zero, Zero) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_compare25(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare7(x0, x1, ty_Integer) new_ltEs5(x0, x1) new_not(True) new_esEs18(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs10(GT, LT) new_ltEs10(LT, GT) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Succ(x0)) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs12(True, True) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(x0, x1, x2) new_compare7(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs21(x0, x1, ty_Bool) new_compare7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Int) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(False, True) new_ltEs12(True, False) new_compare27(x0, x1, True) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(x0, x1, ty_Bool) new_esEs17(False, True) new_esEs17(True, False) new_esEs18(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Char) new_asAs(True, x0) new_compare13(x0, x1, True) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1) new_lt7(x0, x1, x2, x3) new_lt21(x0, x1, ty_Int) new_esEs18(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Char) new_sr(x0, x1) new_esEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Double) new_esEs11(EQ, EQ) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt21(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs31(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, ty_Char) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Double) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs9(Left(x0), Left(x1), ty_Ordering, x2) new_lt21(x0, x1, ty_Char) new_compare7(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_compare8(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Float) new_compare18(Integer(x0), Integer(x1)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs9(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, True, x2) new_ltEs20(x0, x1, ty_@0) new_compare7(x0, x1, ty_Double) new_compare110(x0, x1, True) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt5(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) new_esEs19(x0, x1, ty_Ordering) new_compare7(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs21(x0, x1, ty_Ordering) new_compare26(x0, x1) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_compare28(@2(x0, x1), @2(x2, x3), False, x4, x5) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_ltEs19(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare19(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_esEs11(GT, GT) new_esEs24(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Bool) new_compare7(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_esEs24(x0, x1, ty_@0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_@0) new_esEs21(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs28(x0, x1, ty_Ordering) new_ltEs9(Left(x0), Left(x1), ty_Int, x2) new_compare112(x0, x1, True, x2, x3, x4) new_esEs26(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt8(x0, x1) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_lt20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_@0) new_lt5(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(False, False) new_esEs31(x0, x1, ty_Int) new_lt5(x0, x1, ty_Float) new_ltEs9(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs28(x0, x1, ty_Integer) new_compare7(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(LT, LT) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Left(x0), Left(x1), ty_Char, x2) new_esEs18(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare29(x0, x1, False, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Float) new_ltEs9(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs19(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_lt15(x0, x1) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare16(x0, x1, x2, x3) new_ltEs9(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Double) new_lt5(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Integer) new_pePe(False, x0) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_lt11(x0, x1, x2, x3, x4) new_compare210(x0, x1, True) new_esEs31(x0, x1, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpNat0(Zero, Zero) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare212(x0, x1, True, x2, x3, x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (23) 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_lookupFM(Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw40, vyw41), bc, bd, be) -> new_lookupFM2(vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw40, vyw41, new_esEs30(vyw40, vyw41, vyw300, vyw301, new_esEs31(vyw40, vyw300, bd), bd, be), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 10, 4 >= 11, 5 >= 12 *new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs11(new_compare28(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs27(vyw21, vyw15, ba), new_esEs28(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 *new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw19, @2(vyw21, vyw22), h, ba, bb) The graph contains the following edges 5 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 *new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw20, @2(vyw21, vyw22), h, ba, bb) The graph contains the following edges 6 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 ---------------------------------------- (24) YES ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(vyw400, vyw3000, bc, bd, be) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, ed), dg, dh) -> new_esEs1(vyw400, vyw3000, ed) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw400, vyw3000, ce, cf, cg) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), bbf) -> new_esEs2(vyw401, vyw3001, bbf) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, de), df), dg, dh) -> new_esEs(vyw400, vyw3000, de, df) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(vyw401, vyw3001, fc, fd, ff) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw400, vyw3000, bcb, bcc, bcd) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(app(ty_Either, bdb), bdc)) -> new_esEs(vyw401, vyw3001, bdb, bdc) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(ty_Maybe, gh)) -> new_esEs1(vyw402, vyw3002, gh) new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_@2, bh), ca), bb) -> new_esEs3(vyw400, vyw3000, bh, ca) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(ty_Maybe, fg), dh) -> new_esEs1(vyw401, vyw3001, fg) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, bag), bah), bba)) -> new_esEs0(vyw400, vyw3000, bag, bah, bba) new_esEs1(Just(vyw400), Just(vyw3000), app(app(ty_Either, hd), he)) -> new_esEs(vyw400, vyw3000, hd, he) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_@2, dc), dd)) -> new_esEs3(vyw400, vyw3000, dc, dd) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(app(ty_Either, gc), gd)) -> new_esEs(vyw402, vyw3002, gc, gd) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(app(ty_@2, ga), gb), dh) -> new_esEs3(vyw401, vyw3001, ga, gb) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, ef), eg), dg, dh) -> new_esEs3(vyw400, vyw3000, ef, eg) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, bae), baf)) -> new_esEs(vyw400, vyw3000, bae, baf) new_esEs1(Just(vyw400), Just(vyw3000), app(app(ty_@2, bac), bad)) -> new_esEs3(vyw400, vyw3000, bac, bad) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, bce), bca) -> new_esEs1(vyw400, vyw3000, bce) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, bbd), bbe)) -> new_esEs3(vyw400, vyw3000, bbd, bbe) new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_Maybe, da)) -> new_esEs1(vyw400, vyw3000, da) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(vyw401, vyw3001, bea, beb) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(ty_Maybe, bdg)) -> new_esEs1(vyw401, vyw3001, bdg) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(vyw402, vyw3002, ge, gf, gg) new_esEs1(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw400, vyw3000, hf, hg, hh) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw400, vyw3000, cc, cd) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(vyw401, vyw3001, bdd, bde, bdf) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(app(ty_Either, fa), fb), dh) -> new_esEs(vyw401, vyw3001, fa, fb) new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_[], db)) -> new_esEs2(vyw400, vyw3000, db) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], bcf), bca) -> new_esEs2(vyw400, vyw3000, bcf) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, bcg), bch), bca) -> new_esEs3(vyw400, vyw3000, bcg, bch) new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw400, vyw3000, h, ba) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(ty_[], bdh)) -> new_esEs2(vyw401, vyw3001, bdh) new_esEs1(Just(vyw400), Just(vyw3000), app(ty_[], bab)) -> new_esEs2(vyw400, vyw3000, bab) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], bbc)) -> new_esEs2(vyw400, vyw3000, bbc) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(app(ty_@2, hb), hc)) -> new_esEs3(vyw402, vyw3002, hb, hc) new_esEs(Left(vyw400), Left(vyw3000), app(ty_[], bg), bb) -> new_esEs2(vyw400, vyw3000, bg) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(ty_[], ha)) -> new_esEs2(vyw402, vyw3002, ha) new_esEs(Left(vyw400), Left(vyw3000), app(ty_Maybe, bf), bb) -> new_esEs1(vyw400, vyw3000, bf) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(ty_[], fh), dh) -> new_esEs2(vyw401, vyw3001, fh) new_esEs1(Just(vyw400), Just(vyw3000), app(ty_Maybe, baa)) -> new_esEs1(vyw400, vyw3000, baa) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, bbg), bbh), bca) -> new_esEs(vyw400, vyw3000, bbg, bbh) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], ee), dg, dh) -> new_esEs2(vyw400, vyw3000, ee) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(vyw400, vyw3000, ea, eb, ec) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, bbb)) -> new_esEs1(vyw400, vyw3000, bbb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (26) 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_esEs1(Just(vyw400), Just(vyw3000), app(app(ty_Either, hd), he)) -> new_esEs(vyw400, vyw3000, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw400, vyw3000, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, bae), baf)) -> new_esEs(vyw400, vyw3000, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw400), Just(vyw3000), app(ty_[], bab)) -> new_esEs2(vyw400, vyw3000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, bag), bah), bba)) -> new_esEs0(vyw400, vyw3000, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vyw400), Just(vyw3000), app(app(ty_@2, bac), bad)) -> new_esEs3(vyw400, vyw3000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw400), Just(vyw3000), app(ty_Maybe, baa)) -> new_esEs1(vyw400, vyw3000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, bbd), bbe)) -> new_esEs3(vyw400, vyw3000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, bbb)) -> new_esEs1(vyw400, vyw3000, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, de), df), dg, dh) -> new_esEs(vyw400, vyw3000, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(app(ty_Either, gc), gd)) -> new_esEs(vyw402, vyw3002, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(app(ty_Either, fa), fb), dh) -> new_esEs(vyw401, vyw3001, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(vyw401, vyw3001, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(vyw402, vyw3002, ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(vyw400, vyw3000, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(ty_[], ha)) -> new_esEs2(vyw402, vyw3002, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(ty_[], fh), dh) -> new_esEs2(vyw401, vyw3001, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], ee), dg, dh) -> new_esEs2(vyw400, vyw3000, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(app(ty_@2, ga), gb), dh) -> new_esEs3(vyw401, vyw3001, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, ef), eg), dg, dh) -> new_esEs3(vyw400, vyw3000, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(app(ty_@2, hb), hc)) -> new_esEs3(vyw402, vyw3002, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, ed), dg, dh) -> new_esEs1(vyw400, vyw3000, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, dg, app(ty_Maybe, gh)) -> new_esEs1(vyw402, vyw3002, gh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), eh, app(ty_Maybe, fg), dh) -> new_esEs1(vyw401, vyw3001, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw400, vyw3000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw400, vyw3000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(app(ty_Either, bdb), bdc)) -> new_esEs(vyw401, vyw3001, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, bbg), bbh), bca) -> new_esEs(vyw400, vyw3000, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(vyw400, vyw3000, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw400, vyw3000, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw400, vyw3000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(vyw401, vyw3001, bdd, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), bbf) -> new_esEs2(vyw401, vyw3001, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], bbc)) -> new_esEs2(vyw400, vyw3000, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_[], db)) -> new_esEs2(vyw400, vyw3000, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw400), Left(vyw3000), app(ty_[], bg), bb) -> new_esEs2(vyw400, vyw3000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], bcf), bca) -> new_esEs2(vyw400, vyw3000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(ty_[], bdh)) -> new_esEs2(vyw401, vyw3001, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_@2, bh), ca), bb) -> new_esEs3(vyw400, vyw3000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_@2, dc), dd)) -> new_esEs3(vyw400, vyw3000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_Maybe, da)) -> new_esEs1(vyw400, vyw3000, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw400), Left(vyw3000), app(ty_Maybe, bf), bb) -> new_esEs1(vyw400, vyw3000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(vyw401, vyw3001, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, bcg), bch), bca) -> new_esEs3(vyw400, vyw3000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, bce), bca) -> new_esEs1(vyw400, vyw3000, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bda, app(ty_Maybe, bdg)) -> new_esEs1(vyw401, vyw3001, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (27) YES ---------------------------------------- (28) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (29) 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(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (30) YES ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyw8300), Succ(vyw3000000)) -> new_primPlusNat(vyw8300, vyw3000000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (32) 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(vyw8300), Succ(vyw3000000)) -> new_primPlusNat(vyw8300, vyw3000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (33) YES ---------------------------------------- (34) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (35) 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(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (36) YES ---------------------------------------- (37) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(ty_Maybe, dd)) -> new_ltEs3(vyw4310, vyw4510, dd) new_primCompAux(vyw4300, vyw4500, vyw111, app(ty_Maybe, bdb)) -> new_compare4(vyw4300, vyw4500, bdb) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(app(ty_@2, hh), baa), hg) -> new_lt0(vyw4311, vyw4511, hh, baa) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(ty_Maybe, ef)) -> new_ltEs3(vyw4311, vyw4511, ef) new_lt0(vyw430, vyw450, bde, bdf) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, bde, bdf), bde, bdf) new_lt2(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_compare(vyw4301, vyw4501, bca) new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(ty_Maybe, ca)), bb)) -> new_ltEs3(vyw4310, vyw4510, ca) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(app(app(ty_@3, bbc), bbd), bbe)), gc), hg)) -> new_lt1(vyw4310, vyw4510, bbc, bbd, bbe) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(app(ty_@2, gf), gg))) -> new_ltEs0(vyw4312, vyw4512, gf, gg) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_Either, bag), bah), gc, hg) -> new_lt(vyw4310, vyw4510, bag, bah) new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(ty_Maybe, beh))) -> new_ltEs3(vyw4310, vyw4510, beh) new_primCompAux(vyw4300, vyw4500, vyw111, app(app(app(ty_@3, bcf), bcg), bch)) -> new_compare3(vyw4300, vyw4500, bcf, bcg, bch) new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(app(ty_@2, beb), bec))) -> new_ltEs0(vyw4310, vyw4510, beb, bec) new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(ty_Maybe, dd))) -> new_ltEs3(vyw4310, vyw4510, dd) new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_Either, bdc), bdd), bfa) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, bdc, bdd), bdc, bdd) new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(ty_Maybe, bfe), bfa) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfe), bfe) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(app(ty_@2, dh), ea)) -> new_ltEs0(vyw4311, vyw4511, dh, ea) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(app(app(ty_@3, bab), bac), bad), hg) -> new_lt1(vyw4311, vyw4511, bab, bac, bad) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(ty_[], fh)), fa)) -> new_lt2(vyw4310, vyw4510, fh) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(app(ty_Either, df), dg)) -> new_ltEs(vyw4311, vyw4511, df, dg) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(app(ty_@3, fd), ff), fg), fa) -> new_lt1(vyw4310, vyw4510, fd, ff, fg) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(app(ty_@2, dh), ea))) -> new_ltEs0(vyw4311, vyw4511, dh, ea) new_ltEs3(Just(vyw4310), Just(vyw4510), app(ty_[], beg)) -> new_ltEs2(vyw4310, vyw4510, beg) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs1(vyw4311, vyw4511, eb, ec, ed) new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(ty_[], bh)), bb)) -> new_ltEs2(vyw4310, vyw4510, bh) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_Maybe, ga), fa) -> new_lt3(vyw4310, vyw4510, ga) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(ty_[], bae), hg) -> new_lt2(vyw4311, vyw4511, bae) new_ltEs(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ca), bb) -> new_ltEs3(vyw4310, vyw4510, ca) new_ltEs3(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bdh), bea)) -> new_ltEs(vyw4310, vyw4510, bdh, bea) new_primCompAux(vyw4300, vyw4500, vyw111, app(app(ty_@2, bcd), bce)) -> new_compare2(vyw4300, vyw4500, bcd, bce) new_ltEs3(Just(vyw4310), Just(vyw4510), app(app(ty_@2, beb), bec)) -> new_ltEs0(vyw4310, vyw4510, beb, bec) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(app(ty_Either, df), dg))) -> new_ltEs(vyw4311, vyw4511, df, dg) new_ltEs(Left(vyw4310), Left(vyw4510), app(app(ty_@2, bc), bd), bb) -> new_ltEs0(vyw4310, vyw4510, bc, bd) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(ty_[], bae)), hg)) -> new_lt2(vyw4311, vyw4511, bae) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(ty_[], hc)) -> new_ltEs2(vyw4312, vyw4512, hc) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_Maybe, bbg), gc, hg) -> new_lt3(vyw4310, vyw4510, bbg) new_ltEs(Left(vyw4310), Left(vyw4510), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw4310, vyw4510, h, ba) new_compare2(vyw430, vyw450, bde, bdf) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, bde, bdf), bde, bdf) new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(app(app(ty_@3, bed), bee), bef))) -> new_ltEs1(vyw4310, vyw4510, bed, bee, bef) new_compare23(vyw430, vyw450, False, bfe) -> new_ltEs3(vyw430, vyw450, bfe) new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(ty_[], dc))) -> new_ltEs2(vyw4310, vyw4510, dc) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_@2, fb), fc), fa) -> new_lt0(vyw4310, vyw4510, fb, fc) new_primCompAux(vyw4300, vyw4500, vyw111, app(app(ty_Either, bcb), bcc)) -> new_compare1(vyw4300, vyw4500, bcb, bcc) new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(app(ty_Either, bdh), bea))) -> new_ltEs(vyw4310, vyw4510, bdh, bea) new_lt1(vyw430, vyw450, bfb, bfc, bfd) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfb, bfc, bfd), bfb, bfc, bfd) new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(vyw4310, vyw4510, h, ba) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(ty_Maybe, baf)), hg)) -> new_lt3(vyw4311, vyw4511, baf) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(app(ty_@3, bbc), bbd), bbe), gc, hg) -> new_lt1(vyw4310, vyw4510, bbc, bbd, bbe) new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(app(ty_@2, bc), bd)), bb)) -> new_ltEs0(vyw4310, vyw4510, bc, bd) new_compare20(vyw430, vyw450, False, bdc, bdd) -> new_ltEs(vyw430, vyw450, bdc, bdd) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(ty_Maybe, hd))) -> new_ltEs3(vyw4312, vyw4512, hd) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(ty_[], bbf)), gc), hg)) -> new_lt2(vyw4310, vyw4510, bbf) new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, bdg, app(ty_[], bbh)) -> new_compare(vyw431, vyw451, bbh) new_lt2(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, bca), bca) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(app(ty_@2, gf), gg)) -> new_ltEs0(vyw4312, vyw4512, gf, gg) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(app(app(ty_@3, bab), bac), bad)), hg)) -> new_lt1(vyw4311, vyw4511, bab, bac, bad) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(ty_[], ee)) -> new_ltEs2(vyw4311, vyw4511, ee) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(app(app(ty_@3, fd), ff), fg)), fa)) -> new_lt1(vyw4310, vyw4510, fd, ff, fg) new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfb, bfc, bfd), bfb, bfc, bfd) new_compare21(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], bca), bfa) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, bca), bca) new_ltEs(Left(vyw4310), Left(vyw4510), app(ty_[], bh), bb) -> new_ltEs2(vyw4310, vyw4510, bh) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_[], fh), fa) -> new_lt2(vyw4310, vyw4510, fh) new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(ty_[], dc)) -> new_ltEs2(vyw4310, vyw4510, dc) new_ltEs(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs1(vyw4310, vyw4510, be, bf, bg) new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw4310, vyw4510, cc, cd) new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_@2, bde), bdf), bfa) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, bde, bdf), bde, bdf) new_ltEs3(Just(vyw4310), Just(vyw4510), app(ty_Maybe, beh)) -> new_ltEs3(vyw4310, vyw4510, beh) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(app(ty_@2, hh), baa)), hg)) -> new_lt0(vyw4311, vyw4511, hh, baa) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(app(ty_@2, bba), bbb)), gc), hg)) -> new_lt0(vyw4310, vyw4510, bba, bbb) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(app(ty_@2, fb), fc)), fa)) -> new_lt0(vyw4310, vyw4510, fb, fc) new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(app(ty_@2, ce), cf))) -> new_ltEs0(vyw4310, vyw4510, ce, cf) new_compare3(vyw430, vyw450, bfb, bfc, bfd) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfb, bfc, bfd), bfb, bfc, bfd) new_lt3(vyw430, vyw450, bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfe), bfe) new_compare21(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], bca), bfa) -> new_compare(vyw4301, vyw4501, bca) new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_Either, eg), eh), fa) -> new_lt(vyw4310, vyw4510, eg, eh) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs1(vyw4312, vyw4512, gh, ha, hb) new_compare4(vyw430, vyw450, bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfe), bfe) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(ty_Maybe, ef))) -> new_ltEs3(vyw4311, vyw4511, ef) new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(vyw4310, vyw4510, cg, da, db) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(ty_Maybe, bbg)), gc), hg)) -> new_lt3(vyw4310, vyw4510, bbg) new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, bca), bca) new_compare22(vyw430, vyw450, False, bfb, bfc, bfd) -> new_ltEs1(vyw430, vyw450, bfb, bfc, bfd) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(ty_Maybe, ga)), fa)) -> new_lt3(vyw4310, vyw4510, ga) new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_ltEs1(vyw4310, vyw4510, be, bf, bg) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(app(ty_Either, eg), eh)), fa)) -> new_lt(vyw4310, vyw4510, eg, eh) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(app(ty_Either, gd), ge))) -> new_ltEs(vyw4312, vyw4512, gd, ge) new_lt(vyw430, vyw450, bdc, bdd) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, bdc, bdd), bdc, bdd) new_ltEs3(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs1(vyw4310, vyw4510, bed, bee, bef) new_primCompAux(vyw4300, vyw4500, vyw111, app(ty_[], bda)) -> new_compare(vyw4300, vyw4500, bda) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_@2, bba), bbb), gc, hg) -> new_lt0(vyw4310, vyw4510, bba, bbb) new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(ty_[], beg))) -> new_ltEs2(vyw4310, vyw4510, beg) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(app(ty_Either, gd), ge)) -> new_ltEs(vyw4312, vyw4512, gd, ge) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(ty_Maybe, baf), hg) -> new_lt3(vyw4311, vyw4511, baf) new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(vyw4310, vyw4510, cc, cd) new_ltEs2(vyw431, vyw451, bbh) -> new_compare(vyw431, vyw451, bbh) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), gc), hg)) -> new_lt(vyw4310, vyw4510, bag, bah) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(app(ty_Either, he), hf), hg) -> new_lt(vyw4311, vyw4511, he, hf) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(ty_[], ee))) -> new_ltEs2(vyw4311, vyw4511, ee) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(vyw4312, vyw4512, gh, ha, hb) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(ty_Maybe, hd)) -> new_ltEs3(vyw4312, vyw4512, hd) new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_compare(vyw4301, vyw4501, bca) new_compare1(vyw430, vyw450, bdc, bdd) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, bdc, bdd), bdc, bdd) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(app(ty_Either, he), hf)), hg)) -> new_lt(vyw4311, vyw4511, he, hf) new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs1(vyw4310, vyw4510, cg, da, db) new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_[], bbf), gc, hg) -> new_lt2(vyw4310, vyw4510, bbf) new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs1(vyw4311, vyw4511, eb, ec, ed) new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(app(ty_@2, ce), cf)) -> new_ltEs0(vyw4310, vyw4510, ce, cf) new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(ty_[], hc))) -> new_ltEs2(vyw4312, vyw4512, hc) The TRS R consists of the following rules: new_lt19(vyw4311, vyw4511, app(app(ty_Either, he), hf)) -> new_lt7(vyw4311, vyw4511, he, hf) new_esEs4(Left(vyw400), Left(vyw3000), ty_Double, che) -> new_esEs16(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, app(ty_Maybe, ef)) -> new_ltEs15(vyw4311, vyw4511, ef) new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt20(vyw4310, vyw4510, ty_Float) -> new_lt15(vyw4310, vyw4510) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vyw110) -> True new_compare12(vyw430, vyw450, False, bdc, bdd) -> GT new_ltEs19(vyw4312, vyw4512, ty_@0) -> new_ltEs5(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, app(ty_Maybe, cdf)) -> new_ltEs15(vyw431, vyw451, cdf) new_ltEs19(vyw4312, vyw4512, app(app(ty_Either, gd), ge)) -> new_ltEs9(vyw4312, vyw4512, gd, ge) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_lt5(vyw4310, vyw4510, ty_Char) -> new_lt6(vyw4310, vyw4510) new_esEs29(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_compare5(vyw430, vyw450) -> new_compare210(vyw430, vyw450, new_esEs17(vyw430, vyw450)) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs9(vyw4311, vyw4511) new_esEs4(Left(vyw400), Right(vyw3000), dah, che) -> False new_esEs4(Right(vyw400), Left(vyw3000), dah, che) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs13(vyw4310, vyw4510, bed, bee, bef) new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs16(vyw4311, vyw4511) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Maybe, bgf)) -> new_esEs7(vyw400, vyw3000, bgf) new_esEs22(vyw4310, vyw4510, app(app(ty_Either, bag), bah)) -> new_esEs4(vyw4310, vyw4510, bag, bah) new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_esEs22(vyw4310, vyw4510, ty_Int) -> new_esEs8(vyw4310, vyw4510) new_compare211(vyw430, vyw450, True, bfe) -> EQ new_ltEs9(Right(vyw4310), Right(vyw4510), cb, app(app(ty_Either, cc), cd)) -> new_ltEs9(vyw4310, vyw4510, cc, cd) new_esEs28(vyw401, vyw3001, app(ty_Maybe, cgh)) -> new_esEs7(vyw401, vyw3001, cgh) new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) new_lt21(vyw430, vyw450, app(ty_Ratio, ced)) -> new_lt9(vyw430, vyw450, ced) new_esEs29(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_compare27(vyw430, vyw450, False) -> new_compare13(vyw430, vyw450, new_ltEs10(vyw430, vyw450)) new_compare26(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) new_ltEs10(GT, LT) -> False new_esEs14(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs7(vyw4311, vyw4511, ty_Double) -> new_ltEs17(vyw4311, vyw4511) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_@2, daf), dag), che) -> new_esEs5(vyw400, vyw3000, daf, dag) new_lt4(vyw430, vyw450) -> new_esEs11(new_compare5(vyw430, vyw450), LT) new_esEs18(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_compare210(vyw430, vyw450, False) -> new_compare110(vyw430, vyw450, new_ltEs12(vyw430, vyw450)) new_lt19(vyw4311, vyw4511, ty_Ordering) -> new_lt8(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, ty_Integer) -> new_lt12(vyw4310, vyw4510) new_ltEs20(vyw431, vyw451, ty_Bool) -> new_ltEs12(vyw431, vyw451) new_esEs21(vyw4310, vyw4510, app(ty_[], fh)) -> new_esEs13(vyw4310, vyw4510, fh) new_esEs18(vyw400, vyw3000, app(ty_Ratio, cae)) -> new_esEs15(vyw400, vyw3000, cae) new_ltEs7(vyw4311, vyw4511, app(ty_[], ee)) -> new_ltEs4(vyw4311, vyw4511, ee) new_lt5(vyw4310, vyw4510, ty_@0) -> new_lt17(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Ordering) -> new_esEs11(vyw4310, vyw4510) new_lt20(vyw4310, vyw4510, ty_Bool) -> new_lt4(vyw4310, vyw4510) new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_esEs20(vyw402, vyw3002, app(app(ty_@2, cdb), cdc)) -> new_esEs5(vyw402, vyw3002, cdb, cdc) new_lt16(vyw430, vyw450) -> new_esEs11(new_compare25(vyw430, vyw450), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Double, bb) -> new_ltEs17(vyw4310, vyw4510) new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(ty_@2, beb), bec)) -> new_ltEs6(vyw4310, vyw4510, beb, bec) new_esEs24(vyw430, vyw450, app(ty_Ratio, ced)) -> new_esEs15(vyw430, vyw450, ced) new_ltEs10(EQ, LT) -> False new_lt20(vyw4310, vyw4510, app(ty_[], bbf)) -> new_lt13(vyw4310, vyw4510, bbf) new_esEs24(vyw430, vyw450, ty_@0) -> new_esEs10(vyw430, vyw450) new_ltEs7(vyw4311, vyw4511, ty_@0) -> new_ltEs5(vyw4311, vyw4511) new_ltEs19(vyw4312, vyw4512, app(app(ty_@2, gf), gg)) -> new_ltEs6(vyw4312, vyw4512, gf, gg) new_esEs29(vyw400, vyw3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs6(vyw400, vyw3000, dch, dda, ddb) new_esEs5(@2(vyw400, vyw401), @2(vyw3000, vyw3001), ceg, ceh) -> new_asAs(new_esEs27(vyw400, vyw3000, ceg), new_esEs28(vyw401, vyw3001, ceh)) new_esEs27(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(app(ty_@2, cbh), cca)) -> new_esEs5(vyw401, vyw3001, cbh, cca) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_@0, bb) -> new_ltEs5(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, ty_Ordering) -> new_compare14(vyw4300, vyw4500) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Ratio, bgh)) -> new_esEs15(vyw400, vyw3000, bgh) new_esEs7(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs10(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) new_not(True) -> False new_lt5(vyw4310, vyw4510, app(ty_Maybe, ga)) -> new_lt14(vyw4310, vyw4510, ga) new_lt5(vyw4310, vyw4510, app(app(ty_@2, fb), fc)) -> new_lt10(vyw4310, vyw4510, fb, fc) new_lt14(vyw430, vyw450, bfe) -> new_esEs11(new_compare19(vyw430, vyw450, bfe), LT) new_compare7(vyw4300, vyw4500, ty_Bool) -> new_compare5(vyw4300, vyw4500) new_primCompAux00(vyw119, LT) -> LT new_esEs4(Right(vyw400), Right(vyw3000), dah, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw4310, vyw4510, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs6(vyw4310, vyw4510, fd, ff, fg) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, app(ty_[], bae)) -> new_lt13(vyw4311, vyw4511, bae) new_esEs27(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs27(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs10(vyw4311, vyw4511) new_esEs27(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_lt15(vyw430, vyw450) -> new_esEs11(new_compare24(vyw430, vyw450), LT) new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs6(vyw402, vyw3002, ccd, cce, ccf) new_esEs24(vyw430, vyw450, ty_Float) -> new_esEs14(vyw430, vyw450) new_esEs29(vyw400, vyw3000, app(ty_[], ddd)) -> new_esEs13(vyw400, vyw3000, ddd) new_esEs4(Left(vyw400), Left(vyw3000), ty_@0, che) -> new_esEs10(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, app(app(ty_Either, df), dg)) -> new_ltEs9(vyw4311, vyw4511, df, dg) new_ltEs19(vyw4312, vyw4512, ty_Double) -> new_ltEs17(vyw4312, vyw4512) new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs8(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs19(vyw4312, vyw4512, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs13(vyw4312, vyw4512, gh, ha, hb) new_esEs28(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_lt5(vyw4310, vyw4510, ty_Int) -> new_lt18(vyw4310, vyw4510) new_ltEs19(vyw4312, vyw4512, ty_Bool) -> new_ltEs12(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, ty_Int) -> new_ltEs18(vyw431, vyw451) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_esEs13([], [], dce) -> True new_compare25(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_ltEs7(vyw4311, vyw4511, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs13(vyw4311, vyw4511, eb, ec, ed) new_esEs4(Right(vyw400), Right(vyw3000), dah, ty_Float) -> new_esEs14(vyw400, vyw3000) new_ltEs7(vyw4311, vyw4511, ty_Int) -> new_ltEs18(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, app(app(ty_Either, bag), bah)) -> new_lt7(vyw4310, vyw4510, bag, bah) new_lt19(vyw4311, vyw4511, ty_Integer) -> new_lt12(vyw4311, vyw4511) new_lt8(vyw430, vyw450) -> new_esEs11(new_compare14(vyw430, vyw450), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Bool, bb) -> new_ltEs12(vyw4310, vyw4510) new_primCompAux00(vyw119, GT) -> GT new_lt19(vyw4311, vyw4511, app(ty_Ratio, ceb)) -> new_lt9(vyw4311, vyw4511, ceb) new_compare110(vyw430, vyw450, True) -> LT new_ltEs9(Left(vyw4310), Right(vyw4510), cb, bb) -> True new_ltEs7(vyw4311, vyw4511, app(app(ty_@2, dh), ea)) -> new_ltEs6(vyw4311, vyw4511, dh, ea) new_compare7(vyw4300, vyw4500, ty_Double) -> new_compare25(vyw4300, vyw4500) new_ltEs20(vyw431, vyw451, app(app(app(ty_@3, gb), gc), hg)) -> new_ltEs13(vyw431, vyw451, gb, gc, hg) new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT new_esEs20(vyw402, vyw3002, app(ty_Ratio, cda)) -> new_esEs15(vyw402, vyw3002, cda) new_esEs4(Right(vyw400), Right(vyw3000), dah, app(ty_[], dbg)) -> new_esEs13(vyw400, vyw3000, dbg) new_ltEs10(GT, EQ) -> False new_compare11(vyw92, vyw93, vyw94, vyw95, True, bff, bfg) -> LT new_esEs4(Left(vyw400), Left(vyw3000), ty_Integer, che) -> new_esEs9(vyw400, vyw3000) new_lt19(vyw4311, vyw4511, ty_Float) -> new_lt15(vyw4311, vyw4511) new_ltEs20(vyw431, vyw451, ty_@0) -> new_ltEs5(vyw431, vyw451) new_compare7(vyw4300, vyw4500, app(ty_Ratio, cdh)) -> new_compare15(vyw4300, vyw4500, cdh) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_[], dad), che) -> new_esEs13(vyw400, vyw3000, dad) new_primCmpNat0(Zero, Succ(vyw45000)) -> LT new_esEs21(vyw4310, vyw4510, ty_Ordering) -> new_esEs11(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, app(app(ty_@2, fb), fc)) -> new_esEs5(vyw4310, vyw4510, fb, fc) new_esEs28(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) new_esEs19(vyw401, vyw3001, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(vyw401, vyw3001, cbb, cbc, cbd) new_lt5(vyw4310, vyw4510, app(ty_Ratio, cdd)) -> new_lt9(vyw4310, vyw4510, cdd) new_ltEs20(vyw431, vyw451, ty_Double) -> new_ltEs17(vyw431, vyw451) new_compare210(vyw430, vyw450, True) -> EQ new_esEs28(vyw401, vyw3001, ty_Char) -> new_esEs12(vyw401, vyw3001) new_compare14(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs11(vyw430, vyw450)) new_esEs24(vyw430, vyw450, app(ty_[], bca)) -> new_esEs13(vyw430, vyw450, bca) new_esEs22(vyw4310, vyw4510, ty_Double) -> new_esEs16(vyw4310, vyw4510) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_primCmpNat0(Succ(vyw43000), Zero) -> GT new_pePe(False, vyw110) -> vyw110 new_esEs7(Nothing, Just(vyw3000), bfh) -> False new_esEs7(Just(vyw400), Nothing, bfh) -> False new_lt21(vyw430, vyw450, app(ty_[], bca)) -> new_lt13(vyw430, vyw450, bca) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs14(vyw4310, vyw4510) new_esEs27(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, ty_Float) -> new_compare24(vyw4300, vyw4500) new_esEs21(vyw4310, vyw4510, app(app(ty_Either, eg), eh)) -> new_esEs4(vyw4310, vyw4510, eg, eh) new_esEs4(Right(vyw400), Right(vyw3000), dah, ty_Int) -> new_esEs8(vyw400, vyw3000) new_lt7(vyw430, vyw450, bdc, bdd) -> new_esEs11(new_compare9(vyw430, vyw450, bdc, bdd), LT) new_ltEs4(vyw431, vyw451, bbh) -> new_not(new_esEs11(new_compare0(vyw431, vyw451, bbh), GT)) new_esEs4(Right(vyw400), Right(vyw3000), dah, app(app(ty_@2, dca), dcb)) -> new_esEs5(vyw400, vyw3000, dca, dcb) new_ltEs8(vyw431, vyw451) -> new_not(new_esEs11(new_compare8(vyw431, vyw451), GT)) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_Ratio, cdg)) -> new_ltEs11(vyw4310, vyw4510, cdg) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_compare16(vyw430, vyw450, bde, bdf) -> new_compare28(vyw430, vyw450, new_esEs5(vyw430, vyw450, bde, bdf), bde, bdf) new_esEs7(Nothing, Nothing, bfh) -> True new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs11(vyw4311, vyw4511) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dcc), bb) -> new_ltEs11(vyw4310, vyw4510, dcc) new_lt21(vyw430, vyw450, ty_Integer) -> new_lt12(vyw430, vyw450) new_esEs21(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) new_ltEs15(Nothing, Nothing, cdf) -> True new_ltEs19(vyw4312, vyw4512, ty_Int) -> new_ltEs18(vyw4312, vyw4512) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs18(vyw4310, vyw4510) new_esEs7(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs29(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_ltEs20(vyw431, vyw451, app(app(ty_@2, de), fa)) -> new_ltEs6(vyw431, vyw451, de, fa) new_esEs7(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs9(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Nothing, cdf) -> False new_esEs7(Just(vyw400), Just(vyw3000), app(ty_[], bgg)) -> new_esEs13(vyw400, vyw3000, bgg) new_compare24(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(ty_Either, h), ba), bb) -> new_ltEs9(vyw4310, vyw4510, h, ba) new_esEs18(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_esEs21(vyw4310, vyw4510, ty_Int) -> new_esEs8(vyw4310, vyw4510) new_esEs23(vyw4311, vyw4511, app(app(ty_Either, he), hf)) -> new_esEs4(vyw4311, vyw4511, he, hf) new_esEs13(:(vyw400, vyw401), [], dce) -> False new_esEs13([], :(vyw3000, vyw3001), dce) -> False new_lt11(vyw430, vyw450, bfb, bfc, bfd) -> new_esEs11(new_compare17(vyw430, vyw450, bfb, bfc, bfd), LT) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_[], bh), bb) -> new_ltEs4(vyw4310, vyw4510, bh) new_esEs24(vyw430, vyw450, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs6(vyw430, vyw450, bfb, bfc, bfd) new_lt6(vyw430, vyw450) -> new_esEs11(new_compare8(vyw430, vyw450), LT) new_primMulNat0(Succ(vyw40100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_esEs24(vyw430, vyw450, ty_Integer) -> new_esEs9(vyw430, vyw450) new_esEs7(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs6(vyw400, vyw3000, bgc, bgd, bge) new_esEs24(vyw430, vyw450, ty_Char) -> new_esEs12(vyw430, vyw450) new_compare18(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) new_esEs22(vyw4310, vyw4510, app(ty_Maybe, bbg)) -> new_esEs7(vyw4310, vyw4510, bbg) new_esEs4(Right(vyw400), Right(vyw3000), dah, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs6(vyw400, vyw3000, dbc, dbd, dbe) new_primPlusNat1(Succ(vyw830), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw830, vyw300000))) new_esEs23(vyw4311, vyw4511, app(ty_Maybe, baf)) -> new_esEs7(vyw4311, vyw4511, baf) new_lt20(vyw4310, vyw4510, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_lt11(vyw4310, vyw4510, bbc, bbd, bbe) new_ltEs12(False, True) -> True new_primPlusNat0(Succ(vyw8300), Zero) -> Succ(vyw8300) new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs11(LT, LT) -> True new_ltEs13(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, hg) -> new_pePe(new_lt20(vyw4310, vyw4510, gb), new_asAs(new_esEs22(vyw4310, vyw4510, gb), new_pePe(new_lt19(vyw4311, vyw4511, gc), new_asAs(new_esEs23(vyw4311, vyw4511, gc), new_ltEs19(vyw4312, vyw4512, hg))))) new_ltEs19(vyw4312, vyw4512, ty_Integer) -> new_ltEs14(vyw4312, vyw4512) new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) new_compare24(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs19(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) new_lt21(vyw430, vyw450, ty_Int) -> new_lt18(vyw430, vyw450) new_compare211(vyw430, vyw450, False, bfe) -> new_compare111(vyw430, vyw450, new_ltEs15(vyw430, vyw450, bfe), bfe) new_esEs22(vyw4310, vyw4510, app(ty_Ratio, cea)) -> new_esEs15(vyw4310, vyw4510, cea) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, ty_Ordering) -> new_ltEs10(vyw4310, vyw4510) new_lt17(vyw430, vyw450) -> new_esEs11(new_compare6(vyw430, vyw450), LT) new_esEs19(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_lt21(vyw430, vyw450, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_lt11(vyw430, vyw450, bfb, bfc, bfd) new_esEs22(vyw4310, vyw4510, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs6(vyw4310, vyw4510, bbc, bbd, bbe) new_esEs28(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Int, bb) -> new_ltEs18(vyw4310, vyw4510) new_esEs18(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs23(vyw4311, vyw4511, app(app(ty_@2, hh), baa)) -> new_esEs5(vyw4311, vyw4511, hh, baa) new_lt21(vyw430, vyw450, app(app(ty_@2, bde), bdf)) -> new_lt10(vyw430, vyw450, bde, bdf) new_ltEs20(vyw431, vyw451, app(app(ty_Either, cb), bb)) -> new_ltEs9(vyw431, vyw451, cb, bb) new_esEs23(vyw4311, vyw4511, app(ty_Ratio, ceb)) -> new_esEs15(vyw4311, vyw4511, ceb) new_esEs26(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_esEs18(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_esEs24(vyw430, vyw450, app(ty_Maybe, bfe)) -> new_esEs7(vyw430, vyw450, bfe) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(ty_@2, bc), bd), bb) -> new_ltEs6(vyw4310, vyw4510, bc, bd) new_esEs4(Left(vyw400), Left(vyw3000), ty_Ordering, che) -> new_esEs11(vyw400, vyw3000) new_ltEs12(True, True) -> True new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs6(vyw4311, vyw4511, bab, bac, bad) new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) new_esEs29(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_compare212(vyw430, vyw450, True, bfb, bfc, bfd) -> EQ new_esEs19(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) new_compare11(vyw92, vyw93, vyw94, vyw95, False, bff, bfg) -> GT new_ltEs7(vyw4311, vyw4511, app(ty_Ratio, cde)) -> new_ltEs11(vyw4311, vyw4511, cde) new_esEs25(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, app(app(ty_@2, ce), cf)) -> new_ltEs6(vyw4310, vyw4510, ce, cf) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, ty_Float) -> new_ltEs16(vyw4310, vyw4510) new_esEs7(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_@2, bha), bhb)) -> new_esEs5(vyw400, vyw3000, bha, bhb) new_lt13(vyw430, vyw450, bca) -> new_esEs11(new_compare0(vyw430, vyw450, bca), LT) new_ltEs19(vyw4312, vyw4512, app(ty_Maybe, hd)) -> new_ltEs15(vyw4312, vyw4512, hd) new_esEs24(vyw430, vyw450, app(app(ty_@2, bde), bdf)) -> new_esEs5(vyw430, vyw450, bde, bdf) new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs14(vyw402, vyw3002) new_ltEs15(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bdh), bea)) -> new_ltEs9(vyw4310, vyw4510, bdh, bea) new_lt10(vyw430, vyw450, bde, bdf) -> new_esEs11(new_compare16(vyw430, vyw450, bde, bdf), LT) new_ltEs17(vyw431, vyw451) -> new_not(new_esEs11(new_compare25(vyw431, vyw451), GT)) new_lt5(vyw4310, vyw4510, app(app(app(ty_@3, fd), ff), fg)) -> new_lt11(vyw4310, vyw4510, fd, ff, fg) new_esEs4(Right(vyw400), Right(vyw3000), dah, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_Maybe, beh)) -> new_ltEs15(vyw4310, vyw4510, beh) new_esEs4(Right(vyw400), Right(vyw3000), dah, app(ty_Ratio, dbh)) -> new_esEs15(vyw400, vyw3000, dbh) new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs8(vyw402, vyw3002) new_lt5(vyw4310, vyw4510, ty_Bool) -> new_lt4(vyw4310, vyw4510) new_lt18(vyw430, vyw450) -> new_esEs11(new_compare26(vyw430, vyw450), LT) new_esEs18(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs4(Right(vyw400), Right(vyw3000), dah, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_lt19(vyw4311, vyw4511, app(ty_Maybe, baf)) -> new_lt14(vyw4311, vyw4511, baf) new_esEs27(vyw400, vyw3000, app(app(ty_@2, cga), cgb)) -> new_esEs5(vyw400, vyw3000, cga, cgb) new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_esEs12(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_lt5(vyw4310, vyw4510, app(ty_[], fh)) -> new_lt13(vyw4310, vyw4510, fh) new_lt19(vyw4311, vyw4511, ty_Int) -> new_lt18(vyw4311, vyw4511) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, ty_Double) -> new_ltEs17(vyw4310, vyw4510) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Ratio, dae), che) -> new_esEs15(vyw400, vyw3000, dae) new_esEs23(vyw4311, vyw4511, app(ty_[], bae)) -> new_esEs13(vyw4311, vyw4511, bae) new_esEs27(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs24(vyw430, vyw450, ty_Ordering) -> new_esEs11(vyw430, vyw450) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Char, bb) -> new_ltEs8(vyw4310, vyw4510) new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) new_ltEs20(vyw431, vyw451, ty_Integer) -> new_ltEs14(vyw431, vyw451) new_ltEs7(vyw4311, vyw4511, ty_Char) -> new_ltEs8(vyw4311, vyw4511) new_esEs27(vyw400, vyw3000, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs6(vyw400, vyw3000, cfc, cfd, cfe) new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs17(vyw402, vyw3002) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Maybe, dac), che) -> new_esEs7(vyw400, vyw3000, dac) new_compare7(vyw4300, vyw4500, ty_@0) -> new_compare6(vyw4300, vyw4500) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Integer, bb) -> new_ltEs14(vyw4310, vyw4510) new_ltEs9(Right(vyw4310), Left(vyw4510), cb, bb) -> False new_lt19(vyw4311, vyw4511, app(app(app(ty_@3, bab), bac), bad)) -> new_lt11(vyw4311, vyw4511, bab, bac, bad) new_lt19(vyw4311, vyw4511, app(app(ty_@2, hh), baa)) -> new_lt10(vyw4311, vyw4511, hh, baa) new_lt5(vyw4310, vyw4510, ty_Float) -> new_lt15(vyw4310, vyw4510) new_ltEs20(vyw431, vyw451, ty_Char) -> new_ltEs8(vyw431, vyw451) new_ltEs7(vyw4311, vyw4511, ty_Integer) -> new_ltEs14(vyw4311, vyw4511) new_lt20(vyw4310, vyw4510, ty_Double) -> new_lt16(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, ty_Integer) -> new_esEs9(vyw4310, vyw4510) new_compare0([], :(vyw4500, vyw4501), bca) -> LT new_asAs(True, vyw64) -> vyw64 new_esEs21(vyw4310, vyw4510, ty_@0) -> new_esEs10(vyw4310, vyw4510) new_compare28(@2(vyw430, vyw431), @2(vyw450, vyw451), False, bdg, bfa) -> new_compare10(vyw430, vyw431, vyw450, vyw451, new_lt21(vyw430, vyw450, bdg), new_asAs(new_esEs24(vyw430, vyw450, bdg), new_ltEs20(vyw431, vyw451, bfa)), bdg, bfa) new_esEs29(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_esEs27(vyw400, vyw3000, app(ty_[], cfg)) -> new_esEs13(vyw400, vyw3000, cfg) new_lt20(vyw4310, vyw4510, app(app(ty_@2, bba), bbb)) -> new_lt10(vyw4310, vyw4510, bba, bbb) new_lt19(vyw4311, vyw4511, ty_@0) -> new_lt17(vyw4311, vyw4511) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs10(LT, LT) -> True new_ltEs9(Right(vyw4310), Right(vyw4510), cb, ty_Int) -> new_ltEs18(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, ty_Double) -> new_lt16(vyw4311, vyw4511) new_esEs28(vyw401, vyw3001, ty_Ordering) -> new_esEs11(vyw401, vyw3001) new_lt5(vyw4310, vyw4510, ty_Integer) -> new_lt12(vyw4310, vyw4510) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_Either, chf), chg), che) -> new_esEs4(vyw400, vyw3000, chf, chg) new_esEs21(vyw4310, vyw4510, ty_Double) -> new_esEs16(vyw4310, vyw4510) new_esEs21(vyw4310, vyw4510, app(ty_Ratio, cdd)) -> new_esEs15(vyw4310, vyw4510, cdd) new_esEs4(Right(vyw400), Right(vyw3000), dah, app(ty_Maybe, dbf)) -> new_esEs7(vyw400, vyw3000, dbf) new_esEs27(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs8(vyw400, vyw3000) new_ltEs11(vyw431, vyw451, cee) -> new_not(new_esEs11(new_compare15(vyw431, vyw451, cee), GT)) new_ltEs20(vyw431, vyw451, ty_Float) -> new_ltEs16(vyw431, vyw451) new_ltEs20(vyw431, vyw451, app(ty_Ratio, cee)) -> new_ltEs11(vyw431, vyw451, cee) new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) new_compare110(vyw430, vyw450, False) -> GT new_esEs24(vyw430, vyw450, ty_Int) -> new_esEs8(vyw430, vyw450) new_compare8(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) new_esEs18(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_lt20(vyw4310, vyw4510, ty_@0) -> new_lt17(vyw4310, vyw4510) new_primCompAux00(vyw119, EQ) -> vyw119 new_esEs4(Right(vyw400), Right(vyw3000), dah, ty_Double) -> new_esEs16(vyw400, vyw3000) new_compare0([], [], bca) -> EQ new_esEs20(vyw402, vyw3002, app(app(ty_Either, ccb), ccc)) -> new_esEs4(vyw402, vyw3002, ccb, ccc) new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(vyw4310, vyw4510, cg, da, db) new_esEs19(vyw401, vyw3001, app(app(ty_Either, cah), cba)) -> new_esEs4(vyw401, vyw3001, cah, cba) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_Either, bga), bgb)) -> new_esEs4(vyw400, vyw3000, bga, bgb) new_ltEs6(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, fa) -> new_pePe(new_lt5(vyw4310, vyw4510, de), new_asAs(new_esEs21(vyw4310, vyw4510, de), new_ltEs7(vyw4311, vyw4511, fa))) new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs11(vyw402, vyw3002) new_primMulNat0(Zero, Zero) -> Zero new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs14(vyw4311, vyw4511) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, app(ty_Maybe, dd)) -> new_ltEs15(vyw4310, vyw4510, dd) new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs12(vyw4311, vyw4511) new_esEs22(vyw4310, vyw4510, app(app(ty_@2, bba), bbb)) -> new_esEs5(vyw4310, vyw4510, bba, bbb) new_ltEs12(True, False) -> False new_esEs19(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_lt5(vyw4310, vyw4510, app(app(ty_Either, eg), eh)) -> new_lt7(vyw4310, vyw4510, eg, eh) new_esEs4(Right(vyw400), Right(vyw3000), dah, ty_@0) -> new_esEs10(vyw400, vyw3000) new_ltEs19(vyw4312, vyw4512, ty_Char) -> new_ltEs8(vyw4312, vyw4512) new_ltEs7(vyw4311, vyw4511, ty_Float) -> new_ltEs16(vyw4311, vyw4511) new_esEs29(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, ty_@0) -> new_esEs10(vyw4310, vyw4510) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) new_esEs22(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) new_compare9(vyw430, vyw450, bdc, bdd) -> new_compare29(vyw430, vyw450, new_esEs4(vyw430, vyw450, bdc, bdd), bdc, bdd) new_ltEs19(vyw4312, vyw4512, app(ty_Ratio, cec)) -> new_ltEs11(vyw4312, vyw4512, cec) new_esEs9(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_lt21(vyw430, vyw450, app(ty_Maybe, bfe)) -> new_lt14(vyw430, vyw450, bfe) new_esEs4(Right(vyw400), Right(vyw3000), dah, app(app(ty_Either, dba), dbb)) -> new_esEs4(vyw400, vyw3000, dba, dbb) new_lt20(vyw4310, vyw4510, ty_Int) -> new_lt18(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, app(ty_[], bda)) -> new_compare0(vyw4300, vyw4500, bda) new_ltEs5(vyw431, vyw451) -> new_not(new_esEs11(new_compare6(vyw431, vyw451), GT)) new_compare25(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_ltEs12(False, False) -> True new_lt20(vyw4310, vyw4510, app(ty_Maybe, bbg)) -> new_lt14(vyw4310, vyw4510, bbg) new_esEs29(vyw400, vyw3000, app(app(ty_Either, dcf), dcg)) -> new_esEs4(vyw400, vyw3000, dcf, dcg) new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs21(vyw4310, vyw4510, app(ty_Maybe, ga)) -> new_esEs7(vyw4310, vyw4510, ga) new_ltEs10(GT, GT) -> True new_esEs4(Left(vyw400), Left(vyw3000), ty_Char, che) -> new_esEs12(vyw400, vyw3000) new_esEs11(EQ, EQ) -> True new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, ty_Bool) -> new_ltEs12(vyw4310, vyw4510) new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_lt9(vyw430, vyw450, ced) -> new_esEs11(new_compare15(vyw430, vyw450, ced), LT) new_compare10(vyw92, vyw93, vyw94, vyw95, True, vyw97, bff, bfg) -> new_compare11(vyw92, vyw93, vyw94, vyw95, True, bff, bfg) new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) new_esEs28(vyw401, vyw3001, app(ty_[], cha)) -> new_esEs13(vyw401, vyw3001, cha) new_lt21(vyw430, vyw450, ty_Bool) -> new_lt4(vyw430, vyw450) new_lt12(vyw430, vyw450) -> new_esEs11(new_compare18(vyw430, vyw450), LT) new_compare25(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare25(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs24(vyw430, vyw450, app(app(ty_Either, bdc), bdd)) -> new_esEs4(vyw430, vyw450, bdc, bdd) new_esEs4(Left(vyw400), Left(vyw3000), ty_Float, che) -> new_esEs14(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(ty_Ratio, cbg)) -> new_esEs15(vyw401, vyw3001, cbg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs10(LT, EQ) -> True new_esEs18(vyw400, vyw3000, app(app(ty_Either, bhf), bhg)) -> new_esEs4(vyw400, vyw3000, bhf, bhg) new_esEs28(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) new_compare111(vyw430, vyw450, False, bfe) -> GT new_primCompAux0(vyw4300, vyw4500, vyw111, bca) -> new_primCompAux00(vyw111, new_compare7(vyw4300, vyw4500, bca)) new_esEs17(True, True) -> True new_esEs8(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_compare212(vyw430, vyw450, False, bfb, bfc, bfd) -> new_compare112(vyw430, vyw450, new_ltEs13(vyw430, vyw450, bfb, bfc, bfd), bfb, bfc, bfd) new_esEs4(Left(vyw400), Left(vyw3000), ty_Bool, che) -> new_esEs17(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, ty_Char) -> new_compare8(vyw4300, vyw4500) new_compare29(vyw430, vyw450, False, bdc, bdd) -> new_compare12(vyw430, vyw450, new_ltEs9(vyw430, vyw450, bdc, bdd), bdc, bdd) new_ltEs9(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs13(vyw4310, vyw4510, be, bf, bg) new_esEs27(vyw400, vyw3000, app(ty_Maybe, cff)) -> new_esEs7(vyw400, vyw3000, cff) new_esEs4(Left(vyw400), Left(vyw3000), ty_Int, che) -> new_esEs8(vyw400, vyw3000) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs17(vyw4310, vyw4510) new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs8(vyw4311, vyw4511) new_esEs18(vyw400, vyw3000, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs6(vyw400, vyw3000, bhh, caa, cab) new_lt20(vyw4310, vyw4510, app(ty_Ratio, cea)) -> new_lt9(vyw4310, vyw4510, cea) new_esEs21(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) new_compare24(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare26(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare24(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare26(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_compare7(vyw4300, vyw4500, app(app(app(ty_@3, bcf), bcg), bch)) -> new_compare17(vyw4300, vyw4500, bcf, bcg, bch) new_lt21(vyw430, vyw450, ty_Char) -> new_lt6(vyw430, vyw450) new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs17(vyw4311, vyw4511) new_not(False) -> True new_compare112(vyw430, vyw450, True, bfb, bfc, bfd) -> LT new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs12(vyw4310, vyw4510) new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs29(vyw400, vyw3000, dce), new_esEs13(vyw401, vyw3001, dce)) new_esEs20(vyw402, vyw3002, app(ty_Maybe, ccg)) -> new_esEs7(vyw402, vyw3002, ccg) new_ltEs15(Nothing, Just(vyw4510), cdf) -> True new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs16(vyw4310, vyw4510) new_compare7(vyw4300, vyw4500, app(app(ty_@2, bcd), bce)) -> new_compare16(vyw4300, vyw4500, bcd, bce) new_compare0(:(vyw4300, vyw4301), [], bca) -> GT new_primPlusNat0(Succ(vyw8300), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw8300, vyw3000000))) new_esEs27(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_esEs22(vyw4310, vyw4510, app(ty_[], bbf)) -> new_esEs13(vyw4310, vyw4510, bbf) new_esEs27(vyw400, vyw3000, app(ty_Ratio, cfh)) -> new_esEs15(vyw400, vyw3000, cfh) new_compare7(vyw4300, vyw4500, ty_Int) -> new_compare26(vyw4300, vyw4500) new_ltEs16(vyw431, vyw451) -> new_not(new_esEs11(new_compare24(vyw431, vyw451), GT)) new_esEs22(vyw4310, vyw4510, ty_Integer) -> new_esEs9(vyw4310, vyw4510) new_ltEs10(EQ, GT) -> True new_esEs10(@0, @0) -> True new_esEs29(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs15(vyw400, vyw3000, dde) new_compare112(vyw430, vyw450, False, bfb, bfc, bfd) -> GT new_compare13(vyw430, vyw450, True) -> LT new_compare15(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare26(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) new_esEs21(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) new_esEs24(vyw430, vyw450, ty_Double) -> new_esEs16(vyw430, vyw450) new_ltEs10(EQ, EQ) -> True new_ltEs9(Right(vyw4310), Right(vyw4510), cb, app(ty_[], dc)) -> new_ltEs4(vyw4310, vyw4510, dc) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, app(ty_Ratio, dcd)) -> new_ltEs11(vyw4310, vyw4510, dcd) new_esEs7(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs14(vyw400, vyw3000) new_esEs19(vyw401, vyw3001, app(ty_Maybe, cbe)) -> new_esEs7(vyw401, vyw3001, cbe) new_lt5(vyw4310, vyw4510, ty_Ordering) -> new_lt8(vyw4310, vyw4510) new_esEs29(vyw400, vyw3000, ty_@0) -> new_esEs10(vyw400, vyw3000) new_esEs18(vyw400, vyw3000, app(ty_[], cad)) -> new_esEs13(vyw400, vyw3000, cad) new_esEs19(vyw401, vyw3001, ty_Ordering) -> new_esEs11(vyw401, vyw3001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs6(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bhc, bhd, bhe) -> new_asAs(new_esEs18(vyw400, vyw3000, bhc), new_asAs(new_esEs19(vyw401, vyw3001, bhd), new_esEs20(vyw402, vyw3002, bhe))) new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, bca), bca) new_esEs18(vyw400, vyw3000, ty_Char) -> new_esEs12(vyw400, vyw3000) new_esEs28(vyw401, vyw3001, app(app(ty_@2, chc), chd)) -> new_esEs5(vyw401, vyw3001, chc, chd) new_esEs18(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) new_ltEs9(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ca), bb) -> new_ltEs15(vyw4310, vyw4510, ca) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Ordering, bb) -> new_ltEs10(vyw4310, vyw4510) new_lt19(vyw4311, vyw4511, ty_Bool) -> new_lt4(vyw4311, vyw4511) new_compare111(vyw430, vyw450, True, bfe) -> LT new_lt21(vyw430, vyw450, ty_Float) -> new_lt15(vyw430, vyw450) new_esEs28(vyw401, vyw3001, app(app(ty_Either, cgc), cgd)) -> new_esEs4(vyw401, vyw3001, cgc, cgd) new_lt20(vyw4310, vyw4510, ty_Ordering) -> new_lt8(vyw4310, vyw4510) new_compare15(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare18(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) new_ltEs7(vyw4311, vyw4511, ty_Ordering) -> new_ltEs10(vyw4311, vyw4511) new_compare6(@0, @0) -> EQ new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_esEs7(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs17(vyw400, vyw3000) new_compare7(vyw4300, vyw4500, app(app(ty_Either, bcb), bcc)) -> new_compare9(vyw4300, vyw4500, bcb, bcc) new_compare7(vyw4300, vyw4500, app(ty_Maybe, bdb)) -> new_compare19(vyw4300, vyw4500, bdb) new_ltEs15(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs10(vyw4310, vyw4510) new_compare29(vyw430, vyw450, True, bdc, bdd) -> EQ new_compare17(vyw430, vyw450, bfb, bfc, bfd) -> new_compare212(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfb, bfc, bfd), bfb, bfc, bfd) new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) new_lt21(vyw430, vyw450, app(app(ty_Either, bdc), bdd)) -> new_lt7(vyw430, vyw450, bdc, bdd) new_esEs7(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) new_esEs26(vyw401, vyw3001, ty_Int) -> new_esEs8(vyw401, vyw3001) new_lt19(vyw4311, vyw4511, ty_Char) -> new_lt6(vyw4311, vyw4511) new_ltEs9(Left(vyw4310), Left(vyw4510), ty_Float, bb) -> new_ltEs16(vyw4310, vyw4510) new_ltEs19(vyw4312, vyw4512, ty_Float) -> new_ltEs16(vyw4312, vyw4512) new_ltEs14(vyw431, vyw451) -> new_not(new_esEs11(new_compare18(vyw431, vyw451), GT)) new_ltEs7(vyw4311, vyw4511, ty_Bool) -> new_ltEs12(vyw4311, vyw4511) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs18(vyw400, vyw3000, app(ty_Maybe, cac)) -> new_esEs7(vyw400, vyw3000, cac) new_ltEs20(vyw431, vyw451, app(ty_[], bbh)) -> new_ltEs4(vyw431, vyw451, bbh) new_lt20(vyw4310, vyw4510, ty_Char) -> new_lt6(vyw4310, vyw4510) new_lt21(vyw430, vyw450, ty_@0) -> new_lt17(vyw430, vyw450) new_esEs18(vyw400, vyw3000, app(app(ty_@2, caf), cag)) -> new_esEs5(vyw400, vyw3000, caf, cag) new_lt5(vyw4310, vyw4510, ty_Double) -> new_lt16(vyw4310, vyw4510) new_esEs24(vyw430, vyw450, ty_Bool) -> new_esEs17(vyw430, vyw450) new_primEqNat0(Zero, Zero) -> True new_esEs25(vyw400, vyw3000, ty_Int) -> new_esEs8(vyw400, vyw3000) new_compare13(vyw430, vyw450, False) -> GT new_esEs19(vyw401, vyw3001, ty_Char) -> new_esEs12(vyw401, vyw3001) new_esEs28(vyw401, vyw3001, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs6(vyw401, vyw3001, cge, cgf, cgg) new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs10(vyw402, vyw3002) new_compare7(vyw4300, vyw4500, ty_Integer) -> new_compare18(vyw4300, vyw4500) new_esEs29(vyw400, vyw3000, app(app(ty_@2, ddf), ddg)) -> new_esEs5(vyw400, vyw3000, ddf, ddg) new_compare19(vyw430, vyw450, bfe) -> new_compare211(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfe), bfe) new_lt21(vyw430, vyw450, ty_Double) -> new_lt16(vyw430, vyw450) new_ltEs15(Just(vyw4310), Just(vyw4510), app(ty_[], beg)) -> new_ltEs4(vyw4310, vyw4510, beg) new_ltEs10(LT, GT) -> True new_ltEs18(vyw431, vyw451) -> new_not(new_esEs11(new_compare26(vyw431, vyw451), GT)) new_esEs19(vyw401, vyw3001, app(ty_[], cbf)) -> new_esEs13(vyw401, vyw3001, cbf) new_ltEs19(vyw4312, vyw4512, app(ty_[], hc)) -> new_ltEs4(vyw4312, vyw4512, hc) new_asAs(False, vyw64) -> False new_esEs19(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) new_lt21(vyw430, vyw450, ty_Ordering) -> new_lt8(vyw430, vyw450) new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs12(vyw402, vyw3002) new_esEs28(vyw401, vyw3001, app(ty_Ratio, chb)) -> new_esEs15(vyw401, vyw3001, chb) new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs9(vyw402, vyw3002) new_esEs4(Right(vyw400), Right(vyw3000), dah, ty_Ordering) -> new_esEs11(vyw400, vyw3000) new_compare28(vyw43, vyw45, True, bdg, bfa) -> EQ new_esEs29(vyw400, vyw3000, app(ty_Maybe, ddc)) -> new_esEs7(vyw400, vyw3000, ddc) new_esEs27(vyw400, vyw3000, app(app(ty_Either, cfa), cfb)) -> new_esEs4(vyw400, vyw3000, cfa, cfb) new_ltEs9(Right(vyw4310), Right(vyw4510), cb, ty_Integer) -> new_ltEs14(vyw4310, vyw4510) new_esEs19(vyw401, vyw3001, ty_@0) -> new_esEs10(vyw401, vyw3001) new_esEs4(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, chh), daa), dab), che) -> new_esEs6(vyw400, vyw3000, chh, daa, dab) new_ltEs19(vyw4312, vyw4512, ty_Ordering) -> new_ltEs10(vyw4312, vyw4512) new_ltEs20(vyw431, vyw451, ty_Ordering) -> new_ltEs10(vyw431, vyw451) new_compare10(vyw92, vyw93, vyw94, vyw95, False, vyw97, bff, bfg) -> new_compare11(vyw92, vyw93, vyw94, vyw95, vyw97, bff, bfg) new_compare27(vyw430, vyw450, True) -> EQ new_compare12(vyw430, vyw450, True, bdc, bdd) -> LT new_esEs20(vyw402, vyw3002, app(ty_[], cch)) -> new_esEs13(vyw402, vyw3002, cch) new_esEs15(:%(vyw400, vyw401), :%(vyw3000, vyw3001), cef) -> new_asAs(new_esEs25(vyw400, vyw3000, cef), new_esEs26(vyw401, vyw3001, cef)) new_esEs29(vyw400, vyw3000, ty_Ordering) -> new_esEs11(vyw400, vyw3000) The set Q consists of the following terms: new_compare111(x0, x1, False, x2) new_ltEs9(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Succ(x0)) new_esEs20(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare24(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare24(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare0([], [], x0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare24(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare0(:(x0, x1), [], x2) new_esEs29(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_ltEs10(LT, LT) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Int) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs9(Right(x0), Right(x1), x2, ty_Float) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs8(x0, x1) new_ltEs16(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs15(Just(x0), Just(x1), ty_Float) new_esEs17(False, False) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Float) new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs20(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs9(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_primCompAux00(x0, GT) new_compare212(x0, x1, False, x2, x3, x4) new_esEs22(x0, x1, ty_Integer) new_compare6(@0, @0) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs9(Left(x0), Left(x1), ty_Double, x2) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_compare12(x0, x1, True, x2, x3) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_compare28(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs7(Nothing, Nothing, x0) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_esEs23(x0, x1, ty_@0) new_ltEs10(GT, EQ) new_ltEs10(EQ, GT) new_esEs28(x0, x1, ty_Bool) new_ltEs7(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_ltEs14(x0, x1) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, x0) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs29(x0, x1, ty_Bool) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_esEs14(Float(x0, x1), Float(x2, x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_lt21(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs24(x0, x1, ty_Char) new_ltEs9(Left(x0), Left(x1), ty_Char, x2) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, True, x2, x3) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_lt19(x0, x1, ty_Integer) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs10(EQ, LT) new_ltEs10(GT, GT) new_ltEs10(LT, EQ) new_ltEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, ty_Float) new_lt18(x0, x1) new_ltEs19(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_ltEs9(Left(x0), Right(x1), x2, x3) new_ltEs9(Right(x0), Left(x1), x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs7(x0, x1, ty_Char) new_ltEs9(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_lt17(x0, x1) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_esEs18(x0, x1, ty_Float) new_compare211(x0, x1, False, x2) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs20(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_compare13(x0, x1, False) new_compare14(x0, x1) new_compare7(x0, x1, ty_Float) new_lt14(x0, x1, x2) new_compare112(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Int) new_compare210(x0, x1, False) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs9(Left(x0), Left(x1), ty_Int, x2) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs21(x0, x1, ty_Int) new_primEqNat0(Zero, Succ(x0)) new_compare29(x0, x1, False, x2, x3) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_ltEs7(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_pePe(True, x0) new_esEs22(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs9(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare25(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare25(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare16(x0, x1, x2, x3) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_lt5(x0, x1, ty_Double) new_compare17(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat1(Succ(x0), x1) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs21(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_ltEs9(Left(x0), Left(x1), ty_Float, x2) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Bool) new_esEs12(Char(x0), Char(x1)) new_asAs(False, x0) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt6(x0, x1) new_ltEs20(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs10(@0, @0) new_esEs22(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Zero, Succ(x0)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs16(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(x0, x1, ty_Double) new_ltEs11(x0, x1, x2) new_compare7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(x0, x1, app(ty_[], x2)) new_compare7(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primMulNat0(Succ(x0), Zero) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt19(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_esEs7(Nothing, Just(x0), x1) new_esEs13([], :(x0, x1), x2) new_esEs19(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_ltEs9(Right(x0), Right(x1), x2, ty_Int) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, ty_Bool) new_lt21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs9(Right(x0), Right(x1), x2, ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(Left(x0), Left(x1), ty_Integer, x2) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs17(x0, x1) new_ltEs7(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_@0) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs9(Integer(x0), Integer(x1)) new_esEs17(True, True) new_ltEs10(EQ, EQ) new_ltEs7(x0, x1, ty_@0) new_primCompAux00(x0, LT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Integer) new_compare27(x0, x1, False) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare7(x0, x1, ty_@0) new_lt19(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_primPlusNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_compare25(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare7(x0, x1, ty_Integer) new_ltEs5(x0, x1) new_not(True) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs10(GT, LT) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs10(LT, GT) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Succ(x0)) new_lt20(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs12(True, True) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt7(x0, x1, x2, x3) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_compare7(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1, app(ty_[], x2)) new_compare7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Int) new_compare0([], :(x0, x1), x2) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Bool) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Int) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs12(False, True) new_ltEs12(True, False) new_compare27(x0, x1, True) new_ltEs9(Left(x0), Left(x1), ty_Bool, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_ltEs9(Right(x0), Right(x1), x2, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1, ty_Bool) new_ltEs9(Right(x0), Right(x1), x2, ty_@0) new_esEs17(False, True) new_esEs17(True, False) new_esEs18(x0, x1, ty_Double) new_ltEs9(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs18(x0, x1, ty_Char) new_asAs(True, x0) new_compare13(x0, x1, True) new_lt4(x0, x1) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Int) new_esEs18(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Char) new_sr(x0, x1) new_esEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Double) new_esEs11(EQ, EQ) new_compare9(x0, x1, x2, x3) new_compare29(x0, x1, True, x2, x3) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Zero) new_compare11(x0, x1, x2, x3, False, x4, x5) new_ltEs15(Just(x0), Just(x1), ty_Double) new_primMulInt(Pos(x0), Pos(x1)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt21(x0, x1, ty_Char) new_compare7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare212(x0, x1, True, x2, x3, x4) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_compare8(Char(x0), Char(x1)) new_compare11(x0, x1, x2, x3, True, x4, x5) new_lt21(x0, x1, ty_Float) new_compare18(Integer(x0), Integer(x1)) new_compare7(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Int) new_lt5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_compare7(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, True) new_ltEs9(Right(x0), Right(x1), x2, ty_Integer) new_esEs29(x0, x1, ty_Char) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs9(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) new_esEs19(x0, x1, ty_Ordering) new_compare7(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs21(x0, x1, ty_Ordering) new_compare26(x0, x1) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Int) new_lt10(x0, x1, x2, x3) new_ltEs7(x0, x1, ty_Double) new_ltEs9(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(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_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs21(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs24(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Nothing, x1) new_primEqNat0(Zero, Zero) new_compare19(x0, x1, x2) new_esEs24(x0, x1, ty_@0) new_ltEs9(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_compare25(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs23(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_@0) new_esEs13(:(x0, x1), [], x2) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs28(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_lt8(x0, x1) new_lt20(x0, x1, ty_Integer) new_compare7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_@0) new_lt5(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(False, False) new_lt5(x0, x1, ty_Float) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs28(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_esEs11(LT, LT) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs18(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, x2, x3, x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare112(x0, x1, True, x2, x3, x4) new_lt19(x0, x1, ty_Float) new_compare211(x0, x1, True, x2) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Int) new_ltEs4(x0, x1, x2) new_compare5(x0, x1) new_ltEs15(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, x2) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_lt5(x0, x1, ty_Int) new_esEs13([], [], x0) new_esEs25(x0, x1, ty_Integer) new_pePe(False, x0) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, True) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False, x2, x3) new_primCmpNat0(Zero, Zero) new_compare111(x0, x1, True, x2) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt13(x0, x1, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (38) 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_ltEs3(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bdh), bea)) -> new_ltEs(vyw4310, vyw4510, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare4(vyw430, vyw450, bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfe), bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs3(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs1(vyw4310, vyw4510, bed, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(vyw430, vyw450, bde, bdf) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, bde, bdf), bde, bdf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vyw4310), Just(vyw4510), app(app(ty_@2, beb), bec)) -> new_ltEs0(vyw4310, vyw4510, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], bca), bfa) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt2(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_compare(vyw4301, vyw4501, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_@2, bde), bdf), bfa) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, bde, bdf), bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare2(vyw430, vyw450, bde, bdf) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, bde, bdf), bde, bdf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt1(vyw430, vyw450, bfb, bfc, bfd) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfb, bfc, bfd), bfb, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(app(ty_Either, df), dg)) -> new_ltEs(vyw4311, vyw4511, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs1(vyw4311, vyw4511, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(app(ty_@2, dh), ea)) -> new_ltEs0(vyw4311, vyw4511, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_@2, fb), fc), fa) -> new_lt0(vyw4310, vyw4510, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_[], fh), fa) -> new_lt2(vyw4310, vyw4510, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt(vyw430, vyw450, bdc, bdd) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, bdc, bdd), bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare3(vyw430, vyw450, bfb, bfc, bfd) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfb, bfc, bfd), bfb, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare20(vyw430, vyw450, False, bdc, bdd) -> new_ltEs(vyw430, vyw450, bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare23(vyw430, vyw450, False, bfe) -> new_ltEs3(vyw430, vyw450, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_lt2(:(vyw4300, vyw4301), :(vyw4500, vyw4501), bca) -> new_compare(vyw4301, vyw4501, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(app(ty_Either, gd), ge)) -> new_ltEs(vyw4312, vyw4512, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(app(ty_@2, gf), gg)) -> new_ltEs0(vyw4312, vyw4512, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(Just(vyw4310), Just(vyw4510), app(ty_Maybe, beh)) -> new_ltEs3(vyw4310, vyw4510, beh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vyw4310), Just(vyw4510), app(ty_[], beg)) -> new_ltEs2(vyw4310, vyw4510, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(ty_Maybe, ef)) -> new_ltEs3(vyw4311, vyw4511, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(vyw431, vyw451, bbh) -> new_compare(vyw431, vyw451, bbh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(ty_Maybe, hd)) -> new_ltEs3(vyw4312, vyw4512, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(vyw4312, vyw4512, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vyw430, vyw450, False, bfb, bfc, bfd) -> new_ltEs1(vyw430, vyw450, bfb, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt3(vyw430, vyw450, bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfe), bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_primCompAux(vyw4300, vyw4500, vyw111, app(app(ty_@2, bcd), bce)) -> new_compare2(vyw4300, vyw4500, bcd, bce) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(ty_Maybe, bfe), bfa) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfe), bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare1(vyw430, vyw450, bdc, bdd) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, bdc, bdd), bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(app(ty_@3, fd), ff), fg), fa) -> new_lt1(vyw4310, vyw4510, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_Either, bdc), bdd), bfa) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, bdc, bdd), bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(vyw4300, vyw4500, vyw111, app(app(app(ty_@3, bcf), bcg), bch)) -> new_compare3(vyw4300, vyw4500, bcf, bcg, bch) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_Maybe, ga), fa) -> new_lt3(vyw4310, vyw4510, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vyw4300, vyw4500, vyw111, app(ty_Maybe, bdb)) -> new_compare4(vyw4300, vyw4500, bdb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw4300, vyw4500, vyw111, app(ty_[], bda)) -> new_compare(vyw4300, vyw4500, bda) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw4300, vyw4500, vyw111, app(app(ty_Either, bcb), bcc)) -> new_compare1(vyw4300, vyw4500, bcb, bcc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfb, bfc, bfd), bfb, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_Either, eg), eh), fa) -> new_lt(vyw4310, vyw4510, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), de, app(ty_[], ee)) -> new_ltEs2(vyw4311, vyw4511, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, gc, app(ty_[], hc)) -> new_ltEs2(vyw4312, vyw4512, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(app(ty_Either, df), dg))) -> new_ltEs(vyw4311, vyw4511, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(app(ty_Either, bdh), bea))) -> new_ltEs(vyw4310, vyw4510, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(vyw4310, vyw4510, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(app(ty_Either, gd), ge))) -> new_ltEs(vyw4312, vyw4512, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(vyw4310, vyw4510, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vyw4310), Left(vyw4510), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw4310, vyw4510, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw4310, vyw4510, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(app(app(ty_@3, bed), bee), bef))) -> new_ltEs1(vyw4310, vyw4510, bed, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs1(vyw4312, vyw4512, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_ltEs1(vyw4310, vyw4510, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs1(vyw4310, vyw4510, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs1(vyw4311, vyw4511, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs1(vyw4310, vyw4510, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(vyw4310, vyw4510, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(app(ty_@2, gf), gg))) -> new_ltEs0(vyw4312, vyw4512, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(app(ty_@2, beb), bec))) -> new_ltEs0(vyw4310, vyw4510, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(app(ty_@2, dh), ea))) -> new_ltEs0(vyw4311, vyw4511, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(app(ty_@2, bc), bd)), bb)) -> new_ltEs0(vyw4310, vyw4510, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(app(ty_@2, ce), cf))) -> new_ltEs0(vyw4310, vyw4510, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vyw4310), Left(vyw4510), app(app(ty_@2, bc), bd), bb) -> new_ltEs0(vyw4310, vyw4510, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(app(ty_@2, ce), cf)) -> new_ltEs0(vyw4310, vyw4510, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(app(ty_@2, hh), baa)), hg)) -> new_lt0(vyw4311, vyw4511, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(app(ty_@2, bba), bbb)), gc), hg)) -> new_lt0(vyw4310, vyw4510, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(app(ty_@2, fb), fc)), fa)) -> new_lt0(vyw4310, vyw4510, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(ty_[], fh)), fa)) -> new_lt2(vyw4310, vyw4510, fh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(ty_[], bae)), hg)) -> new_lt2(vyw4311, vyw4511, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(ty_[], bbf)), gc), hg)) -> new_lt2(vyw4310, vyw4510, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(ty_Maybe, ca)), bb)) -> new_ltEs3(vyw4310, vyw4510, ca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(ty_Maybe, beh))) -> new_ltEs3(vyw4310, vyw4510, beh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(ty_Maybe, dd))) -> new_ltEs3(vyw4310, vyw4510, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(ty_Maybe, hd))) -> new_ltEs3(vyw4312, vyw4512, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(ty_Maybe, ef))) -> new_ltEs3(vyw4311, vyw4511, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(app(app(ty_@3, bbc), bbd), bbe)), gc), hg)) -> new_lt1(vyw4310, vyw4510, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(app(app(ty_@3, bab), bac), bad)), hg)) -> new_lt1(vyw4311, vyw4511, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(app(app(ty_@3, fd), ff), fg)), fa)) -> new_lt1(vyw4310, vyw4510, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(ty_Maybe, baf)), hg)) -> new_lt3(vyw4311, vyw4511, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(ty_Maybe, bbg)), gc), hg)) -> new_lt3(vyw4310, vyw4510, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(ty_Maybe, ga)), fa)) -> new_lt3(vyw4310, vyw4510, ga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, bdg, app(ty_[], bbh)) -> new_compare(vyw431, vyw451, bbh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], bca), bfa) -> new_compare(vyw4301, vyw4501, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, app(app(ty_Either, eg), eh)), fa)) -> new_lt(vyw4310, vyw4510, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), gc), hg)) -> new_lt(vyw4310, vyw4510, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), app(app(ty_Either, he), hf)), hg)) -> new_lt(vyw4311, vyw4511, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bdg, app(app(ty_Either, app(ty_[], bh)), bb)) -> new_ltEs2(vyw4310, vyw4510, bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bdg, app(app(ty_Either, cb), app(ty_[], dc))) -> new_ltEs2(vyw4310, vyw4510, dc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bdg, app(ty_Maybe, app(ty_[], beg))) -> new_ltEs2(vyw4310, vyw4510, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bdg, app(app(ty_@2, de), app(ty_[], ee))) -> new_ltEs2(vyw4311, vyw4511, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bdg, app(app(app(ty_@3, gb), gc), app(ty_[], hc))) -> new_ltEs2(vyw4312, vyw4512, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(app(ty_@2, hh), baa), hg) -> new_lt0(vyw4311, vyw4511, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_@2, bba), bbb), gc, hg) -> new_lt0(vyw4310, vyw4510, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(ty_[], bae), hg) -> new_lt2(vyw4311, vyw4511, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_[], bbf), gc, hg) -> new_lt2(vyw4310, vyw4510, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(ty_Maybe, dd)) -> new_ltEs3(vyw4310, vyw4510, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ca), bb) -> new_ltEs3(vyw4310, vyw4510, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Left(vyw4310), Left(vyw4510), app(ty_[], bh), bb) -> new_ltEs2(vyw4310, vyw4510, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw4310), Right(vyw4510), cb, app(ty_[], dc)) -> new_ltEs2(vyw4310, vyw4510, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(app(app(ty_@3, bab), bac), bad), hg) -> new_lt1(vyw4311, vyw4511, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(app(ty_@3, bbc), bbd), bbe), gc, hg) -> new_lt1(vyw4310, vyw4510, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_Maybe, bbg), gc, hg) -> new_lt3(vyw4310, vyw4510, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(ty_Maybe, baf), hg) -> new_lt3(vyw4311, vyw4511, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_Either, bag), bah), gc, hg) -> new_lt(vyw4310, vyw4510, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gb, app(app(ty_Either, he), hf), hg) -> new_lt(vyw4311, vyw4511, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (39) YES