/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 8 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 20 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) TransformationProof [EQUIVALENT, 2129 ms] (25) QDP (26) QDPSizeChangeProof [EQUIVALENT, 0 ms] (27) YES (28) QDP (29) QDPSizeChangeProof [EQUIVALENT, 0 ms] (30) YES (31) QDP (32) QDPSizeChangeProof [EQUIVALENT, 35 ms] (33) YES (34) QDP (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] (36) YES (37) QDP (38) QDPSizeChangeProof [EQUIVALENT, 0 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 :: (b -> a -> c -> c) -> c -> FiniteMap b a -> 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 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; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = case lookupFM fm key of { Nothing-> deflt; Just elt-> 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; } ---------------------------------------- (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 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 _ 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; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = case lookupFM fm key of { Nothing-> deflt; Just elt-> 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; } ---------------------------------------- (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; " The following Case expression "case lookupFM fm key of { Nothing -> deflt; Just elt -> elt} " is transformed to "lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; " ---------------------------------------- (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 :: (a -> c -> b -> b) -> b -> FiniteMap a c -> 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; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = 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; } ---------------------------------------- (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 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> 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; lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = 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; } ---------------------------------------- (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 :: (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 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; lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = 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); " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "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; " "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); " "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; " "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 a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 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 :: (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 = 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; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; 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; } ---------------------------------------- (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'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "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; " "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " "reduce2D vyu vyv = gcd 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 :: (c -> a -> b -> b) -> b -> FiniteMap c a -> 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 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; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = 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; } ---------------------------------------- (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 a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 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 :: (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; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; 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.lookupWithDefaultFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.lookupWithDefaultFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 5[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4 vyw5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw3 vyw5)",fontsize=16,color="burlywood",shape="triangle"];2333[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 2333[label="",style="solid", color="burlywood", weight=9]; 2333 -> 7[label="",style="solid", color="burlywood", weight=3]; 2334[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];6 -> 2334[label="",style="solid", color="burlywood", weight=9]; 2334 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 11[label="FiniteMap.lookupWithDefaultFM0 vyw4 Nothing",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 12[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (vyw5 < vyw30))",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 13[label="vyw4",fontsize=16,color="green",shape="box"];14[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare vyw5 vyw30 == LT))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 15[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare3 vyw5 vyw30 == LT))",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare2 vyw5 vyw30 (vyw5 == vyw30) == LT))",fontsize=16,color="burlywood",shape="box"];2335[label="vyw5/(vyw50,vyw51)",fontsize=10,color="white",style="solid",shape="box"];16 -> 2335[label="",style="solid", color="burlywood", weight=9]; 2335 -> 17[label="",style="solid", color="burlywood", weight=3]; 17[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (vyw50,vyw51) (compare2 (vyw50,vyw51) vyw30 ((vyw50,vyw51) == vyw30) == LT))",fontsize=16,color="burlywood",shape="box"];2336[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];17 -> 2336[label="",style="solid", color="burlywood", weight=9]; 2336 -> 18[label="",style="solid", color="burlywood", weight=3]; 18[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (vyw300,vyw301) vyw31 vyw32 vyw33 vyw34 (vyw50,vyw51) (compare2 (vyw50,vyw51) (vyw300,vyw301) ((vyw50,vyw51) == (vyw300,vyw301)) == LT))",fontsize=16,color="black",shape="box"];18 -> 19[label="",style="solid", color="black", weight=3]; 19 -> 104[label="",style="dashed", color="red", weight=0]; 19[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (vyw300,vyw301) vyw31 vyw32 vyw33 vyw34 (vyw50,vyw51) (compare2 (vyw50,vyw51) (vyw300,vyw301) (vyw50 == vyw300 && vyw51 == vyw301) == LT))",fontsize=16,color="magenta"];19 -> 105[label="",style="dashed", color="magenta", weight=3]; 19 -> 106[label="",style="dashed", color="magenta", weight=3]; 19 -> 107[label="",style="dashed", color="magenta", weight=3]; 19 -> 108[label="",style="dashed", color="magenta", weight=3]; 19 -> 109[label="",style="dashed", color="magenta", weight=3]; 19 -> 110[label="",style="dashed", color="magenta", weight=3]; 19 -> 111[label="",style="dashed", color="magenta", weight=3]; 19 -> 112[label="",style="dashed", color="magenta", weight=3]; 19 -> 113[label="",style="dashed", color="magenta", weight=3]; 19 -> 114[label="",style="dashed", color="magenta", weight=3]; 105[label="vyw4",fontsize=16,color="green",shape="box"];106[label="vyw300",fontsize=16,color="green",shape="box"];107 -> 118[label="",style="dashed", color="red", weight=0]; 107[label="compare2 (vyw50,vyw51) (vyw300,vyw301) (vyw50 == vyw300 && vyw51 == vyw301) == LT",fontsize=16,color="magenta"];107 -> 119[label="",style="dashed", color="magenta", weight=3]; 107 -> 120[label="",style="dashed", color="magenta", weight=3]; 107 -> 121[label="",style="dashed", color="magenta", weight=3]; 107 -> 122[label="",style="dashed", color="magenta", weight=3]; 107 -> 123[label="",style="dashed", color="magenta", weight=3]; 108[label="vyw301",fontsize=16,color="green",shape="box"];109[label="vyw31",fontsize=16,color="green",shape="box"];110[label="vyw33",fontsize=16,color="green",shape="box"];111[label="vyw34",fontsize=16,color="green",shape="box"];112[label="vyw50",fontsize=16,color="green",shape="box"];113[label="vyw51",fontsize=16,color="green",shape="box"];114[label="vyw32",fontsize=16,color="green",shape="box"];104[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM2 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) vyw27)",fontsize=16,color="burlywood",shape="triangle"];2337[label="vyw27/False",fontsize=10,color="white",style="solid",shape="box"];104 -> 2337[label="",style="solid", color="burlywood", weight=9]; 2337 -> 124[label="",style="solid", color="burlywood", weight=3]; 2338[label="vyw27/True",fontsize=10,color="white",style="solid",shape="box"];104 -> 2338[label="",style="solid", color="burlywood", weight=9]; 2338 -> 125[label="",style="solid", color="burlywood", weight=3]; 119[label="vyw50",fontsize=16,color="green",shape="box"];120[label="vyw301",fontsize=16,color="green",shape="box"];121[label="vyw300",fontsize=16,color="green",shape="box"];122[label="vyw51",fontsize=16,color="green",shape="box"];123[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];2339[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2339[label="",style="solid", color="blue", weight=9]; 2339 -> 126[label="",style="solid", color="blue", weight=3]; 2340[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2340[label="",style="solid", color="blue", weight=9]; 2340 -> 127[label="",style="solid", color="blue", weight=3]; 2341[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2341[label="",style="solid", color="blue", weight=9]; 2341 -> 128[label="",style="solid", color="blue", weight=3]; 2342[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2342[label="",style="solid", color="blue", weight=9]; 2342 -> 129[label="",style="solid", color="blue", weight=3]; 2343[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2343[label="",style="solid", color="blue", weight=9]; 2343 -> 130[label="",style="solid", color="blue", weight=3]; 2344[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2344[label="",style="solid", color="blue", weight=9]; 2344 -> 131[label="",style="solid", color="blue", weight=3]; 2345[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2345[label="",style="solid", color="blue", weight=9]; 2345 -> 132[label="",style="solid", color="blue", weight=3]; 2346[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2346[label="",style="solid", color="blue", weight=9]; 2346 -> 133[label="",style="solid", color="blue", weight=3]; 2347[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2347[label="",style="solid", color="blue", weight=9]; 2347 -> 134[label="",style="solid", color="blue", weight=3]; 2348[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2348[label="",style="solid", color="blue", weight=9]; 2348 -> 135[label="",style="solid", color="blue", weight=3]; 2349[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2349[label="",style="solid", color="blue", weight=9]; 2349 -> 136[label="",style="solid", color="blue", weight=3]; 2350[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2350[label="",style="solid", color="blue", weight=9]; 2350 -> 137[label="",style="solid", color="blue", weight=3]; 2351[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2351[label="",style="solid", color="blue", weight=9]; 2351 -> 138[label="",style="solid", color="blue", weight=3]; 2352[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];123 -> 2352[label="",style="solid", color="blue", weight=9]; 2352 -> 139[label="",style="solid", color="blue", weight=3]; 118[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (vyw38 && vyw35 == vyw37) == LT",fontsize=16,color="burlywood",shape="triangle"];2353[label="vyw38/False",fontsize=10,color="white",style="solid",shape="box"];118 -> 2353[label="",style="solid", color="burlywood", weight=9]; 2353 -> 140[label="",style="solid", color="burlywood", weight=3]; 2354[label="vyw38/True",fontsize=10,color="white",style="solid",shape="box"];118 -> 2354[label="",style="solid", color="burlywood", weight=9]; 2354 -> 141[label="",style="solid", color="burlywood", weight=3]; 124[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM2 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) False)",fontsize=16,color="black",shape="box"];124 -> 142[label="",style="solid", color="black", weight=3]; 125[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM2 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) True)",fontsize=16,color="black",shape="box"];125 -> 143[label="",style="solid", color="black", weight=3]; 126[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2355[label="vyw50/(vyw500,vyw501,vyw502)",fontsize=10,color="white",style="solid",shape="box"];126 -> 2355[label="",style="solid", color="burlywood", weight=9]; 2355 -> 144[label="",style="solid", color="burlywood", weight=3]; 127[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2356[label="vyw50/vyw500 : vyw501",fontsize=10,color="white",style="solid",shape="box"];127 -> 2356[label="",style="solid", color="burlywood", weight=9]; 2356 -> 145[label="",style="solid", color="burlywood", weight=3]; 2357[label="vyw50/[]",fontsize=10,color="white",style="solid",shape="box"];127 -> 2357[label="",style="solid", color="burlywood", weight=9]; 2357 -> 146[label="",style="solid", color="burlywood", weight=3]; 128[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2358[label="vyw50/(vyw500,vyw501)",fontsize=10,color="white",style="solid",shape="box"];128 -> 2358[label="",style="solid", color="burlywood", weight=9]; 2358 -> 147[label="",style="solid", color="burlywood", weight=3]; 129[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2359[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];129 -> 2359[label="",style="solid", color="burlywood", weight=9]; 2359 -> 148[label="",style="solid", color="burlywood", weight=3]; 2360[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];129 -> 2360[label="",style="solid", color="burlywood", weight=9]; 2360 -> 149[label="",style="solid", color="burlywood", weight=3]; 130[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];130 -> 150[label="",style="solid", color="black", weight=3]; 131[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];131 -> 151[label="",style="solid", color="black", weight=3]; 132[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2361[label="vyw50/Integer vyw500",fontsize=10,color="white",style="solid",shape="box"];132 -> 2361[label="",style="solid", color="burlywood", weight=9]; 2361 -> 152[label="",style="solid", color="burlywood", weight=3]; 133[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];133 -> 153[label="",style="solid", color="black", weight=3]; 134[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];134 -> 154[label="",style="solid", color="black", weight=3]; 135[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2362[label="vyw50/vyw500 :% vyw501",fontsize=10,color="white",style="solid",shape="box"];135 -> 2362[label="",style="solid", color="burlywood", weight=9]; 2362 -> 155[label="",style="solid", color="burlywood", weight=3]; 136[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2363[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];136 -> 2363[label="",style="solid", color="burlywood", weight=9]; 2363 -> 156[label="",style="solid", color="burlywood", weight=3]; 2364[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];136 -> 2364[label="",style="solid", color="burlywood", weight=9]; 2364 -> 157[label="",style="solid", color="burlywood", weight=3]; 137[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2365[label="vyw50/()",fontsize=10,color="white",style="solid",shape="box"];137 -> 2365[label="",style="solid", color="burlywood", weight=9]; 2365 -> 158[label="",style="solid", color="burlywood", weight=3]; 138[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2366[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];138 -> 2366[label="",style="solid", color="burlywood", weight=9]; 2366 -> 159[label="",style="solid", color="burlywood", weight=3]; 2367[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];138 -> 2367[label="",style="solid", color="burlywood", weight=9]; 2367 -> 160[label="",style="solid", color="burlywood", weight=3]; 139[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2368[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];139 -> 2368[label="",style="solid", color="burlywood", weight=9]; 2368 -> 161[label="",style="solid", color="burlywood", weight=3]; 2369[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];139 -> 2369[label="",style="solid", color="burlywood", weight=9]; 2369 -> 162[label="",style="solid", color="burlywood", weight=3]; 2370[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];139 -> 2370[label="",style="solid", color="burlywood", weight=9]; 2370 -> 163[label="",style="solid", color="burlywood", weight=3]; 140[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (False && vyw35 == vyw37) == LT",fontsize=16,color="black",shape="box"];140 -> 164[label="",style="solid", color="black", weight=3]; 141[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (True && vyw35 == vyw37) == LT",fontsize=16,color="black",shape="box"];141 -> 165[label="",style="solid", color="black", weight=3]; 142 -> 209[label="",style="dashed", color="red", weight=0]; 142[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM1 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) ((vyw24,vyw25) > (vyw18,vyw19)))",fontsize=16,color="magenta"];142 -> 210[label="",style="dashed", color="magenta", weight=3]; 143 -> 6[label="",style="dashed", color="red", weight=0]; 143[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM vyw22 (vyw24,vyw25))",fontsize=16,color="magenta"];143 -> 167[label="",style="dashed", color="magenta", weight=3]; 143 -> 168[label="",style="dashed", color="magenta", weight=3]; 143 -> 169[label="",style="dashed", color="magenta", weight=3]; 144[label="(vyw500,vyw501,vyw502) == vyw300",fontsize=16,color="burlywood",shape="box"];2371[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];144 -> 2371[label="",style="solid", color="burlywood", weight=9]; 2371 -> 170[label="",style="solid", color="burlywood", weight=3]; 145[label="vyw500 : vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];2372[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];145 -> 2372[label="",style="solid", color="burlywood", weight=9]; 2372 -> 171[label="",style="solid", color="burlywood", weight=3]; 2373[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];145 -> 2373[label="",style="solid", color="burlywood", weight=9]; 2373 -> 172[label="",style="solid", color="burlywood", weight=3]; 146[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];2374[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];146 -> 2374[label="",style="solid", color="burlywood", weight=9]; 2374 -> 173[label="",style="solid", color="burlywood", weight=3]; 2375[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];146 -> 2375[label="",style="solid", color="burlywood", weight=9]; 2375 -> 174[label="",style="solid", color="burlywood", weight=3]; 147[label="(vyw500,vyw501) == vyw300",fontsize=16,color="burlywood",shape="box"];2376[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];147 -> 2376[label="",style="solid", color="burlywood", weight=9]; 2376 -> 175[label="",style="solid", color="burlywood", weight=3]; 148[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];2377[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];148 -> 2377[label="",style="solid", color="burlywood", weight=9]; 2377 -> 176[label="",style="solid", color="burlywood", weight=3]; 2378[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];148 -> 2378[label="",style="solid", color="burlywood", weight=9]; 2378 -> 177[label="",style="solid", color="burlywood", weight=3]; 149[label="Just vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];2379[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];149 -> 2379[label="",style="solid", color="burlywood", weight=9]; 2379 -> 178[label="",style="solid", color="burlywood", weight=3]; 2380[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];149 -> 2380[label="",style="solid", color="burlywood", weight=9]; 2380 -> 179[label="",style="solid", color="burlywood", weight=3]; 150[label="primEqInt vyw50 vyw300",fontsize=16,color="burlywood",shape="triangle"];2381[label="vyw50/Pos vyw500",fontsize=10,color="white",style="solid",shape="box"];150 -> 2381[label="",style="solid", color="burlywood", weight=9]; 2381 -> 180[label="",style="solid", color="burlywood", weight=3]; 2382[label="vyw50/Neg vyw500",fontsize=10,color="white",style="solid",shape="box"];150 -> 2382[label="",style="solid", color="burlywood", weight=9]; 2382 -> 181[label="",style="solid", color="burlywood", weight=3]; 151[label="primEqChar vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];2383[label="vyw50/Char vyw500",fontsize=10,color="white",style="solid",shape="box"];151 -> 2383[label="",style="solid", color="burlywood", weight=9]; 2383 -> 182[label="",style="solid", color="burlywood", weight=3]; 152[label="Integer vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];2384[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];152 -> 2384[label="",style="solid", color="burlywood", weight=9]; 2384 -> 183[label="",style="solid", color="burlywood", weight=3]; 153[label="primEqFloat vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];2385[label="vyw50/Float vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];153 -> 2385[label="",style="solid", color="burlywood", weight=9]; 2385 -> 184[label="",style="solid", color="burlywood", weight=3]; 154[label="primEqDouble vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];2386[label="vyw50/Double vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];154 -> 2386[label="",style="solid", color="burlywood", weight=9]; 2386 -> 185[label="",style="solid", color="burlywood", weight=3]; 155[label="vyw500 :% vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];2387[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];155 -> 2387[label="",style="solid", color="burlywood", weight=9]; 2387 -> 186[label="",style="solid", color="burlywood", weight=3]; 156[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];2388[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];156 -> 2388[label="",style="solid", color="burlywood", weight=9]; 2388 -> 187[label="",style="solid", color="burlywood", weight=3]; 2389[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];156 -> 2389[label="",style="solid", color="burlywood", weight=9]; 2389 -> 188[label="",style="solid", color="burlywood", weight=3]; 157[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];2390[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];157 -> 2390[label="",style="solid", color="burlywood", weight=9]; 2390 -> 189[label="",style="solid", color="burlywood", weight=3]; 2391[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];157 -> 2391[label="",style="solid", color="burlywood", weight=9]; 2391 -> 190[label="",style="solid", color="burlywood", weight=3]; 158[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];2392[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];158 -> 2392[label="",style="solid", color="burlywood", weight=9]; 2392 -> 191[label="",style="solid", color="burlywood", weight=3]; 159[label="Left vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];2393[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2393[label="",style="solid", color="burlywood", weight=9]; 2393 -> 192[label="",style="solid", color="burlywood", weight=3]; 2394[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2394[label="",style="solid", color="burlywood", weight=9]; 2394 -> 193[label="",style="solid", color="burlywood", weight=3]; 160[label="Right vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];2395[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];160 -> 2395[label="",style="solid", color="burlywood", weight=9]; 2395 -> 194[label="",style="solid", color="burlywood", weight=3]; 2396[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];160 -> 2396[label="",style="solid", color="burlywood", weight=9]; 2396 -> 195[label="",style="solid", color="burlywood", weight=3]; 161[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];2397[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];161 -> 2397[label="",style="solid", color="burlywood", weight=9]; 2397 -> 196[label="",style="solid", color="burlywood", weight=3]; 2398[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];161 -> 2398[label="",style="solid", color="burlywood", weight=9]; 2398 -> 197[label="",style="solid", color="burlywood", weight=3]; 2399[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];161 -> 2399[label="",style="solid", color="burlywood", weight=9]; 2399 -> 198[label="",style="solid", color="burlywood", weight=3]; 162[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];2400[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2400[label="",style="solid", color="burlywood", weight=9]; 2400 -> 199[label="",style="solid", color="burlywood", weight=3]; 2401[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];162 -> 2401[label="",style="solid", color="burlywood", weight=9]; 2401 -> 200[label="",style="solid", color="burlywood", weight=3]; 2402[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2402[label="",style="solid", color="burlywood", weight=9]; 2402 -> 201[label="",style="solid", color="burlywood", weight=3]; 163[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];2403[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];163 -> 2403[label="",style="solid", color="burlywood", weight=9]; 2403 -> 202[label="",style="solid", color="burlywood", weight=3]; 2404[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];163 -> 2404[label="",style="solid", color="burlywood", weight=9]; 2404 -> 203[label="",style="solid", color="burlywood", weight=3]; 2405[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];163 -> 2405[label="",style="solid", color="burlywood", weight=9]; 2405 -> 204[label="",style="solid", color="burlywood", weight=3]; 164 -> 139[label="",style="dashed", color="red", weight=0]; 164[label="compare2 (vyw34,vyw35) (vyw36,vyw37) False == LT",fontsize=16,color="magenta"];164 -> 205[label="",style="dashed", color="magenta", weight=3]; 164 -> 206[label="",style="dashed", color="magenta", weight=3]; 165 -> 139[label="",style="dashed", color="red", weight=0]; 165[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (vyw35 == vyw37) == LT",fontsize=16,color="magenta"];165 -> 207[label="",style="dashed", color="magenta", weight=3]; 165 -> 208[label="",style="dashed", color="magenta", weight=3]; 210[label="(vyw24,vyw25) > (vyw18,vyw19)",fontsize=16,color="black",shape="box"];210 -> 212[label="",style="solid", color="black", weight=3]; 209[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM1 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) vyw39)",fontsize=16,color="burlywood",shape="triangle"];2406[label="vyw39/False",fontsize=10,color="white",style="solid",shape="box"];209 -> 2406[label="",style="solid", color="burlywood", weight=9]; 2406 -> 213[label="",style="solid", color="burlywood", weight=3]; 2407[label="vyw39/True",fontsize=10,color="white",style="solid",shape="box"];209 -> 2407[label="",style="solid", color="burlywood", weight=9]; 2407 -> 214[label="",style="solid", color="burlywood", weight=3]; 167[label="vyw22",fontsize=16,color="green",shape="box"];168[label="(vyw24,vyw25)",fontsize=16,color="green",shape="box"];169[label="vyw17",fontsize=16,color="green",shape="box"];170[label="(vyw500,vyw501,vyw502) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];170 -> 215[label="",style="solid", color="black", weight=3]; 171[label="vyw500 : vyw501 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];171 -> 216[label="",style="solid", color="black", weight=3]; 172[label="vyw500 : vyw501 == []",fontsize=16,color="black",shape="box"];172 -> 217[label="",style="solid", color="black", weight=3]; 173[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];173 -> 218[label="",style="solid", color="black", weight=3]; 174[label="[] == []",fontsize=16,color="black",shape="box"];174 -> 219[label="",style="solid", color="black", weight=3]; 175[label="(vyw500,vyw501) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];175 -> 220[label="",style="solid", color="black", weight=3]; 176[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];176 -> 221[label="",style="solid", color="black", weight=3]; 177[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];177 -> 222[label="",style="solid", color="black", weight=3]; 178[label="Just vyw500 == Nothing",fontsize=16,color="black",shape="box"];178 -> 223[label="",style="solid", color="black", weight=3]; 179[label="Just vyw500 == Just vyw3000",fontsize=16,color="black",shape="box"];179 -> 224[label="",style="solid", color="black", weight=3]; 180[label="primEqInt (Pos vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];2408[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];180 -> 2408[label="",style="solid", color="burlywood", weight=9]; 2408 -> 225[label="",style="solid", color="burlywood", weight=3]; 2409[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];180 -> 2409[label="",style="solid", color="burlywood", weight=9]; 2409 -> 226[label="",style="solid", color="burlywood", weight=3]; 181[label="primEqInt (Neg vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];2410[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];181 -> 2410[label="",style="solid", color="burlywood", weight=9]; 2410 -> 227[label="",style="solid", color="burlywood", weight=3]; 2411[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];181 -> 2411[label="",style="solid", color="burlywood", weight=9]; 2411 -> 228[label="",style="solid", color="burlywood", weight=3]; 182[label="primEqChar (Char vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];2412[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];182 -> 2412[label="",style="solid", color="burlywood", weight=9]; 2412 -> 229[label="",style="solid", color="burlywood", weight=3]; 183[label="Integer vyw500 == Integer vyw3000",fontsize=16,color="black",shape="box"];183 -> 230[label="",style="solid", color="black", weight=3]; 184[label="primEqFloat (Float vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];2413[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];184 -> 2413[label="",style="solid", color="burlywood", weight=9]; 2413 -> 231[label="",style="solid", color="burlywood", weight=3]; 185[label="primEqDouble (Double vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];2414[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];185 -> 2414[label="",style="solid", color="burlywood", weight=9]; 2414 -> 232[label="",style="solid", color="burlywood", weight=3]; 186[label="vyw500 :% vyw501 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];186 -> 233[label="",style="solid", color="black", weight=3]; 187[label="False == False",fontsize=16,color="black",shape="box"];187 -> 234[label="",style="solid", color="black", weight=3]; 188[label="False == True",fontsize=16,color="black",shape="box"];188 -> 235[label="",style="solid", color="black", weight=3]; 189[label="True == False",fontsize=16,color="black",shape="box"];189 -> 236[label="",style="solid", color="black", weight=3]; 190[label="True == True",fontsize=16,color="black",shape="box"];190 -> 237[label="",style="solid", color="black", weight=3]; 191[label="() == ()",fontsize=16,color="black",shape="box"];191 -> 238[label="",style="solid", color="black", weight=3]; 192[label="Left vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];192 -> 239[label="",style="solid", color="black", weight=3]; 193[label="Left vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];193 -> 240[label="",style="solid", color="black", weight=3]; 194[label="Right vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];194 -> 241[label="",style="solid", color="black", weight=3]; 195[label="Right vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];195 -> 242[label="",style="solid", color="black", weight=3]; 196[label="LT == LT",fontsize=16,color="black",shape="box"];196 -> 243[label="",style="solid", color="black", weight=3]; 197[label="LT == EQ",fontsize=16,color="black",shape="box"];197 -> 244[label="",style="solid", color="black", weight=3]; 198[label="LT == GT",fontsize=16,color="black",shape="box"];198 -> 245[label="",style="solid", color="black", weight=3]; 199[label="EQ == LT",fontsize=16,color="black",shape="box"];199 -> 246[label="",style="solid", color="black", weight=3]; 200[label="EQ == EQ",fontsize=16,color="black",shape="box"];200 -> 247[label="",style="solid", color="black", weight=3]; 201[label="EQ == GT",fontsize=16,color="black",shape="box"];201 -> 248[label="",style="solid", color="black", weight=3]; 202[label="GT == LT",fontsize=16,color="black",shape="box"];202 -> 249[label="",style="solid", color="black", weight=3]; 203[label="GT == EQ",fontsize=16,color="black",shape="box"];203 -> 250[label="",style="solid", color="black", weight=3]; 204[label="GT == GT",fontsize=16,color="black",shape="box"];204 -> 251[label="",style="solid", color="black", weight=3]; 205[label="LT",fontsize=16,color="green",shape="box"];206 -> 1180[label="",style="dashed", color="red", weight=0]; 206[label="compare2 (vyw34,vyw35) (vyw36,vyw37) False",fontsize=16,color="magenta"];206 -> 1181[label="",style="dashed", color="magenta", weight=3]; 206 -> 1182[label="",style="dashed", color="magenta", weight=3]; 206 -> 1183[label="",style="dashed", color="magenta", weight=3]; 207[label="LT",fontsize=16,color="green",shape="box"];208 -> 1180[label="",style="dashed", color="red", weight=0]; 208[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (vyw35 == vyw37)",fontsize=16,color="magenta"];208 -> 1184[label="",style="dashed", color="magenta", weight=3]; 208 -> 1185[label="",style="dashed", color="magenta", weight=3]; 208 -> 1186[label="",style="dashed", color="magenta", weight=3]; 212 -> 139[label="",style="dashed", color="red", weight=0]; 212[label="compare (vyw24,vyw25) (vyw18,vyw19) == GT",fontsize=16,color="magenta"];212 -> 264[label="",style="dashed", color="magenta", weight=3]; 212 -> 265[label="",style="dashed", color="magenta", weight=3]; 213[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM1 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) False)",fontsize=16,color="black",shape="box"];213 -> 266[label="",style="solid", color="black", weight=3]; 214[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM1 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) True)",fontsize=16,color="black",shape="box"];214 -> 267[label="",style="solid", color="black", weight=3]; 215 -> 364[label="",style="dashed", color="red", weight=0]; 215[label="vyw500 == vyw3000 && vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];215 -> 365[label="",style="dashed", color="magenta", weight=3]; 215 -> 366[label="",style="dashed", color="magenta", weight=3]; 216 -> 364[label="",style="dashed", color="red", weight=0]; 216[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];216 -> 367[label="",style="dashed", color="magenta", weight=3]; 216 -> 368[label="",style="dashed", color="magenta", weight=3]; 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 -> 364[label="",style="dashed", color="red", weight=0]; 220[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];220 -> 369[label="",style="dashed", color="magenta", weight=3]; 220 -> 370[label="",style="dashed", color="magenta", weight=3]; 221[label="True",fontsize=16,color="green",shape="box"];222[label="False",fontsize=16,color="green",shape="box"];223[label="False",fontsize=16,color="green",shape="box"];224[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2415[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2415[label="",style="solid", color="blue", weight=9]; 2415 -> 285[label="",style="solid", color="blue", weight=3]; 2416[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2416[label="",style="solid", color="blue", weight=9]; 2416 -> 286[label="",style="solid", color="blue", weight=3]; 2417[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2417[label="",style="solid", color="blue", weight=9]; 2417 -> 287[label="",style="solid", color="blue", weight=3]; 2418[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2418[label="",style="solid", color="blue", weight=9]; 2418 -> 288[label="",style="solid", color="blue", weight=3]; 2419[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2419[label="",style="solid", color="blue", weight=9]; 2419 -> 289[label="",style="solid", color="blue", weight=3]; 2420[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2420[label="",style="solid", color="blue", weight=9]; 2420 -> 290[label="",style="solid", color="blue", weight=3]; 2421[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2421[label="",style="solid", color="blue", weight=9]; 2421 -> 291[label="",style="solid", color="blue", weight=3]; 2422[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2422[label="",style="solid", color="blue", weight=9]; 2422 -> 292[label="",style="solid", color="blue", weight=3]; 2423[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2423[label="",style="solid", color="blue", weight=9]; 2423 -> 293[label="",style="solid", color="blue", weight=3]; 2424[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2424[label="",style="solid", color="blue", weight=9]; 2424 -> 294[label="",style="solid", color="blue", weight=3]; 2425[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2425[label="",style="solid", color="blue", weight=9]; 2425 -> 295[label="",style="solid", color="blue", weight=3]; 2426[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2426[label="",style="solid", color="blue", weight=9]; 2426 -> 296[label="",style="solid", color="blue", weight=3]; 2427[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2427[label="",style="solid", color="blue", weight=9]; 2427 -> 297[label="",style="solid", color="blue", weight=3]; 2428[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];224 -> 2428[label="",style="solid", color="blue", weight=9]; 2428 -> 298[label="",style="solid", color="blue", weight=3]; 225[label="primEqInt (Pos (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];2429[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];225 -> 2429[label="",style="solid", color="burlywood", weight=9]; 2429 -> 299[label="",style="solid", color="burlywood", weight=3]; 2430[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];225 -> 2430[label="",style="solid", color="burlywood", weight=9]; 2430 -> 300[label="",style="solid", color="burlywood", weight=3]; 226[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];2431[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];226 -> 2431[label="",style="solid", color="burlywood", weight=9]; 2431 -> 301[label="",style="solid", color="burlywood", weight=3]; 2432[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];226 -> 2432[label="",style="solid", color="burlywood", weight=9]; 2432 -> 302[label="",style="solid", color="burlywood", weight=3]; 227[label="primEqInt (Neg (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];2433[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];227 -> 2433[label="",style="solid", color="burlywood", weight=9]; 2433 -> 303[label="",style="solid", color="burlywood", weight=3]; 2434[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];227 -> 2434[label="",style="solid", color="burlywood", weight=9]; 2434 -> 304[label="",style="solid", color="burlywood", weight=3]; 228[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];2435[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2435[label="",style="solid", color="burlywood", weight=9]; 2435 -> 305[label="",style="solid", color="burlywood", weight=3]; 2436[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2436[label="",style="solid", color="burlywood", weight=9]; 2436 -> 306[label="",style="solid", color="burlywood", weight=3]; 229[label="primEqChar (Char vyw500) (Char vyw3000)",fontsize=16,color="black",shape="box"];229 -> 307[label="",style="solid", color="black", weight=3]; 230 -> 150[label="",style="dashed", color="red", weight=0]; 230[label="primEqInt vyw500 vyw3000",fontsize=16,color="magenta"];230 -> 308[label="",style="dashed", color="magenta", weight=3]; 230 -> 309[label="",style="dashed", color="magenta", weight=3]; 231[label="primEqFloat (Float vyw500 vyw501) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];231 -> 310[label="",style="solid", color="black", weight=3]; 232[label="primEqDouble (Double vyw500 vyw501) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];232 -> 311[label="",style="solid", color="black", weight=3]; 233 -> 364[label="",style="dashed", color="red", weight=0]; 233[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];233 -> 371[label="",style="dashed", color="magenta", weight=3]; 233 -> 372[label="",style="dashed", color="magenta", weight=3]; 234[label="True",fontsize=16,color="green",shape="box"];235[label="False",fontsize=16,color="green",shape="box"];236[label="False",fontsize=16,color="green",shape="box"];237[label="True",fontsize=16,color="green",shape="box"];238[label="True",fontsize=16,color="green",shape="box"];239[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2437[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2437[label="",style="solid", color="blue", weight=9]; 2437 -> 312[label="",style="solid", color="blue", weight=3]; 2438[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2438[label="",style="solid", color="blue", weight=9]; 2438 -> 313[label="",style="solid", color="blue", weight=3]; 2439[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2439[label="",style="solid", color="blue", weight=9]; 2439 -> 314[label="",style="solid", color="blue", weight=3]; 2440[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2440[label="",style="solid", color="blue", weight=9]; 2440 -> 315[label="",style="solid", color="blue", weight=3]; 2441[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2441[label="",style="solid", color="blue", weight=9]; 2441 -> 316[label="",style="solid", color="blue", weight=3]; 2442[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2442[label="",style="solid", color="blue", weight=9]; 2442 -> 317[label="",style="solid", color="blue", weight=3]; 2443[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2443[label="",style="solid", color="blue", weight=9]; 2443 -> 318[label="",style="solid", color="blue", weight=3]; 2444[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2444[label="",style="solid", color="blue", weight=9]; 2444 -> 319[label="",style="solid", color="blue", weight=3]; 2445[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2445[label="",style="solid", color="blue", weight=9]; 2445 -> 320[label="",style="solid", color="blue", weight=3]; 2446[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2446[label="",style="solid", color="blue", weight=9]; 2446 -> 321[label="",style="solid", color="blue", weight=3]; 2447[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2447[label="",style="solid", color="blue", weight=9]; 2447 -> 322[label="",style="solid", color="blue", weight=3]; 2448[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2448[label="",style="solid", color="blue", weight=9]; 2448 -> 323[label="",style="solid", color="blue", weight=3]; 2449[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2449[label="",style="solid", color="blue", weight=9]; 2449 -> 324[label="",style="solid", color="blue", weight=3]; 2450[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2450[label="",style="solid", color="blue", weight=9]; 2450 -> 325[label="",style="solid", color="blue", weight=3]; 240[label="False",fontsize=16,color="green",shape="box"];241[label="False",fontsize=16,color="green",shape="box"];242[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2451[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2451[label="",style="solid", color="blue", weight=9]; 2451 -> 326[label="",style="solid", color="blue", weight=3]; 2452[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2452[label="",style="solid", color="blue", weight=9]; 2452 -> 327[label="",style="solid", color="blue", weight=3]; 2453[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2453[label="",style="solid", color="blue", weight=9]; 2453 -> 328[label="",style="solid", color="blue", weight=3]; 2454[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2454[label="",style="solid", color="blue", weight=9]; 2454 -> 329[label="",style="solid", color="blue", weight=3]; 2455[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2455[label="",style="solid", color="blue", weight=9]; 2455 -> 330[label="",style="solid", color="blue", weight=3]; 2456[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2456[label="",style="solid", color="blue", weight=9]; 2456 -> 331[label="",style="solid", color="blue", weight=3]; 2457[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2457[label="",style="solid", color="blue", weight=9]; 2457 -> 332[label="",style="solid", color="blue", weight=3]; 2458[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2458[label="",style="solid", color="blue", weight=9]; 2458 -> 333[label="",style="solid", color="blue", weight=3]; 2459[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2459[label="",style="solid", color="blue", weight=9]; 2459 -> 334[label="",style="solid", color="blue", weight=3]; 2460[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2460[label="",style="solid", color="blue", weight=9]; 2460 -> 335[label="",style="solid", color="blue", weight=3]; 2461[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2461[label="",style="solid", color="blue", weight=9]; 2461 -> 336[label="",style="solid", color="blue", weight=3]; 2462[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2462[label="",style="solid", color="blue", weight=9]; 2462 -> 337[label="",style="solid", color="blue", weight=3]; 2463[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2463[label="",style="solid", color="blue", weight=9]; 2463 -> 338[label="",style="solid", color="blue", weight=3]; 2464[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2464[label="",style="solid", color="blue", weight=9]; 2464 -> 339[label="",style="solid", color="blue", weight=3]; 243[label="True",fontsize=16,color="green",shape="box"];244[label="False",fontsize=16,color="green",shape="box"];245[label="False",fontsize=16,color="green",shape="box"];246[label="False",fontsize=16,color="green",shape="box"];247[label="True",fontsize=16,color="green",shape="box"];248[label="False",fontsize=16,color="green",shape="box"];249[label="False",fontsize=16,color="green",shape="box"];250[label="False",fontsize=16,color="green",shape="box"];251[label="True",fontsize=16,color="green",shape="box"];1181[label="(vyw36,vyw37)",fontsize=16,color="green",shape="box"];1182[label="False",fontsize=16,color="green",shape="box"];1183[label="(vyw34,vyw35)",fontsize=16,color="green",shape="box"];1180[label="compare2 vyw46 vyw48 vyw86",fontsize=16,color="burlywood",shape="triangle"];2465[label="vyw86/False",fontsize=10,color="white",style="solid",shape="box"];1180 -> 2465[label="",style="solid", color="burlywood", weight=9]; 2465 -> 1194[label="",style="solid", color="burlywood", weight=3]; 2466[label="vyw86/True",fontsize=10,color="white",style="solid",shape="box"];1180 -> 2466[label="",style="solid", color="burlywood", weight=9]; 2466 -> 1195[label="",style="solid", color="burlywood", weight=3]; 1184[label="(vyw36,vyw37)",fontsize=16,color="green",shape="box"];1185[label="vyw35 == vyw37",fontsize=16,color="blue",shape="box"];2467[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2467[label="",style="solid", color="blue", weight=9]; 2467 -> 1196[label="",style="solid", color="blue", weight=3]; 2468[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2468[label="",style="solid", color="blue", weight=9]; 2468 -> 1197[label="",style="solid", color="blue", weight=3]; 2469[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2469[label="",style="solid", color="blue", weight=9]; 2469 -> 1198[label="",style="solid", color="blue", weight=3]; 2470[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2470[label="",style="solid", color="blue", weight=9]; 2470 -> 1199[label="",style="solid", color="blue", weight=3]; 2471[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2471[label="",style="solid", color="blue", weight=9]; 2471 -> 1200[label="",style="solid", color="blue", weight=3]; 2472[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2472[label="",style="solid", color="blue", weight=9]; 2472 -> 1201[label="",style="solid", color="blue", weight=3]; 2473[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2473[label="",style="solid", color="blue", weight=9]; 2473 -> 1202[label="",style="solid", color="blue", weight=3]; 2474[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2474[label="",style="solid", color="blue", weight=9]; 2474 -> 1203[label="",style="solid", color="blue", weight=3]; 2475[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2475[label="",style="solid", color="blue", weight=9]; 2475 -> 1204[label="",style="solid", color="blue", weight=3]; 2476[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2476[label="",style="solid", color="blue", weight=9]; 2476 -> 1205[label="",style="solid", color="blue", weight=3]; 2477[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2477[label="",style="solid", color="blue", weight=9]; 2477 -> 1206[label="",style="solid", color="blue", weight=3]; 2478[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2478[label="",style="solid", color="blue", weight=9]; 2478 -> 1207[label="",style="solid", color="blue", weight=3]; 2479[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2479[label="",style="solid", color="blue", weight=9]; 2479 -> 1208[label="",style="solid", color="blue", weight=3]; 2480[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2480[label="",style="solid", color="blue", weight=9]; 2480 -> 1209[label="",style="solid", color="blue", weight=3]; 1186[label="(vyw34,vyw35)",fontsize=16,color="green",shape="box"];264[label="GT",fontsize=16,color="green",shape="box"];265[label="compare (vyw24,vyw25) (vyw18,vyw19)",fontsize=16,color="black",shape="box"];265 -> 356[label="",style="solid", color="black", weight=3]; 266[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM0 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) otherwise)",fontsize=16,color="black",shape="box"];266 -> 357[label="",style="solid", color="black", weight=3]; 267 -> 6[label="",style="dashed", color="red", weight=0]; 267[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM vyw23 (vyw24,vyw25))",fontsize=16,color="magenta"];267 -> 358[label="",style="dashed", color="magenta", weight=3]; 267 -> 359[label="",style="dashed", color="magenta", weight=3]; 267 -> 360[label="",style="dashed", color="magenta", weight=3]; 365[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2481[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2481[label="",style="solid", color="blue", weight=9]; 2481 -> 377[label="",style="solid", color="blue", weight=3]; 2482[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2482[label="",style="solid", color="blue", weight=9]; 2482 -> 378[label="",style="solid", color="blue", weight=3]; 2483[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2483[label="",style="solid", color="blue", weight=9]; 2483 -> 379[label="",style="solid", color="blue", weight=3]; 2484[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2484[label="",style="solid", color="blue", weight=9]; 2484 -> 380[label="",style="solid", color="blue", weight=3]; 2485[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2485[label="",style="solid", color="blue", weight=9]; 2485 -> 381[label="",style="solid", color="blue", weight=3]; 2486[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2486[label="",style="solid", color="blue", weight=9]; 2486 -> 382[label="",style="solid", color="blue", weight=3]; 2487[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2487[label="",style="solid", color="blue", weight=9]; 2487 -> 383[label="",style="solid", color="blue", weight=3]; 2488[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2488[label="",style="solid", color="blue", weight=9]; 2488 -> 384[label="",style="solid", color="blue", weight=3]; 2489[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2489[label="",style="solid", color="blue", weight=9]; 2489 -> 385[label="",style="solid", color="blue", weight=3]; 2490[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2490[label="",style="solid", color="blue", weight=9]; 2490 -> 386[label="",style="solid", color="blue", weight=3]; 2491[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2491[label="",style="solid", color="blue", weight=9]; 2491 -> 387[label="",style="solid", color="blue", weight=3]; 2492[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2492[label="",style="solid", color="blue", weight=9]; 2492 -> 388[label="",style="solid", color="blue", weight=3]; 2493[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2493[label="",style="solid", color="blue", weight=9]; 2493 -> 389[label="",style="solid", color="blue", weight=3]; 2494[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2494[label="",style="solid", color="blue", weight=9]; 2494 -> 390[label="",style="solid", color="blue", weight=3]; 366 -> 364[label="",style="dashed", color="red", weight=0]; 366[label="vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];366 -> 391[label="",style="dashed", color="magenta", weight=3]; 366 -> 392[label="",style="dashed", color="magenta", weight=3]; 364[label="vyw66 && vyw67",fontsize=16,color="burlywood",shape="triangle"];2495[label="vyw66/False",fontsize=10,color="white",style="solid",shape="box"];364 -> 2495[label="",style="solid", color="burlywood", weight=9]; 2495 -> 393[label="",style="solid", color="burlywood", weight=3]; 2496[label="vyw66/True",fontsize=10,color="white",style="solid",shape="box"];364 -> 2496[label="",style="solid", color="burlywood", weight=9]; 2496 -> 394[label="",style="solid", color="burlywood", weight=3]; 367[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2497[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2497[label="",style="solid", color="blue", weight=9]; 2497 -> 395[label="",style="solid", color="blue", weight=3]; 2498[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2498[label="",style="solid", color="blue", weight=9]; 2498 -> 396[label="",style="solid", color="blue", weight=3]; 2499[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2499[label="",style="solid", color="blue", weight=9]; 2499 -> 397[label="",style="solid", color="blue", weight=3]; 2500[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2500[label="",style="solid", color="blue", weight=9]; 2500 -> 398[label="",style="solid", color="blue", weight=3]; 2501[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2501[label="",style="solid", color="blue", weight=9]; 2501 -> 399[label="",style="solid", color="blue", weight=3]; 2502[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2502[label="",style="solid", color="blue", weight=9]; 2502 -> 400[label="",style="solid", color="blue", weight=3]; 2503[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2503[label="",style="solid", color="blue", weight=9]; 2503 -> 401[label="",style="solid", color="blue", weight=3]; 2504[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2504[label="",style="solid", color="blue", weight=9]; 2504 -> 402[label="",style="solid", color="blue", weight=3]; 2505[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2505[label="",style="solid", color="blue", weight=9]; 2505 -> 403[label="",style="solid", color="blue", weight=3]; 2506[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2506[label="",style="solid", color="blue", weight=9]; 2506 -> 404[label="",style="solid", color="blue", weight=3]; 2507[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2507[label="",style="solid", color="blue", weight=9]; 2507 -> 405[label="",style="solid", color="blue", weight=3]; 2508[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2508[label="",style="solid", color="blue", weight=9]; 2508 -> 406[label="",style="solid", color="blue", weight=3]; 2509[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2509[label="",style="solid", color="blue", weight=9]; 2509 -> 407[label="",style="solid", color="blue", weight=3]; 2510[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2510[label="",style="solid", color="blue", weight=9]; 2510 -> 408[label="",style="solid", color="blue", weight=3]; 368 -> 127[label="",style="dashed", color="red", weight=0]; 368[label="vyw501 == vyw3001",fontsize=16,color="magenta"];368 -> 409[label="",style="dashed", color="magenta", weight=3]; 368 -> 410[label="",style="dashed", color="magenta", weight=3]; 369[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2511[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2511[label="",style="solid", color="blue", weight=9]; 2511 -> 411[label="",style="solid", color="blue", weight=3]; 2512[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2512[label="",style="solid", color="blue", weight=9]; 2512 -> 412[label="",style="solid", color="blue", weight=3]; 2513[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2513[label="",style="solid", color="blue", weight=9]; 2513 -> 413[label="",style="solid", color="blue", weight=3]; 2514[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2514[label="",style="solid", color="blue", weight=9]; 2514 -> 414[label="",style="solid", color="blue", weight=3]; 2515[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2515[label="",style="solid", color="blue", weight=9]; 2515 -> 415[label="",style="solid", color="blue", weight=3]; 2516[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2516[label="",style="solid", color="blue", weight=9]; 2516 -> 416[label="",style="solid", color="blue", weight=3]; 2517[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2517[label="",style="solid", color="blue", weight=9]; 2517 -> 417[label="",style="solid", color="blue", weight=3]; 2518[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2518[label="",style="solid", color="blue", weight=9]; 2518 -> 418[label="",style="solid", color="blue", weight=3]; 2519[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2519[label="",style="solid", color="blue", weight=9]; 2519 -> 419[label="",style="solid", color="blue", weight=3]; 2520[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2520[label="",style="solid", color="blue", weight=9]; 2520 -> 420[label="",style="solid", color="blue", weight=3]; 2521[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2521[label="",style="solid", color="blue", weight=9]; 2521 -> 421[label="",style="solid", color="blue", weight=3]; 2522[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2522[label="",style="solid", color="blue", weight=9]; 2522 -> 422[label="",style="solid", color="blue", weight=3]; 2523[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2523[label="",style="solid", color="blue", weight=9]; 2523 -> 423[label="",style="solid", color="blue", weight=3]; 2524[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 2524[label="",style="solid", color="blue", weight=9]; 2524 -> 424[label="",style="solid", color="blue", weight=3]; 370[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];2525[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2525[label="",style="solid", color="blue", weight=9]; 2525 -> 425[label="",style="solid", color="blue", weight=3]; 2526[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2526[label="",style="solid", color="blue", weight=9]; 2526 -> 426[label="",style="solid", color="blue", weight=3]; 2527[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2527[label="",style="solid", color="blue", weight=9]; 2527 -> 427[label="",style="solid", color="blue", weight=3]; 2528[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2528[label="",style="solid", color="blue", weight=9]; 2528 -> 428[label="",style="solid", color="blue", weight=3]; 2529[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2529[label="",style="solid", color="blue", weight=9]; 2529 -> 429[label="",style="solid", color="blue", weight=3]; 2530[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2530[label="",style="solid", color="blue", weight=9]; 2530 -> 430[label="",style="solid", color="blue", weight=3]; 2531[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2531[label="",style="solid", color="blue", weight=9]; 2531 -> 431[label="",style="solid", color="blue", weight=3]; 2532[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2532[label="",style="solid", color="blue", weight=9]; 2532 -> 432[label="",style="solid", color="blue", weight=3]; 2533[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2533[label="",style="solid", color="blue", weight=9]; 2533 -> 433[label="",style="solid", color="blue", weight=3]; 2534[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2534[label="",style="solid", color="blue", weight=9]; 2534 -> 434[label="",style="solid", color="blue", weight=3]; 2535[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2535[label="",style="solid", color="blue", weight=9]; 2535 -> 435[label="",style="solid", color="blue", weight=3]; 2536[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2536[label="",style="solid", color="blue", weight=9]; 2536 -> 436[label="",style="solid", color="blue", weight=3]; 2537[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2537[label="",style="solid", color="blue", weight=9]; 2537 -> 437[label="",style="solid", color="blue", weight=3]; 2538[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 2538[label="",style="solid", color="blue", weight=9]; 2538 -> 438[label="",style="solid", color="blue", weight=3]; 285 -> 126[label="",style="dashed", color="red", weight=0]; 285[label="vyw500 == vyw3000",fontsize=16,color="magenta"];285 -> 439[label="",style="dashed", color="magenta", weight=3]; 285 -> 440[label="",style="dashed", color="magenta", weight=3]; 286 -> 127[label="",style="dashed", color="red", weight=0]; 286[label="vyw500 == vyw3000",fontsize=16,color="magenta"];286 -> 441[label="",style="dashed", color="magenta", weight=3]; 286 -> 442[label="",style="dashed", color="magenta", weight=3]; 287 -> 128[label="",style="dashed", color="red", weight=0]; 287[label="vyw500 == vyw3000",fontsize=16,color="magenta"];287 -> 443[label="",style="dashed", color="magenta", weight=3]; 287 -> 444[label="",style="dashed", color="magenta", weight=3]; 288 -> 129[label="",style="dashed", color="red", weight=0]; 288[label="vyw500 == vyw3000",fontsize=16,color="magenta"];288 -> 445[label="",style="dashed", color="magenta", weight=3]; 288 -> 446[label="",style="dashed", color="magenta", weight=3]; 289 -> 130[label="",style="dashed", color="red", weight=0]; 289[label="vyw500 == vyw3000",fontsize=16,color="magenta"];289 -> 447[label="",style="dashed", color="magenta", weight=3]; 289 -> 448[label="",style="dashed", color="magenta", weight=3]; 290 -> 131[label="",style="dashed", color="red", weight=0]; 290[label="vyw500 == vyw3000",fontsize=16,color="magenta"];290 -> 449[label="",style="dashed", color="magenta", weight=3]; 290 -> 450[label="",style="dashed", color="magenta", weight=3]; 291 -> 132[label="",style="dashed", color="red", weight=0]; 291[label="vyw500 == vyw3000",fontsize=16,color="magenta"];291 -> 451[label="",style="dashed", color="magenta", weight=3]; 291 -> 452[label="",style="dashed", color="magenta", weight=3]; 292 -> 133[label="",style="dashed", color="red", weight=0]; 292[label="vyw500 == vyw3000",fontsize=16,color="magenta"];292 -> 453[label="",style="dashed", color="magenta", weight=3]; 292 -> 454[label="",style="dashed", color="magenta", weight=3]; 293 -> 134[label="",style="dashed", color="red", weight=0]; 293[label="vyw500 == vyw3000",fontsize=16,color="magenta"];293 -> 455[label="",style="dashed", color="magenta", weight=3]; 293 -> 456[label="",style="dashed", color="magenta", weight=3]; 294 -> 135[label="",style="dashed", color="red", weight=0]; 294[label="vyw500 == vyw3000",fontsize=16,color="magenta"];294 -> 457[label="",style="dashed", color="magenta", weight=3]; 294 -> 458[label="",style="dashed", color="magenta", weight=3]; 295 -> 136[label="",style="dashed", color="red", weight=0]; 295[label="vyw500 == vyw3000",fontsize=16,color="magenta"];295 -> 459[label="",style="dashed", color="magenta", weight=3]; 295 -> 460[label="",style="dashed", color="magenta", weight=3]; 296 -> 137[label="",style="dashed", color="red", weight=0]; 296[label="vyw500 == vyw3000",fontsize=16,color="magenta"];296 -> 461[label="",style="dashed", color="magenta", weight=3]; 296 -> 462[label="",style="dashed", color="magenta", weight=3]; 297 -> 138[label="",style="dashed", color="red", weight=0]; 297[label="vyw500 == vyw3000",fontsize=16,color="magenta"];297 -> 463[label="",style="dashed", color="magenta", weight=3]; 297 -> 464[label="",style="dashed", color="magenta", weight=3]; 298 -> 139[label="",style="dashed", color="red", weight=0]; 298[label="vyw500 == vyw3000",fontsize=16,color="magenta"];298 -> 465[label="",style="dashed", color="magenta", weight=3]; 298 -> 466[label="",style="dashed", color="magenta", weight=3]; 299[label="primEqInt (Pos (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2539[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];299 -> 2539[label="",style="solid", color="burlywood", weight=9]; 2539 -> 467[label="",style="solid", color="burlywood", weight=3]; 2540[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];299 -> 2540[label="",style="solid", color="burlywood", weight=9]; 2540 -> 468[label="",style="solid", color="burlywood", weight=3]; 300[label="primEqInt (Pos (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];300 -> 469[label="",style="solid", color="black", weight=3]; 301[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2541[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];301 -> 2541[label="",style="solid", color="burlywood", weight=9]; 2541 -> 470[label="",style="solid", color="burlywood", weight=3]; 2542[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];301 -> 2542[label="",style="solid", color="burlywood", weight=9]; 2542 -> 471[label="",style="solid", color="burlywood", weight=3]; 302[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2543[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];302 -> 2543[label="",style="solid", color="burlywood", weight=9]; 2543 -> 472[label="",style="solid", color="burlywood", weight=3]; 2544[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];302 -> 2544[label="",style="solid", color="burlywood", weight=9]; 2544 -> 473[label="",style="solid", color="burlywood", weight=3]; 303[label="primEqInt (Neg (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];303 -> 474[label="",style="solid", color="black", weight=3]; 304[label="primEqInt (Neg (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2545[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];304 -> 2545[label="",style="solid", color="burlywood", weight=9]; 2545 -> 475[label="",style="solid", color="burlywood", weight=3]; 2546[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];304 -> 2546[label="",style="solid", color="burlywood", weight=9]; 2546 -> 476[label="",style="solid", color="burlywood", weight=3]; 305[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2547[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];305 -> 2547[label="",style="solid", color="burlywood", weight=9]; 2547 -> 477[label="",style="solid", color="burlywood", weight=3]; 2548[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];305 -> 2548[label="",style="solid", color="burlywood", weight=9]; 2548 -> 478[label="",style="solid", color="burlywood", weight=3]; 306[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2549[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];306 -> 2549[label="",style="solid", color="burlywood", weight=9]; 2549 -> 479[label="",style="solid", color="burlywood", weight=3]; 2550[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];306 -> 2550[label="",style="solid", color="burlywood", weight=9]; 2550 -> 480[label="",style="solid", color="burlywood", weight=3]; 307[label="primEqNat vyw500 vyw3000",fontsize=16,color="burlywood",shape="triangle"];2551[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];307 -> 2551[label="",style="solid", color="burlywood", weight=9]; 2551 -> 481[label="",style="solid", color="burlywood", weight=3]; 2552[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];307 -> 2552[label="",style="solid", color="burlywood", weight=9]; 2552 -> 482[label="",style="solid", color="burlywood", weight=3]; 308[label="vyw3000",fontsize=16,color="green",shape="box"];309[label="vyw500",fontsize=16,color="green",shape="box"];310 -> 130[label="",style="dashed", color="red", weight=0]; 310[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];310 -> 483[label="",style="dashed", color="magenta", weight=3]; 310 -> 484[label="",style="dashed", color="magenta", weight=3]; 311 -> 130[label="",style="dashed", color="red", weight=0]; 311[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];311 -> 485[label="",style="dashed", color="magenta", weight=3]; 311 -> 486[label="",style="dashed", color="magenta", weight=3]; 371[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2553[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];371 -> 2553[label="",style="solid", color="blue", weight=9]; 2553 -> 487[label="",style="solid", color="blue", weight=3]; 2554[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];371 -> 2554[label="",style="solid", color="blue", weight=9]; 2554 -> 488[label="",style="solid", color="blue", weight=3]; 372[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];2555[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 2555[label="",style="solid", color="blue", weight=9]; 2555 -> 489[label="",style="solid", color="blue", weight=3]; 2556[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 2556[label="",style="solid", color="blue", weight=9]; 2556 -> 490[label="",style="solid", color="blue", weight=3]; 312 -> 126[label="",style="dashed", color="red", weight=0]; 312[label="vyw500 == vyw3000",fontsize=16,color="magenta"];312 -> 491[label="",style="dashed", color="magenta", weight=3]; 312 -> 492[label="",style="dashed", color="magenta", weight=3]; 313 -> 127[label="",style="dashed", color="red", weight=0]; 313[label="vyw500 == vyw3000",fontsize=16,color="magenta"];313 -> 493[label="",style="dashed", color="magenta", weight=3]; 313 -> 494[label="",style="dashed", color="magenta", weight=3]; 314 -> 128[label="",style="dashed", color="red", weight=0]; 314[label="vyw500 == vyw3000",fontsize=16,color="magenta"];314 -> 495[label="",style="dashed", color="magenta", weight=3]; 314 -> 496[label="",style="dashed", color="magenta", weight=3]; 315 -> 129[label="",style="dashed", color="red", weight=0]; 315[label="vyw500 == vyw3000",fontsize=16,color="magenta"];315 -> 497[label="",style="dashed", color="magenta", weight=3]; 315 -> 498[label="",style="dashed", color="magenta", weight=3]; 316 -> 130[label="",style="dashed", color="red", weight=0]; 316[label="vyw500 == vyw3000",fontsize=16,color="magenta"];316 -> 499[label="",style="dashed", color="magenta", weight=3]; 316 -> 500[label="",style="dashed", color="magenta", weight=3]; 317 -> 131[label="",style="dashed", color="red", weight=0]; 317[label="vyw500 == vyw3000",fontsize=16,color="magenta"];317 -> 501[label="",style="dashed", color="magenta", weight=3]; 317 -> 502[label="",style="dashed", color="magenta", weight=3]; 318 -> 132[label="",style="dashed", color="red", weight=0]; 318[label="vyw500 == vyw3000",fontsize=16,color="magenta"];318 -> 503[label="",style="dashed", color="magenta", weight=3]; 318 -> 504[label="",style="dashed", color="magenta", weight=3]; 319 -> 133[label="",style="dashed", color="red", weight=0]; 319[label="vyw500 == vyw3000",fontsize=16,color="magenta"];319 -> 505[label="",style="dashed", color="magenta", weight=3]; 319 -> 506[label="",style="dashed", color="magenta", weight=3]; 320 -> 134[label="",style="dashed", color="red", weight=0]; 320[label="vyw500 == vyw3000",fontsize=16,color="magenta"];320 -> 507[label="",style="dashed", color="magenta", weight=3]; 320 -> 508[label="",style="dashed", color="magenta", weight=3]; 321 -> 135[label="",style="dashed", color="red", weight=0]; 321[label="vyw500 == vyw3000",fontsize=16,color="magenta"];321 -> 509[label="",style="dashed", color="magenta", weight=3]; 321 -> 510[label="",style="dashed", color="magenta", weight=3]; 322 -> 136[label="",style="dashed", color="red", weight=0]; 322[label="vyw500 == vyw3000",fontsize=16,color="magenta"];322 -> 511[label="",style="dashed", color="magenta", weight=3]; 322 -> 512[label="",style="dashed", color="magenta", weight=3]; 323 -> 137[label="",style="dashed", color="red", weight=0]; 323[label="vyw500 == vyw3000",fontsize=16,color="magenta"];323 -> 513[label="",style="dashed", color="magenta", weight=3]; 323 -> 514[label="",style="dashed", color="magenta", weight=3]; 324 -> 138[label="",style="dashed", color="red", weight=0]; 324[label="vyw500 == vyw3000",fontsize=16,color="magenta"];324 -> 515[label="",style="dashed", color="magenta", weight=3]; 324 -> 516[label="",style="dashed", color="magenta", weight=3]; 325 -> 139[label="",style="dashed", color="red", weight=0]; 325[label="vyw500 == vyw3000",fontsize=16,color="magenta"];325 -> 517[label="",style="dashed", color="magenta", weight=3]; 325 -> 518[label="",style="dashed", color="magenta", weight=3]; 326 -> 126[label="",style="dashed", color="red", weight=0]; 326[label="vyw500 == vyw3000",fontsize=16,color="magenta"];326 -> 519[label="",style="dashed", color="magenta", weight=3]; 326 -> 520[label="",style="dashed", color="magenta", weight=3]; 327 -> 127[label="",style="dashed", color="red", weight=0]; 327[label="vyw500 == vyw3000",fontsize=16,color="magenta"];327 -> 521[label="",style="dashed", color="magenta", weight=3]; 327 -> 522[label="",style="dashed", color="magenta", weight=3]; 328 -> 128[label="",style="dashed", color="red", weight=0]; 328[label="vyw500 == vyw3000",fontsize=16,color="magenta"];328 -> 523[label="",style="dashed", color="magenta", weight=3]; 328 -> 524[label="",style="dashed", color="magenta", weight=3]; 329 -> 129[label="",style="dashed", color="red", weight=0]; 329[label="vyw500 == vyw3000",fontsize=16,color="magenta"];329 -> 525[label="",style="dashed", color="magenta", weight=3]; 329 -> 526[label="",style="dashed", color="magenta", weight=3]; 330 -> 130[label="",style="dashed", color="red", weight=0]; 330[label="vyw500 == vyw3000",fontsize=16,color="magenta"];330 -> 527[label="",style="dashed", color="magenta", weight=3]; 330 -> 528[label="",style="dashed", color="magenta", weight=3]; 331 -> 131[label="",style="dashed", color="red", weight=0]; 331[label="vyw500 == vyw3000",fontsize=16,color="magenta"];331 -> 529[label="",style="dashed", color="magenta", weight=3]; 331 -> 530[label="",style="dashed", color="magenta", weight=3]; 332 -> 132[label="",style="dashed", color="red", weight=0]; 332[label="vyw500 == vyw3000",fontsize=16,color="magenta"];332 -> 531[label="",style="dashed", color="magenta", weight=3]; 332 -> 532[label="",style="dashed", color="magenta", weight=3]; 333 -> 133[label="",style="dashed", color="red", weight=0]; 333[label="vyw500 == vyw3000",fontsize=16,color="magenta"];333 -> 533[label="",style="dashed", color="magenta", weight=3]; 333 -> 534[label="",style="dashed", color="magenta", weight=3]; 334 -> 134[label="",style="dashed", color="red", weight=0]; 334[label="vyw500 == vyw3000",fontsize=16,color="magenta"];334 -> 535[label="",style="dashed", color="magenta", weight=3]; 334 -> 536[label="",style="dashed", color="magenta", weight=3]; 335 -> 135[label="",style="dashed", color="red", weight=0]; 335[label="vyw500 == vyw3000",fontsize=16,color="magenta"];335 -> 537[label="",style="dashed", color="magenta", weight=3]; 335 -> 538[label="",style="dashed", color="magenta", weight=3]; 336 -> 136[label="",style="dashed", color="red", weight=0]; 336[label="vyw500 == vyw3000",fontsize=16,color="magenta"];336 -> 539[label="",style="dashed", color="magenta", weight=3]; 336 -> 540[label="",style="dashed", color="magenta", weight=3]; 337 -> 137[label="",style="dashed", color="red", weight=0]; 337[label="vyw500 == vyw3000",fontsize=16,color="magenta"];337 -> 541[label="",style="dashed", color="magenta", weight=3]; 337 -> 542[label="",style="dashed", color="magenta", weight=3]; 338 -> 138[label="",style="dashed", color="red", weight=0]; 338[label="vyw500 == vyw3000",fontsize=16,color="magenta"];338 -> 543[label="",style="dashed", color="magenta", weight=3]; 338 -> 544[label="",style="dashed", color="magenta", weight=3]; 339 -> 139[label="",style="dashed", color="red", weight=0]; 339[label="vyw500 == vyw3000",fontsize=16,color="magenta"];339 -> 545[label="",style="dashed", color="magenta", weight=3]; 339 -> 546[label="",style="dashed", color="magenta", weight=3]; 1194[label="compare2 vyw46 vyw48 False",fontsize=16,color="black",shape="box"];1194 -> 1214[label="",style="solid", color="black", weight=3]; 1195[label="compare2 vyw46 vyw48 True",fontsize=16,color="black",shape="box"];1195 -> 1215[label="",style="solid", color="black", weight=3]; 1196 -> 126[label="",style="dashed", color="red", weight=0]; 1196[label="vyw35 == vyw37",fontsize=16,color="magenta"];1196 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1197 -> 127[label="",style="dashed", color="red", weight=0]; 1197[label="vyw35 == vyw37",fontsize=16,color="magenta"];1197 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1198 -> 128[label="",style="dashed", color="red", weight=0]; 1198[label="vyw35 == vyw37",fontsize=16,color="magenta"];1198 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1199 -> 129[label="",style="dashed", color="red", weight=0]; 1199[label="vyw35 == vyw37",fontsize=16,color="magenta"];1199 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1200 -> 130[label="",style="dashed", color="red", weight=0]; 1200[label="vyw35 == vyw37",fontsize=16,color="magenta"];1200 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1201 -> 131[label="",style="dashed", color="red", weight=0]; 1201[label="vyw35 == vyw37",fontsize=16,color="magenta"];1201 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1202 -> 132[label="",style="dashed", color="red", weight=0]; 1202[label="vyw35 == vyw37",fontsize=16,color="magenta"];1202 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1203 -> 133[label="",style="dashed", color="red", weight=0]; 1203[label="vyw35 == vyw37",fontsize=16,color="magenta"];1203 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1204 -> 134[label="",style="dashed", color="red", weight=0]; 1204[label="vyw35 == vyw37",fontsize=16,color="magenta"];1204 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1205 -> 135[label="",style="dashed", color="red", weight=0]; 1205[label="vyw35 == vyw37",fontsize=16,color="magenta"];1205 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1206 -> 136[label="",style="dashed", color="red", weight=0]; 1206[label="vyw35 == vyw37",fontsize=16,color="magenta"];1206 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1207 -> 137[label="",style="dashed", color="red", weight=0]; 1207[label="vyw35 == vyw37",fontsize=16,color="magenta"];1207 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1208 -> 138[label="",style="dashed", color="red", weight=0]; 1208[label="vyw35 == vyw37",fontsize=16,color="magenta"];1208 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1209 -> 139[label="",style="dashed", color="red", weight=0]; 1209[label="vyw35 == vyw37",fontsize=16,color="magenta"];1209 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1243[label="",style="dashed", color="magenta", weight=3]; 356[label="compare3 (vyw24,vyw25) (vyw18,vyw19)",fontsize=16,color="black",shape="box"];356 -> 577[label="",style="solid", color="black", weight=3]; 357[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM0 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) True)",fontsize=16,color="black",shape="box"];357 -> 578[label="",style="solid", color="black", weight=3]; 358[label="vyw23",fontsize=16,color="green",shape="box"];359[label="(vyw24,vyw25)",fontsize=16,color="green",shape="box"];360[label="vyw17",fontsize=16,color="green",shape="box"];377 -> 126[label="",style="dashed", color="red", weight=0]; 377[label="vyw500 == vyw3000",fontsize=16,color="magenta"];377 -> 579[label="",style="dashed", color="magenta", weight=3]; 377 -> 580[label="",style="dashed", color="magenta", weight=3]; 378 -> 127[label="",style="dashed", color="red", weight=0]; 378[label="vyw500 == vyw3000",fontsize=16,color="magenta"];378 -> 581[label="",style="dashed", color="magenta", weight=3]; 378 -> 582[label="",style="dashed", color="magenta", weight=3]; 379 -> 128[label="",style="dashed", color="red", weight=0]; 379[label="vyw500 == vyw3000",fontsize=16,color="magenta"];379 -> 583[label="",style="dashed", color="magenta", weight=3]; 379 -> 584[label="",style="dashed", color="magenta", weight=3]; 380 -> 129[label="",style="dashed", color="red", weight=0]; 380[label="vyw500 == vyw3000",fontsize=16,color="magenta"];380 -> 585[label="",style="dashed", color="magenta", weight=3]; 380 -> 586[label="",style="dashed", color="magenta", weight=3]; 381 -> 130[label="",style="dashed", color="red", weight=0]; 381[label="vyw500 == vyw3000",fontsize=16,color="magenta"];381 -> 587[label="",style="dashed", color="magenta", weight=3]; 381 -> 588[label="",style="dashed", color="magenta", weight=3]; 382 -> 131[label="",style="dashed", color="red", weight=0]; 382[label="vyw500 == vyw3000",fontsize=16,color="magenta"];382 -> 589[label="",style="dashed", color="magenta", weight=3]; 382 -> 590[label="",style="dashed", color="magenta", weight=3]; 383 -> 132[label="",style="dashed", color="red", weight=0]; 383[label="vyw500 == vyw3000",fontsize=16,color="magenta"];383 -> 591[label="",style="dashed", color="magenta", weight=3]; 383 -> 592[label="",style="dashed", color="magenta", weight=3]; 384 -> 133[label="",style="dashed", color="red", weight=0]; 384[label="vyw500 == vyw3000",fontsize=16,color="magenta"];384 -> 593[label="",style="dashed", color="magenta", weight=3]; 384 -> 594[label="",style="dashed", color="magenta", weight=3]; 385 -> 134[label="",style="dashed", color="red", weight=0]; 385[label="vyw500 == vyw3000",fontsize=16,color="magenta"];385 -> 595[label="",style="dashed", color="magenta", weight=3]; 385 -> 596[label="",style="dashed", color="magenta", weight=3]; 386 -> 135[label="",style="dashed", color="red", weight=0]; 386[label="vyw500 == vyw3000",fontsize=16,color="magenta"];386 -> 597[label="",style="dashed", color="magenta", weight=3]; 386 -> 598[label="",style="dashed", color="magenta", weight=3]; 387 -> 136[label="",style="dashed", color="red", weight=0]; 387[label="vyw500 == vyw3000",fontsize=16,color="magenta"];387 -> 599[label="",style="dashed", color="magenta", weight=3]; 387 -> 600[label="",style="dashed", color="magenta", weight=3]; 388 -> 137[label="",style="dashed", color="red", weight=0]; 388[label="vyw500 == vyw3000",fontsize=16,color="magenta"];388 -> 601[label="",style="dashed", color="magenta", weight=3]; 388 -> 602[label="",style="dashed", color="magenta", weight=3]; 389 -> 138[label="",style="dashed", color="red", weight=0]; 389[label="vyw500 == vyw3000",fontsize=16,color="magenta"];389 -> 603[label="",style="dashed", color="magenta", weight=3]; 389 -> 604[label="",style="dashed", color="magenta", weight=3]; 390 -> 139[label="",style="dashed", color="red", weight=0]; 390[label="vyw500 == vyw3000",fontsize=16,color="magenta"];390 -> 605[label="",style="dashed", color="magenta", weight=3]; 390 -> 606[label="",style="dashed", color="magenta", weight=3]; 391[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];2557[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2557[label="",style="solid", color="blue", weight=9]; 2557 -> 607[label="",style="solid", color="blue", weight=3]; 2558[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2558[label="",style="solid", color="blue", weight=9]; 2558 -> 608[label="",style="solid", color="blue", weight=3]; 2559[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2559[label="",style="solid", color="blue", weight=9]; 2559 -> 609[label="",style="solid", color="blue", weight=3]; 2560[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2560[label="",style="solid", color="blue", weight=9]; 2560 -> 610[label="",style="solid", color="blue", weight=3]; 2561[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2561[label="",style="solid", color="blue", weight=9]; 2561 -> 611[label="",style="solid", color="blue", weight=3]; 2562[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2562[label="",style="solid", color="blue", weight=9]; 2562 -> 612[label="",style="solid", color="blue", weight=3]; 2563[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2563[label="",style="solid", color="blue", weight=9]; 2563 -> 613[label="",style="solid", color="blue", weight=3]; 2564[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2564[label="",style="solid", color="blue", weight=9]; 2564 -> 614[label="",style="solid", color="blue", weight=3]; 2565[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2565[label="",style="solid", color="blue", weight=9]; 2565 -> 615[label="",style="solid", color="blue", weight=3]; 2566[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2566[label="",style="solid", color="blue", weight=9]; 2566 -> 616[label="",style="solid", color="blue", weight=3]; 2567[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2567[label="",style="solid", color="blue", weight=9]; 2567 -> 617[label="",style="solid", color="blue", weight=3]; 2568[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2568[label="",style="solid", color="blue", weight=9]; 2568 -> 618[label="",style="solid", color="blue", weight=3]; 2569[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2569[label="",style="solid", color="blue", weight=9]; 2569 -> 619[label="",style="solid", color="blue", weight=3]; 2570[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];391 -> 2570[label="",style="solid", color="blue", weight=9]; 2570 -> 620[label="",style="solid", color="blue", weight=3]; 392[label="vyw502 == vyw3002",fontsize=16,color="blue",shape="box"];2571[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2571[label="",style="solid", color="blue", weight=9]; 2571 -> 621[label="",style="solid", color="blue", weight=3]; 2572[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2572[label="",style="solid", color="blue", weight=9]; 2572 -> 622[label="",style="solid", color="blue", weight=3]; 2573[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2573[label="",style="solid", color="blue", weight=9]; 2573 -> 623[label="",style="solid", color="blue", weight=3]; 2574[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2574[label="",style="solid", color="blue", weight=9]; 2574 -> 624[label="",style="solid", color="blue", weight=3]; 2575[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2575[label="",style="solid", color="blue", weight=9]; 2575 -> 625[label="",style="solid", color="blue", weight=3]; 2576[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2576[label="",style="solid", color="blue", weight=9]; 2576 -> 626[label="",style="solid", color="blue", weight=3]; 2577[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2577[label="",style="solid", color="blue", weight=9]; 2577 -> 627[label="",style="solid", color="blue", weight=3]; 2578[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2578[label="",style="solid", color="blue", weight=9]; 2578 -> 628[label="",style="solid", color="blue", weight=3]; 2579[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2579[label="",style="solid", color="blue", weight=9]; 2579 -> 629[label="",style="solid", color="blue", weight=3]; 2580[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2580[label="",style="solid", color="blue", weight=9]; 2580 -> 630[label="",style="solid", color="blue", weight=3]; 2581[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2581[label="",style="solid", color="blue", weight=9]; 2581 -> 631[label="",style="solid", color="blue", weight=3]; 2582[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2582[label="",style="solid", color="blue", weight=9]; 2582 -> 632[label="",style="solid", color="blue", weight=3]; 2583[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2583[label="",style="solid", color="blue", weight=9]; 2583 -> 633[label="",style="solid", color="blue", weight=3]; 2584[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2584[label="",style="solid", color="blue", weight=9]; 2584 -> 634[label="",style="solid", color="blue", weight=3]; 393[label="False && vyw67",fontsize=16,color="black",shape="box"];393 -> 635[label="",style="solid", color="black", weight=3]; 394[label="True && vyw67",fontsize=16,color="black",shape="box"];394 -> 636[label="",style="solid", color="black", weight=3]; 395 -> 126[label="",style="dashed", color="red", weight=0]; 395[label="vyw500 == vyw3000",fontsize=16,color="magenta"];395 -> 637[label="",style="dashed", color="magenta", weight=3]; 395 -> 638[label="",style="dashed", color="magenta", weight=3]; 396 -> 127[label="",style="dashed", color="red", weight=0]; 396[label="vyw500 == vyw3000",fontsize=16,color="magenta"];396 -> 639[label="",style="dashed", color="magenta", weight=3]; 396 -> 640[label="",style="dashed", color="magenta", weight=3]; 397 -> 128[label="",style="dashed", color="red", weight=0]; 397[label="vyw500 == vyw3000",fontsize=16,color="magenta"];397 -> 641[label="",style="dashed", color="magenta", weight=3]; 397 -> 642[label="",style="dashed", color="magenta", weight=3]; 398 -> 129[label="",style="dashed", color="red", weight=0]; 398[label="vyw500 == vyw3000",fontsize=16,color="magenta"];398 -> 643[label="",style="dashed", color="magenta", weight=3]; 398 -> 644[label="",style="dashed", color="magenta", weight=3]; 399 -> 130[label="",style="dashed", color="red", weight=0]; 399[label="vyw500 == vyw3000",fontsize=16,color="magenta"];399 -> 645[label="",style="dashed", color="magenta", weight=3]; 399 -> 646[label="",style="dashed", color="magenta", weight=3]; 400 -> 131[label="",style="dashed", color="red", weight=0]; 400[label="vyw500 == vyw3000",fontsize=16,color="magenta"];400 -> 647[label="",style="dashed", color="magenta", weight=3]; 400 -> 648[label="",style="dashed", color="magenta", weight=3]; 401 -> 132[label="",style="dashed", color="red", weight=0]; 401[label="vyw500 == vyw3000",fontsize=16,color="magenta"];401 -> 649[label="",style="dashed", color="magenta", weight=3]; 401 -> 650[label="",style="dashed", color="magenta", weight=3]; 402 -> 133[label="",style="dashed", color="red", weight=0]; 402[label="vyw500 == vyw3000",fontsize=16,color="magenta"];402 -> 651[label="",style="dashed", color="magenta", weight=3]; 402 -> 652[label="",style="dashed", color="magenta", weight=3]; 403 -> 134[label="",style="dashed", color="red", weight=0]; 403[label="vyw500 == vyw3000",fontsize=16,color="magenta"];403 -> 653[label="",style="dashed", color="magenta", weight=3]; 403 -> 654[label="",style="dashed", color="magenta", weight=3]; 404 -> 135[label="",style="dashed", color="red", weight=0]; 404[label="vyw500 == vyw3000",fontsize=16,color="magenta"];404 -> 655[label="",style="dashed", color="magenta", weight=3]; 404 -> 656[label="",style="dashed", color="magenta", weight=3]; 405 -> 136[label="",style="dashed", color="red", weight=0]; 405[label="vyw500 == vyw3000",fontsize=16,color="magenta"];405 -> 657[label="",style="dashed", color="magenta", weight=3]; 405 -> 658[label="",style="dashed", color="magenta", weight=3]; 406 -> 137[label="",style="dashed", color="red", weight=0]; 406[label="vyw500 == vyw3000",fontsize=16,color="magenta"];406 -> 659[label="",style="dashed", color="magenta", weight=3]; 406 -> 660[label="",style="dashed", color="magenta", weight=3]; 407 -> 138[label="",style="dashed", color="red", weight=0]; 407[label="vyw500 == vyw3000",fontsize=16,color="magenta"];407 -> 661[label="",style="dashed", color="magenta", weight=3]; 407 -> 662[label="",style="dashed", color="magenta", weight=3]; 408 -> 139[label="",style="dashed", color="red", weight=0]; 408[label="vyw500 == vyw3000",fontsize=16,color="magenta"];408 -> 663[label="",style="dashed", color="magenta", weight=3]; 408 -> 664[label="",style="dashed", color="magenta", weight=3]; 409[label="vyw3001",fontsize=16,color="green",shape="box"];410[label="vyw501",fontsize=16,color="green",shape="box"];411 -> 126[label="",style="dashed", color="red", weight=0]; 411[label="vyw500 == vyw3000",fontsize=16,color="magenta"];411 -> 665[label="",style="dashed", color="magenta", weight=3]; 411 -> 666[label="",style="dashed", color="magenta", weight=3]; 412 -> 127[label="",style="dashed", color="red", weight=0]; 412[label="vyw500 == vyw3000",fontsize=16,color="magenta"];412 -> 667[label="",style="dashed", color="magenta", weight=3]; 412 -> 668[label="",style="dashed", color="magenta", weight=3]; 413 -> 128[label="",style="dashed", color="red", weight=0]; 413[label="vyw500 == vyw3000",fontsize=16,color="magenta"];413 -> 669[label="",style="dashed", color="magenta", weight=3]; 413 -> 670[label="",style="dashed", color="magenta", weight=3]; 414 -> 129[label="",style="dashed", color="red", weight=0]; 414[label="vyw500 == vyw3000",fontsize=16,color="magenta"];414 -> 671[label="",style="dashed", color="magenta", weight=3]; 414 -> 672[label="",style="dashed", color="magenta", weight=3]; 415 -> 130[label="",style="dashed", color="red", weight=0]; 415[label="vyw500 == vyw3000",fontsize=16,color="magenta"];415 -> 673[label="",style="dashed", color="magenta", weight=3]; 415 -> 674[label="",style="dashed", color="magenta", weight=3]; 416 -> 131[label="",style="dashed", color="red", weight=0]; 416[label="vyw500 == vyw3000",fontsize=16,color="magenta"];416 -> 675[label="",style="dashed", color="magenta", weight=3]; 416 -> 676[label="",style="dashed", color="magenta", weight=3]; 417 -> 132[label="",style="dashed", color="red", weight=0]; 417[label="vyw500 == vyw3000",fontsize=16,color="magenta"];417 -> 677[label="",style="dashed", color="magenta", weight=3]; 417 -> 678[label="",style="dashed", color="magenta", weight=3]; 418 -> 133[label="",style="dashed", color="red", weight=0]; 418[label="vyw500 == vyw3000",fontsize=16,color="magenta"];418 -> 679[label="",style="dashed", color="magenta", weight=3]; 418 -> 680[label="",style="dashed", color="magenta", weight=3]; 419 -> 134[label="",style="dashed", color="red", weight=0]; 419[label="vyw500 == vyw3000",fontsize=16,color="magenta"];419 -> 681[label="",style="dashed", color="magenta", weight=3]; 419 -> 682[label="",style="dashed", color="magenta", weight=3]; 420 -> 135[label="",style="dashed", color="red", weight=0]; 420[label="vyw500 == vyw3000",fontsize=16,color="magenta"];420 -> 683[label="",style="dashed", color="magenta", weight=3]; 420 -> 684[label="",style="dashed", color="magenta", weight=3]; 421 -> 136[label="",style="dashed", color="red", weight=0]; 421[label="vyw500 == vyw3000",fontsize=16,color="magenta"];421 -> 685[label="",style="dashed", color="magenta", weight=3]; 421 -> 686[label="",style="dashed", color="magenta", weight=3]; 422 -> 137[label="",style="dashed", color="red", weight=0]; 422[label="vyw500 == vyw3000",fontsize=16,color="magenta"];422 -> 687[label="",style="dashed", color="magenta", weight=3]; 422 -> 688[label="",style="dashed", color="magenta", weight=3]; 423 -> 138[label="",style="dashed", color="red", weight=0]; 423[label="vyw500 == vyw3000",fontsize=16,color="magenta"];423 -> 689[label="",style="dashed", color="magenta", weight=3]; 423 -> 690[label="",style="dashed", color="magenta", weight=3]; 424 -> 139[label="",style="dashed", color="red", weight=0]; 424[label="vyw500 == vyw3000",fontsize=16,color="magenta"];424 -> 691[label="",style="dashed", color="magenta", weight=3]; 424 -> 692[label="",style="dashed", color="magenta", weight=3]; 425 -> 126[label="",style="dashed", color="red", weight=0]; 425[label="vyw501 == vyw3001",fontsize=16,color="magenta"];425 -> 693[label="",style="dashed", color="magenta", weight=3]; 425 -> 694[label="",style="dashed", color="magenta", weight=3]; 426 -> 127[label="",style="dashed", color="red", weight=0]; 426[label="vyw501 == vyw3001",fontsize=16,color="magenta"];426 -> 695[label="",style="dashed", color="magenta", weight=3]; 426 -> 696[label="",style="dashed", color="magenta", weight=3]; 427 -> 128[label="",style="dashed", color="red", weight=0]; 427[label="vyw501 == vyw3001",fontsize=16,color="magenta"];427 -> 697[label="",style="dashed", color="magenta", weight=3]; 427 -> 698[label="",style="dashed", color="magenta", weight=3]; 428 -> 129[label="",style="dashed", color="red", weight=0]; 428[label="vyw501 == vyw3001",fontsize=16,color="magenta"];428 -> 699[label="",style="dashed", color="magenta", weight=3]; 428 -> 700[label="",style="dashed", color="magenta", weight=3]; 429 -> 130[label="",style="dashed", color="red", weight=0]; 429[label="vyw501 == vyw3001",fontsize=16,color="magenta"];429 -> 701[label="",style="dashed", color="magenta", weight=3]; 429 -> 702[label="",style="dashed", color="magenta", weight=3]; 430 -> 131[label="",style="dashed", color="red", weight=0]; 430[label="vyw501 == vyw3001",fontsize=16,color="magenta"];430 -> 703[label="",style="dashed", color="magenta", weight=3]; 430 -> 704[label="",style="dashed", color="magenta", weight=3]; 431 -> 132[label="",style="dashed", color="red", weight=0]; 431[label="vyw501 == vyw3001",fontsize=16,color="magenta"];431 -> 705[label="",style="dashed", color="magenta", weight=3]; 431 -> 706[label="",style="dashed", color="magenta", weight=3]; 432 -> 133[label="",style="dashed", color="red", weight=0]; 432[label="vyw501 == vyw3001",fontsize=16,color="magenta"];432 -> 707[label="",style="dashed", color="magenta", weight=3]; 432 -> 708[label="",style="dashed", color="magenta", weight=3]; 433 -> 134[label="",style="dashed", color="red", weight=0]; 433[label="vyw501 == vyw3001",fontsize=16,color="magenta"];433 -> 709[label="",style="dashed", color="magenta", weight=3]; 433 -> 710[label="",style="dashed", color="magenta", weight=3]; 434 -> 135[label="",style="dashed", color="red", weight=0]; 434[label="vyw501 == vyw3001",fontsize=16,color="magenta"];434 -> 711[label="",style="dashed", color="magenta", weight=3]; 434 -> 712[label="",style="dashed", color="magenta", weight=3]; 435 -> 136[label="",style="dashed", color="red", weight=0]; 435[label="vyw501 == vyw3001",fontsize=16,color="magenta"];435 -> 713[label="",style="dashed", color="magenta", weight=3]; 435 -> 714[label="",style="dashed", color="magenta", weight=3]; 436 -> 137[label="",style="dashed", color="red", weight=0]; 436[label="vyw501 == vyw3001",fontsize=16,color="magenta"];436 -> 715[label="",style="dashed", color="magenta", weight=3]; 436 -> 716[label="",style="dashed", color="magenta", weight=3]; 437 -> 138[label="",style="dashed", color="red", weight=0]; 437[label="vyw501 == vyw3001",fontsize=16,color="magenta"];437 -> 717[label="",style="dashed", color="magenta", weight=3]; 437 -> 718[label="",style="dashed", color="magenta", weight=3]; 438 -> 139[label="",style="dashed", color="red", weight=0]; 438[label="vyw501 == vyw3001",fontsize=16,color="magenta"];438 -> 719[label="",style="dashed", color="magenta", weight=3]; 438 -> 720[label="",style="dashed", color="magenta", weight=3]; 439[label="vyw3000",fontsize=16,color="green",shape="box"];440[label="vyw500",fontsize=16,color="green",shape="box"];441[label="vyw3000",fontsize=16,color="green",shape="box"];442[label="vyw500",fontsize=16,color="green",shape="box"];443[label="vyw3000",fontsize=16,color="green",shape="box"];444[label="vyw500",fontsize=16,color="green",shape="box"];445[label="vyw3000",fontsize=16,color="green",shape="box"];446[label="vyw500",fontsize=16,color="green",shape="box"];447[label="vyw3000",fontsize=16,color="green",shape="box"];448[label="vyw500",fontsize=16,color="green",shape="box"];449[label="vyw3000",fontsize=16,color="green",shape="box"];450[label="vyw500",fontsize=16,color="green",shape="box"];451[label="vyw3000",fontsize=16,color="green",shape="box"];452[label="vyw500",fontsize=16,color="green",shape="box"];453[label="vyw3000",fontsize=16,color="green",shape="box"];454[label="vyw500",fontsize=16,color="green",shape="box"];455[label="vyw3000",fontsize=16,color="green",shape="box"];456[label="vyw500",fontsize=16,color="green",shape="box"];457[label="vyw3000",fontsize=16,color="green",shape="box"];458[label="vyw500",fontsize=16,color="green",shape="box"];459[label="vyw3000",fontsize=16,color="green",shape="box"];460[label="vyw500",fontsize=16,color="green",shape="box"];461[label="vyw3000",fontsize=16,color="green",shape="box"];462[label="vyw500",fontsize=16,color="green",shape="box"];463[label="vyw3000",fontsize=16,color="green",shape="box"];464[label="vyw500",fontsize=16,color="green",shape="box"];465[label="vyw3000",fontsize=16,color="green",shape="box"];466[label="vyw500",fontsize=16,color="green",shape="box"];467[label="primEqInt (Pos (Succ vyw5000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];467 -> 721[label="",style="solid", color="black", weight=3]; 468[label="primEqInt (Pos (Succ vyw5000)) (Pos Zero)",fontsize=16,color="black",shape="box"];468 -> 722[label="",style="solid", color="black", weight=3]; 469[label="False",fontsize=16,color="green",shape="box"];470[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];470 -> 723[label="",style="solid", color="black", weight=3]; 471[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];471 -> 724[label="",style="solid", color="black", weight=3]; 472[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];472 -> 725[label="",style="solid", color="black", weight=3]; 473[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];473 -> 726[label="",style="solid", color="black", weight=3]; 474[label="False",fontsize=16,color="green",shape="box"];475[label="primEqInt (Neg (Succ vyw5000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];475 -> 727[label="",style="solid", color="black", weight=3]; 476[label="primEqInt (Neg (Succ vyw5000)) (Neg Zero)",fontsize=16,color="black",shape="box"];476 -> 728[label="",style="solid", color="black", weight=3]; 477[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];477 -> 729[label="",style="solid", color="black", weight=3]; 478[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];478 -> 730[label="",style="solid", color="black", weight=3]; 479[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];479 -> 731[label="",style="solid", color="black", weight=3]; 480[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];480 -> 732[label="",style="solid", color="black", weight=3]; 481[label="primEqNat (Succ vyw5000) vyw3000",fontsize=16,color="burlywood",shape="box"];2585[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];481 -> 2585[label="",style="solid", color="burlywood", weight=9]; 2585 -> 733[label="",style="solid", color="burlywood", weight=3]; 2586[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];481 -> 2586[label="",style="solid", color="burlywood", weight=9]; 2586 -> 734[label="",style="solid", color="burlywood", weight=3]; 482[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];2587[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];482 -> 2587[label="",style="solid", color="burlywood", weight=9]; 2587 -> 735[label="",style="solid", color="burlywood", weight=3]; 2588[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];482 -> 2588[label="",style="solid", color="burlywood", weight=9]; 2588 -> 736[label="",style="solid", color="burlywood", weight=3]; 483[label="vyw501 * vyw3000",fontsize=16,color="black",shape="triangle"];483 -> 737[label="",style="solid", color="black", weight=3]; 484 -> 483[label="",style="dashed", color="red", weight=0]; 484[label="vyw500 * vyw3001",fontsize=16,color="magenta"];484 -> 738[label="",style="dashed", color="magenta", weight=3]; 484 -> 739[label="",style="dashed", color="magenta", weight=3]; 485 -> 483[label="",style="dashed", color="red", weight=0]; 485[label="vyw501 * vyw3000",fontsize=16,color="magenta"];485 -> 740[label="",style="dashed", color="magenta", weight=3]; 485 -> 741[label="",style="dashed", color="magenta", weight=3]; 486 -> 483[label="",style="dashed", color="red", weight=0]; 486[label="vyw500 * vyw3001",fontsize=16,color="magenta"];486 -> 742[label="",style="dashed", color="magenta", weight=3]; 486 -> 743[label="",style="dashed", color="magenta", weight=3]; 487 -> 130[label="",style="dashed", color="red", weight=0]; 487[label="vyw500 == vyw3000",fontsize=16,color="magenta"];487 -> 744[label="",style="dashed", color="magenta", weight=3]; 487 -> 745[label="",style="dashed", color="magenta", weight=3]; 488 -> 132[label="",style="dashed", color="red", weight=0]; 488[label="vyw500 == vyw3000",fontsize=16,color="magenta"];488 -> 746[label="",style="dashed", color="magenta", weight=3]; 488 -> 747[label="",style="dashed", color="magenta", weight=3]; 489 -> 130[label="",style="dashed", color="red", weight=0]; 489[label="vyw501 == vyw3001",fontsize=16,color="magenta"];489 -> 748[label="",style="dashed", color="magenta", weight=3]; 489 -> 749[label="",style="dashed", color="magenta", weight=3]; 490 -> 132[label="",style="dashed", color="red", weight=0]; 490[label="vyw501 == vyw3001",fontsize=16,color="magenta"];490 -> 750[label="",style="dashed", color="magenta", weight=3]; 490 -> 751[label="",style="dashed", color="magenta", weight=3]; 491[label="vyw3000",fontsize=16,color="green",shape="box"];492[label="vyw500",fontsize=16,color="green",shape="box"];493[label="vyw3000",fontsize=16,color="green",shape="box"];494[label="vyw500",fontsize=16,color="green",shape="box"];495[label="vyw3000",fontsize=16,color="green",shape="box"];496[label="vyw500",fontsize=16,color="green",shape="box"];497[label="vyw3000",fontsize=16,color="green",shape="box"];498[label="vyw500",fontsize=16,color="green",shape="box"];499[label="vyw3000",fontsize=16,color="green",shape="box"];500[label="vyw500",fontsize=16,color="green",shape="box"];501[label="vyw3000",fontsize=16,color="green",shape="box"];502[label="vyw500",fontsize=16,color="green",shape="box"];503[label="vyw3000",fontsize=16,color="green",shape="box"];504[label="vyw500",fontsize=16,color="green",shape="box"];505[label="vyw3000",fontsize=16,color="green",shape="box"];506[label="vyw500",fontsize=16,color="green",shape="box"];507[label="vyw3000",fontsize=16,color="green",shape="box"];508[label="vyw500",fontsize=16,color="green",shape="box"];509[label="vyw3000",fontsize=16,color="green",shape="box"];510[label="vyw500",fontsize=16,color="green",shape="box"];511[label="vyw3000",fontsize=16,color="green",shape="box"];512[label="vyw500",fontsize=16,color="green",shape="box"];513[label="vyw3000",fontsize=16,color="green",shape="box"];514[label="vyw500",fontsize=16,color="green",shape="box"];515[label="vyw3000",fontsize=16,color="green",shape="box"];516[label="vyw500",fontsize=16,color="green",shape="box"];517[label="vyw3000",fontsize=16,color="green",shape="box"];518[label="vyw500",fontsize=16,color="green",shape="box"];519[label="vyw3000",fontsize=16,color="green",shape="box"];520[label="vyw500",fontsize=16,color="green",shape="box"];521[label="vyw3000",fontsize=16,color="green",shape="box"];522[label="vyw500",fontsize=16,color="green",shape="box"];523[label="vyw3000",fontsize=16,color="green",shape="box"];524[label="vyw500",fontsize=16,color="green",shape="box"];525[label="vyw3000",fontsize=16,color="green",shape="box"];526[label="vyw500",fontsize=16,color="green",shape="box"];527[label="vyw3000",fontsize=16,color="green",shape="box"];528[label="vyw500",fontsize=16,color="green",shape="box"];529[label="vyw3000",fontsize=16,color="green",shape="box"];530[label="vyw500",fontsize=16,color="green",shape="box"];531[label="vyw3000",fontsize=16,color="green",shape="box"];532[label="vyw500",fontsize=16,color="green",shape="box"];533[label="vyw3000",fontsize=16,color="green",shape="box"];534[label="vyw500",fontsize=16,color="green",shape="box"];535[label="vyw3000",fontsize=16,color="green",shape="box"];536[label="vyw500",fontsize=16,color="green",shape="box"];537[label="vyw3000",fontsize=16,color="green",shape="box"];538[label="vyw500",fontsize=16,color="green",shape="box"];539[label="vyw3000",fontsize=16,color="green",shape="box"];540[label="vyw500",fontsize=16,color="green",shape="box"];541[label="vyw3000",fontsize=16,color="green",shape="box"];542[label="vyw500",fontsize=16,color="green",shape="box"];543[label="vyw3000",fontsize=16,color="green",shape="box"];544[label="vyw500",fontsize=16,color="green",shape="box"];545[label="vyw3000",fontsize=16,color="green",shape="box"];546[label="vyw500",fontsize=16,color="green",shape="box"];1214[label="compare1 vyw46 vyw48 (vyw46 <= vyw48)",fontsize=16,color="burlywood",shape="box"];2589[label="vyw46/(vyw460,vyw461)",fontsize=10,color="white",style="solid",shape="box"];1214 -> 2589[label="",style="solid", color="burlywood", weight=9]; 2589 -> 1248[label="",style="solid", color="burlywood", weight=3]; 1215[label="EQ",fontsize=16,color="green",shape="box"];1216[label="vyw37",fontsize=16,color="green",shape="box"];1217[label="vyw35",fontsize=16,color="green",shape="box"];1218[label="vyw37",fontsize=16,color="green",shape="box"];1219[label="vyw35",fontsize=16,color="green",shape="box"];1220[label="vyw37",fontsize=16,color="green",shape="box"];1221[label="vyw35",fontsize=16,color="green",shape="box"];1222[label="vyw37",fontsize=16,color="green",shape="box"];1223[label="vyw35",fontsize=16,color="green",shape="box"];1224[label="vyw37",fontsize=16,color="green",shape="box"];1225[label="vyw35",fontsize=16,color="green",shape="box"];1226[label="vyw37",fontsize=16,color="green",shape="box"];1227[label="vyw35",fontsize=16,color="green",shape="box"];1228[label="vyw37",fontsize=16,color="green",shape="box"];1229[label="vyw35",fontsize=16,color="green",shape="box"];1230[label="vyw37",fontsize=16,color="green",shape="box"];1231[label="vyw35",fontsize=16,color="green",shape="box"];1232[label="vyw37",fontsize=16,color="green",shape="box"];1233[label="vyw35",fontsize=16,color="green",shape="box"];1234[label="vyw37",fontsize=16,color="green",shape="box"];1235[label="vyw35",fontsize=16,color="green",shape="box"];1236[label="vyw37",fontsize=16,color="green",shape="box"];1237[label="vyw35",fontsize=16,color="green",shape="box"];1238[label="vyw37",fontsize=16,color="green",shape="box"];1239[label="vyw35",fontsize=16,color="green",shape="box"];1240[label="vyw37",fontsize=16,color="green",shape="box"];1241[label="vyw35",fontsize=16,color="green",shape="box"];1242[label="vyw37",fontsize=16,color="green",shape="box"];1243[label="vyw35",fontsize=16,color="green",shape="box"];577 -> 1180[label="",style="dashed", color="red", weight=0]; 577[label="compare2 (vyw24,vyw25) (vyw18,vyw19) ((vyw24,vyw25) == (vyw18,vyw19))",fontsize=16,color="magenta"];577 -> 1190[label="",style="dashed", color="magenta", weight=3]; 577 -> 1191[label="",style="dashed", color="magenta", weight=3]; 577 -> 1192[label="",style="dashed", color="magenta", weight=3]; 578[label="FiniteMap.lookupWithDefaultFM0 vyw17 (Just vyw20)",fontsize=16,color="black",shape="box"];578 -> 758[label="",style="solid", color="black", weight=3]; 579[label="vyw3000",fontsize=16,color="green",shape="box"];580[label="vyw500",fontsize=16,color="green",shape="box"];581[label="vyw3000",fontsize=16,color="green",shape="box"];582[label="vyw500",fontsize=16,color="green",shape="box"];583[label="vyw3000",fontsize=16,color="green",shape="box"];584[label="vyw500",fontsize=16,color="green",shape="box"];585[label="vyw3000",fontsize=16,color="green",shape="box"];586[label="vyw500",fontsize=16,color="green",shape="box"];587[label="vyw3000",fontsize=16,color="green",shape="box"];588[label="vyw500",fontsize=16,color="green",shape="box"];589[label="vyw3000",fontsize=16,color="green",shape="box"];590[label="vyw500",fontsize=16,color="green",shape="box"];591[label="vyw3000",fontsize=16,color="green",shape="box"];592[label="vyw500",fontsize=16,color="green",shape="box"];593[label="vyw3000",fontsize=16,color="green",shape="box"];594[label="vyw500",fontsize=16,color="green",shape="box"];595[label="vyw3000",fontsize=16,color="green",shape="box"];596[label="vyw500",fontsize=16,color="green",shape="box"];597[label="vyw3000",fontsize=16,color="green",shape="box"];598[label="vyw500",fontsize=16,color="green",shape="box"];599[label="vyw3000",fontsize=16,color="green",shape="box"];600[label="vyw500",fontsize=16,color="green",shape="box"];601[label="vyw3000",fontsize=16,color="green",shape="box"];602[label="vyw500",fontsize=16,color="green",shape="box"];603[label="vyw3000",fontsize=16,color="green",shape="box"];604[label="vyw500",fontsize=16,color="green",shape="box"];605[label="vyw3000",fontsize=16,color="green",shape="box"];606[label="vyw500",fontsize=16,color="green",shape="box"];607 -> 126[label="",style="dashed", color="red", weight=0]; 607[label="vyw501 == vyw3001",fontsize=16,color="magenta"];607 -> 759[label="",style="dashed", color="magenta", weight=3]; 607 -> 760[label="",style="dashed", color="magenta", weight=3]; 608 -> 127[label="",style="dashed", color="red", weight=0]; 608[label="vyw501 == vyw3001",fontsize=16,color="magenta"];608 -> 761[label="",style="dashed", color="magenta", weight=3]; 608 -> 762[label="",style="dashed", color="magenta", weight=3]; 609 -> 128[label="",style="dashed", color="red", weight=0]; 609[label="vyw501 == vyw3001",fontsize=16,color="magenta"];609 -> 763[label="",style="dashed", color="magenta", weight=3]; 609 -> 764[label="",style="dashed", color="magenta", weight=3]; 610 -> 129[label="",style="dashed", color="red", weight=0]; 610[label="vyw501 == vyw3001",fontsize=16,color="magenta"];610 -> 765[label="",style="dashed", color="magenta", weight=3]; 610 -> 766[label="",style="dashed", color="magenta", weight=3]; 611 -> 130[label="",style="dashed", color="red", weight=0]; 611[label="vyw501 == vyw3001",fontsize=16,color="magenta"];611 -> 767[label="",style="dashed", color="magenta", weight=3]; 611 -> 768[label="",style="dashed", color="magenta", weight=3]; 612 -> 131[label="",style="dashed", color="red", weight=0]; 612[label="vyw501 == vyw3001",fontsize=16,color="magenta"];612 -> 769[label="",style="dashed", color="magenta", weight=3]; 612 -> 770[label="",style="dashed", color="magenta", weight=3]; 613 -> 132[label="",style="dashed", color="red", weight=0]; 613[label="vyw501 == vyw3001",fontsize=16,color="magenta"];613 -> 771[label="",style="dashed", color="magenta", weight=3]; 613 -> 772[label="",style="dashed", color="magenta", weight=3]; 614 -> 133[label="",style="dashed", color="red", weight=0]; 614[label="vyw501 == vyw3001",fontsize=16,color="magenta"];614 -> 773[label="",style="dashed", color="magenta", weight=3]; 614 -> 774[label="",style="dashed", color="magenta", weight=3]; 615 -> 134[label="",style="dashed", color="red", weight=0]; 615[label="vyw501 == vyw3001",fontsize=16,color="magenta"];615 -> 775[label="",style="dashed", color="magenta", weight=3]; 615 -> 776[label="",style="dashed", color="magenta", weight=3]; 616 -> 135[label="",style="dashed", color="red", weight=0]; 616[label="vyw501 == vyw3001",fontsize=16,color="magenta"];616 -> 777[label="",style="dashed", color="magenta", weight=3]; 616 -> 778[label="",style="dashed", color="magenta", weight=3]; 617 -> 136[label="",style="dashed", color="red", weight=0]; 617[label="vyw501 == vyw3001",fontsize=16,color="magenta"];617 -> 779[label="",style="dashed", color="magenta", weight=3]; 617 -> 780[label="",style="dashed", color="magenta", weight=3]; 618 -> 137[label="",style="dashed", color="red", weight=0]; 618[label="vyw501 == vyw3001",fontsize=16,color="magenta"];618 -> 781[label="",style="dashed", color="magenta", weight=3]; 618 -> 782[label="",style="dashed", color="magenta", weight=3]; 619 -> 138[label="",style="dashed", color="red", weight=0]; 619[label="vyw501 == vyw3001",fontsize=16,color="magenta"];619 -> 783[label="",style="dashed", color="magenta", weight=3]; 619 -> 784[label="",style="dashed", color="magenta", weight=3]; 620 -> 139[label="",style="dashed", color="red", weight=0]; 620[label="vyw501 == vyw3001",fontsize=16,color="magenta"];620 -> 785[label="",style="dashed", color="magenta", weight=3]; 620 -> 786[label="",style="dashed", color="magenta", weight=3]; 621 -> 126[label="",style="dashed", color="red", weight=0]; 621[label="vyw502 == vyw3002",fontsize=16,color="magenta"];621 -> 787[label="",style="dashed", color="magenta", weight=3]; 621 -> 788[label="",style="dashed", color="magenta", weight=3]; 622 -> 127[label="",style="dashed", color="red", weight=0]; 622[label="vyw502 == vyw3002",fontsize=16,color="magenta"];622 -> 789[label="",style="dashed", color="magenta", weight=3]; 622 -> 790[label="",style="dashed", color="magenta", weight=3]; 623 -> 128[label="",style="dashed", color="red", weight=0]; 623[label="vyw502 == vyw3002",fontsize=16,color="magenta"];623 -> 791[label="",style="dashed", color="magenta", weight=3]; 623 -> 792[label="",style="dashed", color="magenta", weight=3]; 624 -> 129[label="",style="dashed", color="red", weight=0]; 624[label="vyw502 == vyw3002",fontsize=16,color="magenta"];624 -> 793[label="",style="dashed", color="magenta", weight=3]; 624 -> 794[label="",style="dashed", color="magenta", weight=3]; 625 -> 130[label="",style="dashed", color="red", weight=0]; 625[label="vyw502 == vyw3002",fontsize=16,color="magenta"];625 -> 795[label="",style="dashed", color="magenta", weight=3]; 625 -> 796[label="",style="dashed", color="magenta", weight=3]; 626 -> 131[label="",style="dashed", color="red", weight=0]; 626[label="vyw502 == vyw3002",fontsize=16,color="magenta"];626 -> 797[label="",style="dashed", color="magenta", weight=3]; 626 -> 798[label="",style="dashed", color="magenta", weight=3]; 627 -> 132[label="",style="dashed", color="red", weight=0]; 627[label="vyw502 == vyw3002",fontsize=16,color="magenta"];627 -> 799[label="",style="dashed", color="magenta", weight=3]; 627 -> 800[label="",style="dashed", color="magenta", weight=3]; 628 -> 133[label="",style="dashed", color="red", weight=0]; 628[label="vyw502 == vyw3002",fontsize=16,color="magenta"];628 -> 801[label="",style="dashed", color="magenta", weight=3]; 628 -> 802[label="",style="dashed", color="magenta", weight=3]; 629 -> 134[label="",style="dashed", color="red", weight=0]; 629[label="vyw502 == vyw3002",fontsize=16,color="magenta"];629 -> 803[label="",style="dashed", color="magenta", weight=3]; 629 -> 804[label="",style="dashed", color="magenta", weight=3]; 630 -> 135[label="",style="dashed", color="red", weight=0]; 630[label="vyw502 == vyw3002",fontsize=16,color="magenta"];630 -> 805[label="",style="dashed", color="magenta", weight=3]; 630 -> 806[label="",style="dashed", color="magenta", weight=3]; 631 -> 136[label="",style="dashed", color="red", weight=0]; 631[label="vyw502 == vyw3002",fontsize=16,color="magenta"];631 -> 807[label="",style="dashed", color="magenta", weight=3]; 631 -> 808[label="",style="dashed", color="magenta", weight=3]; 632 -> 137[label="",style="dashed", color="red", weight=0]; 632[label="vyw502 == vyw3002",fontsize=16,color="magenta"];632 -> 809[label="",style="dashed", color="magenta", weight=3]; 632 -> 810[label="",style="dashed", color="magenta", weight=3]; 633 -> 138[label="",style="dashed", color="red", weight=0]; 633[label="vyw502 == vyw3002",fontsize=16,color="magenta"];633 -> 811[label="",style="dashed", color="magenta", weight=3]; 633 -> 812[label="",style="dashed", color="magenta", weight=3]; 634 -> 139[label="",style="dashed", color="red", weight=0]; 634[label="vyw502 == vyw3002",fontsize=16,color="magenta"];634 -> 813[label="",style="dashed", color="magenta", weight=3]; 634 -> 814[label="",style="dashed", color="magenta", weight=3]; 635[label="False",fontsize=16,color="green",shape="box"];636[label="vyw67",fontsize=16,color="green",shape="box"];637[label="vyw3000",fontsize=16,color="green",shape="box"];638[label="vyw500",fontsize=16,color="green",shape="box"];639[label="vyw3000",fontsize=16,color="green",shape="box"];640[label="vyw500",fontsize=16,color="green",shape="box"];641[label="vyw3000",fontsize=16,color="green",shape="box"];642[label="vyw500",fontsize=16,color="green",shape="box"];643[label="vyw3000",fontsize=16,color="green",shape="box"];644[label="vyw500",fontsize=16,color="green",shape="box"];645[label="vyw3000",fontsize=16,color="green",shape="box"];646[label="vyw500",fontsize=16,color="green",shape="box"];647[label="vyw3000",fontsize=16,color="green",shape="box"];648[label="vyw500",fontsize=16,color="green",shape="box"];649[label="vyw3000",fontsize=16,color="green",shape="box"];650[label="vyw500",fontsize=16,color="green",shape="box"];651[label="vyw3000",fontsize=16,color="green",shape="box"];652[label="vyw500",fontsize=16,color="green",shape="box"];653[label="vyw3000",fontsize=16,color="green",shape="box"];654[label="vyw500",fontsize=16,color="green",shape="box"];655[label="vyw3000",fontsize=16,color="green",shape="box"];656[label="vyw500",fontsize=16,color="green",shape="box"];657[label="vyw3000",fontsize=16,color="green",shape="box"];658[label="vyw500",fontsize=16,color="green",shape="box"];659[label="vyw3000",fontsize=16,color="green",shape="box"];660[label="vyw500",fontsize=16,color="green",shape="box"];661[label="vyw3000",fontsize=16,color="green",shape="box"];662[label="vyw500",fontsize=16,color="green",shape="box"];663[label="vyw3000",fontsize=16,color="green",shape="box"];664[label="vyw500",fontsize=16,color="green",shape="box"];665[label="vyw3000",fontsize=16,color="green",shape="box"];666[label="vyw500",fontsize=16,color="green",shape="box"];667[label="vyw3000",fontsize=16,color="green",shape="box"];668[label="vyw500",fontsize=16,color="green",shape="box"];669[label="vyw3000",fontsize=16,color="green",shape="box"];670[label="vyw500",fontsize=16,color="green",shape="box"];671[label="vyw3000",fontsize=16,color="green",shape="box"];672[label="vyw500",fontsize=16,color="green",shape="box"];673[label="vyw3000",fontsize=16,color="green",shape="box"];674[label="vyw500",fontsize=16,color="green",shape="box"];675[label="vyw3000",fontsize=16,color="green",shape="box"];676[label="vyw500",fontsize=16,color="green",shape="box"];677[label="vyw3000",fontsize=16,color="green",shape="box"];678[label="vyw500",fontsize=16,color="green",shape="box"];679[label="vyw3000",fontsize=16,color="green",shape="box"];680[label="vyw500",fontsize=16,color="green",shape="box"];681[label="vyw3000",fontsize=16,color="green",shape="box"];682[label="vyw500",fontsize=16,color="green",shape="box"];683[label="vyw3000",fontsize=16,color="green",shape="box"];684[label="vyw500",fontsize=16,color="green",shape="box"];685[label="vyw3000",fontsize=16,color="green",shape="box"];686[label="vyw500",fontsize=16,color="green",shape="box"];687[label="vyw3000",fontsize=16,color="green",shape="box"];688[label="vyw500",fontsize=16,color="green",shape="box"];689[label="vyw3000",fontsize=16,color="green",shape="box"];690[label="vyw500",fontsize=16,color="green",shape="box"];691[label="vyw3000",fontsize=16,color="green",shape="box"];692[label="vyw500",fontsize=16,color="green",shape="box"];693[label="vyw3001",fontsize=16,color="green",shape="box"];694[label="vyw501",fontsize=16,color="green",shape="box"];695[label="vyw3001",fontsize=16,color="green",shape="box"];696[label="vyw501",fontsize=16,color="green",shape="box"];697[label="vyw3001",fontsize=16,color="green",shape="box"];698[label="vyw501",fontsize=16,color="green",shape="box"];699[label="vyw3001",fontsize=16,color="green",shape="box"];700[label="vyw501",fontsize=16,color="green",shape="box"];701[label="vyw3001",fontsize=16,color="green",shape="box"];702[label="vyw501",fontsize=16,color="green",shape="box"];703[label="vyw3001",fontsize=16,color="green",shape="box"];704[label="vyw501",fontsize=16,color="green",shape="box"];705[label="vyw3001",fontsize=16,color="green",shape="box"];706[label="vyw501",fontsize=16,color="green",shape="box"];707[label="vyw3001",fontsize=16,color="green",shape="box"];708[label="vyw501",fontsize=16,color="green",shape="box"];709[label="vyw3001",fontsize=16,color="green",shape="box"];710[label="vyw501",fontsize=16,color="green",shape="box"];711[label="vyw3001",fontsize=16,color="green",shape="box"];712[label="vyw501",fontsize=16,color="green",shape="box"];713[label="vyw3001",fontsize=16,color="green",shape="box"];714[label="vyw501",fontsize=16,color="green",shape="box"];715[label="vyw3001",fontsize=16,color="green",shape="box"];716[label="vyw501",fontsize=16,color="green",shape="box"];717[label="vyw3001",fontsize=16,color="green",shape="box"];718[label="vyw501",fontsize=16,color="green",shape="box"];719[label="vyw3001",fontsize=16,color="green",shape="box"];720[label="vyw501",fontsize=16,color="green",shape="box"];721 -> 307[label="",style="dashed", color="red", weight=0]; 721[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];721 -> 815[label="",style="dashed", color="magenta", weight=3]; 721 -> 816[label="",style="dashed", color="magenta", weight=3]; 722[label="False",fontsize=16,color="green",shape="box"];723[label="False",fontsize=16,color="green",shape="box"];724[label="True",fontsize=16,color="green",shape="box"];725[label="False",fontsize=16,color="green",shape="box"];726[label="True",fontsize=16,color="green",shape="box"];727 -> 307[label="",style="dashed", color="red", weight=0]; 727[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];727 -> 817[label="",style="dashed", color="magenta", weight=3]; 727 -> 818[label="",style="dashed", color="magenta", weight=3]; 728[label="False",fontsize=16,color="green",shape="box"];729[label="False",fontsize=16,color="green",shape="box"];730[label="True",fontsize=16,color="green",shape="box"];731[label="False",fontsize=16,color="green",shape="box"];732[label="True",fontsize=16,color="green",shape="box"];733[label="primEqNat (Succ vyw5000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];733 -> 819[label="",style="solid", color="black", weight=3]; 734[label="primEqNat (Succ vyw5000) Zero",fontsize=16,color="black",shape="box"];734 -> 820[label="",style="solid", color="black", weight=3]; 735[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];735 -> 821[label="",style="solid", color="black", weight=3]; 736[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];736 -> 822[label="",style="solid", color="black", weight=3]; 737[label="primMulInt vyw501 vyw3000",fontsize=16,color="burlywood",shape="triangle"];2590[label="vyw501/Pos vyw5010",fontsize=10,color="white",style="solid",shape="box"];737 -> 2590[label="",style="solid", color="burlywood", weight=9]; 2590 -> 823[label="",style="solid", color="burlywood", weight=3]; 2591[label="vyw501/Neg vyw5010",fontsize=10,color="white",style="solid",shape="box"];737 -> 2591[label="",style="solid", color="burlywood", weight=9]; 2591 -> 824[label="",style="solid", color="burlywood", weight=3]; 738[label="vyw3001",fontsize=16,color="green",shape="box"];739[label="vyw500",fontsize=16,color="green",shape="box"];740[label="vyw3000",fontsize=16,color="green",shape="box"];741[label="vyw501",fontsize=16,color="green",shape="box"];742[label="vyw3001",fontsize=16,color="green",shape="box"];743[label="vyw500",fontsize=16,color="green",shape="box"];744[label="vyw3000",fontsize=16,color="green",shape="box"];745[label="vyw500",fontsize=16,color="green",shape="box"];746[label="vyw3000",fontsize=16,color="green",shape="box"];747[label="vyw500",fontsize=16,color="green",shape="box"];748[label="vyw3001",fontsize=16,color="green",shape="box"];749[label="vyw501",fontsize=16,color="green",shape="box"];750[label="vyw3001",fontsize=16,color="green",shape="box"];751[label="vyw501",fontsize=16,color="green",shape="box"];1248[label="compare1 (vyw460,vyw461) vyw48 ((vyw460,vyw461) <= vyw48)",fontsize=16,color="burlywood",shape="box"];2592[label="vyw48/(vyw480,vyw481)",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2592[label="",style="solid", color="burlywood", weight=9]; 2592 -> 1251[label="",style="solid", color="burlywood", weight=3]; 1190[label="(vyw18,vyw19)",fontsize=16,color="green",shape="box"];1191 -> 128[label="",style="dashed", color="red", weight=0]; 1191[label="(vyw24,vyw25) == (vyw18,vyw19)",fontsize=16,color="magenta"];1191 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1192[label="(vyw24,vyw25)",fontsize=16,color="green",shape="box"];758[label="vyw20",fontsize=16,color="green",shape="box"];759[label="vyw3001",fontsize=16,color="green",shape="box"];760[label="vyw501",fontsize=16,color="green",shape="box"];761[label="vyw3001",fontsize=16,color="green",shape="box"];762[label="vyw501",fontsize=16,color="green",shape="box"];763[label="vyw3001",fontsize=16,color="green",shape="box"];764[label="vyw501",fontsize=16,color="green",shape="box"];765[label="vyw3001",fontsize=16,color="green",shape="box"];766[label="vyw501",fontsize=16,color="green",shape="box"];767[label="vyw3001",fontsize=16,color="green",shape="box"];768[label="vyw501",fontsize=16,color="green",shape="box"];769[label="vyw3001",fontsize=16,color="green",shape="box"];770[label="vyw501",fontsize=16,color="green",shape="box"];771[label="vyw3001",fontsize=16,color="green",shape="box"];772[label="vyw501",fontsize=16,color="green",shape="box"];773[label="vyw3001",fontsize=16,color="green",shape="box"];774[label="vyw501",fontsize=16,color="green",shape="box"];775[label="vyw3001",fontsize=16,color="green",shape="box"];776[label="vyw501",fontsize=16,color="green",shape="box"];777[label="vyw3001",fontsize=16,color="green",shape="box"];778[label="vyw501",fontsize=16,color="green",shape="box"];779[label="vyw3001",fontsize=16,color="green",shape="box"];780[label="vyw501",fontsize=16,color="green",shape="box"];781[label="vyw3001",fontsize=16,color="green",shape="box"];782[label="vyw501",fontsize=16,color="green",shape="box"];783[label="vyw3001",fontsize=16,color="green",shape="box"];784[label="vyw501",fontsize=16,color="green",shape="box"];785[label="vyw3001",fontsize=16,color="green",shape="box"];786[label="vyw501",fontsize=16,color="green",shape="box"];787[label="vyw3002",fontsize=16,color="green",shape="box"];788[label="vyw502",fontsize=16,color="green",shape="box"];789[label="vyw3002",fontsize=16,color="green",shape="box"];790[label="vyw502",fontsize=16,color="green",shape="box"];791[label="vyw3002",fontsize=16,color="green",shape="box"];792[label="vyw502",fontsize=16,color="green",shape="box"];793[label="vyw3002",fontsize=16,color="green",shape="box"];794[label="vyw502",fontsize=16,color="green",shape="box"];795[label="vyw3002",fontsize=16,color="green",shape="box"];796[label="vyw502",fontsize=16,color="green",shape="box"];797[label="vyw3002",fontsize=16,color="green",shape="box"];798[label="vyw502",fontsize=16,color="green",shape="box"];799[label="vyw3002",fontsize=16,color="green",shape="box"];800[label="vyw502",fontsize=16,color="green",shape="box"];801[label="vyw3002",fontsize=16,color="green",shape="box"];802[label="vyw502",fontsize=16,color="green",shape="box"];803[label="vyw3002",fontsize=16,color="green",shape="box"];804[label="vyw502",fontsize=16,color="green",shape="box"];805[label="vyw3002",fontsize=16,color="green",shape="box"];806[label="vyw502",fontsize=16,color="green",shape="box"];807[label="vyw3002",fontsize=16,color="green",shape="box"];808[label="vyw502",fontsize=16,color="green",shape="box"];809[label="vyw3002",fontsize=16,color="green",shape="box"];810[label="vyw502",fontsize=16,color="green",shape="box"];811[label="vyw3002",fontsize=16,color="green",shape="box"];812[label="vyw502",fontsize=16,color="green",shape="box"];813[label="vyw3002",fontsize=16,color="green",shape="box"];814[label="vyw502",fontsize=16,color="green",shape="box"];815[label="vyw30000",fontsize=16,color="green",shape="box"];816[label="vyw5000",fontsize=16,color="green",shape="box"];817[label="vyw30000",fontsize=16,color="green",shape="box"];818[label="vyw5000",fontsize=16,color="green",shape="box"];819 -> 307[label="",style="dashed", color="red", weight=0]; 819[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];819 -> 829[label="",style="dashed", color="magenta", weight=3]; 819 -> 830[label="",style="dashed", color="magenta", weight=3]; 820[label="False",fontsize=16,color="green",shape="box"];821[label="False",fontsize=16,color="green",shape="box"];822[label="True",fontsize=16,color="green",shape="box"];823[label="primMulInt (Pos vyw5010) vyw3000",fontsize=16,color="burlywood",shape="box"];2593[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];823 -> 2593[label="",style="solid", color="burlywood", weight=9]; 2593 -> 831[label="",style="solid", color="burlywood", weight=3]; 2594[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];823 -> 2594[label="",style="solid", color="burlywood", weight=9]; 2594 -> 832[label="",style="solid", color="burlywood", weight=3]; 824[label="primMulInt (Neg vyw5010) vyw3000",fontsize=16,color="burlywood",shape="box"];2595[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];824 -> 2595[label="",style="solid", color="burlywood", weight=9]; 2595 -> 833[label="",style="solid", color="burlywood", weight=3]; 2596[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];824 -> 2596[label="",style="solid", color="burlywood", weight=9]; 2596 -> 834[label="",style="solid", color="burlywood", weight=3]; 1251[label="compare1 (vyw460,vyw461) (vyw480,vyw481) ((vyw460,vyw461) <= (vyw480,vyw481))",fontsize=16,color="black",shape="box"];1251 -> 1253[label="",style="solid", color="black", weight=3]; 1210[label="(vyw18,vyw19)",fontsize=16,color="green",shape="box"];1211[label="(vyw24,vyw25)",fontsize=16,color="green",shape="box"];829[label="vyw30000",fontsize=16,color="green",shape="box"];830[label="vyw5000",fontsize=16,color="green",shape="box"];831[label="primMulInt (Pos vyw5010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];831 -> 868[label="",style="solid", color="black", weight=3]; 832[label="primMulInt (Pos vyw5010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];832 -> 869[label="",style="solid", color="black", weight=3]; 833[label="primMulInt (Neg vyw5010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];833 -> 870[label="",style="solid", color="black", weight=3]; 834[label="primMulInt (Neg vyw5010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];834 -> 871[label="",style="solid", color="black", weight=3]; 1253 -> 1260[label="",style="dashed", color="red", weight=0]; 1253[label="compare1 (vyw460,vyw461) (vyw480,vyw481) (vyw460 < vyw480 || vyw460 == vyw480 && vyw461 <= vyw481)",fontsize=16,color="magenta"];1253 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1266[label="",style="dashed", color="magenta", weight=3]; 868[label="Pos (primMulNat vyw5010 vyw30000)",fontsize=16,color="green",shape="box"];868 -> 916[label="",style="dashed", color="green", weight=3]; 869[label="Neg (primMulNat vyw5010 vyw30000)",fontsize=16,color="green",shape="box"];869 -> 917[label="",style="dashed", color="green", weight=3]; 870[label="Neg (primMulNat vyw5010 vyw30000)",fontsize=16,color="green",shape="box"];870 -> 918[label="",style="dashed", color="green", weight=3]; 871[label="Pos (primMulNat vyw5010 vyw30000)",fontsize=16,color="green",shape="box"];871 -> 919[label="",style="dashed", color="green", weight=3]; 1261[label="vyw461",fontsize=16,color="green",shape="box"];1262[label="vyw460 < vyw480",fontsize=16,color="blue",shape="box"];2597[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2597[label="",style="solid", color="blue", weight=9]; 2597 -> 1273[label="",style="solid", color="blue", weight=3]; 2598[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2598[label="",style="solid", color="blue", weight=9]; 2598 -> 1274[label="",style="solid", color="blue", weight=3]; 2599[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2599[label="",style="solid", color="blue", weight=9]; 2599 -> 1275[label="",style="solid", color="blue", weight=3]; 2600[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2600[label="",style="solid", color="blue", weight=9]; 2600 -> 1276[label="",style="solid", color="blue", weight=3]; 2601[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2601[label="",style="solid", color="blue", weight=9]; 2601 -> 1277[label="",style="solid", color="blue", weight=3]; 2602[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2602[label="",style="solid", color="blue", weight=9]; 2602 -> 1278[label="",style="solid", color="blue", weight=3]; 2603[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2603[label="",style="solid", color="blue", weight=9]; 2603 -> 1279[label="",style="solid", color="blue", weight=3]; 2604[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2604[label="",style="solid", color="blue", weight=9]; 2604 -> 1280[label="",style="solid", color="blue", weight=3]; 2605[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2605[label="",style="solid", color="blue", weight=9]; 2605 -> 1281[label="",style="solid", color="blue", weight=3]; 2606[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2606[label="",style="solid", color="blue", weight=9]; 2606 -> 1282[label="",style="solid", color="blue", weight=3]; 2607[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2607[label="",style="solid", color="blue", weight=9]; 2607 -> 1283[label="",style="solid", color="blue", weight=3]; 2608[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2608[label="",style="solid", color="blue", weight=9]; 2608 -> 1284[label="",style="solid", color="blue", weight=3]; 2609[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2609[label="",style="solid", color="blue", weight=9]; 2609 -> 1285[label="",style="solid", color="blue", weight=3]; 2610[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2610[label="",style="solid", color="blue", weight=9]; 2610 -> 1286[label="",style="solid", color="blue", weight=3]; 1263[label="vyw460",fontsize=16,color="green",shape="box"];1264[label="vyw480",fontsize=16,color="green",shape="box"];1265 -> 364[label="",style="dashed", color="red", weight=0]; 1265[label="vyw460 == vyw480 && vyw461 <= vyw481",fontsize=16,color="magenta"];1265 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1266[label="vyw481",fontsize=16,color="green",shape="box"];1260[label="compare1 (vyw96,vyw97) (vyw98,vyw99) (vyw100 || vyw101)",fontsize=16,color="burlywood",shape="triangle"];2611[label="vyw100/False",fontsize=10,color="white",style="solid",shape="box"];1260 -> 2611[label="",style="solid", color="burlywood", weight=9]; 2611 -> 1289[label="",style="solid", color="burlywood", weight=3]; 2612[label="vyw100/True",fontsize=10,color="white",style="solid",shape="box"];1260 -> 2612[label="",style="solid", color="burlywood", weight=9]; 2612 -> 1290[label="",style="solid", color="burlywood", weight=3]; 916[label="primMulNat vyw5010 vyw30000",fontsize=16,color="burlywood",shape="triangle"];2613[label="vyw5010/Succ vyw50100",fontsize=10,color="white",style="solid",shape="box"];916 -> 2613[label="",style="solid", color="burlywood", weight=9]; 2613 -> 998[label="",style="solid", color="burlywood", weight=3]; 2614[label="vyw5010/Zero",fontsize=10,color="white",style="solid",shape="box"];916 -> 2614[label="",style="solid", color="burlywood", weight=9]; 2614 -> 999[label="",style="solid", color="burlywood", weight=3]; 917 -> 916[label="",style="dashed", color="red", weight=0]; 917[label="primMulNat vyw5010 vyw30000",fontsize=16,color="magenta"];917 -> 1000[label="",style="dashed", color="magenta", weight=3]; 918 -> 916[label="",style="dashed", color="red", weight=0]; 918[label="primMulNat vyw5010 vyw30000",fontsize=16,color="magenta"];918 -> 1001[label="",style="dashed", color="magenta", weight=3]; 919 -> 916[label="",style="dashed", color="red", weight=0]; 919[label="primMulNat vyw5010 vyw30000",fontsize=16,color="magenta"];919 -> 1002[label="",style="dashed", color="magenta", weight=3]; 919 -> 1003[label="",style="dashed", color="magenta", weight=3]; 1273[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1273 -> 1295[label="",style="solid", color="black", weight=3]; 1274[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1274 -> 1296[label="",style="solid", color="black", weight=3]; 1275[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1275 -> 1297[label="",style="solid", color="black", weight=3]; 1276[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1276 -> 1298[label="",style="solid", color="black", weight=3]; 1277[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1277 -> 1299[label="",style="solid", color="black", weight=3]; 1278[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1278 -> 1300[label="",style="solid", color="black", weight=3]; 1279[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1279 -> 1301[label="",style="solid", color="black", weight=3]; 1280[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1280 -> 1302[label="",style="solid", color="black", weight=3]; 1281[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1281 -> 1303[label="",style="solid", color="black", weight=3]; 1282[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1282 -> 1304[label="",style="solid", color="black", weight=3]; 1283[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1283 -> 1305[label="",style="solid", color="black", weight=3]; 1284[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1284 -> 1306[label="",style="solid", color="black", weight=3]; 1285[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1285 -> 1307[label="",style="solid", color="black", weight=3]; 1286[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1286 -> 1308[label="",style="solid", color="black", weight=3]; 1287[label="vyw460 == vyw480",fontsize=16,color="blue",shape="box"];2615[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2615[label="",style="solid", color="blue", weight=9]; 2615 -> 1309[label="",style="solid", color="blue", weight=3]; 2616[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2616[label="",style="solid", color="blue", weight=9]; 2616 -> 1310[label="",style="solid", color="blue", weight=3]; 2617[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2617[label="",style="solid", color="blue", weight=9]; 2617 -> 1311[label="",style="solid", color="blue", weight=3]; 2618[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2618[label="",style="solid", color="blue", weight=9]; 2618 -> 1312[label="",style="solid", color="blue", weight=3]; 2619[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2619[label="",style="solid", color="blue", weight=9]; 2619 -> 1313[label="",style="solid", color="blue", weight=3]; 2620[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2620[label="",style="solid", color="blue", weight=9]; 2620 -> 1314[label="",style="solid", color="blue", weight=3]; 2621[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2621[label="",style="solid", color="blue", weight=9]; 2621 -> 1315[label="",style="solid", color="blue", weight=3]; 2622[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2622[label="",style="solid", color="blue", weight=9]; 2622 -> 1316[label="",style="solid", color="blue", weight=3]; 2623[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2623[label="",style="solid", color="blue", weight=9]; 2623 -> 1317[label="",style="solid", color="blue", weight=3]; 2624[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2624[label="",style="solid", color="blue", weight=9]; 2624 -> 1318[label="",style="solid", color="blue", weight=3]; 2625[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2625[label="",style="solid", color="blue", weight=9]; 2625 -> 1319[label="",style="solid", color="blue", weight=3]; 2626[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2626[label="",style="solid", color="blue", weight=9]; 2626 -> 1320[label="",style="solid", color="blue", weight=3]; 2627[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2627[label="",style="solid", color="blue", weight=9]; 2627 -> 1321[label="",style="solid", color="blue", weight=3]; 2628[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2628[label="",style="solid", color="blue", weight=9]; 2628 -> 1322[label="",style="solid", color="blue", weight=3]; 1288[label="vyw461 <= vyw481",fontsize=16,color="blue",shape="box"];2629[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2629[label="",style="solid", color="blue", weight=9]; 2629 -> 1323[label="",style="solid", color="blue", weight=3]; 2630[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2630[label="",style="solid", color="blue", weight=9]; 2630 -> 1324[label="",style="solid", color="blue", weight=3]; 2631[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2631[label="",style="solid", color="blue", weight=9]; 2631 -> 1325[label="",style="solid", color="blue", weight=3]; 2632[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2632[label="",style="solid", color="blue", weight=9]; 2632 -> 1326[label="",style="solid", color="blue", weight=3]; 2633[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2633[label="",style="solid", color="blue", weight=9]; 2633 -> 1327[label="",style="solid", color="blue", weight=3]; 2634[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2634[label="",style="solid", color="blue", weight=9]; 2634 -> 1328[label="",style="solid", color="blue", weight=3]; 2635[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2635[label="",style="solid", color="blue", weight=9]; 2635 -> 1329[label="",style="solid", color="blue", weight=3]; 2636[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2636[label="",style="solid", color="blue", weight=9]; 2636 -> 1330[label="",style="solid", color="blue", weight=3]; 2637[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2637[label="",style="solid", color="blue", weight=9]; 2637 -> 1331[label="",style="solid", color="blue", weight=3]; 2638[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2638[label="",style="solid", color="blue", weight=9]; 2638 -> 1332[label="",style="solid", color="blue", weight=3]; 2639[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2639[label="",style="solid", color="blue", weight=9]; 2639 -> 1333[label="",style="solid", color="blue", weight=3]; 2640[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2640[label="",style="solid", color="blue", weight=9]; 2640 -> 1334[label="",style="solid", color="blue", weight=3]; 2641[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2641[label="",style="solid", color="blue", weight=9]; 2641 -> 1335[label="",style="solid", color="blue", weight=3]; 2642[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2642[label="",style="solid", color="blue", weight=9]; 2642 -> 1336[label="",style="solid", color="blue", weight=3]; 1289[label="compare1 (vyw96,vyw97) (vyw98,vyw99) (False || vyw101)",fontsize=16,color="black",shape="box"];1289 -> 1337[label="",style="solid", color="black", weight=3]; 1290[label="compare1 (vyw96,vyw97) (vyw98,vyw99) (True || vyw101)",fontsize=16,color="black",shape="box"];1290 -> 1338[label="",style="solid", color="black", weight=3]; 998[label="primMulNat (Succ vyw50100) vyw30000",fontsize=16,color="burlywood",shape="box"];2643[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];998 -> 2643[label="",style="solid", color="burlywood", weight=9]; 2643 -> 1052[label="",style="solid", color="burlywood", weight=3]; 2644[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];998 -> 2644[label="",style="solid", color="burlywood", weight=9]; 2644 -> 1053[label="",style="solid", color="burlywood", weight=3]; 999[label="primMulNat Zero vyw30000",fontsize=16,color="burlywood",shape="box"];2645[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];999 -> 2645[label="",style="solid", color="burlywood", weight=9]; 2645 -> 1054[label="",style="solid", color="burlywood", weight=3]; 2646[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];999 -> 2646[label="",style="solid", color="burlywood", weight=9]; 2646 -> 1055[label="",style="solid", color="burlywood", weight=3]; 1000[label="vyw30000",fontsize=16,color="green",shape="box"];1001[label="vyw5010",fontsize=16,color="green",shape="box"];1002[label="vyw30000",fontsize=16,color="green",shape="box"];1003[label="vyw5010",fontsize=16,color="green",shape="box"];1295 -> 139[label="",style="dashed", color="red", weight=0]; 1295[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1295 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1296 -> 139[label="",style="dashed", color="red", weight=0]; 1296[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1296 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1297 -> 139[label="",style="dashed", color="red", weight=0]; 1297[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1297 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1298 -> 139[label="",style="dashed", color="red", weight=0]; 1298[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1298 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1299 -> 139[label="",style="dashed", color="red", weight=0]; 1299[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1299 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1300 -> 139[label="",style="dashed", color="red", weight=0]; 1300[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1300 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1301 -> 139[label="",style="dashed", color="red", weight=0]; 1301[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1301 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1302 -> 139[label="",style="dashed", color="red", weight=0]; 1302[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1302 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1303 -> 139[label="",style="dashed", color="red", weight=0]; 1303[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1303 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1304 -> 139[label="",style="dashed", color="red", weight=0]; 1304[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1304 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1305 -> 139[label="",style="dashed", color="red", weight=0]; 1305[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1305 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1306 -> 139[label="",style="dashed", color="red", weight=0]; 1306[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1306 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1307 -> 139[label="",style="dashed", color="red", weight=0]; 1307[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1307 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1307 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1308 -> 139[label="",style="dashed", color="red", weight=0]; 1308[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1308 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1308 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1309 -> 134[label="",style="dashed", color="red", weight=0]; 1309[label="vyw460 == vyw480",fontsize=16,color="magenta"];1309 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1309 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1310 -> 138[label="",style="dashed", color="red", weight=0]; 1310[label="vyw460 == vyw480",fontsize=16,color="magenta"];1310 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1310 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1311 -> 128[label="",style="dashed", color="red", weight=0]; 1311[label="vyw460 == vyw480",fontsize=16,color="magenta"];1311 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1311 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1312 -> 127[label="",style="dashed", color="red", weight=0]; 1312[label="vyw460 == vyw480",fontsize=16,color="magenta"];1312 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1313 -> 137[label="",style="dashed", color="red", weight=0]; 1313[label="vyw460 == vyw480",fontsize=16,color="magenta"];1313 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1314 -> 136[label="",style="dashed", color="red", weight=0]; 1314[label="vyw460 == vyw480",fontsize=16,color="magenta"];1314 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1315 -> 130[label="",style="dashed", color="red", weight=0]; 1315[label="vyw460 == vyw480",fontsize=16,color="magenta"];1315 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1316 -> 139[label="",style="dashed", color="red", weight=0]; 1316[label="vyw460 == vyw480",fontsize=16,color="magenta"];1316 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1317 -> 133[label="",style="dashed", color="red", weight=0]; 1317[label="vyw460 == vyw480",fontsize=16,color="magenta"];1317 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1318 -> 135[label="",style="dashed", color="red", weight=0]; 1318[label="vyw460 == vyw480",fontsize=16,color="magenta"];1318 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1319 -> 132[label="",style="dashed", color="red", weight=0]; 1319[label="vyw460 == vyw480",fontsize=16,color="magenta"];1319 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1320 -> 129[label="",style="dashed", color="red", weight=0]; 1320[label="vyw460 == vyw480",fontsize=16,color="magenta"];1320 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1321 -> 126[label="",style="dashed", color="red", weight=0]; 1321[label="vyw460 == vyw480",fontsize=16,color="magenta"];1321 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1322 -> 131[label="",style="dashed", color="red", weight=0]; 1322[label="vyw460 == vyw480",fontsize=16,color="magenta"];1322 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1323[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1323 -> 1399[label="",style="solid", color="black", weight=3]; 1324[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2647[label="vyw461/Left vyw4610",fontsize=10,color="white",style="solid",shape="box"];1324 -> 2647[label="",style="solid", color="burlywood", weight=9]; 2647 -> 1400[label="",style="solid", color="burlywood", weight=3]; 2648[label="vyw461/Right vyw4610",fontsize=10,color="white",style="solid",shape="box"];1324 -> 2648[label="",style="solid", color="burlywood", weight=9]; 2648 -> 1401[label="",style="solid", color="burlywood", weight=3]; 1325[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2649[label="vyw461/(vyw4610,vyw4611)",fontsize=10,color="white",style="solid",shape="box"];1325 -> 2649[label="",style="solid", color="burlywood", weight=9]; 2649 -> 1402[label="",style="solid", color="burlywood", weight=3]; 1326[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1326 -> 1403[label="",style="solid", color="black", weight=3]; 1327[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1327 -> 1404[label="",style="solid", color="black", weight=3]; 1328[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2650[label="vyw461/False",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2650[label="",style="solid", color="burlywood", weight=9]; 2650 -> 1405[label="",style="solid", color="burlywood", weight=3]; 2651[label="vyw461/True",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2651[label="",style="solid", color="burlywood", weight=9]; 2651 -> 1406[label="",style="solid", color="burlywood", weight=3]; 1329[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1329 -> 1407[label="",style="solid", color="black", weight=3]; 1330[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2652[label="vyw461/LT",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2652[label="",style="solid", color="burlywood", weight=9]; 2652 -> 1408[label="",style="solid", color="burlywood", weight=3]; 2653[label="vyw461/EQ",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2653[label="",style="solid", color="burlywood", weight=9]; 2653 -> 1409[label="",style="solid", color="burlywood", weight=3]; 2654[label="vyw461/GT",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2654[label="",style="solid", color="burlywood", weight=9]; 2654 -> 1410[label="",style="solid", color="burlywood", weight=3]; 1331[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1331 -> 1411[label="",style="solid", color="black", weight=3]; 1332[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1332 -> 1412[label="",style="solid", color="black", weight=3]; 1333[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1333 -> 1413[label="",style="solid", color="black", weight=3]; 1334[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2655[label="vyw461/Nothing",fontsize=10,color="white",style="solid",shape="box"];1334 -> 2655[label="",style="solid", color="burlywood", weight=9]; 2655 -> 1414[label="",style="solid", color="burlywood", weight=3]; 2656[label="vyw461/Just vyw4610",fontsize=10,color="white",style="solid",shape="box"];1334 -> 2656[label="",style="solid", color="burlywood", weight=9]; 2656 -> 1415[label="",style="solid", color="burlywood", weight=3]; 1335[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2657[label="vyw461/(vyw4610,vyw4611,vyw4612)",fontsize=10,color="white",style="solid",shape="box"];1335 -> 2657[label="",style="solid", color="burlywood", weight=9]; 2657 -> 1416[label="",style="solid", color="burlywood", weight=3]; 1336[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1336 -> 1417[label="",style="solid", color="black", weight=3]; 1337[label="compare1 (vyw96,vyw97) (vyw98,vyw99) vyw101",fontsize=16,color="burlywood",shape="triangle"];2658[label="vyw101/False",fontsize=10,color="white",style="solid",shape="box"];1337 -> 2658[label="",style="solid", color="burlywood", weight=9]; 2658 -> 1418[label="",style="solid", color="burlywood", weight=3]; 2659[label="vyw101/True",fontsize=10,color="white",style="solid",shape="box"];1337 -> 2659[label="",style="solid", color="burlywood", weight=9]; 2659 -> 1419[label="",style="solid", color="burlywood", weight=3]; 1338 -> 1337[label="",style="dashed", color="red", weight=0]; 1338[label="compare1 (vyw96,vyw97) (vyw98,vyw99) True",fontsize=16,color="magenta"];1338 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1052[label="primMulNat (Succ vyw50100) (Succ vyw300000)",fontsize=16,color="black",shape="box"];1052 -> 1107[label="",style="solid", color="black", weight=3]; 1053[label="primMulNat (Succ vyw50100) Zero",fontsize=16,color="black",shape="box"];1053 -> 1108[label="",style="solid", color="black", weight=3]; 1054[label="primMulNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];1054 -> 1109[label="",style="solid", color="black", weight=3]; 1055[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1055 -> 1110[label="",style="solid", color="black", weight=3]; 1343[label="LT",fontsize=16,color="green",shape="box"];1344[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1344 -> 1422[label="",style="solid", color="black", weight=3]; 1345[label="LT",fontsize=16,color="green",shape="box"];1346[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1346 -> 1423[label="",style="solid", color="black", weight=3]; 1347[label="LT",fontsize=16,color="green",shape="box"];1348[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1348 -> 1424[label="",style="solid", color="black", weight=3]; 1349[label="LT",fontsize=16,color="green",shape="box"];1350[label="compare vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2660[label="vyw460/vyw4600 : vyw4601",fontsize=10,color="white",style="solid",shape="box"];1350 -> 2660[label="",style="solid", color="burlywood", weight=9]; 2660 -> 1425[label="",style="solid", color="burlywood", weight=3]; 2661[label="vyw460/[]",fontsize=10,color="white",style="solid",shape="box"];1350 -> 2661[label="",style="solid", color="burlywood", weight=9]; 2661 -> 1426[label="",style="solid", color="burlywood", weight=3]; 1351[label="LT",fontsize=16,color="green",shape="box"];1352[label="compare vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2662[label="vyw460/()",fontsize=10,color="white",style="solid",shape="box"];1352 -> 2662[label="",style="solid", color="burlywood", weight=9]; 2662 -> 1427[label="",style="solid", color="burlywood", weight=3]; 1353[label="LT",fontsize=16,color="green",shape="box"];1354[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1354 -> 1428[label="",style="solid", color="black", weight=3]; 1355[label="LT",fontsize=16,color="green",shape="box"];1356[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1356 -> 1429[label="",style="solid", color="black", weight=3]; 1357[label="LT",fontsize=16,color="green",shape="box"];1358[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1358 -> 1430[label="",style="solid", color="black", weight=3]; 1359[label="LT",fontsize=16,color="green",shape="box"];1360[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1360 -> 1431[label="",style="solid", color="black", weight=3]; 1361[label="LT",fontsize=16,color="green",shape="box"];1362[label="compare vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2663[label="vyw460/vyw4600 :% vyw4601",fontsize=10,color="white",style="solid",shape="box"];1362 -> 2663[label="",style="solid", color="burlywood", weight=9]; 2663 -> 1432[label="",style="solid", color="burlywood", weight=3]; 1363[label="LT",fontsize=16,color="green",shape="box"];1364[label="compare vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2664[label="vyw460/Integer vyw4600",fontsize=10,color="white",style="solid",shape="box"];1364 -> 2664[label="",style="solid", color="burlywood", weight=9]; 2664 -> 1433[label="",style="solid", color="burlywood", weight=3]; 1365[label="LT",fontsize=16,color="green",shape="box"];1366[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1366 -> 1434[label="",style="solid", color="black", weight=3]; 1367[label="LT",fontsize=16,color="green",shape="box"];1368[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1368 -> 1435[label="",style="solid", color="black", weight=3]; 1369[label="LT",fontsize=16,color="green",shape="box"];1370[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1370 -> 1436[label="",style="solid", color="black", weight=3]; 1371[label="vyw480",fontsize=16,color="green",shape="box"];1372[label="vyw460",fontsize=16,color="green",shape="box"];1373[label="vyw480",fontsize=16,color="green",shape="box"];1374[label="vyw460",fontsize=16,color="green",shape="box"];1375[label="vyw480",fontsize=16,color="green",shape="box"];1376[label="vyw460",fontsize=16,color="green",shape="box"];1377[label="vyw480",fontsize=16,color="green",shape="box"];1378[label="vyw460",fontsize=16,color="green",shape="box"];1379[label="vyw480",fontsize=16,color="green",shape="box"];1380[label="vyw460",fontsize=16,color="green",shape="box"];1381[label="vyw480",fontsize=16,color="green",shape="box"];1382[label="vyw460",fontsize=16,color="green",shape="box"];1383[label="vyw480",fontsize=16,color="green",shape="box"];1384[label="vyw460",fontsize=16,color="green",shape="box"];1385[label="vyw480",fontsize=16,color="green",shape="box"];1386[label="vyw460",fontsize=16,color="green",shape="box"];1387[label="vyw480",fontsize=16,color="green",shape="box"];1388[label="vyw460",fontsize=16,color="green",shape="box"];1389[label="vyw480",fontsize=16,color="green",shape="box"];1390[label="vyw460",fontsize=16,color="green",shape="box"];1391[label="vyw480",fontsize=16,color="green",shape="box"];1392[label="vyw460",fontsize=16,color="green",shape="box"];1393[label="vyw480",fontsize=16,color="green",shape="box"];1394[label="vyw460",fontsize=16,color="green",shape="box"];1395[label="vyw480",fontsize=16,color="green",shape="box"];1396[label="vyw460",fontsize=16,color="green",shape="box"];1397[label="vyw480",fontsize=16,color="green",shape="box"];1398[label="vyw460",fontsize=16,color="green",shape="box"];1399 -> 1437[label="",style="dashed", color="red", weight=0]; 1399[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1399 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1400[label="Left vyw4610 <= vyw481",fontsize=16,color="burlywood",shape="box"];2665[label="vyw481/Left vyw4810",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2665[label="",style="solid", color="burlywood", weight=9]; 2665 -> 1446[label="",style="solid", color="burlywood", weight=3]; 2666[label="vyw481/Right vyw4810",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2666[label="",style="solid", color="burlywood", weight=9]; 2666 -> 1447[label="",style="solid", color="burlywood", weight=3]; 1401[label="Right vyw4610 <= vyw481",fontsize=16,color="burlywood",shape="box"];2667[label="vyw481/Left vyw4810",fontsize=10,color="white",style="solid",shape="box"];1401 -> 2667[label="",style="solid", color="burlywood", weight=9]; 2667 -> 1448[label="",style="solid", color="burlywood", weight=3]; 2668[label="vyw481/Right vyw4810",fontsize=10,color="white",style="solid",shape="box"];1401 -> 2668[label="",style="solid", color="burlywood", weight=9]; 2668 -> 1449[label="",style="solid", color="burlywood", weight=3]; 1402[label="(vyw4610,vyw4611) <= vyw481",fontsize=16,color="burlywood",shape="box"];2669[label="vyw481/(vyw4810,vyw4811)",fontsize=10,color="white",style="solid",shape="box"];1402 -> 2669[label="",style="solid", color="burlywood", weight=9]; 2669 -> 1450[label="",style="solid", color="burlywood", weight=3]; 1403 -> 1437[label="",style="dashed", color="red", weight=0]; 1403[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1403 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1437[label="",style="dashed", color="red", weight=0]; 1404[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1404 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1405[label="False <= vyw481",fontsize=16,color="burlywood",shape="box"];2670[label="vyw481/False",fontsize=10,color="white",style="solid",shape="box"];1405 -> 2670[label="",style="solid", color="burlywood", weight=9]; 2670 -> 1451[label="",style="solid", color="burlywood", weight=3]; 2671[label="vyw481/True",fontsize=10,color="white",style="solid",shape="box"];1405 -> 2671[label="",style="solid", color="burlywood", weight=9]; 2671 -> 1452[label="",style="solid", color="burlywood", weight=3]; 1406[label="True <= vyw481",fontsize=16,color="burlywood",shape="box"];2672[label="vyw481/False",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2672[label="",style="solid", color="burlywood", weight=9]; 2672 -> 1453[label="",style="solid", color="burlywood", weight=3]; 2673[label="vyw481/True",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2673[label="",style="solid", color="burlywood", weight=9]; 2673 -> 1454[label="",style="solid", color="burlywood", weight=3]; 1407 -> 1437[label="",style="dashed", color="red", weight=0]; 1407[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1407 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1408[label="LT <= vyw481",fontsize=16,color="burlywood",shape="box"];2674[label="vyw481/LT",fontsize=10,color="white",style="solid",shape="box"];1408 -> 2674[label="",style="solid", color="burlywood", weight=9]; 2674 -> 1455[label="",style="solid", color="burlywood", weight=3]; 2675[label="vyw481/EQ",fontsize=10,color="white",style="solid",shape="box"];1408 -> 2675[label="",style="solid", color="burlywood", weight=9]; 2675 -> 1456[label="",style="solid", color="burlywood", weight=3]; 2676[label="vyw481/GT",fontsize=10,color="white",style="solid",shape="box"];1408 -> 2676[label="",style="solid", color="burlywood", weight=9]; 2676 -> 1457[label="",style="solid", color="burlywood", weight=3]; 1409[label="EQ <= vyw481",fontsize=16,color="burlywood",shape="box"];2677[label="vyw481/LT",fontsize=10,color="white",style="solid",shape="box"];1409 -> 2677[label="",style="solid", color="burlywood", weight=9]; 2677 -> 1458[label="",style="solid", color="burlywood", weight=3]; 2678[label="vyw481/EQ",fontsize=10,color="white",style="solid",shape="box"];1409 -> 2678[label="",style="solid", color="burlywood", weight=9]; 2678 -> 1459[label="",style="solid", color="burlywood", weight=3]; 2679[label="vyw481/GT",fontsize=10,color="white",style="solid",shape="box"];1409 -> 2679[label="",style="solid", color="burlywood", weight=9]; 2679 -> 1460[label="",style="solid", color="burlywood", weight=3]; 1410[label="GT <= vyw481",fontsize=16,color="burlywood",shape="box"];2680[label="vyw481/LT",fontsize=10,color="white",style="solid",shape="box"];1410 -> 2680[label="",style="solid", color="burlywood", weight=9]; 2680 -> 1461[label="",style="solid", color="burlywood", weight=3]; 2681[label="vyw481/EQ",fontsize=10,color="white",style="solid",shape="box"];1410 -> 2681[label="",style="solid", color="burlywood", weight=9]; 2681 -> 1462[label="",style="solid", color="burlywood", weight=3]; 2682[label="vyw481/GT",fontsize=10,color="white",style="solid",shape="box"];1410 -> 2682[label="",style="solid", color="burlywood", weight=9]; 2682 -> 1463[label="",style="solid", color="burlywood", weight=3]; 1411 -> 1437[label="",style="dashed", color="red", weight=0]; 1411[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1411 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1437[label="",style="dashed", color="red", weight=0]; 1412[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1412 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1437[label="",style="dashed", color="red", weight=0]; 1413[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1413 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1414[label="Nothing <= vyw481",fontsize=16,color="burlywood",shape="box"];2683[label="vyw481/Nothing",fontsize=10,color="white",style="solid",shape="box"];1414 -> 2683[label="",style="solid", color="burlywood", weight=9]; 2683 -> 1464[label="",style="solid", color="burlywood", weight=3]; 2684[label="vyw481/Just vyw4810",fontsize=10,color="white",style="solid",shape="box"];1414 -> 2684[label="",style="solid", color="burlywood", weight=9]; 2684 -> 1465[label="",style="solid", color="burlywood", weight=3]; 1415[label="Just vyw4610 <= vyw481",fontsize=16,color="burlywood",shape="box"];2685[label="vyw481/Nothing",fontsize=10,color="white",style="solid",shape="box"];1415 -> 2685[label="",style="solid", color="burlywood", weight=9]; 2685 -> 1466[label="",style="solid", color="burlywood", weight=3]; 2686[label="vyw481/Just vyw4810",fontsize=10,color="white",style="solid",shape="box"];1415 -> 2686[label="",style="solid", color="burlywood", weight=9]; 2686 -> 1467[label="",style="solid", color="burlywood", weight=3]; 1416[label="(vyw4610,vyw4611,vyw4612) <= vyw481",fontsize=16,color="burlywood",shape="box"];2687[label="vyw481/(vyw4810,vyw4811,vyw4812)",fontsize=10,color="white",style="solid",shape="box"];1416 -> 2687[label="",style="solid", color="burlywood", weight=9]; 2687 -> 1468[label="",style="solid", color="burlywood", weight=3]; 1417 -> 1437[label="",style="dashed", color="red", weight=0]; 1417[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1417 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1418[label="compare1 (vyw96,vyw97) (vyw98,vyw99) False",fontsize=16,color="black",shape="box"];1418 -> 1469[label="",style="solid", color="black", weight=3]; 1419[label="compare1 (vyw96,vyw97) (vyw98,vyw99) True",fontsize=16,color="black",shape="box"];1419 -> 1470[label="",style="solid", color="black", weight=3]; 1420[label="True",fontsize=16,color="green",shape="box"];1107 -> 1212[label="",style="dashed", color="red", weight=0]; 1107[label="primPlusNat (primMulNat vyw50100 (Succ vyw300000)) (Succ vyw300000)",fontsize=16,color="magenta"];1107 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1108[label="Zero",fontsize=16,color="green",shape="box"];1109[label="Zero",fontsize=16,color="green",shape="box"];1110[label="Zero",fontsize=16,color="green",shape="box"];1422[label="primCmpDouble vyw460 vyw480",fontsize=16,color="burlywood",shape="box"];2688[label="vyw460/Double vyw4600 vyw4601",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2688[label="",style="solid", color="burlywood", weight=9]; 2688 -> 1471[label="",style="solid", color="burlywood", weight=3]; 1423[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1423 -> 1472[label="",style="solid", color="black", weight=3]; 1424[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1424 -> 1473[label="",style="solid", color="black", weight=3]; 1425[label="compare (vyw4600 : vyw4601) vyw480",fontsize=16,color="burlywood",shape="box"];2689[label="vyw480/vyw4800 : vyw4801",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2689[label="",style="solid", color="burlywood", weight=9]; 2689 -> 1474[label="",style="solid", color="burlywood", weight=3]; 2690[label="vyw480/[]",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2690[label="",style="solid", color="burlywood", weight=9]; 2690 -> 1475[label="",style="solid", color="burlywood", weight=3]; 1426[label="compare [] vyw480",fontsize=16,color="burlywood",shape="box"];2691[label="vyw480/vyw4800 : vyw4801",fontsize=10,color="white",style="solid",shape="box"];1426 -> 2691[label="",style="solid", color="burlywood", weight=9]; 2691 -> 1476[label="",style="solid", color="burlywood", weight=3]; 2692[label="vyw480/[]",fontsize=10,color="white",style="solid",shape="box"];1426 -> 2692[label="",style="solid", color="burlywood", weight=9]; 2692 -> 1477[label="",style="solid", color="burlywood", weight=3]; 1427[label="compare () vyw480",fontsize=16,color="burlywood",shape="box"];2693[label="vyw480/()",fontsize=10,color="white",style="solid",shape="box"];1427 -> 2693[label="",style="solid", color="burlywood", weight=9]; 2693 -> 1478[label="",style="solid", color="burlywood", weight=3]; 1428[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1428 -> 1479[label="",style="solid", color="black", weight=3]; 1429[label="primCmpInt vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2694[label="vyw460/Pos vyw4600",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2694[label="",style="solid", color="burlywood", weight=9]; 2694 -> 1480[label="",style="solid", color="burlywood", weight=3]; 2695[label="vyw460/Neg vyw4600",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2695[label="",style="solid", color="burlywood", weight=9]; 2695 -> 1481[label="",style="solid", color="burlywood", weight=3]; 1430[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1430 -> 1482[label="",style="solid", color="black", weight=3]; 1431[label="primCmpFloat vyw460 vyw480",fontsize=16,color="burlywood",shape="box"];2696[label="vyw460/Float vyw4600 vyw4601",fontsize=10,color="white",style="solid",shape="box"];1431 -> 2696[label="",style="solid", color="burlywood", weight=9]; 2696 -> 1483[label="",style="solid", color="burlywood", weight=3]; 1432[label="compare (vyw4600 :% vyw4601) vyw480",fontsize=16,color="burlywood",shape="box"];2697[label="vyw480/vyw4800 :% vyw4801",fontsize=10,color="white",style="solid",shape="box"];1432 -> 2697[label="",style="solid", color="burlywood", weight=9]; 2697 -> 1484[label="",style="solid", color="burlywood", weight=3]; 1433[label="compare (Integer vyw4600) vyw480",fontsize=16,color="burlywood",shape="box"];2698[label="vyw480/Integer vyw4800",fontsize=10,color="white",style="solid",shape="box"];1433 -> 2698[label="",style="solid", color="burlywood", weight=9]; 2698 -> 1485[label="",style="solid", color="burlywood", weight=3]; 1434[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1434 -> 1486[label="",style="solid", color="black", weight=3]; 1435[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1435 -> 1487[label="",style="solid", color="black", weight=3]; 1436[label="primCmpChar vyw460 vyw480",fontsize=16,color="burlywood",shape="box"];2699[label="vyw460/Char vyw4600",fontsize=10,color="white",style="solid",shape="box"];1436 -> 2699[label="",style="solid", color="burlywood", weight=9]; 2699 -> 1488[label="",style="solid", color="burlywood", weight=3]; 1438 -> 1344[label="",style="dashed", color="red", weight=0]; 1438[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1438 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1437[label="vyw102 /= GT",fontsize=16,color="black",shape="triangle"];1437 -> 1491[label="",style="solid", color="black", weight=3]; 1446[label="Left vyw4610 <= Left vyw4810",fontsize=16,color="black",shape="box"];1446 -> 1508[label="",style="solid", color="black", weight=3]; 1447[label="Left vyw4610 <= Right vyw4810",fontsize=16,color="black",shape="box"];1447 -> 1509[label="",style="solid", color="black", weight=3]; 1448[label="Right vyw4610 <= Left vyw4810",fontsize=16,color="black",shape="box"];1448 -> 1510[label="",style="solid", color="black", weight=3]; 1449[label="Right vyw4610 <= Right vyw4810",fontsize=16,color="black",shape="box"];1449 -> 1511[label="",style="solid", color="black", weight=3]; 1450[label="(vyw4610,vyw4611) <= (vyw4810,vyw4811)",fontsize=16,color="black",shape="box"];1450 -> 1512[label="",style="solid", color="black", weight=3]; 1439 -> 1350[label="",style="dashed", color="red", weight=0]; 1439[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1439 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1352[label="",style="dashed", color="red", weight=0]; 1440[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1440 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1451[label="False <= False",fontsize=16,color="black",shape="box"];1451 -> 1513[label="",style="solid", color="black", weight=3]; 1452[label="False <= True",fontsize=16,color="black",shape="box"];1452 -> 1514[label="",style="solid", color="black", weight=3]; 1453[label="True <= False",fontsize=16,color="black",shape="box"];1453 -> 1515[label="",style="solid", color="black", weight=3]; 1454[label="True <= True",fontsize=16,color="black",shape="box"];1454 -> 1516[label="",style="solid", color="black", weight=3]; 1441 -> 1356[label="",style="dashed", color="red", weight=0]; 1441[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1441 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1455[label="LT <= LT",fontsize=16,color="black",shape="box"];1455 -> 1517[label="",style="solid", color="black", weight=3]; 1456[label="LT <= EQ",fontsize=16,color="black",shape="box"];1456 -> 1518[label="",style="solid", color="black", weight=3]; 1457[label="LT <= GT",fontsize=16,color="black",shape="box"];1457 -> 1519[label="",style="solid", color="black", weight=3]; 1458[label="EQ <= LT",fontsize=16,color="black",shape="box"];1458 -> 1520[label="",style="solid", color="black", weight=3]; 1459[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1459 -> 1521[label="",style="solid", color="black", weight=3]; 1460[label="EQ <= GT",fontsize=16,color="black",shape="box"];1460 -> 1522[label="",style="solid", color="black", weight=3]; 1461[label="GT <= LT",fontsize=16,color="black",shape="box"];1461 -> 1523[label="",style="solid", color="black", weight=3]; 1462[label="GT <= EQ",fontsize=16,color="black",shape="box"];1462 -> 1524[label="",style="solid", color="black", weight=3]; 1463[label="GT <= GT",fontsize=16,color="black",shape="box"];1463 -> 1525[label="",style="solid", color="black", weight=3]; 1442 -> 1360[label="",style="dashed", color="red", weight=0]; 1442[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1442 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1362[label="",style="dashed", color="red", weight=0]; 1443[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1443 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1364[label="",style="dashed", color="red", weight=0]; 1444[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1444 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1464[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1464 -> 1526[label="",style="solid", color="black", weight=3]; 1465[label="Nothing <= Just vyw4810",fontsize=16,color="black",shape="box"];1465 -> 1527[label="",style="solid", color="black", weight=3]; 1466[label="Just vyw4610 <= Nothing",fontsize=16,color="black",shape="box"];1466 -> 1528[label="",style="solid", color="black", weight=3]; 1467[label="Just vyw4610 <= Just vyw4810",fontsize=16,color="black",shape="box"];1467 -> 1529[label="",style="solid", color="black", weight=3]; 1468[label="(vyw4610,vyw4611,vyw4612) <= (vyw4810,vyw4811,vyw4812)",fontsize=16,color="black",shape="box"];1468 -> 1530[label="",style="solid", color="black", weight=3]; 1445 -> 1370[label="",style="dashed", color="red", weight=0]; 1445[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1445 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1469[label="compare0 (vyw96,vyw97) (vyw98,vyw99) otherwise",fontsize=16,color="black",shape="box"];1469 -> 1531[label="",style="solid", color="black", weight=3]; 1470[label="LT",fontsize=16,color="green",shape="box"];1213 -> 916[label="",style="dashed", color="red", weight=0]; 1213[label="primMulNat vyw50100 (Succ vyw300000)",fontsize=16,color="magenta"];1213 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1212[label="primPlusNat vyw87 (Succ vyw300000)",fontsize=16,color="burlywood",shape="triangle"];2700[label="vyw87/Succ vyw870",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2700[label="",style="solid", color="burlywood", weight=9]; 2700 -> 1246[label="",style="solid", color="burlywood", weight=3]; 2701[label="vyw87/Zero",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2701[label="",style="solid", color="burlywood", weight=9]; 2701 -> 1247[label="",style="solid", color="burlywood", weight=3]; 1471[label="primCmpDouble (Double vyw4600 vyw4601) vyw480",fontsize=16,color="burlywood",shape="box"];2702[label="vyw4601/Pos vyw46010",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2702[label="",style="solid", color="burlywood", weight=9]; 2702 -> 1532[label="",style="solid", color="burlywood", weight=3]; 2703[label="vyw4601/Neg vyw46010",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2703[label="",style="solid", color="burlywood", weight=9]; 2703 -> 1533[label="",style="solid", color="burlywood", weight=3]; 1472 -> 1534[label="",style="dashed", color="red", weight=0]; 1472[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1472 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1180[label="",style="dashed", color="red", weight=0]; 1473[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1473 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1474[label="compare (vyw4600 : vyw4601) (vyw4800 : vyw4801)",fontsize=16,color="black",shape="box"];1474 -> 1539[label="",style="solid", color="black", weight=3]; 1475[label="compare (vyw4600 : vyw4601) []",fontsize=16,color="black",shape="box"];1475 -> 1540[label="",style="solid", color="black", weight=3]; 1476[label="compare [] (vyw4800 : vyw4801)",fontsize=16,color="black",shape="box"];1476 -> 1541[label="",style="solid", color="black", weight=3]; 1477[label="compare [] []",fontsize=16,color="black",shape="box"];1477 -> 1542[label="",style="solid", color="black", weight=3]; 1478[label="compare () ()",fontsize=16,color="black",shape="box"];1478 -> 1543[label="",style="solid", color="black", weight=3]; 1479 -> 1544[label="",style="dashed", color="red", weight=0]; 1479[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1479 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1480[label="primCmpInt (Pos vyw4600) vyw480",fontsize=16,color="burlywood",shape="box"];2704[label="vyw4600/Succ vyw46000",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2704[label="",style="solid", color="burlywood", weight=9]; 2704 -> 1546[label="",style="solid", color="burlywood", weight=3]; 2705[label="vyw4600/Zero",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2705[label="",style="solid", color="burlywood", weight=9]; 2705 -> 1547[label="",style="solid", color="burlywood", weight=3]; 1481[label="primCmpInt (Neg vyw4600) vyw480",fontsize=16,color="burlywood",shape="box"];2706[label="vyw4600/Succ vyw46000",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2706[label="",style="solid", color="burlywood", weight=9]; 2706 -> 1548[label="",style="solid", color="burlywood", weight=3]; 2707[label="vyw4600/Zero",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2707[label="",style="solid", color="burlywood", weight=9]; 2707 -> 1549[label="",style="solid", color="burlywood", weight=3]; 1482 -> 1550[label="",style="dashed", color="red", weight=0]; 1482[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1482 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1483[label="primCmpFloat (Float vyw4600 vyw4601) vyw480",fontsize=16,color="burlywood",shape="box"];2708[label="vyw4601/Pos vyw46010",fontsize=10,color="white",style="solid",shape="box"];1483 -> 2708[label="",style="solid", color="burlywood", weight=9]; 2708 -> 1552[label="",style="solid", color="burlywood", weight=3]; 2709[label="vyw4601/Neg vyw46010",fontsize=10,color="white",style="solid",shape="box"];1483 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 1553[label="",style="solid", color="burlywood", weight=3]; 1484[label="compare (vyw4600 :% vyw4601) (vyw4800 :% vyw4801)",fontsize=16,color="black",shape="box"];1484 -> 1554[label="",style="solid", color="black", weight=3]; 1485[label="compare (Integer vyw4600) (Integer vyw4800)",fontsize=16,color="black",shape="box"];1485 -> 1555[label="",style="solid", color="black", weight=3]; 1486 -> 1556[label="",style="dashed", color="red", weight=0]; 1486[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1486 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1558[label="",style="dashed", color="red", weight=0]; 1487[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1487 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1488[label="primCmpChar (Char vyw4600) vyw480",fontsize=16,color="burlywood",shape="box"];2710[label="vyw480/Char vyw4800",fontsize=10,color="white",style="solid",shape="box"];1488 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 1560[label="",style="solid", color="burlywood", weight=3]; 1489[label="vyw461",fontsize=16,color="green",shape="box"];1490[label="vyw481",fontsize=16,color="green",shape="box"];1491 -> 1561[label="",style="dashed", color="red", weight=0]; 1491[label="not (vyw102 == GT)",fontsize=16,color="magenta"];1491 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1508[label="vyw4610 <= vyw4810",fontsize=16,color="blue",shape="box"];2711[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2711[label="",style="solid", color="blue", weight=9]; 2711 -> 1563[label="",style="solid", color="blue", weight=3]; 2712[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2712[label="",style="solid", color="blue", weight=9]; 2712 -> 1564[label="",style="solid", color="blue", weight=3]; 2713[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2713[label="",style="solid", color="blue", weight=9]; 2713 -> 1565[label="",style="solid", color="blue", weight=3]; 2714[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2714[label="",style="solid", color="blue", weight=9]; 2714 -> 1566[label="",style="solid", color="blue", weight=3]; 2715[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2715[label="",style="solid", color="blue", weight=9]; 2715 -> 1567[label="",style="solid", color="blue", weight=3]; 2716[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2716[label="",style="solid", color="blue", weight=9]; 2716 -> 1568[label="",style="solid", color="blue", weight=3]; 2717[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2717[label="",style="solid", color="blue", weight=9]; 2717 -> 1569[label="",style="solid", color="blue", weight=3]; 2718[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2718[label="",style="solid", color="blue", weight=9]; 2718 -> 1570[label="",style="solid", color="blue", weight=3]; 2719[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2719[label="",style="solid", color="blue", weight=9]; 2719 -> 1571[label="",style="solid", color="blue", weight=3]; 2720[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2720[label="",style="solid", color="blue", weight=9]; 2720 -> 1572[label="",style="solid", color="blue", weight=3]; 2721[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2721[label="",style="solid", color="blue", weight=9]; 2721 -> 1573[label="",style="solid", color="blue", weight=3]; 2722[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2722[label="",style="solid", color="blue", weight=9]; 2722 -> 1574[label="",style="solid", color="blue", weight=3]; 2723[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2723[label="",style="solid", color="blue", weight=9]; 2723 -> 1575[label="",style="solid", color="blue", weight=3]; 2724[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2724[label="",style="solid", color="blue", weight=9]; 2724 -> 1576[label="",style="solid", color="blue", weight=3]; 1509[label="True",fontsize=16,color="green",shape="box"];1510[label="False",fontsize=16,color="green",shape="box"];1511[label="vyw4610 <= vyw4810",fontsize=16,color="blue",shape="box"];2725[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2725[label="",style="solid", color="blue", weight=9]; 2725 -> 1577[label="",style="solid", color="blue", weight=3]; 2726[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2726[label="",style="solid", color="blue", weight=9]; 2726 -> 1578[label="",style="solid", color="blue", weight=3]; 2727[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2727[label="",style="solid", color="blue", weight=9]; 2727 -> 1579[label="",style="solid", color="blue", weight=3]; 2728[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2728[label="",style="solid", color="blue", weight=9]; 2728 -> 1580[label="",style="solid", color="blue", weight=3]; 2729[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2729[label="",style="solid", color="blue", weight=9]; 2729 -> 1581[label="",style="solid", color="blue", weight=3]; 2730[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2730[label="",style="solid", color="blue", weight=9]; 2730 -> 1582[label="",style="solid", color="blue", weight=3]; 2731[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2731[label="",style="solid", color="blue", weight=9]; 2731 -> 1583[label="",style="solid", color="blue", weight=3]; 2732[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2732[label="",style="solid", color="blue", weight=9]; 2732 -> 1584[label="",style="solid", color="blue", weight=3]; 2733[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2733[label="",style="solid", color="blue", weight=9]; 2733 -> 1585[label="",style="solid", color="blue", weight=3]; 2734[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2734[label="",style="solid", color="blue", weight=9]; 2734 -> 1586[label="",style="solid", color="blue", weight=3]; 2735[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2735[label="",style="solid", color="blue", weight=9]; 2735 -> 1587[label="",style="solid", color="blue", weight=3]; 2736[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2736[label="",style="solid", color="blue", weight=9]; 2736 -> 1588[label="",style="solid", color="blue", weight=3]; 2737[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2737[label="",style="solid", color="blue", weight=9]; 2737 -> 1589[label="",style="solid", color="blue", weight=3]; 2738[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2738[label="",style="solid", color="blue", weight=9]; 2738 -> 1590[label="",style="solid", color="blue", weight=3]; 1512 -> 1714[label="",style="dashed", color="red", weight=0]; 1512[label="vyw4610 < vyw4810 || vyw4610 == vyw4810 && vyw4611 <= vyw4811",fontsize=16,color="magenta"];1512 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1492[label="vyw461",fontsize=16,color="green",shape="box"];1493[label="vyw481",fontsize=16,color="green",shape="box"];1494[label="vyw461",fontsize=16,color="green",shape="box"];1495[label="vyw481",fontsize=16,color="green",shape="box"];1513[label="True",fontsize=16,color="green",shape="box"];1514[label="True",fontsize=16,color="green",shape="box"];1515[label="False",fontsize=16,color="green",shape="box"];1516[label="True",fontsize=16,color="green",shape="box"];1496[label="vyw461",fontsize=16,color="green",shape="box"];1497[label="vyw481",fontsize=16,color="green",shape="box"];1517[label="True",fontsize=16,color="green",shape="box"];1518[label="True",fontsize=16,color="green",shape="box"];1519[label="True",fontsize=16,color="green",shape="box"];1520[label="False",fontsize=16,color="green",shape="box"];1521[label="True",fontsize=16,color="green",shape="box"];1522[label="True",fontsize=16,color="green",shape="box"];1523[label="False",fontsize=16,color="green",shape="box"];1524[label="False",fontsize=16,color="green",shape="box"];1525[label="True",fontsize=16,color="green",shape="box"];1498[label="vyw461",fontsize=16,color="green",shape="box"];1499[label="vyw481",fontsize=16,color="green",shape="box"];1500[label="vyw461",fontsize=16,color="green",shape="box"];1501[label="vyw481",fontsize=16,color="green",shape="box"];1502[label="vyw461",fontsize=16,color="green",shape="box"];1503[label="vyw481",fontsize=16,color="green",shape="box"];1526[label="True",fontsize=16,color="green",shape="box"];1527[label="True",fontsize=16,color="green",shape="box"];1528[label="False",fontsize=16,color="green",shape="box"];1529[label="vyw4610 <= vyw4810",fontsize=16,color="blue",shape="box"];2739[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2739[label="",style="solid", color="blue", weight=9]; 2739 -> 1596[label="",style="solid", color="blue", weight=3]; 2740[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2740[label="",style="solid", color="blue", weight=9]; 2740 -> 1597[label="",style="solid", color="blue", weight=3]; 2741[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2741[label="",style="solid", color="blue", weight=9]; 2741 -> 1598[label="",style="solid", color="blue", weight=3]; 2742[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2742[label="",style="solid", color="blue", weight=9]; 2742 -> 1599[label="",style="solid", color="blue", weight=3]; 2743[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2743[label="",style="solid", color="blue", weight=9]; 2743 -> 1600[label="",style="solid", color="blue", weight=3]; 2744[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2744[label="",style="solid", color="blue", weight=9]; 2744 -> 1601[label="",style="solid", color="blue", weight=3]; 2745[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2745[label="",style="solid", color="blue", weight=9]; 2745 -> 1602[label="",style="solid", color="blue", weight=3]; 2746[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2746[label="",style="solid", color="blue", weight=9]; 2746 -> 1603[label="",style="solid", color="blue", weight=3]; 2747[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2747[label="",style="solid", color="blue", weight=9]; 2747 -> 1604[label="",style="solid", color="blue", weight=3]; 2748[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2748[label="",style="solid", color="blue", weight=9]; 2748 -> 1605[label="",style="solid", color="blue", weight=3]; 2749[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2749[label="",style="solid", color="blue", weight=9]; 2749 -> 1606[label="",style="solid", color="blue", weight=3]; 2750[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2750[label="",style="solid", color="blue", weight=9]; 2750 -> 1607[label="",style="solid", color="blue", weight=3]; 2751[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2751[label="",style="solid", color="blue", weight=9]; 2751 -> 1608[label="",style="solid", color="blue", weight=3]; 2752[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2752[label="",style="solid", color="blue", weight=9]; 2752 -> 1609[label="",style="solid", color="blue", weight=3]; 1530 -> 1714[label="",style="dashed", color="red", weight=0]; 1530[label="vyw4610 < vyw4810 || vyw4610 == vyw4810 && (vyw4611 < vyw4811 || vyw4611 == vyw4811 && vyw4612 <= vyw4812)",fontsize=16,color="magenta"];1530 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1504[label="vyw461",fontsize=16,color="green",shape="box"];1505[label="vyw481",fontsize=16,color="green",shape="box"];1531[label="compare0 (vyw96,vyw97) (vyw98,vyw99) True",fontsize=16,color="black",shape="box"];1531 -> 1610[label="",style="solid", color="black", weight=3]; 1244[label="Succ vyw300000",fontsize=16,color="green",shape="box"];1245[label="vyw50100",fontsize=16,color="green",shape="box"];1246[label="primPlusNat (Succ vyw870) (Succ vyw300000)",fontsize=16,color="black",shape="box"];1246 -> 1249[label="",style="solid", color="black", weight=3]; 1247[label="primPlusNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];1247 -> 1250[label="",style="solid", color="black", weight=3]; 1532[label="primCmpDouble (Double vyw4600 (Pos vyw46010)) vyw480",fontsize=16,color="burlywood",shape="box"];2753[label="vyw480/Double vyw4800 vyw4801",fontsize=10,color="white",style="solid",shape="box"];1532 -> 2753[label="",style="solid", color="burlywood", weight=9]; 2753 -> 1611[label="",style="solid", color="burlywood", weight=3]; 1533[label="primCmpDouble (Double vyw4600 (Neg vyw46010)) vyw480",fontsize=16,color="burlywood",shape="box"];2754[label="vyw480/Double vyw4800 vyw4801",fontsize=10,color="white",style="solid",shape="box"];1533 -> 2754[label="",style="solid", color="burlywood", weight=9]; 2754 -> 1612[label="",style="solid", color="burlywood", weight=3]; 1535 -> 138[label="",style="dashed", color="red", weight=0]; 1535[label="vyw460 == vyw480",fontsize=16,color="magenta"];1535 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1534[label="compare2 vyw460 vyw480 vyw103",fontsize=16,color="burlywood",shape="triangle"];2755[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];1534 -> 2755[label="",style="solid", color="burlywood", weight=9]; 2755 -> 1615[label="",style="solid", color="burlywood", weight=3]; 2756[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];1534 -> 2756[label="",style="solid", color="burlywood", weight=9]; 2756 -> 1616[label="",style="solid", color="burlywood", weight=3]; 1536[label="vyw480",fontsize=16,color="green",shape="box"];1537 -> 128[label="",style="dashed", color="red", weight=0]; 1537[label="vyw460 == vyw480",fontsize=16,color="magenta"];1537 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1538[label="vyw460",fontsize=16,color="green",shape="box"];1539 -> 1619[label="",style="dashed", color="red", weight=0]; 1539[label="primCompAux vyw4600 vyw4800 (compare vyw4601 vyw4801)",fontsize=16,color="magenta"];1539 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1540[label="GT",fontsize=16,color="green",shape="box"];1541[label="LT",fontsize=16,color="green",shape="box"];1542[label="EQ",fontsize=16,color="green",shape="box"];1543[label="EQ",fontsize=16,color="green",shape="box"];1545 -> 136[label="",style="dashed", color="red", weight=0]; 1545[label="vyw460 == vyw480",fontsize=16,color="magenta"];1545 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1544[label="compare2 vyw460 vyw480 vyw104",fontsize=16,color="burlywood",shape="triangle"];2757[label="vyw104/False",fontsize=10,color="white",style="solid",shape="box"];1544 -> 2757[label="",style="solid", color="burlywood", weight=9]; 2757 -> 1623[label="",style="solid", color="burlywood", weight=3]; 2758[label="vyw104/True",fontsize=10,color="white",style="solid",shape="box"];1544 -> 2758[label="",style="solid", color="burlywood", weight=9]; 2758 -> 1624[label="",style="solid", color="burlywood", weight=3]; 1546[label="primCmpInt (Pos (Succ vyw46000)) vyw480",fontsize=16,color="burlywood",shape="box"];2759[label="vyw480/Pos vyw4800",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2759[label="",style="solid", color="burlywood", weight=9]; 2759 -> 1625[label="",style="solid", color="burlywood", weight=3]; 2760[label="vyw480/Neg vyw4800",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2760[label="",style="solid", color="burlywood", weight=9]; 2760 -> 1626[label="",style="solid", color="burlywood", weight=3]; 1547[label="primCmpInt (Pos Zero) vyw480",fontsize=16,color="burlywood",shape="box"];2761[label="vyw480/Pos vyw4800",fontsize=10,color="white",style="solid",shape="box"];1547 -> 2761[label="",style="solid", color="burlywood", weight=9]; 2761 -> 1627[label="",style="solid", color="burlywood", weight=3]; 2762[label="vyw480/Neg vyw4800",fontsize=10,color="white",style="solid",shape="box"];1547 -> 2762[label="",style="solid", color="burlywood", weight=9]; 2762 -> 1628[label="",style="solid", color="burlywood", weight=3]; 1548[label="primCmpInt (Neg (Succ vyw46000)) vyw480",fontsize=16,color="burlywood",shape="box"];2763[label="vyw480/Pos vyw4800",fontsize=10,color="white",style="solid",shape="box"];1548 -> 2763[label="",style="solid", color="burlywood", weight=9]; 2763 -> 1629[label="",style="solid", color="burlywood", weight=3]; 2764[label="vyw480/Neg vyw4800",fontsize=10,color="white",style="solid",shape="box"];1548 -> 2764[label="",style="solid", color="burlywood", weight=9]; 2764 -> 1630[label="",style="solid", color="burlywood", weight=3]; 1549[label="primCmpInt (Neg Zero) vyw480",fontsize=16,color="burlywood",shape="box"];2765[label="vyw480/Pos vyw4800",fontsize=10,color="white",style="solid",shape="box"];1549 -> 2765[label="",style="solid", color="burlywood", weight=9]; 2765 -> 1631[label="",style="solid", color="burlywood", weight=3]; 2766[label="vyw480/Neg vyw4800",fontsize=10,color="white",style="solid",shape="box"];1549 -> 2766[label="",style="solid", color="burlywood", weight=9]; 2766 -> 1632[label="",style="solid", color="burlywood", weight=3]; 1551 -> 139[label="",style="dashed", color="red", weight=0]; 1551[label="vyw460 == vyw480",fontsize=16,color="magenta"];1551 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1550[label="compare2 vyw460 vyw480 vyw105",fontsize=16,color="burlywood",shape="triangle"];2767[label="vyw105/False",fontsize=10,color="white",style="solid",shape="box"];1550 -> 2767[label="",style="solid", color="burlywood", weight=9]; 2767 -> 1635[label="",style="solid", color="burlywood", weight=3]; 2768[label="vyw105/True",fontsize=10,color="white",style="solid",shape="box"];1550 -> 2768[label="",style="solid", color="burlywood", weight=9]; 2768 -> 1636[label="",style="solid", color="burlywood", weight=3]; 1552[label="primCmpFloat (Float vyw4600 (Pos vyw46010)) vyw480",fontsize=16,color="burlywood",shape="box"];2769[label="vyw480/Float vyw4800 vyw4801",fontsize=10,color="white",style="solid",shape="box"];1552 -> 2769[label="",style="solid", color="burlywood", weight=9]; 2769 -> 1637[label="",style="solid", color="burlywood", weight=3]; 1553[label="primCmpFloat (Float vyw4600 (Neg vyw46010)) vyw480",fontsize=16,color="burlywood",shape="box"];2770[label="vyw480/Float vyw4800 vyw4801",fontsize=10,color="white",style="solid",shape="box"];1553 -> 2770[label="",style="solid", color="burlywood", weight=9]; 2770 -> 1638[label="",style="solid", color="burlywood", weight=3]; 1554[label="compare (vyw4600 * vyw4801) (vyw4800 * vyw4601)",fontsize=16,color="blue",shape="box"];2771[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1554 -> 2771[label="",style="solid", color="blue", weight=9]; 2771 -> 1639[label="",style="solid", color="blue", weight=3]; 2772[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1554 -> 2772[label="",style="solid", color="blue", weight=9]; 2772 -> 1640[label="",style="solid", color="blue", weight=3]; 1555 -> 1429[label="",style="dashed", color="red", weight=0]; 1555[label="primCmpInt vyw4600 vyw4800",fontsize=16,color="magenta"];1555 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1557 -> 129[label="",style="dashed", color="red", weight=0]; 1557[label="vyw460 == vyw480",fontsize=16,color="magenta"];1557 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1556[label="compare2 vyw460 vyw480 vyw106",fontsize=16,color="burlywood",shape="triangle"];2773[label="vyw106/False",fontsize=10,color="white",style="solid",shape="box"];1556 -> 2773[label="",style="solid", color="burlywood", weight=9]; 2773 -> 1645[label="",style="solid", color="burlywood", weight=3]; 2774[label="vyw106/True",fontsize=10,color="white",style="solid",shape="box"];1556 -> 2774[label="",style="solid", color="burlywood", weight=9]; 2774 -> 1646[label="",style="solid", color="burlywood", weight=3]; 1559 -> 126[label="",style="dashed", color="red", weight=0]; 1559[label="vyw460 == vyw480",fontsize=16,color="magenta"];1559 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1558[label="compare2 vyw460 vyw480 vyw107",fontsize=16,color="burlywood",shape="triangle"];2775[label="vyw107/False",fontsize=10,color="white",style="solid",shape="box"];1558 -> 2775[label="",style="solid", color="burlywood", weight=9]; 2775 -> 1649[label="",style="solid", color="burlywood", weight=3]; 2776[label="vyw107/True",fontsize=10,color="white",style="solid",shape="box"];1558 -> 2776[label="",style="solid", color="burlywood", weight=9]; 2776 -> 1650[label="",style="solid", color="burlywood", weight=3]; 1560[label="primCmpChar (Char vyw4600) (Char vyw4800)",fontsize=16,color="black",shape="box"];1560 -> 1651[label="",style="solid", color="black", weight=3]; 1562 -> 139[label="",style="dashed", color="red", weight=0]; 1562[label="vyw102 == GT",fontsize=16,color="magenta"];1562 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1561[label="not vyw108",fontsize=16,color="burlywood",shape="triangle"];2777[label="vyw108/False",fontsize=10,color="white",style="solid",shape="box"];1561 -> 2777[label="",style="solid", color="burlywood", weight=9]; 2777 -> 1654[label="",style="solid", color="burlywood", weight=3]; 2778[label="vyw108/True",fontsize=10,color="white",style="solid",shape="box"];1561 -> 2778[label="",style="solid", color="burlywood", weight=9]; 2778 -> 1655[label="",style="solid", color="burlywood", weight=3]; 1563 -> 1323[label="",style="dashed", color="red", weight=0]; 1563[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1563 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1324[label="",style="dashed", color="red", weight=0]; 1564[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1564 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1325[label="",style="dashed", color="red", weight=0]; 1565[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1565 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1326[label="",style="dashed", color="red", weight=0]; 1566[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1566 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1327[label="",style="dashed", color="red", weight=0]; 1567[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1567 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1328[label="",style="dashed", color="red", weight=0]; 1568[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1568 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1329[label="",style="dashed", color="red", weight=0]; 1569[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1569 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1330[label="",style="dashed", color="red", weight=0]; 1570[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1570 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1331[label="",style="dashed", color="red", weight=0]; 1571[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1571 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1332[label="",style="dashed", color="red", weight=0]; 1572[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1572 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1333[label="",style="dashed", color="red", weight=0]; 1573[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1573 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1334[label="",style="dashed", color="red", weight=0]; 1574[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1574 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1335[label="",style="dashed", color="red", weight=0]; 1575[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1575 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1336[label="",style="dashed", color="red", weight=0]; 1576[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1576 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1323[label="",style="dashed", color="red", weight=0]; 1577[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1577 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1324[label="",style="dashed", color="red", weight=0]; 1578[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1578 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1325[label="",style="dashed", color="red", weight=0]; 1579[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1579 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1326[label="",style="dashed", color="red", weight=0]; 1580[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1580 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1327[label="",style="dashed", color="red", weight=0]; 1581[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1581 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1328[label="",style="dashed", color="red", weight=0]; 1582[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1582 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1329[label="",style="dashed", color="red", weight=0]; 1583[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1583 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1330[label="",style="dashed", color="red", weight=0]; 1584[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1584 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1331[label="",style="dashed", color="red", weight=0]; 1585[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1585 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1332[label="",style="dashed", color="red", weight=0]; 1586[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1586 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1333[label="",style="dashed", color="red", weight=0]; 1587[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1587 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1334[label="",style="dashed", color="red", weight=0]; 1588[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1588 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1335[label="",style="dashed", color="red", weight=0]; 1589[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1589 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1336[label="",style="dashed", color="red", weight=0]; 1590[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1590 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1715[label="vyw4610 < vyw4810",fontsize=16,color="blue",shape="box"];2779[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2779[label="",style="solid", color="blue", weight=9]; 2779 -> 1721[label="",style="solid", color="blue", weight=3]; 2780[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2780[label="",style="solid", color="blue", weight=9]; 2780 -> 1722[label="",style="solid", color="blue", weight=3]; 2781[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2781[label="",style="solid", color="blue", weight=9]; 2781 -> 1723[label="",style="solid", color="blue", weight=3]; 2782[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2782[label="",style="solid", color="blue", weight=9]; 2782 -> 1724[label="",style="solid", color="blue", weight=3]; 2783[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2783[label="",style="solid", color="blue", weight=9]; 2783 -> 1725[label="",style="solid", color="blue", weight=3]; 2784[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2784[label="",style="solid", color="blue", weight=9]; 2784 -> 1726[label="",style="solid", color="blue", weight=3]; 2785[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2785[label="",style="solid", color="blue", weight=9]; 2785 -> 1727[label="",style="solid", color="blue", weight=3]; 2786[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2786[label="",style="solid", color="blue", weight=9]; 2786 -> 1728[label="",style="solid", color="blue", weight=3]; 2787[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2787[label="",style="solid", color="blue", weight=9]; 2787 -> 1729[label="",style="solid", color="blue", weight=3]; 2788[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2788[label="",style="solid", color="blue", weight=9]; 2788 -> 1730[label="",style="solid", color="blue", weight=3]; 2789[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2789[label="",style="solid", color="blue", weight=9]; 2789 -> 1731[label="",style="solid", color="blue", weight=3]; 2790[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2790[label="",style="solid", color="blue", weight=9]; 2790 -> 1732[label="",style="solid", color="blue", weight=3]; 2791[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2791[label="",style="solid", color="blue", weight=9]; 2791 -> 1733[label="",style="solid", color="blue", weight=3]; 2792[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2792[label="",style="solid", color="blue", weight=9]; 2792 -> 1734[label="",style="solid", color="blue", weight=3]; 1716 -> 364[label="",style="dashed", color="red", weight=0]; 1716[label="vyw4610 == vyw4810 && vyw4611 <= vyw4811",fontsize=16,color="magenta"];1716 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1716 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1714[label="vyw114 || vyw115",fontsize=16,color="burlywood",shape="triangle"];2793[label="vyw114/False",fontsize=10,color="white",style="solid",shape="box"];1714 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 1737[label="",style="solid", color="burlywood", weight=3]; 2794[label="vyw114/True",fontsize=10,color="white",style="solid",shape="box"];1714 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 1738[label="",style="solid", color="burlywood", weight=3]; 1596 -> 1323[label="",style="dashed", color="red", weight=0]; 1596[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1596 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1324[label="",style="dashed", color="red", weight=0]; 1597[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1597 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1325[label="",style="dashed", color="red", weight=0]; 1598[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1598 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1326[label="",style="dashed", color="red", weight=0]; 1599[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1599 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1327[label="",style="dashed", color="red", weight=0]; 1600[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1600 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1328[label="",style="dashed", color="red", weight=0]; 1601[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1601 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1329[label="",style="dashed", color="red", weight=0]; 1602[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1602 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1330[label="",style="dashed", color="red", weight=0]; 1603[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1603 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1331[label="",style="dashed", color="red", weight=0]; 1604[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1604 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1332[label="",style="dashed", color="red", weight=0]; 1605[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1605 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1333[label="",style="dashed", color="red", weight=0]; 1606[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1606 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1334[label="",style="dashed", color="red", weight=0]; 1607[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1607 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1335[label="",style="dashed", color="red", weight=0]; 1608[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1608 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1336[label="",style="dashed", color="red", weight=0]; 1609[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1609 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1717[label="vyw4610 < vyw4810",fontsize=16,color="blue",shape="box"];2795[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2795[label="",style="solid", color="blue", weight=9]; 2795 -> 1767[label="",style="solid", color="blue", weight=3]; 2796[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2796[label="",style="solid", color="blue", weight=9]; 2796 -> 1768[label="",style="solid", color="blue", weight=3]; 2797[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2797[label="",style="solid", color="blue", weight=9]; 2797 -> 1769[label="",style="solid", color="blue", weight=3]; 2798[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2798[label="",style="solid", color="blue", weight=9]; 2798 -> 1770[label="",style="solid", color="blue", weight=3]; 2799[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2799[label="",style="solid", color="blue", weight=9]; 2799 -> 1771[label="",style="solid", color="blue", weight=3]; 2800[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2800[label="",style="solid", color="blue", weight=9]; 2800 -> 1772[label="",style="solid", color="blue", weight=3]; 2801[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2801[label="",style="solid", color="blue", weight=9]; 2801 -> 1773[label="",style="solid", color="blue", weight=3]; 2802[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2802[label="",style="solid", color="blue", weight=9]; 2802 -> 1774[label="",style="solid", color="blue", weight=3]; 2803[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2803[label="",style="solid", color="blue", weight=9]; 2803 -> 1775[label="",style="solid", color="blue", weight=3]; 2804[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2804[label="",style="solid", color="blue", weight=9]; 2804 -> 1776[label="",style="solid", color="blue", weight=3]; 2805[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2805[label="",style="solid", color="blue", weight=9]; 2805 -> 1777[label="",style="solid", color="blue", weight=3]; 2806[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 1778[label="",style="solid", color="blue", weight=3]; 2807[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 1779[label="",style="solid", color="blue", weight=3]; 2808[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2808[label="",style="solid", color="blue", weight=9]; 2808 -> 1780[label="",style="solid", color="blue", weight=3]; 1718 -> 364[label="",style="dashed", color="red", weight=0]; 1718[label="vyw4610 == vyw4810 && (vyw4611 < vyw4811 || vyw4611 == vyw4811 && vyw4612 <= vyw4812)",fontsize=16,color="magenta"];1718 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1718 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1610[label="GT",fontsize=16,color="green",shape="box"];1249[label="Succ (Succ (primPlusNat vyw870 vyw300000))",fontsize=16,color="green",shape="box"];1249 -> 1252[label="",style="dashed", color="green", weight=3]; 1250[label="Succ vyw300000",fontsize=16,color="green",shape="box"];1611[label="primCmpDouble (Double vyw4600 (Pos vyw46010)) (Double vyw4800 vyw4801)",fontsize=16,color="burlywood",shape="box"];2809[label="vyw4801/Pos vyw48010",fontsize=10,color="white",style="solid",shape="box"];1611 -> 2809[label="",style="solid", color="burlywood", weight=9]; 2809 -> 1783[label="",style="solid", color="burlywood", weight=3]; 2810[label="vyw4801/Neg vyw48010",fontsize=10,color="white",style="solid",shape="box"];1611 -> 2810[label="",style="solid", color="burlywood", weight=9]; 2810 -> 1784[label="",style="solid", color="burlywood", weight=3]; 1612[label="primCmpDouble (Double vyw4600 (Neg vyw46010)) (Double vyw4800 vyw4801)",fontsize=16,color="burlywood",shape="box"];2811[label="vyw4801/Pos vyw48010",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2811[label="",style="solid", color="burlywood", weight=9]; 2811 -> 1785[label="",style="solid", color="burlywood", weight=3]; 2812[label="vyw4801/Neg vyw48010",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2812[label="",style="solid", color="burlywood", weight=9]; 2812 -> 1786[label="",style="solid", color="burlywood", weight=3]; 1613[label="vyw480",fontsize=16,color="green",shape="box"];1614[label="vyw460",fontsize=16,color="green",shape="box"];1615[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1615 -> 1787[label="",style="solid", color="black", weight=3]; 1616[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1616 -> 1788[label="",style="solid", color="black", weight=3]; 1617[label="vyw480",fontsize=16,color="green",shape="box"];1618[label="vyw460",fontsize=16,color="green",shape="box"];1620 -> 1350[label="",style="dashed", color="red", weight=0]; 1620[label="compare vyw4601 vyw4801",fontsize=16,color="magenta"];1620 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1619[label="primCompAux vyw4600 vyw4800 vyw110",fontsize=16,color="black",shape="triangle"];1619 -> 1791[label="",style="solid", color="black", weight=3]; 1621[label="vyw480",fontsize=16,color="green",shape="box"];1622[label="vyw460",fontsize=16,color="green",shape="box"];1623[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1623 -> 1792[label="",style="solid", color="black", weight=3]; 1624[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1624 -> 1793[label="",style="solid", color="black", weight=3]; 1625[label="primCmpInt (Pos (Succ vyw46000)) (Pos vyw4800)",fontsize=16,color="black",shape="box"];1625 -> 1794[label="",style="solid", color="black", weight=3]; 1626[label="primCmpInt (Pos (Succ vyw46000)) (Neg vyw4800)",fontsize=16,color="black",shape="box"];1626 -> 1795[label="",style="solid", color="black", weight=3]; 1627[label="primCmpInt (Pos Zero) (Pos vyw4800)",fontsize=16,color="burlywood",shape="box"];2813[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2813[label="",style="solid", color="burlywood", weight=9]; 2813 -> 1796[label="",style="solid", color="burlywood", weight=3]; 2814[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2814[label="",style="solid", color="burlywood", weight=9]; 2814 -> 1797[label="",style="solid", color="burlywood", weight=3]; 1628[label="primCmpInt (Pos Zero) (Neg vyw4800)",fontsize=16,color="burlywood",shape="box"];2815[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2815[label="",style="solid", color="burlywood", weight=9]; 2815 -> 1798[label="",style="solid", color="burlywood", weight=3]; 2816[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1628 -> 2816[label="",style="solid", color="burlywood", weight=9]; 2816 -> 1799[label="",style="solid", color="burlywood", weight=3]; 1629[label="primCmpInt (Neg (Succ vyw46000)) (Pos vyw4800)",fontsize=16,color="black",shape="box"];1629 -> 1800[label="",style="solid", color="black", weight=3]; 1630[label="primCmpInt (Neg (Succ vyw46000)) (Neg vyw4800)",fontsize=16,color="black",shape="box"];1630 -> 1801[label="",style="solid", color="black", weight=3]; 1631[label="primCmpInt (Neg Zero) (Pos vyw4800)",fontsize=16,color="burlywood",shape="box"];2817[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1631 -> 2817[label="",style="solid", color="burlywood", weight=9]; 2817 -> 1802[label="",style="solid", color="burlywood", weight=3]; 2818[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1631 -> 2818[label="",style="solid", color="burlywood", weight=9]; 2818 -> 1803[label="",style="solid", color="burlywood", weight=3]; 1632[label="primCmpInt (Neg Zero) (Neg vyw4800)",fontsize=16,color="burlywood",shape="box"];2819[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1632 -> 2819[label="",style="solid", color="burlywood", weight=9]; 2819 -> 1804[label="",style="solid", color="burlywood", weight=3]; 2820[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1632 -> 2820[label="",style="solid", color="burlywood", weight=9]; 2820 -> 1805[label="",style="solid", color="burlywood", weight=3]; 1633[label="vyw480",fontsize=16,color="green",shape="box"];1634[label="vyw460",fontsize=16,color="green",shape="box"];1635[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1635 -> 1806[label="",style="solid", color="black", weight=3]; 1636[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1636 -> 1807[label="",style="solid", color="black", weight=3]; 1637[label="primCmpFloat (Float vyw4600 (Pos vyw46010)) (Float vyw4800 vyw4801)",fontsize=16,color="burlywood",shape="box"];2821[label="vyw4801/Pos vyw48010",fontsize=10,color="white",style="solid",shape="box"];1637 -> 2821[label="",style="solid", color="burlywood", weight=9]; 2821 -> 1808[label="",style="solid", color="burlywood", weight=3]; 2822[label="vyw4801/Neg vyw48010",fontsize=10,color="white",style="solid",shape="box"];1637 -> 2822[label="",style="solid", color="burlywood", weight=9]; 2822 -> 1809[label="",style="solid", color="burlywood", weight=3]; 1638[label="primCmpFloat (Float vyw4600 (Neg vyw46010)) (Float vyw4800 vyw4801)",fontsize=16,color="burlywood",shape="box"];2823[label="vyw4801/Pos vyw48010",fontsize=10,color="white",style="solid",shape="box"];1638 -> 2823[label="",style="solid", color="burlywood", weight=9]; 2823 -> 1810[label="",style="solid", color="burlywood", weight=3]; 2824[label="vyw4801/Neg vyw48010",fontsize=10,color="white",style="solid",shape="box"];1638 -> 2824[label="",style="solid", color="burlywood", weight=9]; 2824 -> 1811[label="",style="solid", color="burlywood", weight=3]; 1639 -> 1356[label="",style="dashed", color="red", weight=0]; 1639[label="compare (vyw4600 * vyw4801) (vyw4800 * vyw4601)",fontsize=16,color="magenta"];1639 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1364[label="",style="dashed", color="red", weight=0]; 1640[label="compare (vyw4600 * vyw4801) (vyw4800 * vyw4601)",fontsize=16,color="magenta"];1640 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1641[label="vyw4600",fontsize=16,color="green",shape="box"];1642[label="vyw4800",fontsize=16,color="green",shape="box"];1643[label="vyw480",fontsize=16,color="green",shape="box"];1644[label="vyw460",fontsize=16,color="green",shape="box"];1645[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1645 -> 1816[label="",style="solid", color="black", weight=3]; 1646[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1646 -> 1817[label="",style="solid", color="black", weight=3]; 1647[label="vyw480",fontsize=16,color="green",shape="box"];1648[label="vyw460",fontsize=16,color="green",shape="box"];1649[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1649 -> 1818[label="",style="solid", color="black", weight=3]; 1650[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1650 -> 1819[label="",style="solid", color="black", weight=3]; 1651[label="primCmpNat vyw4600 vyw4800",fontsize=16,color="burlywood",shape="triangle"];2825[label="vyw4600/Succ vyw46000",fontsize=10,color="white",style="solid",shape="box"];1651 -> 2825[label="",style="solid", color="burlywood", weight=9]; 2825 -> 1820[label="",style="solid", color="burlywood", weight=3]; 2826[label="vyw4600/Zero",fontsize=10,color="white",style="solid",shape="box"];1651 -> 2826[label="",style="solid", color="burlywood", weight=9]; 2826 -> 1821[label="",style="solid", color="burlywood", weight=3]; 1652[label="GT",fontsize=16,color="green",shape="box"];1653[label="vyw102",fontsize=16,color="green",shape="box"];1654[label="not False",fontsize=16,color="black",shape="box"];1654 -> 1822[label="",style="solid", color="black", weight=3]; 1655[label="not True",fontsize=16,color="black",shape="box"];1655 -> 1823[label="",style="solid", color="black", weight=3]; 1656[label="vyw4610",fontsize=16,color="green",shape="box"];1657[label="vyw4810",fontsize=16,color="green",shape="box"];1658[label="vyw4610",fontsize=16,color="green",shape="box"];1659[label="vyw4810",fontsize=16,color="green",shape="box"];1660[label="vyw4610",fontsize=16,color="green",shape="box"];1661[label="vyw4810",fontsize=16,color="green",shape="box"];1662[label="vyw4610",fontsize=16,color="green",shape="box"];1663[label="vyw4810",fontsize=16,color="green",shape="box"];1664[label="vyw4610",fontsize=16,color="green",shape="box"];1665[label="vyw4810",fontsize=16,color="green",shape="box"];1666[label="vyw4610",fontsize=16,color="green",shape="box"];1667[label="vyw4810",fontsize=16,color="green",shape="box"];1668[label="vyw4610",fontsize=16,color="green",shape="box"];1669[label="vyw4810",fontsize=16,color="green",shape="box"];1670[label="vyw4610",fontsize=16,color="green",shape="box"];1671[label="vyw4810",fontsize=16,color="green",shape="box"];1672[label="vyw4610",fontsize=16,color="green",shape="box"];1673[label="vyw4810",fontsize=16,color="green",shape="box"];1674[label="vyw4610",fontsize=16,color="green",shape="box"];1675[label="vyw4810",fontsize=16,color="green",shape="box"];1676[label="vyw4610",fontsize=16,color="green",shape="box"];1677[label="vyw4810",fontsize=16,color="green",shape="box"];1678[label="vyw4610",fontsize=16,color="green",shape="box"];1679[label="vyw4810",fontsize=16,color="green",shape="box"];1680[label="vyw4610",fontsize=16,color="green",shape="box"];1681[label="vyw4810",fontsize=16,color="green",shape="box"];1682[label="vyw4610",fontsize=16,color="green",shape="box"];1683[label="vyw4810",fontsize=16,color="green",shape="box"];1684[label="vyw4610",fontsize=16,color="green",shape="box"];1685[label="vyw4810",fontsize=16,color="green",shape="box"];1686[label="vyw4610",fontsize=16,color="green",shape="box"];1687[label="vyw4810",fontsize=16,color="green",shape="box"];1688[label="vyw4610",fontsize=16,color="green",shape="box"];1689[label="vyw4810",fontsize=16,color="green",shape="box"];1690[label="vyw4610",fontsize=16,color="green",shape="box"];1691[label="vyw4810",fontsize=16,color="green",shape="box"];1692[label="vyw4610",fontsize=16,color="green",shape="box"];1693[label="vyw4810",fontsize=16,color="green",shape="box"];1694[label="vyw4610",fontsize=16,color="green",shape="box"];1695[label="vyw4810",fontsize=16,color="green",shape="box"];1696[label="vyw4610",fontsize=16,color="green",shape="box"];1697[label="vyw4810",fontsize=16,color="green",shape="box"];1698[label="vyw4610",fontsize=16,color="green",shape="box"];1699[label="vyw4810",fontsize=16,color="green",shape="box"];1700[label="vyw4610",fontsize=16,color="green",shape="box"];1701[label="vyw4810",fontsize=16,color="green",shape="box"];1702[label="vyw4610",fontsize=16,color="green",shape="box"];1703[label="vyw4810",fontsize=16,color="green",shape="box"];1704[label="vyw4610",fontsize=16,color="green",shape="box"];1705[label="vyw4810",fontsize=16,color="green",shape="box"];1706[label="vyw4610",fontsize=16,color="green",shape="box"];1707[label="vyw4810",fontsize=16,color="green",shape="box"];1708[label="vyw4610",fontsize=16,color="green",shape="box"];1709[label="vyw4810",fontsize=16,color="green",shape="box"];1710[label="vyw4610",fontsize=16,color="green",shape="box"];1711[label="vyw4810",fontsize=16,color="green",shape="box"];1721 -> 1273[label="",style="dashed", color="red", weight=0]; 1721[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1721 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1721 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1722 -> 1274[label="",style="dashed", color="red", weight=0]; 1722[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1722 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1722 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1723 -> 1275[label="",style="dashed", color="red", weight=0]; 1723[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1723 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1723 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1276[label="",style="dashed", color="red", weight=0]; 1724[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1724 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1277[label="",style="dashed", color="red", weight=0]; 1725[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1725 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1726 -> 1278[label="",style="dashed", color="red", weight=0]; 1726[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1726 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1726 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1727 -> 1279[label="",style="dashed", color="red", weight=0]; 1727[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1727 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1727 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1728 -> 1280[label="",style="dashed", color="red", weight=0]; 1728[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1728 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1728 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1729 -> 1281[label="",style="dashed", color="red", weight=0]; 1729[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1729 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1729 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1730 -> 1282[label="",style="dashed", color="red", weight=0]; 1730[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1730 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1730 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1731 -> 1283[label="",style="dashed", color="red", weight=0]; 1731[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1731 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1731 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1284[label="",style="dashed", color="red", weight=0]; 1732[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1732 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1285[label="",style="dashed", color="red", weight=0]; 1733[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1733 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1286[label="",style="dashed", color="red", weight=0]; 1734[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1734 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1735[label="vyw4610 == vyw4810",fontsize=16,color="blue",shape="box"];2827[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2827[label="",style="solid", color="blue", weight=9]; 2827 -> 1852[label="",style="solid", color="blue", weight=3]; 2828[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 1853[label="",style="solid", color="blue", weight=3]; 2829[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2829[label="",style="solid", color="blue", weight=9]; 2829 -> 1854[label="",style="solid", color="blue", weight=3]; 2830[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2830[label="",style="solid", color="blue", weight=9]; 2830 -> 1855[label="",style="solid", color="blue", weight=3]; 2831[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 1856[label="",style="solid", color="blue", weight=3]; 2832[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 1857[label="",style="solid", color="blue", weight=3]; 2833[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 1858[label="",style="solid", color="blue", weight=3]; 2834[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2834[label="",style="solid", color="blue", weight=9]; 2834 -> 1859[label="",style="solid", color="blue", weight=3]; 2835[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 1860[label="",style="solid", color="blue", weight=3]; 2836[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 1861[label="",style="solid", color="blue", weight=3]; 2837[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 1862[label="",style="solid", color="blue", weight=3]; 2838[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2838[label="",style="solid", color="blue", weight=9]; 2838 -> 1863[label="",style="solid", color="blue", weight=3]; 2839[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2839[label="",style="solid", color="blue", weight=9]; 2839 -> 1864[label="",style="solid", color="blue", weight=3]; 2840[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2840[label="",style="solid", color="blue", weight=9]; 2840 -> 1865[label="",style="solid", color="blue", weight=3]; 1736[label="vyw4611 <= vyw4811",fontsize=16,color="blue",shape="box"];2841[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2841[label="",style="solid", color="blue", weight=9]; 2841 -> 1866[label="",style="solid", color="blue", weight=3]; 2842[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2842[label="",style="solid", color="blue", weight=9]; 2842 -> 1867[label="",style="solid", color="blue", weight=3]; 2843[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2843[label="",style="solid", color="blue", weight=9]; 2843 -> 1868[label="",style="solid", color="blue", weight=3]; 2844[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2844[label="",style="solid", color="blue", weight=9]; 2844 -> 1869[label="",style="solid", color="blue", weight=3]; 2845[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2845[label="",style="solid", color="blue", weight=9]; 2845 -> 1870[label="",style="solid", color="blue", weight=3]; 2846[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2846[label="",style="solid", color="blue", weight=9]; 2846 -> 1871[label="",style="solid", color="blue", weight=3]; 2847[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2847[label="",style="solid", color="blue", weight=9]; 2847 -> 1872[label="",style="solid", color="blue", weight=3]; 2848[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2848[label="",style="solid", color="blue", weight=9]; 2848 -> 1873[label="",style="solid", color="blue", weight=3]; 2849[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2849[label="",style="solid", color="blue", weight=9]; 2849 -> 1874[label="",style="solid", color="blue", weight=3]; 2850[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2850[label="",style="solid", color="blue", weight=9]; 2850 -> 1875[label="",style="solid", color="blue", weight=3]; 2851[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2851[label="",style="solid", color="blue", weight=9]; 2851 -> 1876[label="",style="solid", color="blue", weight=3]; 2852[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2852[label="",style="solid", color="blue", weight=9]; 2852 -> 1877[label="",style="solid", color="blue", weight=3]; 2853[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2853[label="",style="solid", color="blue", weight=9]; 2853 -> 1878[label="",style="solid", color="blue", weight=3]; 2854[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2854[label="",style="solid", color="blue", weight=9]; 2854 -> 1879[label="",style="solid", color="blue", weight=3]; 1737[label="False || vyw115",fontsize=16,color="black",shape="box"];1737 -> 1880[label="",style="solid", color="black", weight=3]; 1738[label="True || vyw115",fontsize=16,color="black",shape="box"];1738 -> 1881[label="",style="solid", color="black", weight=3]; 1739[label="vyw4610",fontsize=16,color="green",shape="box"];1740[label="vyw4810",fontsize=16,color="green",shape="box"];1741[label="vyw4610",fontsize=16,color="green",shape="box"];1742[label="vyw4810",fontsize=16,color="green",shape="box"];1743[label="vyw4610",fontsize=16,color="green",shape="box"];1744[label="vyw4810",fontsize=16,color="green",shape="box"];1745[label="vyw4610",fontsize=16,color="green",shape="box"];1746[label="vyw4810",fontsize=16,color="green",shape="box"];1747[label="vyw4610",fontsize=16,color="green",shape="box"];1748[label="vyw4810",fontsize=16,color="green",shape="box"];1749[label="vyw4610",fontsize=16,color="green",shape="box"];1750[label="vyw4810",fontsize=16,color="green",shape="box"];1751[label="vyw4610",fontsize=16,color="green",shape="box"];1752[label="vyw4810",fontsize=16,color="green",shape="box"];1753[label="vyw4610",fontsize=16,color="green",shape="box"];1754[label="vyw4810",fontsize=16,color="green",shape="box"];1755[label="vyw4610",fontsize=16,color="green",shape="box"];1756[label="vyw4810",fontsize=16,color="green",shape="box"];1757[label="vyw4610",fontsize=16,color="green",shape="box"];1758[label="vyw4810",fontsize=16,color="green",shape="box"];1759[label="vyw4610",fontsize=16,color="green",shape="box"];1760[label="vyw4810",fontsize=16,color="green",shape="box"];1761[label="vyw4610",fontsize=16,color="green",shape="box"];1762[label="vyw4810",fontsize=16,color="green",shape="box"];1763[label="vyw4610",fontsize=16,color="green",shape="box"];1764[label="vyw4810",fontsize=16,color="green",shape="box"];1765[label="vyw4610",fontsize=16,color="green",shape="box"];1766[label="vyw4810",fontsize=16,color="green",shape="box"];1767 -> 1273[label="",style="dashed", color="red", weight=0]; 1767[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1767 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1274[label="",style="dashed", color="red", weight=0]; 1768[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1768 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1275[label="",style="dashed", color="red", weight=0]; 1769[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1769 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1276[label="",style="dashed", color="red", weight=0]; 1770[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1770 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1771 -> 1277[label="",style="dashed", color="red", weight=0]; 1771[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1771 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1771 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1278[label="",style="dashed", color="red", weight=0]; 1772[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1772 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1279[label="",style="dashed", color="red", weight=0]; 1773[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1773 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1280[label="",style="dashed", color="red", weight=0]; 1774[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1774 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1775 -> 1281[label="",style="dashed", color="red", weight=0]; 1775[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1775 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1775 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1282[label="",style="dashed", color="red", weight=0]; 1776[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1776 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1283[label="",style="dashed", color="red", weight=0]; 1777[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1777 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1778 -> 1284[label="",style="dashed", color="red", weight=0]; 1778[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1778 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1778 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1285[label="",style="dashed", color="red", weight=0]; 1779[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1779 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1286[label="",style="dashed", color="red", weight=0]; 1780[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1780 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1781[label="vyw4610 == vyw4810",fontsize=16,color="blue",shape="box"];2855[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2855[label="",style="solid", color="blue", weight=9]; 2855 -> 1910[label="",style="solid", color="blue", weight=3]; 2856[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 1911[label="",style="solid", color="blue", weight=3]; 2857[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2857[label="",style="solid", color="blue", weight=9]; 2857 -> 1912[label="",style="solid", color="blue", weight=3]; 2858[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 1913[label="",style="solid", color="blue", weight=3]; 2859[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 1914[label="",style="solid", color="blue", weight=3]; 2860[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 1915[label="",style="solid", color="blue", weight=3]; 2861[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2861[label="",style="solid", color="blue", weight=9]; 2861 -> 1916[label="",style="solid", color="blue", weight=3]; 2862[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2862[label="",style="solid", color="blue", weight=9]; 2862 -> 1917[label="",style="solid", color="blue", weight=3]; 2863[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 1918[label="",style="solid", color="blue", weight=3]; 2864[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 1919[label="",style="solid", color="blue", weight=3]; 2865[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2865[label="",style="solid", color="blue", weight=9]; 2865 -> 1920[label="",style="solid", color="blue", weight=3]; 2866[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 1921[label="",style="solid", color="blue", weight=3]; 2867[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 1922[label="",style="solid", color="blue", weight=3]; 2868[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1781 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 1923[label="",style="solid", color="blue", weight=3]; 1782 -> 1714[label="",style="dashed", color="red", weight=0]; 1782[label="vyw4611 < vyw4811 || vyw4611 == vyw4811 && vyw4612 <= vyw4812",fontsize=16,color="magenta"];1782 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1782 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1252[label="primPlusNat vyw870 vyw300000",fontsize=16,color="burlywood",shape="triangle"];2869[label="vyw870/Succ vyw8700",fontsize=10,color="white",style="solid",shape="box"];1252 -> 2869[label="",style="solid", color="burlywood", weight=9]; 2869 -> 1254[label="",style="solid", color="burlywood", weight=3]; 2870[label="vyw870/Zero",fontsize=10,color="white",style="solid",shape="box"];1252 -> 2870[label="",style="solid", color="burlywood", weight=9]; 2870 -> 1255[label="",style="solid", color="burlywood", weight=3]; 1783[label="primCmpDouble (Double vyw4600 (Pos vyw46010)) (Double vyw4800 (Pos vyw48010))",fontsize=16,color="black",shape="box"];1783 -> 1926[label="",style="solid", color="black", weight=3]; 1784[label="primCmpDouble (Double vyw4600 (Pos vyw46010)) (Double vyw4800 (Neg vyw48010))",fontsize=16,color="black",shape="box"];1784 -> 1927[label="",style="solid", color="black", weight=3]; 1785[label="primCmpDouble (Double vyw4600 (Neg vyw46010)) (Double vyw4800 (Pos vyw48010))",fontsize=16,color="black",shape="box"];1785 -> 1928[label="",style="solid", color="black", weight=3]; 1786[label="primCmpDouble (Double vyw4600 (Neg vyw46010)) (Double vyw4800 (Neg vyw48010))",fontsize=16,color="black",shape="box"];1786 -> 1929[label="",style="solid", color="black", weight=3]; 1787 -> 1930[label="",style="dashed", color="red", weight=0]; 1787[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1787 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1788[label="EQ",fontsize=16,color="green",shape="box"];1789[label="vyw4601",fontsize=16,color="green",shape="box"];1790[label="vyw4801",fontsize=16,color="green",shape="box"];1791 -> 1932[label="",style="dashed", color="red", weight=0]; 1791[label="primCompAux0 vyw110 (compare vyw4600 vyw4800)",fontsize=16,color="magenta"];1791 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1791 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1792 -> 1935[label="",style="dashed", color="red", weight=0]; 1792[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1792 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1793[label="EQ",fontsize=16,color="green",shape="box"];1794 -> 1651[label="",style="dashed", color="red", weight=0]; 1794[label="primCmpNat (Succ vyw46000) vyw4800",fontsize=16,color="magenta"];1794 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1794 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1795[label="GT",fontsize=16,color="green",shape="box"];1796[label="primCmpInt (Pos Zero) (Pos (Succ vyw48000))",fontsize=16,color="black",shape="box"];1796 -> 1939[label="",style="solid", color="black", weight=3]; 1797[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1797 -> 1940[label="",style="solid", color="black", weight=3]; 1798[label="primCmpInt (Pos Zero) (Neg (Succ vyw48000))",fontsize=16,color="black",shape="box"];1798 -> 1941[label="",style="solid", color="black", weight=3]; 1799[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1799 -> 1942[label="",style="solid", color="black", weight=3]; 1800[label="LT",fontsize=16,color="green",shape="box"];1801 -> 1651[label="",style="dashed", color="red", weight=0]; 1801[label="primCmpNat vyw4800 (Succ vyw46000)",fontsize=16,color="magenta"];1801 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1801 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1802[label="primCmpInt (Neg Zero) (Pos (Succ vyw48000))",fontsize=16,color="black",shape="box"];1802 -> 1945[label="",style="solid", color="black", weight=3]; 1803[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1803 -> 1946[label="",style="solid", color="black", weight=3]; 1804[label="primCmpInt (Neg Zero) (Neg (Succ vyw48000))",fontsize=16,color="black",shape="box"];1804 -> 1947[label="",style="solid", color="black", weight=3]; 1805[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1805 -> 1948[label="",style="solid", color="black", weight=3]; 1806 -> 1949[label="",style="dashed", color="red", weight=0]; 1806[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1806 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1807[label="EQ",fontsize=16,color="green",shape="box"];1808[label="primCmpFloat (Float vyw4600 (Pos vyw46010)) (Float vyw4800 (Pos vyw48010))",fontsize=16,color="black",shape="box"];1808 -> 1951[label="",style="solid", color="black", weight=3]; 1809[label="primCmpFloat (Float vyw4600 (Pos vyw46010)) (Float vyw4800 (Neg vyw48010))",fontsize=16,color="black",shape="box"];1809 -> 1952[label="",style="solid", color="black", weight=3]; 1810[label="primCmpFloat (Float vyw4600 (Neg vyw46010)) (Float vyw4800 (Pos vyw48010))",fontsize=16,color="black",shape="box"];1810 -> 1953[label="",style="solid", color="black", weight=3]; 1811[label="primCmpFloat (Float vyw4600 (Neg vyw46010)) (Float vyw4800 (Neg vyw48010))",fontsize=16,color="black",shape="box"];1811 -> 1954[label="",style="solid", color="black", weight=3]; 1812 -> 483[label="",style="dashed", color="red", weight=0]; 1812[label="vyw4600 * vyw4801",fontsize=16,color="magenta"];1812 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1812 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1813 -> 483[label="",style="dashed", color="red", weight=0]; 1813[label="vyw4800 * vyw4601",fontsize=16,color="magenta"];1813 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1813 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1814[label="vyw4600 * vyw4801",fontsize=16,color="burlywood",shape="triangle"];2871[label="vyw4600/Integer vyw46000",fontsize=10,color="white",style="solid",shape="box"];1814 -> 2871[label="",style="solid", color="burlywood", weight=9]; 2871 -> 1959[label="",style="solid", color="burlywood", weight=3]; 1815 -> 1814[label="",style="dashed", color="red", weight=0]; 1815[label="vyw4800 * vyw4601",fontsize=16,color="magenta"];1815 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1815 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1816 -> 1962[label="",style="dashed", color="red", weight=0]; 1816[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1816 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1817[label="EQ",fontsize=16,color="green",shape="box"];1818 -> 1964[label="",style="dashed", color="red", weight=0]; 1818[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1818 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1819[label="EQ",fontsize=16,color="green",shape="box"];1820[label="primCmpNat (Succ vyw46000) vyw4800",fontsize=16,color="burlywood",shape="box"];2872[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1820 -> 2872[label="",style="solid", color="burlywood", weight=9]; 2872 -> 1966[label="",style="solid", color="burlywood", weight=3]; 2873[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1820 -> 2873[label="",style="solid", color="burlywood", weight=9]; 2873 -> 1967[label="",style="solid", color="burlywood", weight=3]; 1821[label="primCmpNat Zero vyw4800",fontsize=16,color="burlywood",shape="box"];2874[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1821 -> 2874[label="",style="solid", color="burlywood", weight=9]; 2874 -> 1968[label="",style="solid", color="burlywood", weight=3]; 2875[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1821 -> 2875[label="",style="solid", color="burlywood", weight=9]; 2875 -> 1969[label="",style="solid", color="burlywood", weight=3]; 1822[label="True",fontsize=16,color="green",shape="box"];1823[label="False",fontsize=16,color="green",shape="box"];1824[label="vyw4610",fontsize=16,color="green",shape="box"];1825[label="vyw4810",fontsize=16,color="green",shape="box"];1826[label="vyw4610",fontsize=16,color="green",shape="box"];1827[label="vyw4810",fontsize=16,color="green",shape="box"];1828[label="vyw4610",fontsize=16,color="green",shape="box"];1829[label="vyw4810",fontsize=16,color="green",shape="box"];1830[label="vyw4610",fontsize=16,color="green",shape="box"];1831[label="vyw4810",fontsize=16,color="green",shape="box"];1832[label="vyw4610",fontsize=16,color="green",shape="box"];1833[label="vyw4810",fontsize=16,color="green",shape="box"];1834[label="vyw4610",fontsize=16,color="green",shape="box"];1835[label="vyw4810",fontsize=16,color="green",shape="box"];1836[label="vyw4610",fontsize=16,color="green",shape="box"];1837[label="vyw4810",fontsize=16,color="green",shape="box"];1838[label="vyw4610",fontsize=16,color="green",shape="box"];1839[label="vyw4810",fontsize=16,color="green",shape="box"];1840[label="vyw4610",fontsize=16,color="green",shape="box"];1841[label="vyw4810",fontsize=16,color="green",shape="box"];1842[label="vyw4610",fontsize=16,color="green",shape="box"];1843[label="vyw4810",fontsize=16,color="green",shape="box"];1844[label="vyw4610",fontsize=16,color="green",shape="box"];1845[label="vyw4810",fontsize=16,color="green",shape="box"];1846[label="vyw4610",fontsize=16,color="green",shape="box"];1847[label="vyw4810",fontsize=16,color="green",shape="box"];1848[label="vyw4610",fontsize=16,color="green",shape="box"];1849[label="vyw4810",fontsize=16,color="green",shape="box"];1850[label="vyw4610",fontsize=16,color="green",shape="box"];1851[label="vyw4810",fontsize=16,color="green",shape="box"];1852 -> 134[label="",style="dashed", color="red", weight=0]; 1852[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1852 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1852 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1853 -> 138[label="",style="dashed", color="red", weight=0]; 1853[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1853 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1853 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1854 -> 128[label="",style="dashed", color="red", weight=0]; 1854[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1854 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1854 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1855 -> 127[label="",style="dashed", color="red", weight=0]; 1855[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1855 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1855 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1856 -> 137[label="",style="dashed", color="red", weight=0]; 1856[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1856 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1856 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1857 -> 136[label="",style="dashed", color="red", weight=0]; 1857[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1857 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1857 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1858 -> 130[label="",style="dashed", color="red", weight=0]; 1858[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1858 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1858 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1859 -> 139[label="",style="dashed", color="red", weight=0]; 1859[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1859 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1859 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1860 -> 133[label="",style="dashed", color="red", weight=0]; 1860[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1860 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1860 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1861 -> 135[label="",style="dashed", color="red", weight=0]; 1861[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1861 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1861 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1862 -> 132[label="",style="dashed", color="red", weight=0]; 1862[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1862 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1862 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1863 -> 129[label="",style="dashed", color="red", weight=0]; 1863[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1863 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1863 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1864 -> 126[label="",style="dashed", color="red", weight=0]; 1864[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1864 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1864 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1865 -> 131[label="",style="dashed", color="red", weight=0]; 1865[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1865 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1865 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1866 -> 1323[label="",style="dashed", color="red", weight=0]; 1866[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1866 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1866 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1867 -> 1324[label="",style="dashed", color="red", weight=0]; 1867[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1867 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1868 -> 1325[label="",style="dashed", color="red", weight=0]; 1868[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1868 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1868 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1869 -> 1326[label="",style="dashed", color="red", weight=0]; 1869[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1869 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1870 -> 1327[label="",style="dashed", color="red", weight=0]; 1870[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1870 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1870 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1871 -> 1328[label="",style="dashed", color="red", weight=0]; 1871[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1871 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1872 -> 1329[label="",style="dashed", color="red", weight=0]; 1872[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1872 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1872 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1873 -> 1330[label="",style="dashed", color="red", weight=0]; 1873[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1873 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1873 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1331[label="",style="dashed", color="red", weight=0]; 1874[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1874 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1874 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1332[label="",style="dashed", color="red", weight=0]; 1875[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1875 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1333[label="",style="dashed", color="red", weight=0]; 1876[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1876 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1876 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1334[label="",style="dashed", color="red", weight=0]; 1877[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1877 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1335[label="",style="dashed", color="red", weight=0]; 1878[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1878 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1336[label="",style="dashed", color="red", weight=0]; 1879[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1879 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1880[label="vyw115",fontsize=16,color="green",shape="box"];1881[label="True",fontsize=16,color="green",shape="box"];1882[label="vyw4610",fontsize=16,color="green",shape="box"];1883[label="vyw4810",fontsize=16,color="green",shape="box"];1884[label="vyw4610",fontsize=16,color="green",shape="box"];1885[label="vyw4810",fontsize=16,color="green",shape="box"];1886[label="vyw4610",fontsize=16,color="green",shape="box"];1887[label="vyw4810",fontsize=16,color="green",shape="box"];1888[label="vyw4610",fontsize=16,color="green",shape="box"];1889[label="vyw4810",fontsize=16,color="green",shape="box"];1890[label="vyw4610",fontsize=16,color="green",shape="box"];1891[label="vyw4810",fontsize=16,color="green",shape="box"];1892[label="vyw4610",fontsize=16,color="green",shape="box"];1893[label="vyw4810",fontsize=16,color="green",shape="box"];1894[label="vyw4610",fontsize=16,color="green",shape="box"];1895[label="vyw4810",fontsize=16,color="green",shape="box"];1896[label="vyw4610",fontsize=16,color="green",shape="box"];1897[label="vyw4810",fontsize=16,color="green",shape="box"];1898[label="vyw4610",fontsize=16,color="green",shape="box"];1899[label="vyw4810",fontsize=16,color="green",shape="box"];1900[label="vyw4610",fontsize=16,color="green",shape="box"];1901[label="vyw4810",fontsize=16,color="green",shape="box"];1902[label="vyw4610",fontsize=16,color="green",shape="box"];1903[label="vyw4810",fontsize=16,color="green",shape="box"];1904[label="vyw4610",fontsize=16,color="green",shape="box"];1905[label="vyw4810",fontsize=16,color="green",shape="box"];1906[label="vyw4610",fontsize=16,color="green",shape="box"];1907[label="vyw4810",fontsize=16,color="green",shape="box"];1908[label="vyw4610",fontsize=16,color="green",shape="box"];1909[label="vyw4810",fontsize=16,color="green",shape="box"];1910 -> 134[label="",style="dashed", color="red", weight=0]; 1910[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1910 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1911 -> 138[label="",style="dashed", color="red", weight=0]; 1911[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1911 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1912 -> 128[label="",style="dashed", color="red", weight=0]; 1912[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1912 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1913 -> 127[label="",style="dashed", color="red", weight=0]; 1913[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1913 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1914 -> 137[label="",style="dashed", color="red", weight=0]; 1914[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1914 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1915 -> 136[label="",style="dashed", color="red", weight=0]; 1915[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1915 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1916 -> 130[label="",style="dashed", color="red", weight=0]; 1916[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1916 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1917 -> 139[label="",style="dashed", color="red", weight=0]; 1917[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1917 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1918 -> 133[label="",style="dashed", color="red", weight=0]; 1918[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1918 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1919 -> 135[label="",style="dashed", color="red", weight=0]; 1919[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1919 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1920 -> 132[label="",style="dashed", color="red", weight=0]; 1920[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1920 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1921 -> 129[label="",style="dashed", color="red", weight=0]; 1921[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1921 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1922 -> 126[label="",style="dashed", color="red", weight=0]; 1922[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1922 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1922 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1923 -> 131[label="",style="dashed", color="red", weight=0]; 1923[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1923 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1924[label="vyw4611 < vyw4811",fontsize=16,color="blue",shape="box"];2876[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 2054[label="",style="solid", color="blue", weight=3]; 2877[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 2055[label="",style="solid", color="blue", weight=3]; 2878[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2878[label="",style="solid", color="blue", weight=9]; 2878 -> 2056[label="",style="solid", color="blue", weight=3]; 2879[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2879[label="",style="solid", color="blue", weight=9]; 2879 -> 2057[label="",style="solid", color="blue", weight=3]; 2880[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2880[label="",style="solid", color="blue", weight=9]; 2880 -> 2058[label="",style="solid", color="blue", weight=3]; 2881[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2881[label="",style="solid", color="blue", weight=9]; 2881 -> 2059[label="",style="solid", color="blue", weight=3]; 2882[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2882[label="",style="solid", color="blue", weight=9]; 2882 -> 2060[label="",style="solid", color="blue", weight=3]; 2883[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 2061[label="",style="solid", color="blue", weight=3]; 2884[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2884[label="",style="solid", color="blue", weight=9]; 2884 -> 2062[label="",style="solid", color="blue", weight=3]; 2885[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 2063[label="",style="solid", color="blue", weight=3]; 2886[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 2064[label="",style="solid", color="blue", weight=3]; 2887[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 2065[label="",style="solid", color="blue", weight=3]; 2888[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 2066[label="",style="solid", color="blue", weight=3]; 2889[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1924 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 2067[label="",style="solid", color="blue", weight=3]; 1925 -> 364[label="",style="dashed", color="red", weight=0]; 1925[label="vyw4611 == vyw4811 && vyw4612 <= vyw4812",fontsize=16,color="magenta"];1925 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1254[label="primPlusNat (Succ vyw8700) vyw300000",fontsize=16,color="burlywood",shape="box"];2890[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2890[label="",style="solid", color="burlywood", weight=9]; 2890 -> 1291[label="",style="solid", color="burlywood", weight=3]; 2891[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2891[label="",style="solid", color="burlywood", weight=9]; 2891 -> 1292[label="",style="solid", color="burlywood", weight=3]; 1255[label="primPlusNat Zero vyw300000",fontsize=16,color="burlywood",shape="box"];2892[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2892[label="",style="solid", color="burlywood", weight=9]; 2892 -> 1293[label="",style="solid", color="burlywood", weight=3]; 2893[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2893[label="",style="solid", color="burlywood", weight=9]; 2893 -> 1294[label="",style="solid", color="burlywood", weight=3]; 1926 -> 1356[label="",style="dashed", color="red", weight=0]; 1926[label="compare (vyw4600 * Pos vyw48010) (Pos vyw46010 * vyw4800)",fontsize=16,color="magenta"];1926 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1927 -> 1356[label="",style="dashed", color="red", weight=0]; 1927[label="compare (vyw4600 * Pos vyw48010) (Neg vyw46010 * vyw4800)",fontsize=16,color="magenta"];1927 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1928 -> 1356[label="",style="dashed", color="red", weight=0]; 1928[label="compare (vyw4600 * Neg vyw48010) (Pos vyw46010 * vyw4800)",fontsize=16,color="magenta"];1928 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1929 -> 1356[label="",style="dashed", color="red", weight=0]; 1929[label="compare (vyw4600 * Neg vyw48010) (Neg vyw46010 * vyw4800)",fontsize=16,color="magenta"];1929 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1931 -> 1324[label="",style="dashed", color="red", weight=0]; 1931[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1931 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1930[label="compare1 vyw460 vyw480 vyw116",fontsize=16,color="burlywood",shape="triangle"];2894[label="vyw116/False",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2894[label="",style="solid", color="burlywood", weight=9]; 2894 -> 2080[label="",style="solid", color="burlywood", weight=3]; 2895[label="vyw116/True",fontsize=10,color="white",style="solid",shape="box"];1930 -> 2895[label="",style="solid", color="burlywood", weight=9]; 2895 -> 2081[label="",style="solid", color="burlywood", weight=3]; 1933[label="vyw110",fontsize=16,color="green",shape="box"];1934[label="compare vyw4600 vyw4800",fontsize=16,color="blue",shape="box"];2896[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2896[label="",style="solid", color="blue", weight=9]; 2896 -> 2082[label="",style="solid", color="blue", weight=3]; 2897[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2897[label="",style="solid", color="blue", weight=9]; 2897 -> 2083[label="",style="solid", color="blue", weight=3]; 2898[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2898[label="",style="solid", color="blue", weight=9]; 2898 -> 2084[label="",style="solid", color="blue", weight=3]; 2899[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2899[label="",style="solid", color="blue", weight=9]; 2899 -> 2085[label="",style="solid", color="blue", weight=3]; 2900[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2900[label="",style="solid", color="blue", weight=9]; 2900 -> 2086[label="",style="solid", color="blue", weight=3]; 2901[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2901[label="",style="solid", color="blue", weight=9]; 2901 -> 2087[label="",style="solid", color="blue", weight=3]; 2902[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2902[label="",style="solid", color="blue", weight=9]; 2902 -> 2088[label="",style="solid", color="blue", weight=3]; 2903[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2903[label="",style="solid", color="blue", weight=9]; 2903 -> 2089[label="",style="solid", color="blue", weight=3]; 2904[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2904[label="",style="solid", color="blue", weight=9]; 2904 -> 2090[label="",style="solid", color="blue", weight=3]; 2905[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2905[label="",style="solid", color="blue", weight=9]; 2905 -> 2091[label="",style="solid", color="blue", weight=3]; 2906[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2906[label="",style="solid", color="blue", weight=9]; 2906 -> 2092[label="",style="solid", color="blue", weight=3]; 2907[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2907[label="",style="solid", color="blue", weight=9]; 2907 -> 2093[label="",style="solid", color="blue", weight=3]; 2908[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2908[label="",style="solid", color="blue", weight=9]; 2908 -> 2094[label="",style="solid", color="blue", weight=3]; 2909[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2909[label="",style="solid", color="blue", weight=9]; 2909 -> 2095[label="",style="solid", color="blue", weight=3]; 1932[label="primCompAux0 vyw120 vyw121",fontsize=16,color="burlywood",shape="triangle"];2910[label="vyw121/LT",fontsize=10,color="white",style="solid",shape="box"];1932 -> 2910[label="",style="solid", color="burlywood", weight=9]; 2910 -> 2096[label="",style="solid", color="burlywood", weight=3]; 2911[label="vyw121/EQ",fontsize=10,color="white",style="solid",shape="box"];1932 -> 2911[label="",style="solid", color="burlywood", weight=9]; 2911 -> 2097[label="",style="solid", color="burlywood", weight=3]; 2912[label="vyw121/GT",fontsize=10,color="white",style="solid",shape="box"];1932 -> 2912[label="",style="solid", color="burlywood", weight=9]; 2912 -> 2098[label="",style="solid", color="burlywood", weight=3]; 1936 -> 1328[label="",style="dashed", color="red", weight=0]; 1936[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1936 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1935[label="compare1 vyw460 vyw480 vyw122",fontsize=16,color="burlywood",shape="triangle"];2913[label="vyw122/False",fontsize=10,color="white",style="solid",shape="box"];1935 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 2101[label="",style="solid", color="burlywood", weight=3]; 2914[label="vyw122/True",fontsize=10,color="white",style="solid",shape="box"];1935 -> 2914[label="",style="solid", color="burlywood", weight=9]; 2914 -> 2102[label="",style="solid", color="burlywood", weight=3]; 1937[label="vyw4800",fontsize=16,color="green",shape="box"];1938[label="Succ vyw46000",fontsize=16,color="green",shape="box"];1939 -> 1651[label="",style="dashed", color="red", weight=0]; 1939[label="primCmpNat Zero (Succ vyw48000)",fontsize=16,color="magenta"];1939 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1940[label="EQ",fontsize=16,color="green",shape="box"];1941[label="GT",fontsize=16,color="green",shape="box"];1942[label="EQ",fontsize=16,color="green",shape="box"];1943[label="Succ vyw46000",fontsize=16,color="green",shape="box"];1944[label="vyw4800",fontsize=16,color="green",shape="box"];1945[label="LT",fontsize=16,color="green",shape="box"];1946[label="EQ",fontsize=16,color="green",shape="box"];1947 -> 1651[label="",style="dashed", color="red", weight=0]; 1947[label="primCmpNat (Succ vyw48000) Zero",fontsize=16,color="magenta"];1947 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1948[label="EQ",fontsize=16,color="green",shape="box"];1950 -> 1330[label="",style="dashed", color="red", weight=0]; 1950[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1950 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1949[label="compare1 vyw460 vyw480 vyw123",fontsize=16,color="burlywood",shape="triangle"];2915[label="vyw123/False",fontsize=10,color="white",style="solid",shape="box"];1949 -> 2915[label="",style="solid", color="burlywood", weight=9]; 2915 -> 2109[label="",style="solid", color="burlywood", weight=3]; 2916[label="vyw123/True",fontsize=10,color="white",style="solid",shape="box"];1949 -> 2916[label="",style="solid", color="burlywood", weight=9]; 2916 -> 2110[label="",style="solid", color="burlywood", weight=3]; 1951 -> 1356[label="",style="dashed", color="red", weight=0]; 1951[label="compare (vyw4600 * Pos vyw48010) (Pos vyw46010 * vyw4800)",fontsize=16,color="magenta"];1951 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1952 -> 1356[label="",style="dashed", color="red", weight=0]; 1952[label="compare (vyw4600 * Pos vyw48010) (Neg vyw46010 * vyw4800)",fontsize=16,color="magenta"];1952 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1953 -> 1356[label="",style="dashed", color="red", weight=0]; 1953[label="compare (vyw4600 * Neg vyw48010) (Pos vyw46010 * vyw4800)",fontsize=16,color="magenta"];1953 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1953 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1954 -> 1356[label="",style="dashed", color="red", weight=0]; 1954[label="compare (vyw4600 * Neg vyw48010) (Neg vyw46010 * vyw4800)",fontsize=16,color="magenta"];1954 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1954 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1955[label="vyw4801",fontsize=16,color="green",shape="box"];1956[label="vyw4600",fontsize=16,color="green",shape="box"];1957[label="vyw4601",fontsize=16,color="green",shape="box"];1958[label="vyw4800",fontsize=16,color="green",shape="box"];1959[label="Integer vyw46000 * vyw4801",fontsize=16,color="burlywood",shape="box"];2917[label="vyw4801/Integer vyw48010",fontsize=10,color="white",style="solid",shape="box"];1959 -> 2917[label="",style="solid", color="burlywood", weight=9]; 2917 -> 2119[label="",style="solid", color="burlywood", weight=3]; 1960[label="vyw4800",fontsize=16,color="green",shape="box"];1961[label="vyw4601",fontsize=16,color="green",shape="box"];1963 -> 1334[label="",style="dashed", color="red", weight=0]; 1963[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1963 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1962[label="compare1 vyw460 vyw480 vyw124",fontsize=16,color="burlywood",shape="triangle"];2918[label="vyw124/False",fontsize=10,color="white",style="solid",shape="box"];1962 -> 2918[label="",style="solid", color="burlywood", weight=9]; 2918 -> 2122[label="",style="solid", color="burlywood", weight=3]; 2919[label="vyw124/True",fontsize=10,color="white",style="solid",shape="box"];1962 -> 2919[label="",style="solid", color="burlywood", weight=9]; 2919 -> 2123[label="",style="solid", color="burlywood", weight=3]; 1965 -> 1335[label="",style="dashed", color="red", weight=0]; 1965[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1965 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1964[label="compare1 vyw460 vyw480 vyw125",fontsize=16,color="burlywood",shape="triangle"];2920[label="vyw125/False",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2920[label="",style="solid", color="burlywood", weight=9]; 2920 -> 2126[label="",style="solid", color="burlywood", weight=3]; 2921[label="vyw125/True",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2921[label="",style="solid", color="burlywood", weight=9]; 2921 -> 2127[label="",style="solid", color="burlywood", weight=3]; 1966[label="primCmpNat (Succ vyw46000) (Succ vyw48000)",fontsize=16,color="black",shape="box"];1966 -> 2128[label="",style="solid", color="black", weight=3]; 1967[label="primCmpNat (Succ vyw46000) Zero",fontsize=16,color="black",shape="box"];1967 -> 2129[label="",style="solid", color="black", weight=3]; 1968[label="primCmpNat Zero (Succ vyw48000)",fontsize=16,color="black",shape="box"];1968 -> 2130[label="",style="solid", color="black", weight=3]; 1969[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1969 -> 2131[label="",style="solid", color="black", weight=3]; 1970[label="vyw4810",fontsize=16,color="green",shape="box"];1971[label="vyw4610",fontsize=16,color="green",shape="box"];1972[label="vyw4810",fontsize=16,color="green",shape="box"];1973[label="vyw4610",fontsize=16,color="green",shape="box"];1974[label="vyw4810",fontsize=16,color="green",shape="box"];1975[label="vyw4610",fontsize=16,color="green",shape="box"];1976[label="vyw4810",fontsize=16,color="green",shape="box"];1977[label="vyw4610",fontsize=16,color="green",shape="box"];1978[label="vyw4810",fontsize=16,color="green",shape="box"];1979[label="vyw4610",fontsize=16,color="green",shape="box"];1980[label="vyw4810",fontsize=16,color="green",shape="box"];1981[label="vyw4610",fontsize=16,color="green",shape="box"];1982[label="vyw4810",fontsize=16,color="green",shape="box"];1983[label="vyw4610",fontsize=16,color="green",shape="box"];1984[label="vyw4810",fontsize=16,color="green",shape="box"];1985[label="vyw4610",fontsize=16,color="green",shape="box"];1986[label="vyw4810",fontsize=16,color="green",shape="box"];1987[label="vyw4610",fontsize=16,color="green",shape="box"];1988[label="vyw4810",fontsize=16,color="green",shape="box"];1989[label="vyw4610",fontsize=16,color="green",shape="box"];1990[label="vyw4810",fontsize=16,color="green",shape="box"];1991[label="vyw4610",fontsize=16,color="green",shape="box"];1992[label="vyw4810",fontsize=16,color="green",shape="box"];1993[label="vyw4610",fontsize=16,color="green",shape="box"];1994[label="vyw4810",fontsize=16,color="green",shape="box"];1995[label="vyw4610",fontsize=16,color="green",shape="box"];1996[label="vyw4810",fontsize=16,color="green",shape="box"];1997[label="vyw4610",fontsize=16,color="green",shape="box"];1998[label="vyw4611",fontsize=16,color="green",shape="box"];1999[label="vyw4811",fontsize=16,color="green",shape="box"];2000[label="vyw4611",fontsize=16,color="green",shape="box"];2001[label="vyw4811",fontsize=16,color="green",shape="box"];2002[label="vyw4611",fontsize=16,color="green",shape="box"];2003[label="vyw4811",fontsize=16,color="green",shape="box"];2004[label="vyw4611",fontsize=16,color="green",shape="box"];2005[label="vyw4811",fontsize=16,color="green",shape="box"];2006[label="vyw4611",fontsize=16,color="green",shape="box"];2007[label="vyw4811",fontsize=16,color="green",shape="box"];2008[label="vyw4611",fontsize=16,color="green",shape="box"];2009[label="vyw4811",fontsize=16,color="green",shape="box"];2010[label="vyw4611",fontsize=16,color="green",shape="box"];2011[label="vyw4811",fontsize=16,color="green",shape="box"];2012[label="vyw4611",fontsize=16,color="green",shape="box"];2013[label="vyw4811",fontsize=16,color="green",shape="box"];2014[label="vyw4611",fontsize=16,color="green",shape="box"];2015[label="vyw4811",fontsize=16,color="green",shape="box"];2016[label="vyw4611",fontsize=16,color="green",shape="box"];2017[label="vyw4811",fontsize=16,color="green",shape="box"];2018[label="vyw4611",fontsize=16,color="green",shape="box"];2019[label="vyw4811",fontsize=16,color="green",shape="box"];2020[label="vyw4611",fontsize=16,color="green",shape="box"];2021[label="vyw4811",fontsize=16,color="green",shape="box"];2022[label="vyw4611",fontsize=16,color="green",shape="box"];2023[label="vyw4811",fontsize=16,color="green",shape="box"];2024[label="vyw4611",fontsize=16,color="green",shape="box"];2025[label="vyw4811",fontsize=16,color="green",shape="box"];2026[label="vyw4810",fontsize=16,color="green",shape="box"];2027[label="vyw4610",fontsize=16,color="green",shape="box"];2028[label="vyw4810",fontsize=16,color="green",shape="box"];2029[label="vyw4610",fontsize=16,color="green",shape="box"];2030[label="vyw4810",fontsize=16,color="green",shape="box"];2031[label="vyw4610",fontsize=16,color="green",shape="box"];2032[label="vyw4810",fontsize=16,color="green",shape="box"];2033[label="vyw4610",fontsize=16,color="green",shape="box"];2034[label="vyw4810",fontsize=16,color="green",shape="box"];2035[label="vyw4610",fontsize=16,color="green",shape="box"];2036[label="vyw4810",fontsize=16,color="green",shape="box"];2037[label="vyw4610",fontsize=16,color="green",shape="box"];2038[label="vyw4810",fontsize=16,color="green",shape="box"];2039[label="vyw4610",fontsize=16,color="green",shape="box"];2040[label="vyw4810",fontsize=16,color="green",shape="box"];2041[label="vyw4610",fontsize=16,color="green",shape="box"];2042[label="vyw4810",fontsize=16,color="green",shape="box"];2043[label="vyw4610",fontsize=16,color="green",shape="box"];2044[label="vyw4810",fontsize=16,color="green",shape="box"];2045[label="vyw4610",fontsize=16,color="green",shape="box"];2046[label="vyw4810",fontsize=16,color="green",shape="box"];2047[label="vyw4610",fontsize=16,color="green",shape="box"];2048[label="vyw4810",fontsize=16,color="green",shape="box"];2049[label="vyw4610",fontsize=16,color="green",shape="box"];2050[label="vyw4810",fontsize=16,color="green",shape="box"];2051[label="vyw4610",fontsize=16,color="green",shape="box"];2052[label="vyw4810",fontsize=16,color="green",shape="box"];2053[label="vyw4610",fontsize=16,color="green",shape="box"];2054 -> 1273[label="",style="dashed", color="red", weight=0]; 2054[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2054 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2055 -> 1274[label="",style="dashed", color="red", weight=0]; 2055[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2055 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2056 -> 1275[label="",style="dashed", color="red", weight=0]; 2056[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2056 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2057 -> 1276[label="",style="dashed", color="red", weight=0]; 2057[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2057 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2058 -> 1277[label="",style="dashed", color="red", weight=0]; 2058[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2058 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2059 -> 1278[label="",style="dashed", color="red", weight=0]; 2059[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2059 -> 2142[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2143[label="",style="dashed", color="magenta", weight=3]; 2060 -> 1279[label="",style="dashed", color="red", weight=0]; 2060[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2060 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2061 -> 1280[label="",style="dashed", color="red", weight=0]; 2061[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2061 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2147[label="",style="dashed", color="magenta", weight=3]; 2062 -> 1281[label="",style="dashed", color="red", weight=0]; 2062[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2062 -> 2148[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2063 -> 1282[label="",style="dashed", color="red", weight=0]; 2063[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2063 -> 2150[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2151[label="",style="dashed", color="magenta", weight=3]; 2064 -> 1283[label="",style="dashed", color="red", weight=0]; 2064[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2064 -> 2152[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2153[label="",style="dashed", color="magenta", weight=3]; 2065 -> 1284[label="",style="dashed", color="red", weight=0]; 2065[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2065 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2066 -> 1285[label="",style="dashed", color="red", weight=0]; 2066[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2066 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2067 -> 1286[label="",style="dashed", color="red", weight=0]; 2067[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];2067 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2068[label="vyw4611 == vyw4811",fontsize=16,color="blue",shape="box"];2922[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2922[label="",style="solid", color="blue", weight=9]; 2922 -> 2160[label="",style="solid", color="blue", weight=3]; 2923[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2923[label="",style="solid", color="blue", weight=9]; 2923 -> 2161[label="",style="solid", color="blue", weight=3]; 2924[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2924[label="",style="solid", color="blue", weight=9]; 2924 -> 2162[label="",style="solid", color="blue", weight=3]; 2925[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2925[label="",style="solid", color="blue", weight=9]; 2925 -> 2163[label="",style="solid", color="blue", weight=3]; 2926[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2926[label="",style="solid", color="blue", weight=9]; 2926 -> 2164[label="",style="solid", color="blue", weight=3]; 2927[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2927[label="",style="solid", color="blue", weight=9]; 2927 -> 2165[label="",style="solid", color="blue", weight=3]; 2928[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2928[label="",style="solid", color="blue", weight=9]; 2928 -> 2166[label="",style="solid", color="blue", weight=3]; 2929[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2929[label="",style="solid", color="blue", weight=9]; 2929 -> 2167[label="",style="solid", color="blue", weight=3]; 2930[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2930[label="",style="solid", color="blue", weight=9]; 2930 -> 2168[label="",style="solid", color="blue", weight=3]; 2931[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2931[label="",style="solid", color="blue", weight=9]; 2931 -> 2169[label="",style="solid", color="blue", weight=3]; 2932[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 2170[label="",style="solid", color="blue", weight=3]; 2933[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 2171[label="",style="solid", color="blue", weight=3]; 2934[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 2172[label="",style="solid", color="blue", weight=3]; 2935[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 2173[label="",style="solid", color="blue", weight=3]; 2069[label="vyw4612 <= vyw4812",fontsize=16,color="blue",shape="box"];2936[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 2174[label="",style="solid", color="blue", weight=3]; 2937[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 2175[label="",style="solid", color="blue", weight=3]; 2938[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 2176[label="",style="solid", color="blue", weight=3]; 2939[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 2177[label="",style="solid", color="blue", weight=3]; 2940[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 2178[label="",style="solid", color="blue", weight=3]; 2941[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 2179[label="",style="solid", color="blue", weight=3]; 2942[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 2180[label="",style="solid", color="blue", weight=3]; 2943[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 2181[label="",style="solid", color="blue", weight=3]; 2944[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 2182[label="",style="solid", color="blue", weight=3]; 2945[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 2183[label="",style="solid", color="blue", weight=3]; 2946[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 2184[label="",style="solid", color="blue", weight=3]; 2947[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 2185[label="",style="solid", color="blue", weight=3]; 2948[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 2186[label="",style="solid", color="blue", weight=3]; 2949[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 2187[label="",style="solid", color="blue", weight=3]; 1291[label="primPlusNat (Succ vyw8700) (Succ vyw3000000)",fontsize=16,color="black",shape="box"];1291 -> 1339[label="",style="solid", color="black", weight=3]; 1292[label="primPlusNat (Succ vyw8700) Zero",fontsize=16,color="black",shape="box"];1292 -> 1340[label="",style="solid", color="black", weight=3]; 1293[label="primPlusNat Zero (Succ vyw3000000)",fontsize=16,color="black",shape="box"];1293 -> 1341[label="",style="solid", color="black", weight=3]; 1294[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1294 -> 1342[label="",style="solid", color="black", weight=3]; 2070 -> 483[label="",style="dashed", color="red", weight=0]; 2070[label="vyw4600 * Pos vyw48010",fontsize=16,color="magenta"];2070 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2071 -> 483[label="",style="dashed", color="red", weight=0]; 2071[label="Pos vyw46010 * vyw4800",fontsize=16,color="magenta"];2071 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2072 -> 483[label="",style="dashed", color="red", weight=0]; 2072[label="vyw4600 * Pos vyw48010",fontsize=16,color="magenta"];2072 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2073 -> 483[label="",style="dashed", color="red", weight=0]; 2073[label="Neg vyw46010 * vyw4800",fontsize=16,color="magenta"];2073 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2074 -> 483[label="",style="dashed", color="red", weight=0]; 2074[label="vyw4600 * Neg vyw48010",fontsize=16,color="magenta"];2074 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2075 -> 483[label="",style="dashed", color="red", weight=0]; 2075[label="Pos vyw46010 * vyw4800",fontsize=16,color="magenta"];2075 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2076 -> 483[label="",style="dashed", color="red", weight=0]; 2076[label="vyw4600 * Neg vyw48010",fontsize=16,color="magenta"];2076 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2077 -> 483[label="",style="dashed", color="red", weight=0]; 2077[label="Neg vyw46010 * vyw4800",fontsize=16,color="magenta"];2077 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2078[label="vyw460",fontsize=16,color="green",shape="box"];2079[label="vyw480",fontsize=16,color="green",shape="box"];2080[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2080 -> 2204[label="",style="solid", color="black", weight=3]; 2081[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2081 -> 2205[label="",style="solid", color="black", weight=3]; 2082 -> 1344[label="",style="dashed", color="red", weight=0]; 2082[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2082 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2083 -> 1346[label="",style="dashed", color="red", weight=0]; 2083[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2083 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2084 -> 1348[label="",style="dashed", color="red", weight=0]; 2084[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2084 -> 2210[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2085 -> 1350[label="",style="dashed", color="red", weight=0]; 2085[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2085 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2086 -> 1352[label="",style="dashed", color="red", weight=0]; 2086[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2086 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2087 -> 1354[label="",style="dashed", color="red", weight=0]; 2087[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2087 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2088 -> 1356[label="",style="dashed", color="red", weight=0]; 2088[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2088 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2089 -> 1358[label="",style="dashed", color="red", weight=0]; 2089[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2089 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2090 -> 1360[label="",style="dashed", color="red", weight=0]; 2090[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2090 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2091 -> 1362[label="",style="dashed", color="red", weight=0]; 2091[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2091 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2092 -> 1364[label="",style="dashed", color="red", weight=0]; 2092[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2092 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2093 -> 1366[label="",style="dashed", color="red", weight=0]; 2093[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2093 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2094 -> 1368[label="",style="dashed", color="red", weight=0]; 2094[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2094 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2095 -> 1370[label="",style="dashed", color="red", weight=0]; 2095[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2095 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2096[label="primCompAux0 vyw120 LT",fontsize=16,color="black",shape="box"];2096 -> 2234[label="",style="solid", color="black", weight=3]; 2097[label="primCompAux0 vyw120 EQ",fontsize=16,color="black",shape="box"];2097 -> 2235[label="",style="solid", color="black", weight=3]; 2098[label="primCompAux0 vyw120 GT",fontsize=16,color="black",shape="box"];2098 -> 2236[label="",style="solid", color="black", weight=3]; 2099[label="vyw460",fontsize=16,color="green",shape="box"];2100[label="vyw480",fontsize=16,color="green",shape="box"];2101[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2101 -> 2237[label="",style="solid", color="black", weight=3]; 2102[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2102 -> 2238[label="",style="solid", color="black", weight=3]; 2103[label="Succ vyw48000",fontsize=16,color="green",shape="box"];2104[label="Zero",fontsize=16,color="green",shape="box"];2105[label="Zero",fontsize=16,color="green",shape="box"];2106[label="Succ vyw48000",fontsize=16,color="green",shape="box"];2107[label="vyw460",fontsize=16,color="green",shape="box"];2108[label="vyw480",fontsize=16,color="green",shape="box"];2109[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2109 -> 2239[label="",style="solid", color="black", weight=3]; 2110[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2110 -> 2240[label="",style="solid", color="black", weight=3]; 2111 -> 483[label="",style="dashed", color="red", weight=0]; 2111[label="vyw4600 * Pos vyw48010",fontsize=16,color="magenta"];2111 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2112 -> 483[label="",style="dashed", color="red", weight=0]; 2112[label="Pos vyw46010 * vyw4800",fontsize=16,color="magenta"];2112 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2113 -> 483[label="",style="dashed", color="red", weight=0]; 2113[label="vyw4600 * Pos vyw48010",fontsize=16,color="magenta"];2113 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2114 -> 483[label="",style="dashed", color="red", weight=0]; 2114[label="Neg vyw46010 * vyw4800",fontsize=16,color="magenta"];2114 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2115 -> 483[label="",style="dashed", color="red", weight=0]; 2115[label="vyw4600 * Neg vyw48010",fontsize=16,color="magenta"];2115 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2116 -> 483[label="",style="dashed", color="red", weight=0]; 2116[label="Pos vyw46010 * vyw4800",fontsize=16,color="magenta"];2116 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2117 -> 483[label="",style="dashed", color="red", weight=0]; 2117[label="vyw4600 * Neg vyw48010",fontsize=16,color="magenta"];2117 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2118 -> 483[label="",style="dashed", color="red", weight=0]; 2118[label="Neg vyw46010 * vyw4800",fontsize=16,color="magenta"];2118 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2119[label="Integer vyw46000 * Integer vyw48010",fontsize=16,color="black",shape="box"];2119 -> 2257[label="",style="solid", color="black", weight=3]; 2120[label="vyw460",fontsize=16,color="green",shape="box"];2121[label="vyw480",fontsize=16,color="green",shape="box"];2122[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2122 -> 2258[label="",style="solid", color="black", weight=3]; 2123[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2123 -> 2259[label="",style="solid", color="black", weight=3]; 2124[label="vyw460",fontsize=16,color="green",shape="box"];2125[label="vyw480",fontsize=16,color="green",shape="box"];2126[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2126 -> 2260[label="",style="solid", color="black", weight=3]; 2127[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2127 -> 2261[label="",style="solid", color="black", weight=3]; 2128 -> 1651[label="",style="dashed", color="red", weight=0]; 2128[label="primCmpNat vyw46000 vyw48000",fontsize=16,color="magenta"];2128 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2129[label="GT",fontsize=16,color="green",shape="box"];2130[label="LT",fontsize=16,color="green",shape="box"];2131[label="EQ",fontsize=16,color="green",shape="box"];2132[label="vyw4611",fontsize=16,color="green",shape="box"];2133[label="vyw4811",fontsize=16,color="green",shape="box"];2134[label="vyw4611",fontsize=16,color="green",shape="box"];2135[label="vyw4811",fontsize=16,color="green",shape="box"];2136[label="vyw4611",fontsize=16,color="green",shape="box"];2137[label="vyw4811",fontsize=16,color="green",shape="box"];2138[label="vyw4611",fontsize=16,color="green",shape="box"];2139[label="vyw4811",fontsize=16,color="green",shape="box"];2140[label="vyw4611",fontsize=16,color="green",shape="box"];2141[label="vyw4811",fontsize=16,color="green",shape="box"];2142[label="vyw4611",fontsize=16,color="green",shape="box"];2143[label="vyw4811",fontsize=16,color="green",shape="box"];2144[label="vyw4611",fontsize=16,color="green",shape="box"];2145[label="vyw4811",fontsize=16,color="green",shape="box"];2146[label="vyw4611",fontsize=16,color="green",shape="box"];2147[label="vyw4811",fontsize=16,color="green",shape="box"];2148[label="vyw4611",fontsize=16,color="green",shape="box"];2149[label="vyw4811",fontsize=16,color="green",shape="box"];2150[label="vyw4611",fontsize=16,color="green",shape="box"];2151[label="vyw4811",fontsize=16,color="green",shape="box"];2152[label="vyw4611",fontsize=16,color="green",shape="box"];2153[label="vyw4811",fontsize=16,color="green",shape="box"];2154[label="vyw4611",fontsize=16,color="green",shape="box"];2155[label="vyw4811",fontsize=16,color="green",shape="box"];2156[label="vyw4611",fontsize=16,color="green",shape="box"];2157[label="vyw4811",fontsize=16,color="green",shape="box"];2158[label="vyw4611",fontsize=16,color="green",shape="box"];2159[label="vyw4811",fontsize=16,color="green",shape="box"];2160 -> 134[label="",style="dashed", color="red", weight=0]; 2160[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2160 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2161 -> 138[label="",style="dashed", color="red", weight=0]; 2161[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2161 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2162 -> 128[label="",style="dashed", color="red", weight=0]; 2162[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2162 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2163 -> 127[label="",style="dashed", color="red", weight=0]; 2163[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2163 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2164 -> 137[label="",style="dashed", color="red", weight=0]; 2164[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2164 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2165 -> 136[label="",style="dashed", color="red", weight=0]; 2165[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2165 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2166 -> 130[label="",style="dashed", color="red", weight=0]; 2166[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2166 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2167 -> 139[label="",style="dashed", color="red", weight=0]; 2167[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2167 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2168 -> 133[label="",style="dashed", color="red", weight=0]; 2168[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2168 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2169 -> 135[label="",style="dashed", color="red", weight=0]; 2169[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2169 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2170 -> 132[label="",style="dashed", color="red", weight=0]; 2170[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2170 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2171 -> 129[label="",style="dashed", color="red", weight=0]; 2171[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2171 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2172 -> 126[label="",style="dashed", color="red", weight=0]; 2172[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2172 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2173 -> 131[label="",style="dashed", color="red", weight=0]; 2173[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2173 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2174 -> 1323[label="",style="dashed", color="red", weight=0]; 2174[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2174 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2175 -> 1324[label="",style="dashed", color="red", weight=0]; 2175[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2175 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2176 -> 1325[label="",style="dashed", color="red", weight=0]; 2176[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2176 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2177 -> 1326[label="",style="dashed", color="red", weight=0]; 2177[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2177 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2178 -> 1327[label="",style="dashed", color="red", weight=0]; 2178[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2178 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2179 -> 1328[label="",style="dashed", color="red", weight=0]; 2179[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2179 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2180 -> 1329[label="",style="dashed", color="red", weight=0]; 2180[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2180 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2181 -> 1330[label="",style="dashed", color="red", weight=0]; 2181[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2181 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2182 -> 1331[label="",style="dashed", color="red", weight=0]; 2182[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2182 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2183 -> 1332[label="",style="dashed", color="red", weight=0]; 2183[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2183 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2184 -> 1333[label="",style="dashed", color="red", weight=0]; 2184[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2184 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2185 -> 1334[label="",style="dashed", color="red", weight=0]; 2185[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2185 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2186 -> 1335[label="",style="dashed", color="red", weight=0]; 2186[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2186 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2187 -> 1336[label="",style="dashed", color="red", weight=0]; 2187[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2187 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2319[label="",style="dashed", color="magenta", weight=3]; 1339[label="Succ (Succ (primPlusNat vyw8700 vyw3000000))",fontsize=16,color="green",shape="box"];1339 -> 1421[label="",style="dashed", color="green", weight=3]; 1340[label="Succ vyw8700",fontsize=16,color="green",shape="box"];1341[label="Succ vyw3000000",fontsize=16,color="green",shape="box"];1342[label="Zero",fontsize=16,color="green",shape="box"];2188[label="Pos vyw48010",fontsize=16,color="green",shape="box"];2189[label="vyw4600",fontsize=16,color="green",shape="box"];2190[label="vyw4800",fontsize=16,color="green",shape="box"];2191[label="Pos vyw46010",fontsize=16,color="green",shape="box"];2192[label="Pos vyw48010",fontsize=16,color="green",shape="box"];2193[label="vyw4600",fontsize=16,color="green",shape="box"];2194[label="vyw4800",fontsize=16,color="green",shape="box"];2195[label="Neg vyw46010",fontsize=16,color="green",shape="box"];2196[label="Neg vyw48010",fontsize=16,color="green",shape="box"];2197[label="vyw4600",fontsize=16,color="green",shape="box"];2198[label="vyw4800",fontsize=16,color="green",shape="box"];2199[label="Pos vyw46010",fontsize=16,color="green",shape="box"];2200[label="Neg vyw48010",fontsize=16,color="green",shape="box"];2201[label="vyw4600",fontsize=16,color="green",shape="box"];2202[label="vyw4800",fontsize=16,color="green",shape="box"];2203[label="Neg vyw46010",fontsize=16,color="green",shape="box"];2204[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2204 -> 2320[label="",style="solid", color="black", weight=3]; 2205[label="LT",fontsize=16,color="green",shape="box"];2206[label="vyw4600",fontsize=16,color="green",shape="box"];2207[label="vyw4800",fontsize=16,color="green",shape="box"];2208[label="vyw4600",fontsize=16,color="green",shape="box"];2209[label="vyw4800",fontsize=16,color="green",shape="box"];2210[label="vyw4600",fontsize=16,color="green",shape="box"];2211[label="vyw4800",fontsize=16,color="green",shape="box"];2212[label="vyw4600",fontsize=16,color="green",shape="box"];2213[label="vyw4800",fontsize=16,color="green",shape="box"];2214[label="vyw4600",fontsize=16,color="green",shape="box"];2215[label="vyw4800",fontsize=16,color="green",shape="box"];2216[label="vyw4600",fontsize=16,color="green",shape="box"];2217[label="vyw4800",fontsize=16,color="green",shape="box"];2218[label="vyw4600",fontsize=16,color="green",shape="box"];2219[label="vyw4800",fontsize=16,color="green",shape="box"];2220[label="vyw4600",fontsize=16,color="green",shape="box"];2221[label="vyw4800",fontsize=16,color="green",shape="box"];2222[label="vyw4600",fontsize=16,color="green",shape="box"];2223[label="vyw4800",fontsize=16,color="green",shape="box"];2224[label="vyw4600",fontsize=16,color="green",shape="box"];2225[label="vyw4800",fontsize=16,color="green",shape="box"];2226[label="vyw4600",fontsize=16,color="green",shape="box"];2227[label="vyw4800",fontsize=16,color="green",shape="box"];2228[label="vyw4600",fontsize=16,color="green",shape="box"];2229[label="vyw4800",fontsize=16,color="green",shape="box"];2230[label="vyw4600",fontsize=16,color="green",shape="box"];2231[label="vyw4800",fontsize=16,color="green",shape="box"];2232[label="vyw4600",fontsize=16,color="green",shape="box"];2233[label="vyw4800",fontsize=16,color="green",shape="box"];2234[label="LT",fontsize=16,color="green",shape="box"];2235[label="vyw120",fontsize=16,color="green",shape="box"];2236[label="GT",fontsize=16,color="green",shape="box"];2237[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2237 -> 2321[label="",style="solid", color="black", weight=3]; 2238[label="LT",fontsize=16,color="green",shape="box"];2239[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2239 -> 2322[label="",style="solid", color="black", weight=3]; 2240[label="LT",fontsize=16,color="green",shape="box"];2241[label="Pos vyw48010",fontsize=16,color="green",shape="box"];2242[label="vyw4600",fontsize=16,color="green",shape="box"];2243[label="vyw4800",fontsize=16,color="green",shape="box"];2244[label="Pos vyw46010",fontsize=16,color="green",shape="box"];2245[label="Pos vyw48010",fontsize=16,color="green",shape="box"];2246[label="vyw4600",fontsize=16,color="green",shape="box"];2247[label="vyw4800",fontsize=16,color="green",shape="box"];2248[label="Neg vyw46010",fontsize=16,color="green",shape="box"];2249[label="Neg vyw48010",fontsize=16,color="green",shape="box"];2250[label="vyw4600",fontsize=16,color="green",shape="box"];2251[label="vyw4800",fontsize=16,color="green",shape="box"];2252[label="Pos vyw46010",fontsize=16,color="green",shape="box"];2253[label="Neg vyw48010",fontsize=16,color="green",shape="box"];2254[label="vyw4600",fontsize=16,color="green",shape="box"];2255[label="vyw4800",fontsize=16,color="green",shape="box"];2256[label="Neg vyw46010",fontsize=16,color="green",shape="box"];2257[label="Integer (primMulInt vyw46000 vyw48010)",fontsize=16,color="green",shape="box"];2257 -> 2323[label="",style="dashed", color="green", weight=3]; 2258[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2258 -> 2324[label="",style="solid", color="black", weight=3]; 2259[label="LT",fontsize=16,color="green",shape="box"];2260[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2260 -> 2325[label="",style="solid", color="black", weight=3]; 2261[label="LT",fontsize=16,color="green",shape="box"];2262[label="vyw48000",fontsize=16,color="green",shape="box"];2263[label="vyw46000",fontsize=16,color="green",shape="box"];2264[label="vyw4811",fontsize=16,color="green",shape="box"];2265[label="vyw4611",fontsize=16,color="green",shape="box"];2266[label="vyw4811",fontsize=16,color="green",shape="box"];2267[label="vyw4611",fontsize=16,color="green",shape="box"];2268[label="vyw4811",fontsize=16,color="green",shape="box"];2269[label="vyw4611",fontsize=16,color="green",shape="box"];2270[label="vyw4811",fontsize=16,color="green",shape="box"];2271[label="vyw4611",fontsize=16,color="green",shape="box"];2272[label="vyw4811",fontsize=16,color="green",shape="box"];2273[label="vyw4611",fontsize=16,color="green",shape="box"];2274[label="vyw4811",fontsize=16,color="green",shape="box"];2275[label="vyw4611",fontsize=16,color="green",shape="box"];2276[label="vyw4811",fontsize=16,color="green",shape="box"];2277[label="vyw4611",fontsize=16,color="green",shape="box"];2278[label="vyw4811",fontsize=16,color="green",shape="box"];2279[label="vyw4611",fontsize=16,color="green",shape="box"];2280[label="vyw4811",fontsize=16,color="green",shape="box"];2281[label="vyw4611",fontsize=16,color="green",shape="box"];2282[label="vyw4811",fontsize=16,color="green",shape="box"];2283[label="vyw4611",fontsize=16,color="green",shape="box"];2284[label="vyw4811",fontsize=16,color="green",shape="box"];2285[label="vyw4611",fontsize=16,color="green",shape="box"];2286[label="vyw4811",fontsize=16,color="green",shape="box"];2287[label="vyw4611",fontsize=16,color="green",shape="box"];2288[label="vyw4811",fontsize=16,color="green",shape="box"];2289[label="vyw4611",fontsize=16,color="green",shape="box"];2290[label="vyw4811",fontsize=16,color="green",shape="box"];2291[label="vyw4611",fontsize=16,color="green",shape="box"];2292[label="vyw4612",fontsize=16,color="green",shape="box"];2293[label="vyw4812",fontsize=16,color="green",shape="box"];2294[label="vyw4612",fontsize=16,color="green",shape="box"];2295[label="vyw4812",fontsize=16,color="green",shape="box"];2296[label="vyw4612",fontsize=16,color="green",shape="box"];2297[label="vyw4812",fontsize=16,color="green",shape="box"];2298[label="vyw4612",fontsize=16,color="green",shape="box"];2299[label="vyw4812",fontsize=16,color="green",shape="box"];2300[label="vyw4612",fontsize=16,color="green",shape="box"];2301[label="vyw4812",fontsize=16,color="green",shape="box"];2302[label="vyw4612",fontsize=16,color="green",shape="box"];2303[label="vyw4812",fontsize=16,color="green",shape="box"];2304[label="vyw4612",fontsize=16,color="green",shape="box"];2305[label="vyw4812",fontsize=16,color="green",shape="box"];2306[label="vyw4612",fontsize=16,color="green",shape="box"];2307[label="vyw4812",fontsize=16,color="green",shape="box"];2308[label="vyw4612",fontsize=16,color="green",shape="box"];2309[label="vyw4812",fontsize=16,color="green",shape="box"];2310[label="vyw4612",fontsize=16,color="green",shape="box"];2311[label="vyw4812",fontsize=16,color="green",shape="box"];2312[label="vyw4612",fontsize=16,color="green",shape="box"];2313[label="vyw4812",fontsize=16,color="green",shape="box"];2314[label="vyw4612",fontsize=16,color="green",shape="box"];2315[label="vyw4812",fontsize=16,color="green",shape="box"];2316[label="vyw4612",fontsize=16,color="green",shape="box"];2317[label="vyw4812",fontsize=16,color="green",shape="box"];2318[label="vyw4612",fontsize=16,color="green",shape="box"];2319[label="vyw4812",fontsize=16,color="green",shape="box"];1421 -> 1252[label="",style="dashed", color="red", weight=0]; 1421[label="primPlusNat vyw8700 vyw3000000",fontsize=16,color="magenta"];1421 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1507[label="",style="dashed", color="magenta", weight=3]; 2320[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2320 -> 2326[label="",style="solid", color="black", weight=3]; 2321[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2321 -> 2327[label="",style="solid", color="black", weight=3]; 2322[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2322 -> 2328[label="",style="solid", color="black", weight=3]; 2323 -> 737[label="",style="dashed", color="red", weight=0]; 2323[label="primMulInt vyw46000 vyw48010",fontsize=16,color="magenta"];2323 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2324[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2324 -> 2331[label="",style="solid", color="black", weight=3]; 2325[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2325 -> 2332[label="",style="solid", color="black", weight=3]; 1506[label="vyw3000000",fontsize=16,color="green",shape="box"];1507[label="vyw8700",fontsize=16,color="green",shape="box"];2326[label="GT",fontsize=16,color="green",shape="box"];2327[label="GT",fontsize=16,color="green",shape="box"];2328[label="GT",fontsize=16,color="green",shape="box"];2329[label="vyw48010",fontsize=16,color="green",shape="box"];2330[label="vyw46000",fontsize=16,color="green",shape="box"];2331[label="GT",fontsize=16,color="green",shape="box"];2332[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(vyw46000), Succ(vyw48000)) -> new_primCmpNat(vyw46000, vyw48000) 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(vyw46000), Succ(vyw48000)) -> new_primCmpNat(vyw46000, vyw48000) 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_primMulNat(Succ(vyw50100), Succ(vyw300000)) -> new_primMulNat(vyw50100, Succ(vyw300000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) 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(vyw50100), Succ(vyw300000)) -> new_primMulNat(vyw50100, Succ(vyw300000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs10(new_compare27(@2(vyw24, vyw25), @2(vyw18, vyw19), new_esEs5(@2(vyw24, vyw25), @2(vyw18, vyw19), ba, bb), ba, bb), GT), h, ba, bb) new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw23, @2(vyw24, vyw25), h, ba, bb) new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw22, @2(vyw24, vyw25), h, ba, bb) new_lookupWithDefaultFM01(vyw4, Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw50, vyw51), bc, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw50, vyw51, new_esEs30(vyw50, vyw51, vyw300, vyw301, new_esEs31(vyw50, vyw300, bd), bd, be), bc, bd, be) The TRS R consists of the following rules: new_lt7(vyw4610, vyw4810, app(ty_Maybe, bbc)) -> new_lt6(vyw4610, vyw4810, bbc) new_compare24(vyw460, vyw480, False) -> new_compare12(vyw460, vyw480, new_ltEs4(vyw460, vyw480)) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(ty_Either, bed), bee)) -> new_ltEs13(vyw4610, vyw4810, bed, bee) new_esEs4(Left(vyw500), Left(vyw3000), ty_Double, cg) -> new_esEs16(vyw500, vyw3000) new_esEs31(vyw50, vyw300, app(ty_[], gb)) -> new_esEs13(vyw50, vyw300, gb) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Double, bdf) -> new_ltEs12(vyw4610, vyw4810) new_esEs23(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_primCmpInt(Neg(Succ(vyw46000)), Pos(vyw4800)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs27(vyw4611, vyw4811, ty_Int) -> new_esEs9(vyw4611, vyw4811) new_ltEs11(vyw4611, vyw4811, ty_Double) -> new_ltEs12(vyw4611, vyw4811) new_pePe(True, vyw115) -> True new_esEs23(vyw500, vyw3000, app(ty_Maybe, bgd)) -> new_esEs6(vyw500, vyw3000, bgd) new_compare32(vyw4600, vyw4800, ty_Bool) -> new_compare7(vyw4600, vyw4800) new_ltEs20(vyw4612, vyw4812, ty_Ordering) -> new_ltEs15(vyw4612, vyw4812) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Float) -> new_ltEs5(vyw4610, vyw4810) new_compare32(vyw4600, vyw4800, app(ty_Ratio, dbg)) -> new_compare18(vyw4600, vyw4800, dbg) new_esEs19(vyw4610, vyw4810, app(ty_Ratio, bbb)) -> new_esEs17(vyw4610, vyw4810, bbb) new_compare23(vyw460, vyw480, True, bf) -> EQ new_esEs4(Left(vyw500), Left(vyw3000), ty_Bool, cg) -> new_esEs11(vyw500, vyw3000) new_compare29(@0, @0) -> EQ new_esEs4(Left(vyw500), Right(vyw3000), dh, cg) -> False new_esEs4(Right(vyw500), Left(vyw3000), dh, cg) -> False new_esEs25(vyw502, vyw3002, app(ty_[], cae)) -> new_esEs13(vyw502, vyw3002, cae) new_esEs16(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs9(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vyw48000))) -> GT new_esEs9(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) new_compare26(vyw460, vyw480, True, ca, cb) -> EQ new_esEs22(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_esEs23(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs19(vyw4610, vyw4810, ty_@0) -> new_esEs12(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, app(ty_Ratio, bdg)) -> new_ltEs16(vyw461, vyw481, bdg) new_lt7(vyw4610, vyw4810, ty_Float) -> new_lt14(vyw4610, vyw4810) new_esEs14(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) new_primCmpInt(Neg(Succ(vyw46000)), Neg(vyw4800)) -> new_primCmpNat0(vyw4800, Succ(vyw46000)) new_esEs29(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) new_compare111(vyw460, vyw480, True, ca, cb) -> LT new_esEs6(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs9(vyw500, vyw3000) new_esEs5(@2(vyw500, vyw501), @2(vyw3000, vyw3001), gc, gd) -> new_asAs(new_esEs28(vyw500, vyw3000, gc), new_esEs29(vyw501, vyw3001, gd)) new_ltEs11(vyw4611, vyw4811, app(ty_[], bcc)) -> new_ltEs7(vyw4611, vyw4811, bcc) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Bool) -> new_ltEs4(vyw4610, vyw4810) new_ltEs4(False, True) -> True new_esEs4(Left(vyw500), Left(vyw3000), app(app(ty_@2, db), dc), cg) -> new_esEs5(vyw500, vyw3000, db, dc) new_esEs25(vyw502, vyw3002, app(app(ty_@2, caf), cag)) -> new_esEs5(vyw502, vyw3002, caf, cag) new_ltEs15(EQ, LT) -> False new_lt7(vyw4610, vyw4810, ty_Double) -> new_lt8(vyw4610, vyw4810) new_esEs20(vyw460, vyw480, ty_@0) -> new_esEs12(vyw460, vyw480) new_ltEs20(vyw4612, vyw4812, ty_Char) -> new_ltEs18(vyw4612, vyw4812) new_lt7(vyw4610, vyw4810, app(app(ty_Either, bae), baf)) -> new_lt5(vyw4610, vyw4810, bae, baf) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(ty_@2, bef), beg)) -> new_ltEs10(vyw4610, vyw4810, bef, beg) new_lt4(vyw460, vyw480) -> new_esEs10(new_compare7(vyw460, vyw480), LT) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) new_lt7(vyw4610, vyw4810, ty_Bool) -> new_lt4(vyw4610, vyw4810) new_esEs13(:(vyw500, vyw501), :(vyw3000, vyw3001), gb) -> new_asAs(new_esEs18(vyw500, vyw3000, gb), new_esEs13(vyw501, vyw3001, gb)) new_ltEs19(vyw461, vyw481, ty_Ordering) -> new_ltEs15(vyw461, vyw481) new_esEs26(vyw4610, vyw4810, ty_Char) -> new_esEs14(vyw4610, vyw4810) new_lt20(vyw4610, vyw4810, ty_Bool) -> new_lt4(vyw4610, vyw4810) new_esEs32(vyw35, vyw37, ty_Char) -> new_esEs14(vyw35, vyw37) new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_ltEs15(GT, LT) -> False new_compare17(vyw460, vyw480, gg, gh) -> new_compare27(vyw460, vyw480, new_esEs5(vyw460, vyw480, gg, gh), gg, gh) new_esEs6(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs11(vyw500, vyw3000) new_esEs20(vyw460, vyw480, app(app(ty_@2, gg), gh)) -> new_esEs5(vyw460, vyw480, gg, gh) new_esEs25(vyw502, vyw3002, app(ty_Ratio, cba)) -> new_esEs17(vyw502, vyw3002, cba) new_esEs31(vyw50, vyw300, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs7(vyw50, vyw300, fg, fh, ga) new_esEs31(vyw50, vyw300, app(ty_Ratio, gf)) -> new_esEs17(vyw50, vyw300, gf) new_lt11(vyw460, vyw480) -> new_esEs10(new_compare29(vyw460, vyw480), LT) new_esEs19(vyw4610, vyw4810, app(app(ty_@2, bag), bah)) -> new_esEs5(vyw4610, vyw4810, bag, bah) new_compare1(:(vyw4600, vyw4601), [], bda) -> GT new_compare12(vyw460, vyw480, False) -> GT new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) new_esEs31(vyw50, vyw300, app(app(ty_@2, gc), gd)) -> new_esEs5(vyw50, vyw300, gc, gd) new_esEs20(vyw460, vyw480, app(ty_Ratio, bdd)) -> new_esEs17(vyw460, vyw480, bdd) new_esEs27(vyw4611, vyw4811, ty_Integer) -> new_esEs15(vyw4611, vyw4811) new_esEs10(GT, GT) -> True new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Integer) -> new_ltEs17(vyw4610, vyw4810) new_not(True) -> False new_esEs28(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_primCompAux0(vyw4600, vyw4800, vyw110, bda) -> new_primCompAux00(vyw110, new_compare32(vyw4600, vyw4800, bda)) new_ltEs11(vyw4611, vyw4811, ty_Int) -> new_ltEs8(vyw4611, vyw4811) new_compare6(vyw460, vyw480, bf) -> new_compare23(vyw460, vyw480, new_esEs6(vyw460, vyw480, bf), bf) new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_ltEs20(vyw4612, vyw4812, app(app(ty_@2, ceb), cec)) -> new_ltEs10(vyw4612, vyw4812, ceb, cec) new_primCompAux00(vyw120, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Char) -> new_ltEs18(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, ty_Double) -> new_esEs16(vyw4611, vyw4811) new_ltEs20(vyw4612, vyw4812, ty_Integer) -> new_ltEs17(vyw4612, vyw4812) new_esEs32(vyw35, vyw37, ty_Ordering) -> new_esEs10(vyw35, vyw37) new_compare32(vyw4600, vyw4800, app(app(ty_Either, dbb), dbc)) -> new_compare8(vyw4600, vyw4800, dbb, dbc) new_esEs25(vyw502, vyw3002, ty_Ordering) -> new_esEs10(vyw502, vyw3002) new_ltEs11(vyw4611, vyw4811, ty_@0) -> new_ltEs14(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, ty_Bool) -> new_esEs11(vyw4611, vyw4811) new_compare32(vyw4600, vyw4800, ty_Ordering) -> new_compare30(vyw4600, vyw4800) new_esEs26(vyw4610, vyw4810, ty_Integer) -> new_esEs15(vyw4610, vyw4810) new_esEs29(vyw501, vyw3001, app(ty_[], dfc)) -> new_esEs13(vyw501, vyw3001, dfc) new_esEs25(vyw502, vyw3002, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs7(vyw502, vyw3002, cab, cac, cad) new_esEs32(vyw35, vyw37, ty_Integer) -> new_esEs15(vyw35, vyw37) new_esEs19(vyw4610, vyw4810, ty_Float) -> new_esEs8(vyw4610, vyw4810) new_esEs25(vyw502, vyw3002, ty_Float) -> new_esEs8(vyw502, vyw3002) new_ltEs12(vyw461, vyw481) -> new_fsEs(new_compare31(vyw461, vyw481)) new_ltEs19(vyw461, vyw481, ty_Char) -> new_ltEs18(vyw461, vyw481) new_lt9(vyw460, vyw480, gg, gh) -> new_esEs10(new_compare17(vyw460, vyw480, gg, gh), LT) new_esEs28(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs32(vyw35, vyw37, ty_Float) -> new_esEs8(vyw35, vyw37) new_esEs31(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) new_primEqNat0(Succ(vyw5000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_esEs19(vyw4610, vyw4810, ty_Ordering) -> new_esEs10(vyw4610, vyw4810) new_esEs19(vyw4610, vyw4810, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs7(vyw4610, vyw4810, bbd, bbe, bbf) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs7(vyw500, vyw3000, ea, eb, ec) new_esEs13([], [], gb) -> True new_esEs31(vyw50, vyw300, ty_Ordering) -> new_esEs10(vyw50, vyw300) new_esEs26(vyw4610, vyw4810, ty_Ordering) -> new_esEs10(vyw4610, vyw4810) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bfb)) -> new_ltEs6(vyw4610, vyw4810, bfb) new_esEs6(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_lt10(vyw460, vyw480, bda) -> new_esEs10(new_compare1(vyw460, vyw480, bda), LT) new_esEs4(Left(vyw500), Left(vyw3000), ty_Int, cg) -> new_esEs9(vyw500, vyw3000) new_esEs31(vyw50, vyw300, ty_Char) -> new_esEs14(vyw50, vyw300) new_ltEs15(GT, EQ) -> False new_esEs26(vyw4610, vyw4810, ty_Float) -> new_esEs8(vyw4610, vyw4810) new_compare31(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare31(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_primCompAux00(vyw120, GT) -> GT new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs10(EQ, EQ) -> True new_compare110(vyw460, vyw480, True) -> LT new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Integer) -> new_ltEs17(vyw4610, vyw4810) new_esEs31(vyw50, vyw300, ty_Float) -> new_esEs8(vyw50, vyw300) new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_ltEs10(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bac, bad) -> new_pePe(new_lt7(vyw4610, vyw4810, bac), new_asAs(new_esEs19(vyw4610, vyw4810, bac), new_ltEs11(vyw4611, vyw4811, bad))) new_lt20(vyw4610, vyw4810, ty_Int) -> new_lt12(vyw4610, vyw4810) new_primCmpInt(Pos(Succ(vyw46000)), Neg(vyw4800)) -> GT new_compare14(vyw460, vyw480, False, bf) -> GT new_esEs4(Right(vyw500), Right(vyw3000), dh, app(ty_[], ed)) -> new_esEs13(vyw500, vyw3000, ed) new_compare11(vyw96, vyw97, vyw98, vyw99, True, bg, bh) -> LT new_lt5(vyw460, vyw480, ca, cb) -> new_esEs10(new_compare8(vyw460, vyw480, ca, cb), LT) new_lt7(vyw4610, vyw4810, app(app(ty_@2, bag), bah)) -> new_lt9(vyw4610, vyw4810, bag, bah) new_primPlusNat1(Succ(vyw8700), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw8700, vyw3000000))) new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_[], da), cg) -> new_esEs13(vyw500, vyw3000, da) new_esEs10(LT, EQ) -> False new_esEs10(EQ, LT) -> False new_primCmpNat0(Zero, Succ(vyw48000)) -> LT new_esEs26(vyw4610, vyw4810, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(vyw4610, vyw4810, ccc, ccd, cce) new_esEs20(vyw460, vyw480, ty_Ordering) -> new_esEs10(vyw460, vyw480) new_lt18(vyw460, vyw480) -> new_esEs10(new_compare19(vyw460, vyw480), LT) new_compare210(vyw460, vyw480, True) -> EQ new_esEs20(vyw460, vyw480, ty_Float) -> new_esEs8(vyw460, vyw480) new_esEs32(vyw35, vyw37, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs7(vyw35, vyw37, chh, daa, dab) new_esEs24(vyw501, vyw3001, app(ty_[], bhc)) -> new_esEs13(vyw501, vyw3001, bhc) new_primCmpNat0(Succ(vyw46000), Zero) -> GT new_pePe(False, vyw115) -> vyw115 new_lt20(vyw4610, vyw4810, ty_@0) -> new_lt11(vyw4610, vyw4810) new_lt19(vyw460, vyw480, ty_Double) -> new_lt8(vyw460, vyw480) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(ty_Maybe, chb)) -> new_ltEs6(vyw4610, vyw4810, chb) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_lt19(vyw460, vyw480, ty_Int) -> new_lt12(vyw460, vyw480) new_ltEs13(Left(vyw4610), Right(vyw4810), bde, bdf) -> True new_lt13(vyw460, vyw480) -> new_esEs10(new_compare30(vyw460, vyw480), LT) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(ty_Ratio, eh)) -> new_esEs17(vyw500, vyw3000, eh) new_esEs26(vyw4610, vyw4810, ty_@0) -> new_esEs12(vyw4610, vyw4810) new_esEs26(vyw4610, vyw4810, app(app(ty_@2, cbf), cbg)) -> new_esEs5(vyw4610, vyw4810, cbf, cbg) new_ltEs19(vyw461, vyw481, app(app(ty_@2, bac), bad)) -> new_ltEs10(vyw461, vyw481, bac, bad) new_compare18(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Int) -> new_compare13(new_sr(vyw4600, vyw4801), new_sr(vyw4800, vyw4601)) new_ltEs19(vyw461, vyw481, ty_Integer) -> new_ltEs17(vyw461, vyw481) new_esEs29(vyw501, vyw3001, ty_Char) -> new_esEs14(vyw501, vyw3001) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(app(ty_@2, ee), ef)) -> new_esEs5(vyw500, vyw3000, ee, ef) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(ty_Either, cfb), cfc), bdf) -> new_ltEs13(vyw4610, vyw4810, cfb, cfc) new_esEs32(vyw35, vyw37, app(ty_Maybe, daf)) -> new_esEs6(vyw35, vyw37, daf) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_esEs30(vyw34, vyw35, vyw36, vyw37, False, chf, chg) -> new_esEs10(new_compare27(@2(vyw34, vyw35), @2(vyw36, vyw37), False, chf, chg), LT) new_ltEs13(Right(vyw4610), Left(vyw4810), bde, bdf) -> False new_esEs26(vyw4610, vyw4810, app(ty_Ratio, cca)) -> new_esEs17(vyw4610, vyw4810, cca) new_esEs26(vyw4610, vyw4810, app(ty_[], cbh)) -> new_esEs13(vyw4610, vyw4810, cbh) new_compare32(vyw4600, vyw4800, ty_@0) -> new_compare29(vyw4600, vyw4800) new_esEs31(vyw50, vyw300, app(app(ty_Either, dh), cg)) -> new_esEs4(vyw50, vyw300, dh, cg) new_esEs29(vyw501, vyw3001, ty_Double) -> new_esEs16(vyw501, vyw3001) new_esEs25(vyw502, vyw3002, ty_Char) -> new_esEs14(vyw502, vyw3002) new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Int) -> new_ltEs8(vyw4610, vyw4810) new_primCmpInt(Neg(Zero), Pos(Succ(vyw48000))) -> LT new_compare25(vyw460, vyw480, True, fc, fd, ff) -> EQ new_ltEs20(vyw4612, vyw4812, app(app(ty_Either, cdh), cea)) -> new_ltEs13(vyw4612, vyw4812, cdh, cea) new_esEs32(vyw35, vyw37, ty_Double) -> new_esEs16(vyw35, vyw37) new_primMulInt(Pos(vyw5010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) new_esEs29(vyw501, vyw3001, ty_Float) -> new_esEs8(vyw501, vyw3001) new_esEs23(vyw500, vyw3000, app(app(ty_Either, bgf), bgg)) -> new_esEs4(vyw500, vyw3000, bgf, bgg) new_ltEs19(vyw461, vyw481, ty_Double) -> new_ltEs12(vyw461, vyw481) new_esEs13(:(vyw500, vyw501), [], gb) -> False new_esEs13([], :(vyw3000, vyw3001), gb) -> False new_compare27(@2(vyw460, vyw461), @2(vyw480, vyw481), False, bdb, bdc) -> new_compare10(vyw460, vyw461, vyw480, vyw481, new_lt19(vyw460, vyw480, bdb), new_asAs(new_esEs20(vyw460, vyw480, bdb), new_ltEs19(vyw461, vyw481, bdc)), bdb, bdc) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(ty_@2, cfd), cfe), bdf) -> new_ltEs10(vyw4610, vyw4810, cfd, cfe) new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs10(vyw501, vyw3001) new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_Either, ddd), dde)) -> new_esEs4(vyw500, vyw3000, ddd, dde) new_compare32(vyw4600, vyw4800, ty_Integer) -> new_compare15(vyw4600, vyw4800) new_esEs28(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs24(vyw501, vyw3001, app(ty_Maybe, bhf)) -> new_esEs6(vyw501, vyw3001, bhf) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Ordering, bdf) -> new_ltEs15(vyw4610, vyw4810) new_primMulNat0(Succ(vyw50100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_Ratio, bfa)) -> new_ltEs16(vyw4610, vyw4810, bfa) new_lt20(vyw4610, vyw4810, ty_Double) -> new_lt8(vyw4610, vyw4810) new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) new_ltEs20(vyw4612, vyw4812, ty_Double) -> new_ltEs12(vyw4612, vyw4812) new_compare18(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Integer) -> new_compare15(new_sr0(vyw4600, vyw4801), new_sr0(vyw4800, vyw4601)) new_lt19(vyw460, vyw480, ty_Ordering) -> new_lt13(vyw460, vyw480) new_ltEs19(vyw461, vyw481, app(app(ty_Either, bde), bdf)) -> new_ltEs13(vyw461, vyw481, bde, bdf) new_ltEs18(vyw461, vyw481) -> new_fsEs(new_compare19(vyw461, vyw481)) new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Int) -> new_ltEs8(vyw4610, vyw4810) new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_Ratio, cfg), bdf) -> new_ltEs16(vyw4610, vyw4810, cfg) new_compare23(vyw460, vyw480, False, bf) -> new_compare14(vyw460, vyw480, new_ltEs6(vyw460, vyw480, bf), bf) new_compare26(vyw460, vyw480, False, ca, cb) -> new_compare111(vyw460, vyw480, new_ltEs13(vyw460, vyw480, ca, cb), ca, cb) new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs22(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs19(vyw4610, vyw4810, ty_Double) -> new_esEs16(vyw4610, vyw4810) new_lt7(vyw4610, vyw4810, ty_@0) -> new_lt11(vyw4610, vyw4810) new_compare1([], [], bda) -> EQ new_esEs6(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs7(vyw500, vyw3000, dcd, dce, dcf) new_esEs27(vyw4611, vyw4811, ty_Float) -> new_esEs8(vyw4611, vyw4811) new_ltEs6(Nothing, Just(vyw4810), bdh) -> True new_esEs32(vyw35, vyw37, app(app(ty_Either, dah), dba)) -> new_esEs4(vyw35, vyw37, dah, dba) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Bool) -> new_ltEs4(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs9(vyw461, vyw481, bea, beb, bec) new_primPlusNat1(Succ(vyw8700), Zero) -> Succ(vyw8700) new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs23(vyw500, vyw3000, app(ty_Ratio, bge)) -> new_esEs17(vyw500, vyw3000, bge) new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs7(vyw501, vyw3001, bgh, bha, bhb) new_ltEs19(vyw461, vyw481, ty_@0) -> new_ltEs14(vyw461, vyw481) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_@0, bdf) -> new_ltEs14(vyw4610, vyw4810) new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, app(app(ty_@2, bgb), bgc)) -> new_esEs5(vyw500, vyw3000, bgb, bgc) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs11(vyw4611, vyw4811, ty_Char) -> new_ltEs18(vyw4611, vyw4811) new_ltEs20(vyw4612, vyw4812, ty_Float) -> new_ltEs5(vyw4612, vyw4812) new_esEs24(vyw501, vyw3001, app(ty_Ratio, bhg)) -> new_esEs17(vyw501, vyw3001, bhg) new_ltEs20(vyw4612, vyw4812, ty_@0) -> new_ltEs14(vyw4612, vyw4812) new_esEs23(vyw500, vyw3000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs7(vyw500, vyw3000, bff, bfg, bfh) new_esEs20(vyw460, vyw480, ty_Double) -> new_esEs16(vyw460, vyw480) new_esEs23(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(app(ty_@2, cbf), cbg)) -> new_lt9(vyw4610, vyw4810, cbf, cbg) new_primMulInt(Neg(vyw5010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw48000))) -> new_primCmpNat0(Zero, Succ(vyw48000)) new_compare11(vyw96, vyw97, vyw98, vyw99, False, bg, bh) -> GT new_esEs32(vyw35, vyw37, ty_Int) -> new_esEs9(vyw35, vyw37) new_esEs28(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Maybe, ddb)) -> new_esEs6(vyw500, vyw3000, ddb) new_esEs6(Nothing, Just(vyw3000), ge) -> False new_esEs6(Just(vyw500), Nothing, ge) -> False new_esEs7(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fg, fh, ga) -> new_asAs(new_esEs23(vyw500, vyw3000, fg), new_asAs(new_esEs24(vyw501, vyw3001, fh), new_esEs25(vyw502, vyw3002, ga))) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(ty_Maybe, eg)) -> new_esEs6(vyw500, vyw3000, eg) new_ltEs15(EQ, GT) -> True new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs11(vyw501, vyw3001) new_esEs6(Nothing, Nothing, ge) -> True new_esEs4(Left(vyw500), Left(vyw3000), ty_Ordering, cg) -> new_esEs10(vyw500, vyw3000) new_esEs24(vyw501, vyw3001, app(app(ty_@2, bhd), bhe)) -> new_esEs5(vyw501, vyw3001, bhd, bhe) new_esEs11(False, False) -> True new_esEs10(LT, LT) -> True new_esEs27(vyw4611, vyw4811, ty_Char) -> new_esEs14(vyw4611, vyw4811) new_lt19(vyw460, vyw480, app(app(ty_@2, gg), gh)) -> new_lt9(vyw460, vyw480, gg, gh) new_esEs21(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_esEs31(vyw50, vyw300, ty_Double) -> new_esEs16(vyw50, vyw300) new_lt21(vyw4611, vyw4811, ty_Ordering) -> new_lt13(vyw4611, vyw4811) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Float, bdf) -> new_ltEs5(vyw4610, vyw4810) new_esEs28(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, ty_Float) -> new_ltEs5(vyw461, vyw481) new_compare30(vyw460, vyw480) -> new_compare210(vyw460, vyw480, new_esEs10(vyw460, vyw480)) new_ltEs11(vyw4611, vyw4811, app(app(ty_Either, bbg), bbh)) -> new_ltEs13(vyw4611, vyw4811, bbg, bbh) new_esEs27(vyw4611, vyw4811, ty_@0) -> new_esEs12(vyw4611, vyw4811) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs9(vyw4610, vyw4810, chc, chd, che) new_esEs28(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(app(ty_@2, cgf), cgg)) -> new_ltEs10(vyw4610, vyw4810, cgf, cgg) new_lt19(vyw460, vyw480, app(ty_[], bda)) -> new_lt10(vyw460, vyw480, bda) new_esEs27(vyw4611, vyw4811, app(app(ty_@2, cch), cda)) -> new_esEs5(vyw4611, vyw4811, cch, cda) new_primMulInt(Pos(vyw5010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) new_primMulInt(Neg(vyw5010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) new_ltEs20(vyw4612, vyw4812, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs9(vyw4612, vyw4812, ceg, ceh, cfa) new_ltEs11(vyw4611, vyw4811, ty_Float) -> new_ltEs5(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, app(ty_Ratio, cdc)) -> new_esEs17(vyw4611, vyw4811, cdc) new_esEs20(vyw460, vyw480, ty_Integer) -> new_esEs15(vyw460, vyw480) new_esEs4(Left(vyw500), Left(vyw3000), ty_Float, cg) -> new_esEs8(vyw500, vyw3000) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_[], beh)) -> new_ltEs7(vyw4610, vyw4810, beh) new_esEs31(vyw50, vyw300, app(ty_Maybe, ge)) -> new_esEs6(vyw50, vyw300, ge) new_lt7(vyw4610, vyw4810, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt17(vyw4610, vyw4810, bbd, bbe, bbf) new_compare15(Integer(vyw4600), Integer(vyw4800)) -> new_primCmpInt(vyw4600, vyw4800) new_compare19(Char(vyw4600), Char(vyw4800)) -> new_primCmpNat0(vyw4600, vyw4800) new_esEs31(vyw50, vyw300, ty_Bool) -> new_esEs11(vyw50, vyw300) new_esEs23(vyw500, vyw3000, app(ty_[], bga)) -> new_esEs13(vyw500, vyw3000, bga) new_lt21(vyw4611, vyw4811, ty_@0) -> new_lt11(vyw4611, vyw4811) new_sr0(Integer(vyw46000), Integer(vyw48010)) -> Integer(new_primMulInt(vyw46000, vyw48010)) new_ltEs15(LT, GT) -> True new_esEs29(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_lt6(vyw460, vyw480, bf) -> new_esEs10(new_compare6(vyw460, vyw480, bf), LT) new_esEs28(vyw500, vyw3000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs7(vyw500, vyw3000, ddf, ddg, ddh) new_esEs20(vyw460, vyw480, ty_Int) -> new_esEs9(vyw460, vyw480) new_ltEs11(vyw4611, vyw4811, ty_Integer) -> new_ltEs17(vyw4611, vyw4811) new_esEs15(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_Bool) -> new_esEs11(vyw502, vyw3002) new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_@2, dch), dda)) -> new_esEs5(vyw500, vyw3000, dch, dda) new_lt7(vyw4610, vyw4810, ty_Ordering) -> new_lt13(vyw4610, vyw4810) new_esEs17(:%(vyw500, vyw501), :%(vyw3000, vyw3001), gf) -> new_asAs(new_esEs21(vyw500, vyw3000, gf), new_esEs22(vyw501, vyw3001, gf)) new_esEs25(vyw502, vyw3002, ty_Int) -> new_esEs9(vyw502, vyw3002) new_asAs(True, vyw67) -> vyw67 new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Integer, bdf) -> new_ltEs17(vyw4610, vyw4810) new_lt19(vyw460, vyw480, app(ty_Ratio, bdd)) -> new_lt15(vyw460, vyw480, bdd) new_lt20(vyw4610, vyw4810, ty_Ordering) -> new_lt13(vyw4610, vyw4810) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Double) -> new_ltEs12(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, app(ty_[], cdb)) -> new_esEs13(vyw4611, vyw4811, cdb) new_compare32(vyw4600, vyw4800, app(ty_Maybe, dbh)) -> new_compare6(vyw4600, vyw4800, dbh) new_lt19(vyw460, vyw480, ty_Char) -> new_lt18(vyw460, vyw480) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(app(ty_Either, cgd), cge)) -> new_ltEs13(vyw4610, vyw4810, cgd, cge) new_compare32(vyw4600, vyw4800, app(app(ty_@2, dbd), dbe)) -> new_compare17(vyw4600, vyw4800, dbd, dbe) new_esEs4(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, cd), ce), cf), cg) -> new_esEs7(vyw500, vyw3000, cd, ce, cf) new_esEs4(Left(vyw500), Left(vyw3000), ty_Char, cg) -> new_esEs14(vyw500, vyw3000) new_esEs4(Left(vyw500), Left(vyw3000), app(app(ty_Either, df), dg), cg) -> new_esEs4(vyw500, vyw3000, df, dg) new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_compare111(vyw460, vyw480, False, ca, cb) -> GT new_esEs19(vyw4610, vyw4810, ty_Bool) -> new_esEs11(vyw4610, vyw4810) new_lt8(vyw460, vyw480) -> new_esEs10(new_compare31(vyw460, vyw480), LT) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Ratio, ddc)) -> new_esEs17(vyw500, vyw3000, ddc) new_lt17(vyw460, vyw480, fc, fd, ff) -> new_esEs10(new_compare28(vyw460, vyw480, fc, fd, ff), LT) new_lt21(vyw4611, vyw4811, app(app(ty_@2, cch), cda)) -> new_lt9(vyw4611, vyw4811, cch, cda) new_lt21(vyw4611, vyw4811, ty_Int) -> new_lt12(vyw4611, vyw4811) new_esEs19(vyw4610, vyw4810, ty_Int) -> new_esEs9(vyw4610, vyw4810) new_compare32(vyw4600, vyw4800, app(ty_[], dbf)) -> new_compare1(vyw4600, vyw4800, dbf) new_compare32(vyw4600, vyw4800, app(app(app(ty_@3, dca), dcb), dcc)) -> new_compare28(vyw4600, vyw4800, dca, dcb, dcc) new_esEs30(vyw34, vyw35, vyw36, vyw37, True, chf, chg) -> new_esEs10(new_compare27(@2(vyw34, vyw35), @2(vyw36, vyw37), new_esEs32(vyw35, vyw37, chg), chf, chg), LT) new_primCmpInt(Pos(Succ(vyw46000)), Pos(vyw4800)) -> new_primCmpNat0(Succ(vyw46000), vyw4800) new_lt16(vyw460, vyw480) -> new_esEs10(new_compare15(vyw460, vyw480), LT) new_esEs31(vyw50, vyw300, ty_Int) -> new_esEs9(vyw50, vyw300) new_compare110(vyw460, vyw480, False) -> GT new_lt20(vyw4610, vyw4810, app(ty_[], cbh)) -> new_lt10(vyw4610, vyw4810, cbh) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Double) -> new_esEs16(vyw500, vyw3000) new_primCompAux00(vyw120, EQ) -> vyw120 new_esEs6(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs20(vyw460, vyw480, app(app(ty_Either, ca), cb)) -> new_esEs4(vyw460, vyw480, ca, cb) new_sr(vyw501, vyw3000) -> new_primMulInt(vyw501, vyw3000) new_esEs19(vyw4610, vyw4810, app(app(ty_Either, bae), baf)) -> new_esEs4(vyw4610, vyw4810, bae, baf) new_esEs25(vyw502, vyw3002, ty_Integer) -> new_esEs15(vyw502, vyw3002) new_primMulNat0(Zero, Zero) -> Zero new_compare13(vyw460, vyw480) -> new_primCmpInt(vyw460, vyw480) new_lt21(vyw4611, vyw4811, ty_Double) -> new_lt8(vyw4611, vyw4811) new_esEs23(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_ltEs14(vyw461, vyw481) -> new_fsEs(new_compare29(vyw461, vyw481)) new_lt21(vyw4611, vyw4811, app(ty_[], cdb)) -> new_lt10(vyw4611, vyw4811, cdb) new_ltEs9(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bea, beb, bec) -> new_pePe(new_lt20(vyw4610, vyw4810, bea), new_asAs(new_esEs26(vyw4610, vyw4810, bea), new_pePe(new_lt21(vyw4611, vyw4811, beb), new_asAs(new_esEs27(vyw4611, vyw4811, beb), new_ltEs20(vyw4612, vyw4812, bec))))) new_compare1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), bda) -> new_primCompAux0(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, bda), bda) new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_[], cff), bdf) -> new_ltEs7(vyw4610, vyw4810, cff) new_esEs25(vyw502, vyw3002, app(app(ty_Either, cbb), cbc)) -> new_esEs4(vyw502, vyw3002, cbb, cbc) new_esEs19(vyw4610, vyw4810, ty_Integer) -> new_esEs15(vyw4610, vyw4810) new_ltEs15(EQ, EQ) -> True new_lt20(vyw4610, vyw4810, app(ty_Ratio, cca)) -> new_lt15(vyw4610, vyw4810, cca) new_ltEs20(vyw4612, vyw4812, app(ty_Maybe, cef)) -> new_ltEs6(vyw4612, vyw4812, cef) new_esEs26(vyw4610, vyw4810, app(ty_Maybe, ccb)) -> new_esEs6(vyw4610, vyw4810, ccb) new_fsEs(vyw102) -> new_not(new_esEs10(vyw102, GT)) new_esEs26(vyw4610, vyw4810, ty_Bool) -> new_esEs11(vyw4610, vyw4810) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(app(ty_Either, fa), fb)) -> new_esEs4(vyw500, vyw3000, fa, fb) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Char, bdf) -> new_ltEs18(vyw4610, vyw4810) new_esEs31(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_esEs32(vyw35, vyw37, app(app(ty_@2, dad), dae)) -> new_esEs5(vyw35, vyw37, dad, dae) new_compare31(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare7(vyw460, vyw480) -> new_compare24(vyw460, vyw480, new_esEs11(vyw460, vyw480)) new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, app(ty_Maybe, bdh)) -> new_ltEs6(vyw461, vyw481, bdh) new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_esEs29(vyw501, vyw3001, app(app(ty_Either, dfh), dga)) -> new_esEs4(vyw501, vyw3001, dfh, dga) new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs25(vyw502, vyw3002, app(ty_Maybe, cah)) -> new_esEs6(vyw502, vyw3002, cah) new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_lt19(vyw460, vyw480, ty_@0) -> new_lt11(vyw460, vyw480) new_ltEs15(LT, EQ) -> True new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_ltEs4(True, False) -> False new_compare24(vyw460, vyw480, True) -> EQ new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_Maybe, cfh), bdf) -> new_ltEs6(vyw4610, vyw4810, cfh) new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs14(vyw501, vyw3001) new_ltEs6(Nothing, Nothing, bdh) -> True new_esEs20(vyw460, vyw480, app(ty_Maybe, bf)) -> new_esEs6(vyw460, vyw480, bf) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_[], dcg)) -> new_esEs13(vyw500, vyw3000, dcg) new_ltEs11(vyw4611, vyw4811, ty_Bool) -> new_ltEs4(vyw4611, vyw4811) new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False new_esEs11(True, True) -> True new_compare10(vyw96, vyw97, vyw98, vyw99, True, vyw101, bg, bh) -> new_compare11(vyw96, vyw97, vyw98, vyw99, True, bg, bh) new_esEs19(vyw4610, vyw4810, app(ty_Maybe, bbc)) -> new_esEs6(vyw4610, vyw4810, bbc) new_lt21(vyw4611, vyw4811, app(ty_Ratio, cdc)) -> new_lt15(vyw4611, vyw4811, cdc) new_primCmpInt(Neg(Zero), Neg(Succ(vyw48000))) -> new_primCmpNat0(Succ(vyw48000), Zero) new_ltEs6(Just(vyw4610), Nothing, bdh) -> False new_esEs28(vyw500, vyw3000, app(ty_[], dea)) -> new_esEs13(vyw500, vyw3000, dea) new_lt21(vyw4611, vyw4811, ty_Bool) -> new_lt4(vyw4611, vyw4811) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(ty_[], cgh)) -> new_ltEs7(vyw4610, vyw4810, cgh) new_esEs29(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs24(vyw501, vyw3001, app(app(ty_Either, bhh), caa)) -> new_esEs4(vyw501, vyw3001, bhh, caa) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Int) -> new_esEs9(vyw500, vyw3000) new_lt7(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_esEs18(vyw500, vyw3000, app(app(ty_Either, baa), bab)) -> new_esEs4(vyw500, vyw3000, baa, bab) new_ltEs4(False, False) -> True new_compare8(vyw460, vyw480, ca, cb) -> new_compare26(vyw460, vyw480, new_esEs4(vyw460, vyw480, ca, cb), ca, cb) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, cga), cgb), cgc), bdf) -> new_ltEs9(vyw4610, vyw4810, cga, cgb, cgc) new_compare32(vyw4600, vyw4800, ty_Char) -> new_compare19(vyw4600, vyw4800) new_lt7(vyw4610, vyw4810, app(ty_Ratio, bbb)) -> new_lt15(vyw4610, vyw4810, bbb) new_lt15(vyw460, vyw480, bdd) -> new_esEs10(new_compare18(vyw460, vyw480, bdd), LT) new_esEs10(LT, GT) -> False new_esEs10(GT, LT) -> False new_esEs21(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_compare31(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_ltEs5(vyw461, vyw481) -> new_fsEs(new_compare9(vyw461, vyw481)) new_ltEs11(vyw4611, vyw4811, app(ty_Ratio, bcd)) -> new_ltEs16(vyw4611, vyw4811, bcd) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Ordering) -> new_ltEs15(vyw4610, vyw4810) new_esEs29(vyw501, vyw3001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs7(vyw501, vyw3001, deh, dfa, dfb) new_ltEs7(vyw461, vyw481, cc) -> new_fsEs(new_compare1(vyw461, vyw481, cc)) new_lt7(vyw4610, vyw4810, ty_Char) -> new_lt18(vyw4610, vyw4810) new_ltEs8(vyw461, vyw481) -> new_fsEs(new_compare13(vyw461, vyw481)) new_ltEs19(vyw461, vyw481, app(ty_[], cc)) -> new_ltEs7(vyw461, vyw481, cc) new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_not(False) -> True new_esEs28(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_ltEs20(vyw4612, vyw4812, ty_Bool) -> new_ltEs4(vyw4612, vyw4812) new_lt19(vyw460, vyw480, ty_Float) -> new_lt14(vyw460, vyw480) new_esEs29(vyw501, vyw3001, ty_Ordering) -> new_esEs10(vyw501, vyw3001) new_esEs19(vyw4610, vyw4810, ty_Char) -> new_esEs14(vyw4610, vyw4810) new_compare1([], :(vyw4800, vyw4801), bda) -> LT new_esEs20(vyw460, vyw480, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs7(vyw460, vyw480, fc, fd, ff) new_lt14(vyw460, vyw480) -> new_esEs10(new_compare9(vyw460, vyw480), LT) new_lt19(vyw460, vyw480, app(app(ty_Either, ca), cb)) -> new_lt5(vyw460, vyw480, ca, cb) new_esEs32(vyw35, vyw37, app(ty_[], dac)) -> new_esEs13(vyw35, vyw37, dac) new_esEs32(vyw35, vyw37, app(ty_Ratio, dag)) -> new_esEs17(vyw35, vyw37, dag) new_esEs32(vyw35, vyw37, ty_Bool) -> new_esEs11(vyw35, vyw37) new_compare32(vyw4600, vyw4800, ty_Float) -> new_compare9(vyw4600, vyw4800) new_ltEs11(vyw4611, vyw4811, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs9(vyw4611, vyw4811, bcf, bcg, bch) new_lt19(vyw460, vyw480, app(ty_Maybe, bf)) -> new_lt6(vyw460, vyw480, bf) new_lt21(vyw4611, vyw4811, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt17(vyw4611, vyw4811, cde, cdf, cdg) new_esEs32(vyw35, vyw37, ty_@0) -> new_esEs12(vyw35, vyw37) new_compare27(vyw46, vyw48, True, bdb, bdc) -> EQ new_ltEs20(vyw4612, vyw4812, app(ty_[], ced)) -> new_ltEs7(vyw4612, vyw4812, ced) new_lt7(vyw4610, vyw4810, app(ty_[], bba)) -> new_lt10(vyw4610, vyw4810, bba) new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs16(vyw501, vyw3001) new_esEs18(vyw500, vyw3000, app(ty_Maybe, hg)) -> new_esEs6(vyw500, vyw3000, hg) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Char) -> new_ltEs18(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, ty_Ordering) -> new_esEs10(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs7(vyw4611, vyw4811, cde, cdf, cdg) new_primPlusNat0(Succ(vyw870), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw870, vyw300000))) new_compare16(vyw460, vyw480, False, fc, fd, ff) -> GT new_lt21(vyw4611, vyw4811, ty_Integer) -> new_lt16(vyw4611, vyw4811) new_esEs29(vyw501, vyw3001, app(ty_Maybe, dff)) -> new_esEs6(vyw501, vyw3001, dff) new_esEs18(vyw500, vyw3000, app(ty_[], hd)) -> new_esEs13(vyw500, vyw3000, hd) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(ty_Ratio, cha)) -> new_ltEs16(vyw4610, vyw4810, cha) new_esEs20(vyw460, vyw480, ty_Char) -> new_esEs14(vyw460, vyw480) new_primPlusNat1(Zero, Zero) -> Zero new_compare25(vyw460, vyw480, False, fc, fd, ff) -> new_compare16(vyw460, vyw480, new_ltEs9(vyw460, vyw480, fc, fd, ff), fc, fd, ff) new_esEs26(vyw4610, vyw4810, ty_Double) -> new_esEs16(vyw4610, vyw4810) new_esEs28(vyw500, vyw3000, app(app(ty_@2, deb), dec)) -> new_esEs5(vyw500, vyw3000, deb, dec) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_Ratio, de), cg) -> new_esEs17(vyw500, vyw3000, de) new_esEs20(vyw460, vyw480, ty_Bool) -> new_esEs11(vyw460, vyw480) new_ltEs17(vyw461, vyw481) -> new_fsEs(new_compare15(vyw461, vyw481)) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_@0) -> new_ltEs14(vyw4610, vyw4810) new_esEs4(Left(vyw500), Left(vyw3000), ty_@0, cg) -> new_esEs12(vyw500, vyw3000) new_lt19(vyw460, vyw480, ty_Bool) -> new_lt4(vyw460, vyw480) new_esEs28(vyw500, vyw3000, app(app(ty_Either, def), deg)) -> new_esEs4(vyw500, vyw3000, def, deg) new_ltEs11(vyw4611, vyw4811, ty_Ordering) -> new_ltEs15(vyw4611, vyw4811) new_lt20(vyw4610, vyw4810, ty_Float) -> new_lt14(vyw4610, vyw4810) new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs8(vyw501, vyw3001) new_ltEs15(LT, LT) -> True new_esEs6(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs14(vyw500, vyw3000) new_esEs28(vyw500, vyw3000, app(ty_Ratio, dee)) -> new_esEs17(vyw500, vyw3000, dee) new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs7(vyw500, vyw3000, ha, hb, hc) new_esEs10(EQ, GT) -> False new_esEs10(GT, EQ) -> False new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, ty_Bool) -> new_ltEs4(vyw461, vyw481) new_esEs26(vyw4610, vyw4810, app(app(ty_Either, cbd), cbe)) -> new_esEs4(vyw4610, vyw4810, cbd, cbe) new_esEs28(vyw500, vyw3000, app(ty_Maybe, ded)) -> new_esEs6(vyw500, vyw3000, ded) new_esEs8(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs9(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_primMulNat0(Succ(vyw50100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw50100, Succ(vyw300000)), vyw300000) new_lt21(vyw4611, vyw4811, ty_Float) -> new_lt14(vyw4611, vyw4811) new_esEs12(@0, @0) -> True new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Int, bdf) -> new_ltEs8(vyw4610, vyw4810) new_compare28(vyw460, vyw480, fc, fd, ff) -> new_compare25(vyw460, vyw480, new_esEs7(vyw460, vyw480, fc, fd, ff), fc, fd, ff) new_primCmpNat0(Succ(vyw46000), Succ(vyw48000)) -> new_primCmpNat0(vyw46000, vyw48000) new_compare16(vyw460, vyw480, True, fc, fd, ff) -> LT new_esEs27(vyw4611, vyw4811, app(ty_Maybe, cdd)) -> new_esEs6(vyw4611, vyw4811, cdd) new_compare12(vyw460, vyw480, True) -> LT new_compare32(vyw4600, vyw4800, ty_Double) -> new_compare31(vyw4600, vyw4800) new_ltEs11(vyw4611, vyw4811, app(ty_Maybe, bce)) -> new_ltEs6(vyw4611, vyw4811, bce) new_lt12(vyw460, vyw480) -> new_esEs10(new_compare13(vyw460, vyw480), LT) new_ltEs20(vyw4612, vyw4812, ty_Int) -> new_ltEs8(vyw4612, vyw4812) new_compare210(vyw460, vyw480, False) -> new_compare110(vyw460, vyw480, new_ltEs15(vyw460, vyw480)) new_lt20(vyw4610, vyw4810, ty_Char) -> new_lt18(vyw4610, vyw4810) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs16(vyw461, vyw481, bdg) -> new_fsEs(new_compare18(vyw461, vyw481, bdg)) new_lt21(vyw4611, vyw4811, app(app(ty_Either, ccf), ccg)) -> new_lt5(vyw4611, vyw4811, ccf, ccg) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(ty_Maybe, ccb)) -> new_lt6(vyw4610, vyw4810, ccb) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(vyw4610, vyw4810, bfc, bfd, bfe) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Float) -> new_ltEs5(vyw4610, vyw4810) new_esEs18(vyw500, vyw3000, app(app(ty_@2, he), hf)) -> new_esEs5(vyw500, vyw3000, he, hf) new_esEs23(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_@0) -> new_ltEs14(vyw4610, vyw4810) new_primEqNat0(Zero, Zero) -> True new_lt19(vyw460, vyw480, app(app(app(ty_@3, fc), fd), ff)) -> new_lt17(vyw460, vyw480, fc, fd, ff) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_Maybe, dd), cg) -> new_esEs6(vyw500, vyw3000, dd) new_ltEs11(vyw4611, vyw4811, app(app(ty_@2, bca), bcb)) -> new_ltEs10(vyw4611, vyw4811, bca, bcb) new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_compare14(vyw460, vyw480, True, bf) -> LT new_esEs28(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs20(vyw4612, vyw4812, app(ty_Ratio, cee)) -> new_ltEs16(vyw4612, vyw4812, cee) new_esEs29(vyw501, vyw3001, app(app(ty_@2, dfd), dfe)) -> new_esEs5(vyw501, vyw3001, dfd, dfe) new_lt7(vyw4610, vyw4810, ty_Int) -> new_lt12(vyw4610, vyw4810) new_lt20(vyw4610, vyw4810, app(app(ty_Either, cbd), cbe)) -> new_lt5(vyw4610, vyw4810, cbd, cbe) new_lt21(vyw4611, vyw4811, app(ty_Maybe, cdd)) -> new_lt6(vyw4611, vyw4811, cdd) new_lt21(vyw4611, vyw4811, ty_Char) -> new_lt18(vyw4611, vyw4811) new_esEs29(vyw501, vyw3001, app(ty_Ratio, dfg)) -> new_esEs17(vyw501, vyw3001, dfg) new_esEs29(vyw501, vyw3001, ty_Bool) -> new_esEs11(vyw501, vyw3001) new_asAs(False, vyw67) -> False new_esEs19(vyw4610, vyw4810, app(ty_[], bba)) -> new_esEs13(vyw4610, vyw4810, bba) new_compare32(vyw4600, vyw4800, ty_Int) -> new_compare13(vyw4600, vyw4800) new_esEs23(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(app(app(ty_@3, ccc), ccd), cce)) -> new_lt17(vyw4610, vyw4810, ccc, ccd, cce) new_esEs18(vyw500, vyw3000, app(ty_Ratio, hh)) -> new_esEs17(vyw500, vyw3000, hh) new_esEs26(vyw4610, vyw4810, ty_Int) -> new_esEs9(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, ty_Int) -> new_ltEs8(vyw461, vyw481) new_esEs27(vyw4611, vyw4811, app(app(ty_Either, ccf), ccg)) -> new_esEs4(vyw4611, vyw4811, ccf, ccg) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Ordering) -> new_ltEs15(vyw4610, vyw4810) new_esEs6(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_Double) -> new_esEs16(vyw502, vyw3002) new_compare10(vyw96, vyw97, vyw98, vyw99, False, vyw101, bg, bh) -> new_compare11(vyw96, vyw97, vyw98, vyw99, vyw101, bg, bh) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Bool, bdf) -> new_ltEs4(vyw4610, vyw4810) new_esEs20(vyw460, vyw480, app(ty_[], bda)) -> new_esEs13(vyw460, vyw480, bda) new_lt19(vyw460, vyw480, ty_Integer) -> new_lt16(vyw460, vyw480) new_esEs4(Left(vyw500), Left(vyw3000), ty_Integer, cg) -> new_esEs15(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Double) -> new_ltEs12(vyw4610, vyw4810) The set Q consists of the following terms: new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, True, x2, x3) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare110(x0, x1, False) new_esEs28(x0, x1, ty_Integer) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat1(Zero, Zero) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs6(Nothing, Nothing, x0) new_lt19(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_primCompAux00(x0, LT) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(EQ, EQ) new_lt7(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Just(x0), Just(x1), ty_@0) new_ltEs16(x0, x1, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_pePe(False, x0) new_esEs26(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Bool) new_compare29(@0, @0) new_esEs20(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare32(x0, x1, ty_Double) new_ltEs11(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Double) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Integer) new_ltEs5(x0, x1) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_esEs32(x0, x1, ty_Double) new_compare17(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Ordering) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Ordering) new_lt12(x0, x1) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Integer) new_compare111(x0, x1, False, x2, x3) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3, x4) new_ltEs6(Just(x0), Just(x1), ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Int) new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs11(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Double) new_compare11(x0, x1, x2, x3, False, x4, x5) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_compare14(x0, x1, False, x2) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_lt21(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_primMulNat0(Succ(x0), Zero) new_compare32(x0, x1, app(ty_[], x2)) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_lt19(x0, x1, ty_Ordering) new_ltEs15(EQ, EQ) new_esEs27(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Bool) new_esEs14(Char(x0), Char(x1)) new_esEs8(Float(x0, x1), Float(x2, x3)) new_compare110(x0, x1, True) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare19(Char(x0), Char(x1)) new_ltEs6(Nothing, Just(x0), x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare27(@2(x0, x1), @2(x2, x3), False, x4, x5) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_lt21(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Int) new_ltEs4(True, True) new_esEs6(Just(x0), Just(x1), ty_Double) new_compare15(Integer(x0), Integer(x1)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_primCmpNat0(Succ(x0), Zero) new_ltEs11(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3, True, x4, x5) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Just(x0), Just(x1), ty_Integer) new_esEs26(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Bool) new_asAs(False, x0) new_compare32(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_lt8(x0, x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, x2, x3) new_lt7(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), ty_Float) new_esEs32(x0, x1, ty_Char) new_primEqNat0(Zero, Succ(x0)) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_esEs29(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Float) new_compare31(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1) new_esEs20(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Integer) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, ty_Bool) new_esEs16(Double(x0, x1), Double(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_esEs32(x0, x1, ty_Float) new_compare25(x0, x1, True, x2, x3, x4) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), ty_Bool) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Bool) new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs26(x0, x1, ty_Int) new_compare23(x0, x1, True, x2) new_esEs11(False, False) new_esEs10(LT, GT) new_esEs10(GT, LT) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs18(x0, x1, ty_Float) new_ltEs6(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Int) new_compare24(x0, x1, True) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs6(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Int) new_lt14(x0, x1) new_fsEs(x0) new_esEs18(x0, x1, ty_Char) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_compare111(x0, x1, True, x2, x3) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs10(EQ, GT) new_esEs10(GT, EQ) new_esEs25(x0, x1, ty_Char) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_esEs31(x0, x1, ty_Ordering) new_ltEs14(x0, x1) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_primPlusNat1(Zero, Succ(x0)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt17(x0, x1, x2, x3, x4) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Float) new_lt20(x0, x1, ty_Char) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_compare16(x0, x1, False, x2, x3, x4) new_compare30(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, x2, x3, x4) new_lt19(x0, x1, ty_Float) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Zero) new_compare27(x0, x1, True, x2, x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Nothing, x1) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1, x2) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs32(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(True, x0) new_lt7(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Double) new_esEs9(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs18(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_@0) new_compare6(x0, x1, x2) new_esEs24(x0, x1, ty_Float) new_compare24(x0, x1, False) new_primMulInt(Pos(x0), Pos(x1)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_primPlusNat1(Succ(x0), Zero) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_ltEs8(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Char) new_primCompAux00(x0, GT) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs12(x0, x1) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_[], x2)) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare1(:(x0, x1), [], x2) new_esEs10(LT, LT) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs6(Just(x0), Nothing, x1) new_esEs19(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt21(x0, x1, ty_Int) new_ltEs11(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs15(GT, EQ) new_ltEs11(x0, x1, ty_Char) new_ltEs15(EQ, GT) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs11(False, True) new_esEs11(True, False) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt21(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_compare32(x0, x1, ty_Float) new_ltEs4(False, True) new_ltEs4(True, False) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare210(x0, x1, True) new_compare1([], [], x0) new_esEs31(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_lt7(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, ty_Int) new_lt19(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), x1) new_lt20(x0, x1, ty_Ordering) new_ltEs11(x0, x1, ty_@0) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare16(x0, x1, True, x2, x3, x4) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs31(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare12(x0, x1, True) new_lt21(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Char) new_esEs10(GT, GT) new_lt20(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs27(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Nothing, Nothing, x0) new_esEs28(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(LT, EQ) new_esEs10(EQ, LT) new_esEs25(x0, x1, ty_@0) new_compare32(x0, x1, app(ty_Maybe, x2)) new_esEs13([], [], x0) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(@0, @0) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_compare1([], :(x0, x1), x2) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs15(Integer(x0), Integer(x1)) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs4(False, False) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs7(x0, x1, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs6(Nothing, Just(x0), x1) new_esEs13(:(x0, x1), [], x2) new_lt16(x0, x1) new_compare13(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare32(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Ordering) new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(x0, x1, False) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_ltEs15(GT, GT) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_esEs20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs11(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Double) new_not(False) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Bool) new_ltEs11(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Float) new_lt11(x0, x1) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_esEs13(:(x0, x1), :(x2, x3), x4) new_lt20(x0, x1, ty_Double) new_compare210(x0, x1, False) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_compare23(x0, x1, False, x2) new_ltEs15(LT, LT) new_esEs13([], :(x0, x1), x2) new_esEs18(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_[], x2)) new_sr(x0, x1) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Char) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs18(x0, x1, ty_Double) new_pePe(True, x0) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare31(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare31(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare7(x0, x1) new_ltEs11(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_Double) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs17(x0, x1) new_ltEs20(x0, x1, ty_Int) new_primCmpNat0(Zero, Zero) new_lt9(x0, x1, x2, x3) new_ltEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs10(new_compare27(@2(vyw24, vyw25), @2(vyw18, vyw19), new_esEs5(@2(vyw24, vyw25), @2(vyw18, vyw19), ba, bb), ba, bb), GT), h, ba, bb) at position [9,0,2] we obtained the following new rules [LPAR04]: (new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs10(new_compare27(@2(vyw24, vyw25), @2(vyw18, vyw19), new_asAs(new_esEs28(vyw24, vyw18, ba), new_esEs29(vyw25, vyw19, bb)), ba, bb), GT), h, ba, bb),new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs10(new_compare27(@2(vyw24, vyw25), @2(vyw18, vyw19), new_asAs(new_esEs28(vyw24, vyw18, ba), new_esEs29(vyw25, vyw19, bb)), ba, bb), GT), h, ba, bb)) ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw23, @2(vyw24, vyw25), h, ba, bb) new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw22, @2(vyw24, vyw25), h, ba, bb) new_lookupWithDefaultFM01(vyw4, Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw50, vyw51), bc, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw50, vyw51, new_esEs30(vyw50, vyw51, vyw300, vyw301, new_esEs31(vyw50, vyw300, bd), bd, be), bc, bd, be) new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs10(new_compare27(@2(vyw24, vyw25), @2(vyw18, vyw19), new_asAs(new_esEs28(vyw24, vyw18, ba), new_esEs29(vyw25, vyw19, bb)), ba, bb), GT), h, ba, bb) The TRS R consists of the following rules: new_lt7(vyw4610, vyw4810, app(ty_Maybe, bbc)) -> new_lt6(vyw4610, vyw4810, bbc) new_compare24(vyw460, vyw480, False) -> new_compare12(vyw460, vyw480, new_ltEs4(vyw460, vyw480)) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(ty_Either, bed), bee)) -> new_ltEs13(vyw4610, vyw4810, bed, bee) new_esEs4(Left(vyw500), Left(vyw3000), ty_Double, cg) -> new_esEs16(vyw500, vyw3000) new_esEs31(vyw50, vyw300, app(ty_[], gb)) -> new_esEs13(vyw50, vyw300, gb) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Double, bdf) -> new_ltEs12(vyw4610, vyw4810) new_esEs23(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_primCmpInt(Neg(Succ(vyw46000)), Pos(vyw4800)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs27(vyw4611, vyw4811, ty_Int) -> new_esEs9(vyw4611, vyw4811) new_ltEs11(vyw4611, vyw4811, ty_Double) -> new_ltEs12(vyw4611, vyw4811) new_pePe(True, vyw115) -> True new_esEs23(vyw500, vyw3000, app(ty_Maybe, bgd)) -> new_esEs6(vyw500, vyw3000, bgd) new_compare32(vyw4600, vyw4800, ty_Bool) -> new_compare7(vyw4600, vyw4800) new_ltEs20(vyw4612, vyw4812, ty_Ordering) -> new_ltEs15(vyw4612, vyw4812) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Float) -> new_ltEs5(vyw4610, vyw4810) new_compare32(vyw4600, vyw4800, app(ty_Ratio, dbg)) -> new_compare18(vyw4600, vyw4800, dbg) new_esEs19(vyw4610, vyw4810, app(ty_Ratio, bbb)) -> new_esEs17(vyw4610, vyw4810, bbb) new_compare23(vyw460, vyw480, True, bf) -> EQ new_esEs4(Left(vyw500), Left(vyw3000), ty_Bool, cg) -> new_esEs11(vyw500, vyw3000) new_compare29(@0, @0) -> EQ new_esEs4(Left(vyw500), Right(vyw3000), dh, cg) -> False new_esEs4(Right(vyw500), Left(vyw3000), dh, cg) -> False new_esEs25(vyw502, vyw3002, app(ty_[], cae)) -> new_esEs13(vyw502, vyw3002, cae) new_esEs16(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs9(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vyw48000))) -> GT new_esEs9(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) new_compare26(vyw460, vyw480, True, ca, cb) -> EQ new_esEs22(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_esEs23(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs19(vyw4610, vyw4810, ty_@0) -> new_esEs12(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, app(ty_Ratio, bdg)) -> new_ltEs16(vyw461, vyw481, bdg) new_lt7(vyw4610, vyw4810, ty_Float) -> new_lt14(vyw4610, vyw4810) new_esEs14(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) new_primCmpInt(Neg(Succ(vyw46000)), Neg(vyw4800)) -> new_primCmpNat0(vyw4800, Succ(vyw46000)) new_esEs29(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) new_compare111(vyw460, vyw480, True, ca, cb) -> LT new_esEs6(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs9(vyw500, vyw3000) new_esEs5(@2(vyw500, vyw501), @2(vyw3000, vyw3001), gc, gd) -> new_asAs(new_esEs28(vyw500, vyw3000, gc), new_esEs29(vyw501, vyw3001, gd)) new_ltEs11(vyw4611, vyw4811, app(ty_[], bcc)) -> new_ltEs7(vyw4611, vyw4811, bcc) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Bool) -> new_ltEs4(vyw4610, vyw4810) new_ltEs4(False, True) -> True new_esEs4(Left(vyw500), Left(vyw3000), app(app(ty_@2, db), dc), cg) -> new_esEs5(vyw500, vyw3000, db, dc) new_esEs25(vyw502, vyw3002, app(app(ty_@2, caf), cag)) -> new_esEs5(vyw502, vyw3002, caf, cag) new_ltEs15(EQ, LT) -> False new_lt7(vyw4610, vyw4810, ty_Double) -> new_lt8(vyw4610, vyw4810) new_esEs20(vyw460, vyw480, ty_@0) -> new_esEs12(vyw460, vyw480) new_ltEs20(vyw4612, vyw4812, ty_Char) -> new_ltEs18(vyw4612, vyw4812) new_lt7(vyw4610, vyw4810, app(app(ty_Either, bae), baf)) -> new_lt5(vyw4610, vyw4810, bae, baf) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(ty_@2, bef), beg)) -> new_ltEs10(vyw4610, vyw4810, bef, beg) new_lt4(vyw460, vyw480) -> new_esEs10(new_compare7(vyw460, vyw480), LT) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) new_lt7(vyw4610, vyw4810, ty_Bool) -> new_lt4(vyw4610, vyw4810) new_esEs13(:(vyw500, vyw501), :(vyw3000, vyw3001), gb) -> new_asAs(new_esEs18(vyw500, vyw3000, gb), new_esEs13(vyw501, vyw3001, gb)) new_ltEs19(vyw461, vyw481, ty_Ordering) -> new_ltEs15(vyw461, vyw481) new_esEs26(vyw4610, vyw4810, ty_Char) -> new_esEs14(vyw4610, vyw4810) new_lt20(vyw4610, vyw4810, ty_Bool) -> new_lt4(vyw4610, vyw4810) new_esEs32(vyw35, vyw37, ty_Char) -> new_esEs14(vyw35, vyw37) new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_ltEs15(GT, LT) -> False new_compare17(vyw460, vyw480, gg, gh) -> new_compare27(vyw460, vyw480, new_esEs5(vyw460, vyw480, gg, gh), gg, gh) new_esEs6(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs11(vyw500, vyw3000) new_esEs20(vyw460, vyw480, app(app(ty_@2, gg), gh)) -> new_esEs5(vyw460, vyw480, gg, gh) new_esEs25(vyw502, vyw3002, app(ty_Ratio, cba)) -> new_esEs17(vyw502, vyw3002, cba) new_esEs31(vyw50, vyw300, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs7(vyw50, vyw300, fg, fh, ga) new_esEs31(vyw50, vyw300, app(ty_Ratio, gf)) -> new_esEs17(vyw50, vyw300, gf) new_lt11(vyw460, vyw480) -> new_esEs10(new_compare29(vyw460, vyw480), LT) new_esEs19(vyw4610, vyw4810, app(app(ty_@2, bag), bah)) -> new_esEs5(vyw4610, vyw4810, bag, bah) new_compare1(:(vyw4600, vyw4601), [], bda) -> GT new_compare12(vyw460, vyw480, False) -> GT new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) new_esEs31(vyw50, vyw300, app(app(ty_@2, gc), gd)) -> new_esEs5(vyw50, vyw300, gc, gd) new_esEs20(vyw460, vyw480, app(ty_Ratio, bdd)) -> new_esEs17(vyw460, vyw480, bdd) new_esEs27(vyw4611, vyw4811, ty_Integer) -> new_esEs15(vyw4611, vyw4811) new_esEs10(GT, GT) -> True new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Integer) -> new_ltEs17(vyw4610, vyw4810) new_not(True) -> False new_esEs28(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_primCompAux0(vyw4600, vyw4800, vyw110, bda) -> new_primCompAux00(vyw110, new_compare32(vyw4600, vyw4800, bda)) new_ltEs11(vyw4611, vyw4811, ty_Int) -> new_ltEs8(vyw4611, vyw4811) new_compare6(vyw460, vyw480, bf) -> new_compare23(vyw460, vyw480, new_esEs6(vyw460, vyw480, bf), bf) new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_ltEs20(vyw4612, vyw4812, app(app(ty_@2, ceb), cec)) -> new_ltEs10(vyw4612, vyw4812, ceb, cec) new_primCompAux00(vyw120, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Char) -> new_ltEs18(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, ty_Double) -> new_esEs16(vyw4611, vyw4811) new_ltEs20(vyw4612, vyw4812, ty_Integer) -> new_ltEs17(vyw4612, vyw4812) new_esEs32(vyw35, vyw37, ty_Ordering) -> new_esEs10(vyw35, vyw37) new_compare32(vyw4600, vyw4800, app(app(ty_Either, dbb), dbc)) -> new_compare8(vyw4600, vyw4800, dbb, dbc) new_esEs25(vyw502, vyw3002, ty_Ordering) -> new_esEs10(vyw502, vyw3002) new_ltEs11(vyw4611, vyw4811, ty_@0) -> new_ltEs14(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, ty_Bool) -> new_esEs11(vyw4611, vyw4811) new_compare32(vyw4600, vyw4800, ty_Ordering) -> new_compare30(vyw4600, vyw4800) new_esEs26(vyw4610, vyw4810, ty_Integer) -> new_esEs15(vyw4610, vyw4810) new_esEs29(vyw501, vyw3001, app(ty_[], dfc)) -> new_esEs13(vyw501, vyw3001, dfc) new_esEs25(vyw502, vyw3002, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs7(vyw502, vyw3002, cab, cac, cad) new_esEs32(vyw35, vyw37, ty_Integer) -> new_esEs15(vyw35, vyw37) new_esEs19(vyw4610, vyw4810, ty_Float) -> new_esEs8(vyw4610, vyw4810) new_esEs25(vyw502, vyw3002, ty_Float) -> new_esEs8(vyw502, vyw3002) new_ltEs12(vyw461, vyw481) -> new_fsEs(new_compare31(vyw461, vyw481)) new_ltEs19(vyw461, vyw481, ty_Char) -> new_ltEs18(vyw461, vyw481) new_lt9(vyw460, vyw480, gg, gh) -> new_esEs10(new_compare17(vyw460, vyw480, gg, gh), LT) new_esEs28(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs32(vyw35, vyw37, ty_Float) -> new_esEs8(vyw35, vyw37) new_esEs31(vyw50, vyw300, ty_@0) -> new_esEs12(vyw50, vyw300) new_primEqNat0(Succ(vyw5000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_esEs19(vyw4610, vyw4810, ty_Ordering) -> new_esEs10(vyw4610, vyw4810) new_esEs19(vyw4610, vyw4810, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs7(vyw4610, vyw4810, bbd, bbe, bbf) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs7(vyw500, vyw3000, ea, eb, ec) new_esEs13([], [], gb) -> True new_esEs31(vyw50, vyw300, ty_Ordering) -> new_esEs10(vyw50, vyw300) new_esEs26(vyw4610, vyw4810, ty_Ordering) -> new_esEs10(vyw4610, vyw4810) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bfb)) -> new_ltEs6(vyw4610, vyw4810, bfb) new_esEs6(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_lt10(vyw460, vyw480, bda) -> new_esEs10(new_compare1(vyw460, vyw480, bda), LT) new_esEs4(Left(vyw500), Left(vyw3000), ty_Int, cg) -> new_esEs9(vyw500, vyw3000) new_esEs31(vyw50, vyw300, ty_Char) -> new_esEs14(vyw50, vyw300) new_ltEs15(GT, EQ) -> False new_esEs26(vyw4610, vyw4810, ty_Float) -> new_esEs8(vyw4610, vyw4810) new_compare31(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare31(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_primCompAux00(vyw120, GT) -> GT new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs10(EQ, EQ) -> True new_compare110(vyw460, vyw480, True) -> LT new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Integer) -> new_ltEs17(vyw4610, vyw4810) new_esEs31(vyw50, vyw300, ty_Float) -> new_esEs8(vyw50, vyw300) new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_ltEs10(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bac, bad) -> new_pePe(new_lt7(vyw4610, vyw4810, bac), new_asAs(new_esEs19(vyw4610, vyw4810, bac), new_ltEs11(vyw4611, vyw4811, bad))) new_lt20(vyw4610, vyw4810, ty_Int) -> new_lt12(vyw4610, vyw4810) new_primCmpInt(Pos(Succ(vyw46000)), Neg(vyw4800)) -> GT new_compare14(vyw460, vyw480, False, bf) -> GT new_esEs4(Right(vyw500), Right(vyw3000), dh, app(ty_[], ed)) -> new_esEs13(vyw500, vyw3000, ed) new_compare11(vyw96, vyw97, vyw98, vyw99, True, bg, bh) -> LT new_lt5(vyw460, vyw480, ca, cb) -> new_esEs10(new_compare8(vyw460, vyw480, ca, cb), LT) new_lt7(vyw4610, vyw4810, app(app(ty_@2, bag), bah)) -> new_lt9(vyw4610, vyw4810, bag, bah) new_primPlusNat1(Succ(vyw8700), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw8700, vyw3000000))) new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_[], da), cg) -> new_esEs13(vyw500, vyw3000, da) new_esEs10(LT, EQ) -> False new_esEs10(EQ, LT) -> False new_primCmpNat0(Zero, Succ(vyw48000)) -> LT new_esEs26(vyw4610, vyw4810, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(vyw4610, vyw4810, ccc, ccd, cce) new_esEs20(vyw460, vyw480, ty_Ordering) -> new_esEs10(vyw460, vyw480) new_lt18(vyw460, vyw480) -> new_esEs10(new_compare19(vyw460, vyw480), LT) new_compare210(vyw460, vyw480, True) -> EQ new_esEs20(vyw460, vyw480, ty_Float) -> new_esEs8(vyw460, vyw480) new_esEs32(vyw35, vyw37, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs7(vyw35, vyw37, chh, daa, dab) new_esEs24(vyw501, vyw3001, app(ty_[], bhc)) -> new_esEs13(vyw501, vyw3001, bhc) new_primCmpNat0(Succ(vyw46000), Zero) -> GT new_pePe(False, vyw115) -> vyw115 new_lt20(vyw4610, vyw4810, ty_@0) -> new_lt11(vyw4610, vyw4810) new_lt19(vyw460, vyw480, ty_Double) -> new_lt8(vyw460, vyw480) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(ty_Maybe, chb)) -> new_ltEs6(vyw4610, vyw4810, chb) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_lt19(vyw460, vyw480, ty_Int) -> new_lt12(vyw460, vyw480) new_ltEs13(Left(vyw4610), Right(vyw4810), bde, bdf) -> True new_lt13(vyw460, vyw480) -> new_esEs10(new_compare30(vyw460, vyw480), LT) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(ty_Ratio, eh)) -> new_esEs17(vyw500, vyw3000, eh) new_esEs26(vyw4610, vyw4810, ty_@0) -> new_esEs12(vyw4610, vyw4810) new_esEs26(vyw4610, vyw4810, app(app(ty_@2, cbf), cbg)) -> new_esEs5(vyw4610, vyw4810, cbf, cbg) new_ltEs19(vyw461, vyw481, app(app(ty_@2, bac), bad)) -> new_ltEs10(vyw461, vyw481, bac, bad) new_compare18(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Int) -> new_compare13(new_sr(vyw4600, vyw4801), new_sr(vyw4800, vyw4601)) new_ltEs19(vyw461, vyw481, ty_Integer) -> new_ltEs17(vyw461, vyw481) new_esEs29(vyw501, vyw3001, ty_Char) -> new_esEs14(vyw501, vyw3001) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(app(ty_@2, ee), ef)) -> new_esEs5(vyw500, vyw3000, ee, ef) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(ty_Either, cfb), cfc), bdf) -> new_ltEs13(vyw4610, vyw4810, cfb, cfc) new_esEs32(vyw35, vyw37, app(ty_Maybe, daf)) -> new_esEs6(vyw35, vyw37, daf) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_esEs30(vyw34, vyw35, vyw36, vyw37, False, chf, chg) -> new_esEs10(new_compare27(@2(vyw34, vyw35), @2(vyw36, vyw37), False, chf, chg), LT) new_ltEs13(Right(vyw4610), Left(vyw4810), bde, bdf) -> False new_esEs26(vyw4610, vyw4810, app(ty_Ratio, cca)) -> new_esEs17(vyw4610, vyw4810, cca) new_esEs26(vyw4610, vyw4810, app(ty_[], cbh)) -> new_esEs13(vyw4610, vyw4810, cbh) new_compare32(vyw4600, vyw4800, ty_@0) -> new_compare29(vyw4600, vyw4800) new_esEs31(vyw50, vyw300, app(app(ty_Either, dh), cg)) -> new_esEs4(vyw50, vyw300, dh, cg) new_esEs29(vyw501, vyw3001, ty_Double) -> new_esEs16(vyw501, vyw3001) new_esEs25(vyw502, vyw3002, ty_Char) -> new_esEs14(vyw502, vyw3002) new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Int) -> new_ltEs8(vyw4610, vyw4810) new_primCmpInt(Neg(Zero), Pos(Succ(vyw48000))) -> LT new_compare25(vyw460, vyw480, True, fc, fd, ff) -> EQ new_ltEs20(vyw4612, vyw4812, app(app(ty_Either, cdh), cea)) -> new_ltEs13(vyw4612, vyw4812, cdh, cea) new_esEs32(vyw35, vyw37, ty_Double) -> new_esEs16(vyw35, vyw37) new_primMulInt(Pos(vyw5010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) new_esEs29(vyw501, vyw3001, ty_Float) -> new_esEs8(vyw501, vyw3001) new_esEs23(vyw500, vyw3000, app(app(ty_Either, bgf), bgg)) -> new_esEs4(vyw500, vyw3000, bgf, bgg) new_ltEs19(vyw461, vyw481, ty_Double) -> new_ltEs12(vyw461, vyw481) new_esEs13(:(vyw500, vyw501), [], gb) -> False new_esEs13([], :(vyw3000, vyw3001), gb) -> False new_compare27(@2(vyw460, vyw461), @2(vyw480, vyw481), False, bdb, bdc) -> new_compare10(vyw460, vyw461, vyw480, vyw481, new_lt19(vyw460, vyw480, bdb), new_asAs(new_esEs20(vyw460, vyw480, bdb), new_ltEs19(vyw461, vyw481, bdc)), bdb, bdc) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(ty_@2, cfd), cfe), bdf) -> new_ltEs10(vyw4610, vyw4810, cfd, cfe) new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs10(vyw501, vyw3001) new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_Either, ddd), dde)) -> new_esEs4(vyw500, vyw3000, ddd, dde) new_compare32(vyw4600, vyw4800, ty_Integer) -> new_compare15(vyw4600, vyw4800) new_esEs28(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs24(vyw501, vyw3001, app(ty_Maybe, bhf)) -> new_esEs6(vyw501, vyw3001, bhf) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Ordering, bdf) -> new_ltEs15(vyw4610, vyw4810) new_primMulNat0(Succ(vyw50100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_Ratio, bfa)) -> new_ltEs16(vyw4610, vyw4810, bfa) new_lt20(vyw4610, vyw4810, ty_Double) -> new_lt8(vyw4610, vyw4810) new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) new_ltEs20(vyw4612, vyw4812, ty_Double) -> new_ltEs12(vyw4612, vyw4812) new_compare18(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Integer) -> new_compare15(new_sr0(vyw4600, vyw4801), new_sr0(vyw4800, vyw4601)) new_lt19(vyw460, vyw480, ty_Ordering) -> new_lt13(vyw460, vyw480) new_ltEs19(vyw461, vyw481, app(app(ty_Either, bde), bdf)) -> new_ltEs13(vyw461, vyw481, bde, bdf) new_ltEs18(vyw461, vyw481) -> new_fsEs(new_compare19(vyw461, vyw481)) new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Int) -> new_ltEs8(vyw4610, vyw4810) new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_Ratio, cfg), bdf) -> new_ltEs16(vyw4610, vyw4810, cfg) new_compare23(vyw460, vyw480, False, bf) -> new_compare14(vyw460, vyw480, new_ltEs6(vyw460, vyw480, bf), bf) new_compare26(vyw460, vyw480, False, ca, cb) -> new_compare111(vyw460, vyw480, new_ltEs13(vyw460, vyw480, ca, cb), ca, cb) new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs22(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs19(vyw4610, vyw4810, ty_Double) -> new_esEs16(vyw4610, vyw4810) new_lt7(vyw4610, vyw4810, ty_@0) -> new_lt11(vyw4610, vyw4810) new_compare1([], [], bda) -> EQ new_esEs6(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs7(vyw500, vyw3000, dcd, dce, dcf) new_esEs27(vyw4611, vyw4811, ty_Float) -> new_esEs8(vyw4611, vyw4811) new_ltEs6(Nothing, Just(vyw4810), bdh) -> True new_esEs32(vyw35, vyw37, app(app(ty_Either, dah), dba)) -> new_esEs4(vyw35, vyw37, dah, dba) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Bool) -> new_ltEs4(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs9(vyw461, vyw481, bea, beb, bec) new_primPlusNat1(Succ(vyw8700), Zero) -> Succ(vyw8700) new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs23(vyw500, vyw3000, app(ty_Ratio, bge)) -> new_esEs17(vyw500, vyw3000, bge) new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs7(vyw501, vyw3001, bgh, bha, bhb) new_ltEs19(vyw461, vyw481, ty_@0) -> new_ltEs14(vyw461, vyw481) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_@0, bdf) -> new_ltEs14(vyw4610, vyw4810) new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, app(app(ty_@2, bgb), bgc)) -> new_esEs5(vyw500, vyw3000, bgb, bgc) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs11(vyw4611, vyw4811, ty_Char) -> new_ltEs18(vyw4611, vyw4811) new_ltEs20(vyw4612, vyw4812, ty_Float) -> new_ltEs5(vyw4612, vyw4812) new_esEs24(vyw501, vyw3001, app(ty_Ratio, bhg)) -> new_esEs17(vyw501, vyw3001, bhg) new_ltEs20(vyw4612, vyw4812, ty_@0) -> new_ltEs14(vyw4612, vyw4812) new_esEs23(vyw500, vyw3000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs7(vyw500, vyw3000, bff, bfg, bfh) new_esEs20(vyw460, vyw480, ty_Double) -> new_esEs16(vyw460, vyw480) new_esEs23(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(app(ty_@2, cbf), cbg)) -> new_lt9(vyw4610, vyw4810, cbf, cbg) new_primMulInt(Neg(vyw5010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw48000))) -> new_primCmpNat0(Zero, Succ(vyw48000)) new_compare11(vyw96, vyw97, vyw98, vyw99, False, bg, bh) -> GT new_esEs32(vyw35, vyw37, ty_Int) -> new_esEs9(vyw35, vyw37) new_esEs28(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Maybe, ddb)) -> new_esEs6(vyw500, vyw3000, ddb) new_esEs6(Nothing, Just(vyw3000), ge) -> False new_esEs6(Just(vyw500), Nothing, ge) -> False new_esEs7(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fg, fh, ga) -> new_asAs(new_esEs23(vyw500, vyw3000, fg), new_asAs(new_esEs24(vyw501, vyw3001, fh), new_esEs25(vyw502, vyw3002, ga))) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(ty_Maybe, eg)) -> new_esEs6(vyw500, vyw3000, eg) new_ltEs15(EQ, GT) -> True new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs11(vyw501, vyw3001) new_esEs6(Nothing, Nothing, ge) -> True new_esEs4(Left(vyw500), Left(vyw3000), ty_Ordering, cg) -> new_esEs10(vyw500, vyw3000) new_esEs24(vyw501, vyw3001, app(app(ty_@2, bhd), bhe)) -> new_esEs5(vyw501, vyw3001, bhd, bhe) new_esEs11(False, False) -> True new_esEs10(LT, LT) -> True new_esEs27(vyw4611, vyw4811, ty_Char) -> new_esEs14(vyw4611, vyw4811) new_lt19(vyw460, vyw480, app(app(ty_@2, gg), gh)) -> new_lt9(vyw460, vyw480, gg, gh) new_esEs21(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_esEs31(vyw50, vyw300, ty_Double) -> new_esEs16(vyw50, vyw300) new_lt21(vyw4611, vyw4811, ty_Ordering) -> new_lt13(vyw4611, vyw4811) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Float, bdf) -> new_ltEs5(vyw4610, vyw4810) new_esEs28(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, ty_Float) -> new_ltEs5(vyw461, vyw481) new_compare30(vyw460, vyw480) -> new_compare210(vyw460, vyw480, new_esEs10(vyw460, vyw480)) new_ltEs11(vyw4611, vyw4811, app(app(ty_Either, bbg), bbh)) -> new_ltEs13(vyw4611, vyw4811, bbg, bbh) new_esEs27(vyw4611, vyw4811, ty_@0) -> new_esEs12(vyw4611, vyw4811) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(app(app(ty_@3, chc), chd), che)) -> new_ltEs9(vyw4610, vyw4810, chc, chd, che) new_esEs28(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(app(ty_@2, cgf), cgg)) -> new_ltEs10(vyw4610, vyw4810, cgf, cgg) new_lt19(vyw460, vyw480, app(ty_[], bda)) -> new_lt10(vyw460, vyw480, bda) new_esEs27(vyw4611, vyw4811, app(app(ty_@2, cch), cda)) -> new_esEs5(vyw4611, vyw4811, cch, cda) new_primMulInt(Pos(vyw5010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) new_primMulInt(Neg(vyw5010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) new_ltEs20(vyw4612, vyw4812, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs9(vyw4612, vyw4812, ceg, ceh, cfa) new_ltEs11(vyw4611, vyw4811, ty_Float) -> new_ltEs5(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, app(ty_Ratio, cdc)) -> new_esEs17(vyw4611, vyw4811, cdc) new_esEs20(vyw460, vyw480, ty_Integer) -> new_esEs15(vyw460, vyw480) new_esEs4(Left(vyw500), Left(vyw3000), ty_Float, cg) -> new_esEs8(vyw500, vyw3000) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_[], beh)) -> new_ltEs7(vyw4610, vyw4810, beh) new_esEs31(vyw50, vyw300, app(ty_Maybe, ge)) -> new_esEs6(vyw50, vyw300, ge) new_lt7(vyw4610, vyw4810, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt17(vyw4610, vyw4810, bbd, bbe, bbf) new_compare15(Integer(vyw4600), Integer(vyw4800)) -> new_primCmpInt(vyw4600, vyw4800) new_compare19(Char(vyw4600), Char(vyw4800)) -> new_primCmpNat0(vyw4600, vyw4800) new_esEs31(vyw50, vyw300, ty_Bool) -> new_esEs11(vyw50, vyw300) new_esEs23(vyw500, vyw3000, app(ty_[], bga)) -> new_esEs13(vyw500, vyw3000, bga) new_lt21(vyw4611, vyw4811, ty_@0) -> new_lt11(vyw4611, vyw4811) new_sr0(Integer(vyw46000), Integer(vyw48010)) -> Integer(new_primMulInt(vyw46000, vyw48010)) new_ltEs15(LT, GT) -> True new_esEs29(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_lt6(vyw460, vyw480, bf) -> new_esEs10(new_compare6(vyw460, vyw480, bf), LT) new_esEs28(vyw500, vyw3000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs7(vyw500, vyw3000, ddf, ddg, ddh) new_esEs20(vyw460, vyw480, ty_Int) -> new_esEs9(vyw460, vyw480) new_ltEs11(vyw4611, vyw4811, ty_Integer) -> new_ltEs17(vyw4611, vyw4811) new_esEs15(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_Bool) -> new_esEs11(vyw502, vyw3002) new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_@2, dch), dda)) -> new_esEs5(vyw500, vyw3000, dch, dda) new_lt7(vyw4610, vyw4810, ty_Ordering) -> new_lt13(vyw4610, vyw4810) new_esEs17(:%(vyw500, vyw501), :%(vyw3000, vyw3001), gf) -> new_asAs(new_esEs21(vyw500, vyw3000, gf), new_esEs22(vyw501, vyw3001, gf)) new_esEs25(vyw502, vyw3002, ty_Int) -> new_esEs9(vyw502, vyw3002) new_asAs(True, vyw67) -> vyw67 new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Integer, bdf) -> new_ltEs17(vyw4610, vyw4810) new_lt19(vyw460, vyw480, app(ty_Ratio, bdd)) -> new_lt15(vyw460, vyw480, bdd) new_lt20(vyw4610, vyw4810, ty_Ordering) -> new_lt13(vyw4610, vyw4810) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Double) -> new_ltEs12(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, app(ty_[], cdb)) -> new_esEs13(vyw4611, vyw4811, cdb) new_compare32(vyw4600, vyw4800, app(ty_Maybe, dbh)) -> new_compare6(vyw4600, vyw4800, dbh) new_lt19(vyw460, vyw480, ty_Char) -> new_lt18(vyw460, vyw480) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(app(ty_Either, cgd), cge)) -> new_ltEs13(vyw4610, vyw4810, cgd, cge) new_compare32(vyw4600, vyw4800, app(app(ty_@2, dbd), dbe)) -> new_compare17(vyw4600, vyw4800, dbd, dbe) new_esEs4(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, cd), ce), cf), cg) -> new_esEs7(vyw500, vyw3000, cd, ce, cf) new_esEs4(Left(vyw500), Left(vyw3000), ty_Char, cg) -> new_esEs14(vyw500, vyw3000) new_esEs4(Left(vyw500), Left(vyw3000), app(app(ty_Either, df), dg), cg) -> new_esEs4(vyw500, vyw3000, df, dg) new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_compare111(vyw460, vyw480, False, ca, cb) -> GT new_esEs19(vyw4610, vyw4810, ty_Bool) -> new_esEs11(vyw4610, vyw4810) new_lt8(vyw460, vyw480) -> new_esEs10(new_compare31(vyw460, vyw480), LT) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Ratio, ddc)) -> new_esEs17(vyw500, vyw3000, ddc) new_lt17(vyw460, vyw480, fc, fd, ff) -> new_esEs10(new_compare28(vyw460, vyw480, fc, fd, ff), LT) new_lt21(vyw4611, vyw4811, app(app(ty_@2, cch), cda)) -> new_lt9(vyw4611, vyw4811, cch, cda) new_lt21(vyw4611, vyw4811, ty_Int) -> new_lt12(vyw4611, vyw4811) new_esEs19(vyw4610, vyw4810, ty_Int) -> new_esEs9(vyw4610, vyw4810) new_compare32(vyw4600, vyw4800, app(ty_[], dbf)) -> new_compare1(vyw4600, vyw4800, dbf) new_compare32(vyw4600, vyw4800, app(app(app(ty_@3, dca), dcb), dcc)) -> new_compare28(vyw4600, vyw4800, dca, dcb, dcc) new_esEs30(vyw34, vyw35, vyw36, vyw37, True, chf, chg) -> new_esEs10(new_compare27(@2(vyw34, vyw35), @2(vyw36, vyw37), new_esEs32(vyw35, vyw37, chg), chf, chg), LT) new_primCmpInt(Pos(Succ(vyw46000)), Pos(vyw4800)) -> new_primCmpNat0(Succ(vyw46000), vyw4800) new_lt16(vyw460, vyw480) -> new_esEs10(new_compare15(vyw460, vyw480), LT) new_esEs31(vyw50, vyw300, ty_Int) -> new_esEs9(vyw50, vyw300) new_compare110(vyw460, vyw480, False) -> GT new_lt20(vyw4610, vyw4810, app(ty_[], cbh)) -> new_lt10(vyw4610, vyw4810, cbh) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Double) -> new_esEs16(vyw500, vyw3000) new_primCompAux00(vyw120, EQ) -> vyw120 new_esEs6(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs20(vyw460, vyw480, app(app(ty_Either, ca), cb)) -> new_esEs4(vyw460, vyw480, ca, cb) new_sr(vyw501, vyw3000) -> new_primMulInt(vyw501, vyw3000) new_esEs19(vyw4610, vyw4810, app(app(ty_Either, bae), baf)) -> new_esEs4(vyw4610, vyw4810, bae, baf) new_esEs25(vyw502, vyw3002, ty_Integer) -> new_esEs15(vyw502, vyw3002) new_primMulNat0(Zero, Zero) -> Zero new_compare13(vyw460, vyw480) -> new_primCmpInt(vyw460, vyw480) new_lt21(vyw4611, vyw4811, ty_Double) -> new_lt8(vyw4611, vyw4811) new_esEs23(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_ltEs14(vyw461, vyw481) -> new_fsEs(new_compare29(vyw461, vyw481)) new_lt21(vyw4611, vyw4811, app(ty_[], cdb)) -> new_lt10(vyw4611, vyw4811, cdb) new_ltEs9(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bea, beb, bec) -> new_pePe(new_lt20(vyw4610, vyw4810, bea), new_asAs(new_esEs26(vyw4610, vyw4810, bea), new_pePe(new_lt21(vyw4611, vyw4811, beb), new_asAs(new_esEs27(vyw4611, vyw4811, beb), new_ltEs20(vyw4612, vyw4812, bec))))) new_compare1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), bda) -> new_primCompAux0(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, bda), bda) new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_[], cff), bdf) -> new_ltEs7(vyw4610, vyw4810, cff) new_esEs25(vyw502, vyw3002, app(app(ty_Either, cbb), cbc)) -> new_esEs4(vyw502, vyw3002, cbb, cbc) new_esEs19(vyw4610, vyw4810, ty_Integer) -> new_esEs15(vyw4610, vyw4810) new_ltEs15(EQ, EQ) -> True new_lt20(vyw4610, vyw4810, app(ty_Ratio, cca)) -> new_lt15(vyw4610, vyw4810, cca) new_ltEs20(vyw4612, vyw4812, app(ty_Maybe, cef)) -> new_ltEs6(vyw4612, vyw4812, cef) new_esEs26(vyw4610, vyw4810, app(ty_Maybe, ccb)) -> new_esEs6(vyw4610, vyw4810, ccb) new_fsEs(vyw102) -> new_not(new_esEs10(vyw102, GT)) new_esEs26(vyw4610, vyw4810, ty_Bool) -> new_esEs11(vyw4610, vyw4810) new_esEs4(Right(vyw500), Right(vyw3000), dh, app(app(ty_Either, fa), fb)) -> new_esEs4(vyw500, vyw3000, fa, fb) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Char, bdf) -> new_ltEs18(vyw4610, vyw4810) new_esEs31(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_esEs32(vyw35, vyw37, app(app(ty_@2, dad), dae)) -> new_esEs5(vyw35, vyw37, dad, dae) new_compare31(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare7(vyw460, vyw480) -> new_compare24(vyw460, vyw480, new_esEs11(vyw460, vyw480)) new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, app(ty_Maybe, bdh)) -> new_ltEs6(vyw461, vyw481, bdh) new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_esEs29(vyw501, vyw3001, app(app(ty_Either, dfh), dga)) -> new_esEs4(vyw501, vyw3001, dfh, dga) new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs25(vyw502, vyw3002, app(ty_Maybe, cah)) -> new_esEs6(vyw502, vyw3002, cah) new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_lt19(vyw460, vyw480, ty_@0) -> new_lt11(vyw460, vyw480) new_ltEs15(LT, EQ) -> True new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_ltEs4(True, False) -> False new_compare24(vyw460, vyw480, True) -> EQ new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_Maybe, cfh), bdf) -> new_ltEs6(vyw4610, vyw4810, cfh) new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs14(vyw501, vyw3001) new_ltEs6(Nothing, Nothing, bdh) -> True new_esEs20(vyw460, vyw480, app(ty_Maybe, bf)) -> new_esEs6(vyw460, vyw480, bf) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_[], dcg)) -> new_esEs13(vyw500, vyw3000, dcg) new_ltEs11(vyw4611, vyw4811, ty_Bool) -> new_ltEs4(vyw4611, vyw4811) new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False new_esEs11(True, True) -> True new_compare10(vyw96, vyw97, vyw98, vyw99, True, vyw101, bg, bh) -> new_compare11(vyw96, vyw97, vyw98, vyw99, True, bg, bh) new_esEs19(vyw4610, vyw4810, app(ty_Maybe, bbc)) -> new_esEs6(vyw4610, vyw4810, bbc) new_lt21(vyw4611, vyw4811, app(ty_Ratio, cdc)) -> new_lt15(vyw4611, vyw4811, cdc) new_primCmpInt(Neg(Zero), Neg(Succ(vyw48000))) -> new_primCmpNat0(Succ(vyw48000), Zero) new_ltEs6(Just(vyw4610), Nothing, bdh) -> False new_esEs28(vyw500, vyw3000, app(ty_[], dea)) -> new_esEs13(vyw500, vyw3000, dea) new_lt21(vyw4611, vyw4811, ty_Bool) -> new_lt4(vyw4611, vyw4811) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(ty_[], cgh)) -> new_ltEs7(vyw4610, vyw4810, cgh) new_esEs29(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs24(vyw501, vyw3001, app(app(ty_Either, bhh), caa)) -> new_esEs4(vyw501, vyw3001, bhh, caa) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Int) -> new_esEs9(vyw500, vyw3000) new_lt7(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_esEs18(vyw500, vyw3000, app(app(ty_Either, baa), bab)) -> new_esEs4(vyw500, vyw3000, baa, bab) new_ltEs4(False, False) -> True new_compare8(vyw460, vyw480, ca, cb) -> new_compare26(vyw460, vyw480, new_esEs4(vyw460, vyw480, ca, cb), ca, cb) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, cga), cgb), cgc), bdf) -> new_ltEs9(vyw4610, vyw4810, cga, cgb, cgc) new_compare32(vyw4600, vyw4800, ty_Char) -> new_compare19(vyw4600, vyw4800) new_lt7(vyw4610, vyw4810, app(ty_Ratio, bbb)) -> new_lt15(vyw4610, vyw4810, bbb) new_lt15(vyw460, vyw480, bdd) -> new_esEs10(new_compare18(vyw460, vyw480, bdd), LT) new_esEs10(LT, GT) -> False new_esEs10(GT, LT) -> False new_esEs21(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_compare31(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_ltEs5(vyw461, vyw481) -> new_fsEs(new_compare9(vyw461, vyw481)) new_ltEs11(vyw4611, vyw4811, app(ty_Ratio, bcd)) -> new_ltEs16(vyw4611, vyw4811, bcd) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Ordering) -> new_ltEs15(vyw4610, vyw4810) new_esEs29(vyw501, vyw3001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs7(vyw501, vyw3001, deh, dfa, dfb) new_ltEs7(vyw461, vyw481, cc) -> new_fsEs(new_compare1(vyw461, vyw481, cc)) new_lt7(vyw4610, vyw4810, ty_Char) -> new_lt18(vyw4610, vyw4810) new_ltEs8(vyw461, vyw481) -> new_fsEs(new_compare13(vyw461, vyw481)) new_ltEs19(vyw461, vyw481, app(ty_[], cc)) -> new_ltEs7(vyw461, vyw481, cc) new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_not(False) -> True new_esEs28(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_ltEs20(vyw4612, vyw4812, ty_Bool) -> new_ltEs4(vyw4612, vyw4812) new_lt19(vyw460, vyw480, ty_Float) -> new_lt14(vyw460, vyw480) new_esEs29(vyw501, vyw3001, ty_Ordering) -> new_esEs10(vyw501, vyw3001) new_esEs19(vyw4610, vyw4810, ty_Char) -> new_esEs14(vyw4610, vyw4810) new_compare1([], :(vyw4800, vyw4801), bda) -> LT new_esEs20(vyw460, vyw480, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs7(vyw460, vyw480, fc, fd, ff) new_lt14(vyw460, vyw480) -> new_esEs10(new_compare9(vyw460, vyw480), LT) new_lt19(vyw460, vyw480, app(app(ty_Either, ca), cb)) -> new_lt5(vyw460, vyw480, ca, cb) new_esEs32(vyw35, vyw37, app(ty_[], dac)) -> new_esEs13(vyw35, vyw37, dac) new_esEs32(vyw35, vyw37, app(ty_Ratio, dag)) -> new_esEs17(vyw35, vyw37, dag) new_esEs32(vyw35, vyw37, ty_Bool) -> new_esEs11(vyw35, vyw37) new_compare32(vyw4600, vyw4800, ty_Float) -> new_compare9(vyw4600, vyw4800) new_ltEs11(vyw4611, vyw4811, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs9(vyw4611, vyw4811, bcf, bcg, bch) new_lt19(vyw460, vyw480, app(ty_Maybe, bf)) -> new_lt6(vyw460, vyw480, bf) new_lt21(vyw4611, vyw4811, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt17(vyw4611, vyw4811, cde, cdf, cdg) new_esEs32(vyw35, vyw37, ty_@0) -> new_esEs12(vyw35, vyw37) new_compare27(vyw46, vyw48, True, bdb, bdc) -> EQ new_ltEs20(vyw4612, vyw4812, app(ty_[], ced)) -> new_ltEs7(vyw4612, vyw4812, ced) new_lt7(vyw4610, vyw4810, app(ty_[], bba)) -> new_lt10(vyw4610, vyw4810, bba) new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs16(vyw501, vyw3001) new_esEs18(vyw500, vyw3000, app(ty_Maybe, hg)) -> new_esEs6(vyw500, vyw3000, hg) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Char) -> new_ltEs18(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, ty_Ordering) -> new_esEs10(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs7(vyw4611, vyw4811, cde, cdf, cdg) new_primPlusNat0(Succ(vyw870), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw870, vyw300000))) new_compare16(vyw460, vyw480, False, fc, fd, ff) -> GT new_lt21(vyw4611, vyw4811, ty_Integer) -> new_lt16(vyw4611, vyw4811) new_esEs29(vyw501, vyw3001, app(ty_Maybe, dff)) -> new_esEs6(vyw501, vyw3001, dff) new_esEs18(vyw500, vyw3000, app(ty_[], hd)) -> new_esEs13(vyw500, vyw3000, hd) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs13(Right(vyw4610), Right(vyw4810), bde, app(ty_Ratio, cha)) -> new_ltEs16(vyw4610, vyw4810, cha) new_esEs20(vyw460, vyw480, ty_Char) -> new_esEs14(vyw460, vyw480) new_primPlusNat1(Zero, Zero) -> Zero new_compare25(vyw460, vyw480, False, fc, fd, ff) -> new_compare16(vyw460, vyw480, new_ltEs9(vyw460, vyw480, fc, fd, ff), fc, fd, ff) new_esEs26(vyw4610, vyw4810, ty_Double) -> new_esEs16(vyw4610, vyw4810) new_esEs28(vyw500, vyw3000, app(app(ty_@2, deb), dec)) -> new_esEs5(vyw500, vyw3000, deb, dec) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_Ratio, de), cg) -> new_esEs17(vyw500, vyw3000, de) new_esEs20(vyw460, vyw480, ty_Bool) -> new_esEs11(vyw460, vyw480) new_ltEs17(vyw461, vyw481) -> new_fsEs(new_compare15(vyw461, vyw481)) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_@0) -> new_ltEs14(vyw4610, vyw4810) new_esEs4(Left(vyw500), Left(vyw3000), ty_@0, cg) -> new_esEs12(vyw500, vyw3000) new_lt19(vyw460, vyw480, ty_Bool) -> new_lt4(vyw460, vyw480) new_esEs28(vyw500, vyw3000, app(app(ty_Either, def), deg)) -> new_esEs4(vyw500, vyw3000, def, deg) new_ltEs11(vyw4611, vyw4811, ty_Ordering) -> new_ltEs15(vyw4611, vyw4811) new_lt20(vyw4610, vyw4810, ty_Float) -> new_lt14(vyw4610, vyw4810) new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs8(vyw501, vyw3001) new_ltEs15(LT, LT) -> True new_esEs6(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs14(vyw500, vyw3000) new_esEs28(vyw500, vyw3000, app(ty_Ratio, dee)) -> new_esEs17(vyw500, vyw3000, dee) new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs7(vyw500, vyw3000, ha, hb, hc) new_esEs10(EQ, GT) -> False new_esEs10(GT, EQ) -> False new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, ty_Bool) -> new_ltEs4(vyw461, vyw481) new_esEs26(vyw4610, vyw4810, app(app(ty_Either, cbd), cbe)) -> new_esEs4(vyw4610, vyw4810, cbd, cbe) new_esEs28(vyw500, vyw3000, app(ty_Maybe, ded)) -> new_esEs6(vyw500, vyw3000, ded) new_esEs8(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs9(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_primMulNat0(Succ(vyw50100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw50100, Succ(vyw300000)), vyw300000) new_lt21(vyw4611, vyw4811, ty_Float) -> new_lt14(vyw4611, vyw4811) new_esEs12(@0, @0) -> True new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Int, bdf) -> new_ltEs8(vyw4610, vyw4810) new_compare28(vyw460, vyw480, fc, fd, ff) -> new_compare25(vyw460, vyw480, new_esEs7(vyw460, vyw480, fc, fd, ff), fc, fd, ff) new_primCmpNat0(Succ(vyw46000), Succ(vyw48000)) -> new_primCmpNat0(vyw46000, vyw48000) new_compare16(vyw460, vyw480, True, fc, fd, ff) -> LT new_esEs27(vyw4611, vyw4811, app(ty_Maybe, cdd)) -> new_esEs6(vyw4611, vyw4811, cdd) new_compare12(vyw460, vyw480, True) -> LT new_compare32(vyw4600, vyw4800, ty_Double) -> new_compare31(vyw4600, vyw4800) new_ltEs11(vyw4611, vyw4811, app(ty_Maybe, bce)) -> new_ltEs6(vyw4611, vyw4811, bce) new_lt12(vyw460, vyw480) -> new_esEs10(new_compare13(vyw460, vyw480), LT) new_ltEs20(vyw4612, vyw4812, ty_Int) -> new_ltEs8(vyw4612, vyw4812) new_compare210(vyw460, vyw480, False) -> new_compare110(vyw460, vyw480, new_ltEs15(vyw460, vyw480)) new_lt20(vyw4610, vyw4810, ty_Char) -> new_lt18(vyw4610, vyw4810) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs16(vyw461, vyw481, bdg) -> new_fsEs(new_compare18(vyw461, vyw481, bdg)) new_lt21(vyw4611, vyw4811, app(app(ty_Either, ccf), ccg)) -> new_lt5(vyw4611, vyw4811, ccf, ccg) new_esEs4(Right(vyw500), Right(vyw3000), dh, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(ty_Maybe, ccb)) -> new_lt6(vyw4610, vyw4810, ccb) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(vyw4610, vyw4810, bfc, bfd, bfe) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_Float) -> new_ltEs5(vyw4610, vyw4810) new_esEs18(vyw500, vyw3000, app(app(ty_@2, he), hf)) -> new_esEs5(vyw500, vyw3000, he, hf) new_esEs23(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) new_ltEs13(Right(vyw4610), Right(vyw4810), bde, ty_@0) -> new_ltEs14(vyw4610, vyw4810) new_primEqNat0(Zero, Zero) -> True new_lt19(vyw460, vyw480, app(app(app(ty_@3, fc), fd), ff)) -> new_lt17(vyw460, vyw480, fc, fd, ff) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_Maybe, dd), cg) -> new_esEs6(vyw500, vyw3000, dd) new_ltEs11(vyw4611, vyw4811, app(app(ty_@2, bca), bcb)) -> new_ltEs10(vyw4611, vyw4811, bca, bcb) new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_compare14(vyw460, vyw480, True, bf) -> LT new_esEs28(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs20(vyw4612, vyw4812, app(ty_Ratio, cee)) -> new_ltEs16(vyw4612, vyw4812, cee) new_esEs29(vyw501, vyw3001, app(app(ty_@2, dfd), dfe)) -> new_esEs5(vyw501, vyw3001, dfd, dfe) new_lt7(vyw4610, vyw4810, ty_Int) -> new_lt12(vyw4610, vyw4810) new_lt20(vyw4610, vyw4810, app(app(ty_Either, cbd), cbe)) -> new_lt5(vyw4610, vyw4810, cbd, cbe) new_lt21(vyw4611, vyw4811, app(ty_Maybe, cdd)) -> new_lt6(vyw4611, vyw4811, cdd) new_lt21(vyw4611, vyw4811, ty_Char) -> new_lt18(vyw4611, vyw4811) new_esEs29(vyw501, vyw3001, app(ty_Ratio, dfg)) -> new_esEs17(vyw501, vyw3001, dfg) new_esEs29(vyw501, vyw3001, ty_Bool) -> new_esEs11(vyw501, vyw3001) new_asAs(False, vyw67) -> False new_esEs19(vyw4610, vyw4810, app(ty_[], bba)) -> new_esEs13(vyw4610, vyw4810, bba) new_compare32(vyw4600, vyw4800, ty_Int) -> new_compare13(vyw4600, vyw4800) new_esEs23(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(app(app(ty_@3, ccc), ccd), cce)) -> new_lt17(vyw4610, vyw4810, ccc, ccd, cce) new_esEs18(vyw500, vyw3000, app(ty_Ratio, hh)) -> new_esEs17(vyw500, vyw3000, hh) new_esEs26(vyw4610, vyw4810, ty_Int) -> new_esEs9(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, ty_Int) -> new_ltEs8(vyw461, vyw481) new_esEs27(vyw4611, vyw4811, app(app(ty_Either, ccf), ccg)) -> new_esEs4(vyw4611, vyw4811, ccf, ccg) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Ordering) -> new_ltEs15(vyw4610, vyw4810) new_esEs6(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_Double) -> new_esEs16(vyw502, vyw3002) new_compare10(vyw96, vyw97, vyw98, vyw99, False, vyw101, bg, bh) -> new_compare11(vyw96, vyw97, vyw98, vyw99, vyw101, bg, bh) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Bool, bdf) -> new_ltEs4(vyw4610, vyw4810) new_esEs20(vyw460, vyw480, app(ty_[], bda)) -> new_esEs13(vyw460, vyw480, bda) new_lt19(vyw460, vyw480, ty_Integer) -> new_lt16(vyw460, vyw480) new_esEs4(Left(vyw500), Left(vyw3000), ty_Integer, cg) -> new_esEs15(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Double) -> new_ltEs12(vyw4610, vyw4810) The set Q consists of the following terms: new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, True, x2, x3) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare110(x0, x1, False) new_esEs28(x0, x1, ty_Integer) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat1(Zero, Zero) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs6(Nothing, Nothing, x0) new_lt19(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_primCompAux00(x0, LT) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(EQ, EQ) new_lt7(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Just(x0), Just(x1), ty_@0) new_ltEs16(x0, x1, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_pePe(False, x0) new_esEs26(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Bool) new_compare29(@0, @0) new_esEs20(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare32(x0, x1, ty_Double) new_ltEs11(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Double) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Integer) new_ltEs5(x0, x1) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_esEs32(x0, x1, ty_Double) new_compare17(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Ordering) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Ordering) new_lt12(x0, x1) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Integer) new_compare111(x0, x1, False, x2, x3) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3, x4) new_ltEs6(Just(x0), Just(x1), ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Int) new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs11(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Double) new_compare11(x0, x1, x2, x3, False, x4, x5) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_compare14(x0, x1, False, x2) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_lt21(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_primMulNat0(Succ(x0), Zero) new_compare32(x0, x1, app(ty_[], x2)) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_lt19(x0, x1, ty_Ordering) new_ltEs15(EQ, EQ) new_esEs27(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Bool) new_esEs14(Char(x0), Char(x1)) new_esEs8(Float(x0, x1), Float(x2, x3)) new_compare110(x0, x1, True) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare19(Char(x0), Char(x1)) new_ltEs6(Nothing, Just(x0), x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare27(@2(x0, x1), @2(x2, x3), False, x4, x5) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_lt21(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Int) new_ltEs4(True, True) new_esEs6(Just(x0), Just(x1), ty_Double) new_compare15(Integer(x0), Integer(x1)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_primCmpNat0(Succ(x0), Zero) new_ltEs11(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3, True, x4, x5) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Just(x0), Just(x1), ty_Integer) new_esEs26(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Bool) new_asAs(False, x0) new_compare32(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_lt8(x0, x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, x2, x3) new_lt7(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), ty_Float) new_esEs32(x0, x1, ty_Char) new_primEqNat0(Zero, Succ(x0)) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_esEs29(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Float) new_compare31(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1) new_esEs20(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Integer) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, ty_Bool) new_esEs16(Double(x0, x1), Double(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_esEs32(x0, x1, ty_Float) new_compare25(x0, x1, True, x2, x3, x4) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), ty_Bool) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Bool) new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs26(x0, x1, ty_Int) new_compare23(x0, x1, True, x2) new_esEs11(False, False) new_esEs10(LT, GT) new_esEs10(GT, LT) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs18(x0, x1, ty_Float) new_ltEs6(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Int) new_compare24(x0, x1, True) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs6(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Int) new_lt14(x0, x1) new_fsEs(x0) new_esEs18(x0, x1, ty_Char) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_compare111(x0, x1, True, x2, x3) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs10(EQ, GT) new_esEs10(GT, EQ) new_esEs25(x0, x1, ty_Char) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_esEs31(x0, x1, ty_Ordering) new_ltEs14(x0, x1) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_primPlusNat1(Zero, Succ(x0)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt17(x0, x1, x2, x3, x4) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Float) new_lt20(x0, x1, ty_Char) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_compare16(x0, x1, False, x2, x3, x4) new_compare30(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, x2, x3, x4) new_lt19(x0, x1, ty_Float) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Zero) new_compare27(x0, x1, True, x2, x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Nothing, x1) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1, x2) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs32(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(True, x0) new_lt7(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Double) new_esEs9(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs18(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_@0) new_compare6(x0, x1, x2) new_esEs24(x0, x1, ty_Float) new_compare24(x0, x1, False) new_primMulInt(Pos(x0), Pos(x1)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_primPlusNat1(Succ(x0), Zero) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_ltEs8(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Char) new_primCompAux00(x0, GT) new_lt21(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs12(x0, x1) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_[], x2)) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare1(:(x0, x1), [], x2) new_esEs10(LT, LT) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs6(Just(x0), Nothing, x1) new_esEs19(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt21(x0, x1, ty_Int) new_ltEs11(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs15(GT, EQ) new_ltEs11(x0, x1, ty_Char) new_ltEs15(EQ, GT) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs11(False, True) new_esEs11(True, False) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt21(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_compare32(x0, x1, ty_Float) new_ltEs4(False, True) new_ltEs4(True, False) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare210(x0, x1, True) new_compare1([], [], x0) new_esEs31(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_lt7(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, ty_Int) new_lt19(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), x1) new_lt20(x0, x1, ty_Ordering) new_ltEs11(x0, x1, ty_@0) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare16(x0, x1, True, x2, x3, x4) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs31(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare12(x0, x1, True) new_lt21(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Char) new_esEs10(GT, GT) new_lt20(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs27(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Nothing, Nothing, x0) new_esEs28(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(LT, EQ) new_esEs10(EQ, LT) new_esEs25(x0, x1, ty_@0) new_compare32(x0, x1, app(ty_Maybe, x2)) new_esEs13([], [], x0) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(@0, @0) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_compare1([], :(x0, x1), x2) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs15(Integer(x0), Integer(x1)) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs4(False, False) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs7(x0, x1, x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs6(Nothing, Just(x0), x1) new_esEs13(:(x0, x1), [], x2) new_lt16(x0, x1) new_compare13(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare32(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Ordering) new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(x0, x1, False) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_ltEs15(GT, GT) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_esEs20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs11(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Double) new_not(False) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Bool) new_ltEs11(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Float) new_lt11(x0, x1) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_esEs13(:(x0, x1), :(x2, x3), x4) new_lt20(x0, x1, ty_Double) new_compare210(x0, x1, False) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_compare23(x0, x1, False, x2) new_ltEs15(LT, LT) new_esEs13([], :(x0, x1), x2) new_esEs18(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_[], x2)) new_sr(x0, x1) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Char) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs18(x0, x1, ty_Double) new_pePe(True, x0) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare31(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare31(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare7(x0, x1) new_ltEs11(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_Double) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs17(x0, x1) new_ltEs20(x0, x1, ty_Int) new_primCmpNat0(Zero, Zero) new_lt9(x0, x1, x2, x3) new_ltEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 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_lookupWithDefaultFM01(vyw4, Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw50, vyw51), bc, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw50, vyw51, new_esEs30(vyw50, vyw51, vyw300, vyw301, new_esEs31(vyw50, vyw300, bd), bd, be), bc, bd, be) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 2 > 7, 3 > 8, 3 > 9, 4 >= 11, 5 >= 12, 6 >= 13 *new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs10(new_compare27(@2(vyw24, vyw25), @2(vyw18, vyw19), new_asAs(new_esEs28(vyw24, vyw18, ba), new_esEs29(vyw25, vyw19, 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, 9 >= 9, 11 >= 11, 12 >= 12, 13 >= 13 *new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw22, @2(vyw24, vyw25), h, ba, bb) The graph contains the following edges 1 >= 1, 6 >= 2, 11 >= 4, 12 >= 5, 13 >= 6 *new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw23, @2(vyw24, vyw25), h, ba, bb) The graph contains the following edges 1 >= 1, 7 >= 2, 11 >= 4, 12 >= 5, 13 >= 6 ---------------------------------------- (27) YES ---------------------------------------- (28) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(vyw500), Just(vyw3000), app(app(ty_@2, bbb), bbc)) -> new_esEs1(vyw500, vyw3000, bbb, bbc) new_esEs3(Left(vyw500), Left(vyw3000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(vyw500, vyw3000, bcg, bch) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bf), bg), bc, bd) -> new_esEs1(vyw500, vyw3000, bf, bg) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_[], cg), bd) -> new_esEs0(vyw501, vyw3001, cg) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vyw501, vyw3001, he, hf, hg) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_[], ea)) -> new_esEs0(vyw502, vyw3002, ea) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(vyw502, vyw3002, df, dg, dh) new_esEs3(Right(vyw500), Right(vyw3000), bda, app(ty_[], bde)) -> new_esEs0(vyw500, vyw3000, bde) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_@2, eb), ec)) -> new_esEs1(vyw502, vyw3002, eb, ec) new_esEs2(Just(vyw500), Just(vyw3000), app(ty_[], bba)) -> new_esEs0(vyw500, vyw3000, bba) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bh), bc, bd) -> new_esEs2(vyw500, vyw3000, bh) new_esEs2(Just(vyw500), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw500, vyw3000, bbd) new_esEs3(Left(vyw500), Left(vyw3000), app(app(ty_@2, bcd), bce), bcb) -> new_esEs1(vyw500, vyw3000, bcd, bce) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(vyw500, vyw3000, ca, cb) new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], fb)) -> new_esEs0(vyw500, vyw3000, fb) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(ty_Maybe, bac)) -> new_esEs2(vyw501, vyw3001, bac) new_esEs3(Right(vyw500), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw500, vyw3000, bea, beb) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(vyw501, vyw3001, cd, ce, cf) new_esEs3(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(vyw500, vyw3000, bbg, bbh, bca) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(vyw501, vyw3001, dd, de) new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), ga) -> new_esEs0(vyw501, vyw3001, ga) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ha), ge) -> new_esEs2(vyw500, vyw3000, ha) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_@2, da), db), bd) -> new_esEs1(vyw501, vyw3001, da, db) new_esEs2(Just(vyw500), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw500, vyw3000, bbe, bbf) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(ty_[], hh)) -> new_esEs0(vyw501, vyw3001, hh) new_esEs3(Left(vyw500), Left(vyw3000), app(ty_[], bcc), bcb) -> new_esEs0(vyw500, vyw3000, bcc) new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, ff)) -> new_esEs2(vyw500, vyw3000, ff) new_esEs3(Right(vyw500), Right(vyw3000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw500, vyw3000, bdf, bdg) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(vyw502, vyw3002, ee, ef) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], gf), ge) -> new_esEs0(vyw500, vyw3000, gf) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, hb), hc), ge) -> new_esEs3(vyw500, vyw3000, hb, hc) new_esEs3(Left(vyw500), Left(vyw3000), app(ty_Maybe, bcf), bcb) -> new_esEs2(vyw500, vyw3000, bcf) new_esEs3(Right(vyw500), Right(vyw3000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(vyw500, vyw3000, bdb, bdc, bdd) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(vyw500, vyw3000, h, ba, bb) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(vyw500, vyw3000, gb, gc, gd) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, gg), gh), ge) -> new_esEs1(vyw500, vyw3000, gg, gh) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_Maybe, dc), bd) -> new_esEs2(vyw501, vyw3001, dc) new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(vyw500, vyw3000, eg, eh, fa) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_Maybe, ed)) -> new_esEs2(vyw502, vyw3002, ed) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(app(ty_@2, baa), bab)) -> new_esEs1(vyw501, vyw3001, baa, bab) new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(app(ty_Either, bad), bae)) -> new_esEs3(vyw501, vyw3001, bad, bae) new_esEs2(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(vyw500, vyw3000, baf, bag, bah) new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], be), bc, bd) -> new_esEs0(vyw500, vyw3000, be) new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, fg), fh)) -> new_esEs3(vyw500, vyw3000, fg, fh) new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, fc), fd)) -> new_esEs1(vyw500, vyw3000, fc, fd) new_esEs3(Right(vyw500), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw500, vyw3000, bdh) 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_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, ff)) -> new_esEs2(vyw500, vyw3000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, fg), fh)) -> new_esEs3(vyw500, vyw3000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(vyw500, vyw3000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vyw500), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw500, vyw3000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vyw500), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw500, vyw3000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(vyw500, vyw3000, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, fc), fd)) -> new_esEs1(vyw500, vyw3000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vyw500), Just(vyw3000), app(app(ty_@2, bbb), bbc)) -> new_esEs1(vyw500, vyw3000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vyw500), Just(vyw3000), app(ty_[], bba)) -> new_esEs0(vyw500, vyw3000, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(ty_Maybe, bac)) -> new_esEs2(vyw501, vyw3001, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ha), ge) -> new_esEs2(vyw500, vyw3000, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, hb), hc), ge) -> new_esEs3(vyw500, vyw3000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(app(ty_Either, bad), bae)) -> new_esEs3(vyw501, vyw3001, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vyw501, vyw3001, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(vyw500, vyw3000, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, gg), gh), ge) -> new_esEs1(vyw500, vyw3000, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(app(ty_@2, baa), bab)) -> new_esEs1(vyw501, vyw3001, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hd, app(ty_[], hh)) -> new_esEs0(vyw501, vyw3001, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], gf), ge) -> new_esEs0(vyw500, vyw3000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vyw500), Left(vyw3000), app(ty_Maybe, bcf), bcb) -> new_esEs2(vyw500, vyw3000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vyw500), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw500, vyw3000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bh), bc, bd) -> new_esEs2(vyw500, vyw3000, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_Maybe, dc), bd) -> new_esEs2(vyw501, vyw3001, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_Maybe, ed)) -> new_esEs2(vyw502, vyw3002, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(Left(vyw500), Left(vyw3000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(vyw500, vyw3000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vyw500), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw500, vyw3000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(vyw500, vyw3000, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(vyw500), Right(vyw3000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(vyw500, vyw3000, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(vyw500), Left(vyw3000), app(app(ty_@2, bcd), bce), bcb) -> new_esEs1(vyw500, vyw3000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vyw500), Right(vyw3000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw500, vyw3000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(vyw500), Right(vyw3000), bda, app(ty_[], bde)) -> new_esEs0(vyw500, vyw3000, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vyw500), Left(vyw3000), app(ty_[], bcc), bcb) -> new_esEs0(vyw500, vyw3000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(vyw500, vyw3000, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(vyw501, vyw3001, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(vyw502, vyw3002, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(vyw502, vyw3002, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(vyw501, vyw3001, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(vyw500, vyw3000, h, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], fb)) -> new_esEs0(vyw500, vyw3000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), ga) -> new_esEs0(vyw501, vyw3001, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bf), bg), bc, bd) -> new_esEs1(vyw500, vyw3000, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_@2, eb), ec)) -> new_esEs1(vyw502, vyw3002, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_@2, da), db), bd) -> new_esEs1(vyw501, vyw3001, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_[], cg), bd) -> new_esEs0(vyw501, vyw3001, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_[], ea)) -> new_esEs0(vyw502, vyw3002, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], be), bc, bd) -> new_esEs0(vyw500, vyw3000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (30) YES ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(app(app(ty_@3, bbg), bbh), bca)), bba), bbb)) -> new_lt3(vyw4610, vyw4810, bbg, bbh, bca) new_primCompAux(vyw4600, vyw4800, vyw110, app(ty_Maybe, bfb)) -> new_compare4(vyw4600, vyw4800, bfb) new_primCompAux(vyw4600, vyw4800, vyw110, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare5(vyw4600, vyw4800, bfc, bfd, bfe) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(app(ty_@2, fd), ff))) -> new_ltEs0(vyw4611, vyw4811, fd, ff) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(ty_@2, bbc), bbd), bba, bbb) -> new_lt0(vyw4610, vyw4810, bbc, bbd) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(app(app(ty_@3, bda), bdb), bdc)), bbb)) -> new_lt3(vyw4611, vyw4811, bda, bdb, bdc) new_compare3(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_primCompAux(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, gg), gg) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(app(app(ty_@3, ga), gb), gc))) -> new_ltEs3(vyw4611, vyw4811, ga, gb, gc) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(ty_[], fg)) -> new_ltEs1(vyw4611, vyw4811, fg) new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(app(ty_@2, be), bf)), bd)) -> new_ltEs0(vyw4610, vyw4810, be, bf) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(ty_Maybe, bbf)), bba), bbb)) -> new_lt2(vyw4610, vyw4810, bbf) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(ty_Maybe, bea)) -> new_ltEs2(vyw4612, vyw4812, bea) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(ty_Maybe, bch), bbb) -> new_lt2(vyw4611, vyw4811, bch) new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(ty_@2, hh), baa)) -> new_ltEs0(vyw4610, vyw4810, hh, baa) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(ty_[], bbe)), bba), bbb)) -> new_lt1(vyw4610, vyw4810, bbe) new_ltEs(Left(vyw4610), Left(vyw4810), app(ty_[], bg), bd) -> new_ltEs1(vyw4610, vyw4810, bg) new_compare0(vyw460, vyw480, gd, ge) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, gd, ge), gd, ge) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(app(ty_@2, fd), ff)) -> new_ltEs0(vyw4611, vyw4811, fd, ff) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(app(ty_Either, fb), fc)) -> new_ltEs(vyw4611, vyw4811, fb, fc) new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(app(ty_@2, hh), baa))) -> new_ltEs0(vyw4610, vyw4810, hh, baa) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(app(ty_@2, bdf), bdg))) -> new_ltEs0(vyw4612, vyw4812, bdf, bdg) new_primCompAux(vyw4600, vyw4800, vyw110, app(app(ty_@2, beg), beh)) -> new_compare0(vyw4600, vyw4800, beg, beh) new_lt(vyw460, vyw480, h, ba) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba), h, ba) new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(ty_Maybe, gh), gf) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(app(ty_Either, bdd), bde)) -> new_ltEs(vyw4612, vyw4812, bdd, bde) new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(ty_[], db))) -> new_ltEs1(vyw4610, vyw4810, db) new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(app(app(ty_@3, ca), cb), cc)), bd)) -> new_ltEs3(vyw4610, vyw4810, ca, cb, cc) new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(app(ty_Either, ce), cf))) -> new_ltEs(vyw4610, vyw4810, ce, cf) new_compare3(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_compare3(vyw4601, vyw4801, gg) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs3(vyw4612, vyw4812, beb, bec, bed) new_ltEs(Left(vyw4610), Left(vyw4810), app(app(ty_@2, be), bf), bd) -> new_ltEs0(vyw4610, vyw4810, be, bf) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(ty_[], ed), ea) -> new_lt1(vyw4610, vyw4810, ed) new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vyw4610, vyw4810, bad, bae, baf) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(app(ty_@3, ef), eg), eh), ea) -> new_lt3(vyw4610, vyw4810, ef, eg, eh) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(app(ty_@2, bdf), bdg)) -> new_ltEs0(vyw4612, vyw4812, bdf, bdg) new_compare22(vyw460, vyw480, False, ha, hb, hc) -> new_ltEs3(vyw460, vyw480, ha, hb, hc) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(app(ty_Either, bcc), bcd)), bbb)) -> new_lt(vyw4611, vyw4811, bcc, bcd) new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, hd, app(ty_[], he)) -> new_compare3(vyw461, vyw481, he) new_compare4(vyw460, vyw480, gh) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(app(ty_@2, bce), bcf), bbb) -> new_lt0(vyw4611, vyw4811, bce, bcf) new_ltEs(Left(vyw4610), Left(vyw4810), app(app(ty_Either, bb), bc), bd) -> new_ltEs(vyw4610, vyw4810, bb, bc) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(ty_Maybe, bea))) -> new_ltEs2(vyw4612, vyw4812, bea) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(ty_@2, eb), ec), ea) -> new_lt0(vyw4610, vyw4810, eb, ec) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(ty_Either, bag), bah), bba, bbb) -> new_lt(vyw4610, vyw4810, bag, bah) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(ty_Maybe, fh))) -> new_ltEs2(vyw4611, vyw4811, fh) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(app(ty_Either, dg), dh)), ea)) -> new_lt(vyw4610, vyw4810, dg, dh) new_compare5(vyw460, vyw480, ha, hb, hc) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb, hc), ha, hb, hc) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs3(vyw4611, vyw4811, ga, gb, gc) new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vyw4610, vyw4810, bad, bae, baf) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(app(ty_@3, bbg), bbh), bca), bba, bbb) -> new_lt3(vyw4610, vyw4810, bbg, bbh, bca) new_lt1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_primCompAux(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, gg), gg) new_lt3(vyw460, vyw480, ha, hb, hc) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb, hc), ha, hb, hc) new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs2(vyw4610, vyw4810, bac) new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(ty_[], db)) -> new_ltEs1(vyw4610, vyw4810, db) new_ltEs2(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bac)) -> new_ltEs2(vyw4610, vyw4810, bac) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), bba), bbb)) -> new_lt(vyw4610, vyw4810, bag, bah) new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(ty_Maybe, bh)), bd)) -> new_ltEs2(vyw4610, vyw4810, bh) new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd)) -> new_ltEs(vyw4610, vyw4810, bb, bc) new_ltEs2(Just(vyw4610), Just(vyw4810), app(ty_[], bab)) -> new_ltEs1(vyw4610, vyw4810, bab) new_ltEs(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, ca), cb), cc), bd) -> new_ltEs3(vyw4610, vyw4810, ca, cb, cc) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(ty_Maybe, fh)) -> new_ltEs2(vyw4611, vyw4811, fh) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(ty_Maybe, bch)), bbb)) -> new_lt2(vyw4611, vyw4811, bch) new_primCompAux(vyw4600, vyw4800, vyw110, app(app(ty_Either, bee), bef)) -> new_compare(vyw4600, vyw4800, bee, bef) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(app(app(ty_@3, beb), bec), bed))) -> new_ltEs3(vyw4612, vyw4812, beb, bec, bed) new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(ty_Maybe, dc)) -> new_ltEs2(vyw4610, vyw4810, dc) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(ty_[], ed)), ea)) -> new_lt1(vyw4610, vyw4810, ed) new_compare20(@2(:(vyw4600, vyw4601), vyw461), @2(:(vyw4800, vyw4801), vyw481), False, app(ty_[], gg), gf) -> new_primCompAux(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, gg), gg) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(app(app(ty_@3, ef), eg), eh)), ea)) -> new_lt3(vyw4610, vyw4810, ef, eg, eh) new_primCompAux(vyw4600, vyw4800, vyw110, app(ty_[], bfa)) -> new_compare3(vyw4600, vyw4800, bfa) new_lt2(vyw460, vyw480, gh) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(app(ty_Either, ce), cf)) -> new_ltEs(vyw4610, vyw4810, ce, cf) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(ty_[], bdh))) -> new_ltEs1(vyw4612, vyw4812, bdh) new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(vyw4610, vyw4810, dd, de, df) new_compare20(@2(:(vyw4600, vyw4601), vyw461), @2(:(vyw4800, vyw4801), vyw481), False, app(ty_[], gg), gf) -> new_compare3(vyw4601, vyw4801, gg) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(ty_Maybe, bbf), bba, bbb) -> new_lt2(vyw4610, vyw4810, bbf) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(app(ty_Either, bdd), bde))) -> new_ltEs(vyw4612, vyw4812, bdd, bde) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(ty_Either, dg), dh), ea) -> new_lt(vyw4610, vyw4810, dg, dh) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(app(ty_Either, bcc), bcd), bbb) -> new_lt(vyw4611, vyw4811, bcc, bcd) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(ty_Maybe, ee)), ea)) -> new_lt2(vyw4610, vyw4810, ee) new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(ty_Maybe, dc))) -> new_ltEs2(vyw4610, vyw4810, dc) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(ty_[], bdh)) -> new_ltEs1(vyw4612, vyw4812, bdh) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(ty_[], bcg), bbb) -> new_lt1(vyw4611, vyw4811, bcg) new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(app(ty_@2, cg), da))) -> new_ltEs0(vyw4610, vyw4810, cg, da) new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(app(ty_Either, hf), hg))) -> new_ltEs(vyw4610, vyw4810, hf, hg) new_lt1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_compare3(vyw4601, vyw4801, gg) new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(ty_Either, h), ba), gf) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba), h, ba) new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(app(app(ty_@3, dd), de), df))) -> new_ltEs3(vyw4610, vyw4810, dd, de, df) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(app(ty_Either, fb), fc))) -> new_ltEs(vyw4611, vyw4811, fb, fc) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(ty_[], bcg)), bbb)) -> new_lt1(vyw4611, vyw4811, bcg) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(ty_[], fg))) -> new_ltEs1(vyw4611, vyw4811, fg) new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(ty_@2, gd), ge), gf) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, gd, ge), gd, ge) new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(ty_[], bg)), bd)) -> new_ltEs1(vyw4610, vyw4810, bg) new_compare2(vyw460, vyw480, False, h, ba) -> new_ltEs(vyw460, vyw480, h, ba) new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(ty_Maybe, ee), ea) -> new_lt2(vyw4610, vyw4810, ee) new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(ty_Either, hf), hg)) -> new_ltEs(vyw4610, vyw4810, hf, hg) new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(app(ty_@2, cg), da)) -> new_ltEs0(vyw4610, vyw4810, cg, da) new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(app(ty_@3, ha), hb), hc), gf) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb, hc), ha, hb, hc) new_ltEs1(vyw461, vyw481, he) -> new_compare3(vyw461, vyw481, he) new_compare(vyw460, vyw480, h, ba) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba), h, ba) new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(ty_[], bab))) -> new_ltEs1(vyw4610, vyw4810, bab) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(app(ty_@2, bbc), bbd)), bba), bbb)) -> new_lt0(vyw4610, vyw4810, bbc, bbd) new_ltEs(Left(vyw4610), Left(vyw4810), app(ty_Maybe, bh), bd) -> new_ltEs2(vyw4610, vyw4810, bh) new_lt0(vyw460, vyw480, gd, ge) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, gd, ge), gd, ge) new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(app(ty_@2, bce), bcf)), bbb)) -> new_lt0(vyw4611, vyw4811, bce, bcf) new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(app(ty_@2, eb), ec)), ea)) -> new_lt0(vyw4610, vyw4810, eb, ec) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(app(app(ty_@3, bda), bdb), bdc), bbb) -> new_lt3(vyw4611, vyw4811, bda, bdb, bdc) new_compare21(vyw460, vyw480, False, gh) -> new_ltEs2(vyw460, vyw480, gh) new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(ty_[], bbe), bba, bbb) -> new_lt1(vyw4610, vyw4810, bbe) The TRS R consists of the following rules: new_lt7(vyw4610, vyw4810, app(ty_Maybe, ee)) -> new_lt6(vyw4610, vyw4810, ee) new_compare24(vyw460, vyw480, False) -> new_compare12(vyw460, vyw480, new_ltEs4(vyw460, vyw480)) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(ty_Either, hf), hg)) -> new_ltEs13(vyw4610, vyw4810, hf, hg) new_esEs4(Left(vyw500), Left(vyw3000), ty_Double, bgc) -> new_esEs16(vyw500, vyw3000) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Double, bd) -> new_ltEs12(vyw4610, vyw4810) new_esEs23(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_primCmpInt(Neg(Succ(vyw46000)), Pos(vyw4800)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs27(vyw4611, vyw4811, ty_Int) -> new_esEs9(vyw4611, vyw4811) new_ltEs11(vyw4611, vyw4811, ty_Double) -> new_ltEs12(vyw4611, vyw4811) new_pePe(True, vyw115) -> True new_esEs23(vyw500, vyw3000, app(ty_Maybe, cea)) -> new_esEs6(vyw500, vyw3000, cea) new_compare32(vyw4600, vyw4800, ty_Bool) -> new_compare7(vyw4600, vyw4800) new_ltEs20(vyw4612, vyw4812, ty_Ordering) -> new_ltEs15(vyw4612, vyw4812) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Float) -> new_ltEs5(vyw4610, vyw4810) new_compare32(vyw4600, vyw4800, app(ty_Ratio, chf)) -> new_compare18(vyw4600, vyw4800, chf) new_esEs19(vyw4610, vyw4810, app(ty_Ratio, cca)) -> new_esEs17(vyw4610, vyw4810, cca) new_compare23(vyw460, vyw480, True, gh) -> EQ new_esEs4(Left(vyw500), Left(vyw3000), ty_Bool, bgc) -> new_esEs11(vyw500, vyw3000) new_compare29(@0, @0) -> EQ new_esEs4(Left(vyw500), Right(vyw3000), bhc, bgc) -> False new_esEs4(Right(vyw500), Left(vyw3000), bhc, bgc) -> False new_esEs25(vyw502, vyw3002, app(ty_[], cgb)) -> new_esEs13(vyw502, vyw3002, cgb) new_esEs16(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs9(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vyw48000))) -> GT new_esEs9(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) new_compare26(vyw460, vyw480, True, h, ba) -> EQ new_esEs22(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_esEs23(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs19(vyw4610, vyw4810, ty_@0) -> new_esEs12(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, app(ty_Ratio, ccd)) -> new_ltEs16(vyw461, vyw481, ccd) new_lt7(vyw4610, vyw4810, ty_Float) -> new_lt14(vyw4610, vyw4810) new_esEs14(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) new_primCmpInt(Neg(Succ(vyw46000)), Neg(vyw4800)) -> new_primCmpNat0(vyw4800, Succ(vyw46000)) new_esEs29(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) new_compare111(vyw460, vyw480, True, h, ba) -> LT new_esEs6(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs9(vyw500, vyw3000) new_esEs5(@2(vyw500, vyw501), @2(vyw3000, vyw3001), dbb, dbc) -> new_asAs(new_esEs28(vyw500, vyw3000, dbb), new_esEs29(vyw501, vyw3001, dbc)) new_ltEs11(vyw4611, vyw4811, app(ty_[], fg)) -> new_ltEs7(vyw4611, vyw4811, fg) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, ty_Bool) -> new_ltEs4(vyw4610, vyw4810) new_ltEs4(False, True) -> True new_esEs4(Left(vyw500), Left(vyw3000), app(app(ty_@2, bge), bgf), bgc) -> new_esEs5(vyw500, vyw3000, bge, bgf) new_esEs25(vyw502, vyw3002, app(app(ty_@2, cgc), cgd)) -> new_esEs5(vyw502, vyw3002, cgc, cgd) new_ltEs15(EQ, LT) -> False new_lt7(vyw4610, vyw4810, ty_Double) -> new_lt8(vyw4610, vyw4810) new_esEs20(vyw460, vyw480, ty_@0) -> new_esEs12(vyw460, vyw480) new_ltEs20(vyw4612, vyw4812, ty_Char) -> new_ltEs18(vyw4612, vyw4812) new_lt7(vyw4610, vyw4810, app(app(ty_Either, dg), dh)) -> new_lt5(vyw4610, vyw4810, dg, dh) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(ty_@2, hh), baa)) -> new_ltEs10(vyw4610, vyw4810, hh, baa) new_lt4(vyw460, vyw480) -> new_esEs10(new_compare7(vyw460, vyw480), LT) new_esEs4(Right(vyw500), Right(vyw3000), bhc, ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_@0) -> new_esEs12(vyw502, vyw3002) new_lt7(vyw4610, vyw4810, ty_Bool) -> new_lt4(vyw4610, vyw4810) new_esEs13(:(vyw500, vyw501), :(vyw3000, vyw3001), caf) -> new_asAs(new_esEs18(vyw500, vyw3000, caf), new_esEs13(vyw501, vyw3001, caf)) new_ltEs19(vyw461, vyw481, ty_Ordering) -> new_ltEs15(vyw461, vyw481) new_esEs26(vyw4610, vyw4810, ty_Char) -> new_esEs14(vyw4610, vyw4810) new_lt20(vyw4610, vyw4810, ty_Bool) -> new_lt4(vyw4610, vyw4810) new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_ltEs15(GT, LT) -> False new_compare17(vyw460, vyw480, gd, ge) -> new_compare27(vyw460, vyw480, new_esEs5(vyw460, vyw480, gd, ge), gd, ge) new_esEs6(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs11(vyw500, vyw3000) new_esEs20(vyw460, vyw480, app(app(ty_@2, gd), ge)) -> new_esEs5(vyw460, vyw480, gd, ge) new_esEs25(vyw502, vyw3002, app(ty_Ratio, cgf)) -> new_esEs17(vyw502, vyw3002, cgf) new_lt11(vyw460, vyw480) -> new_esEs10(new_compare29(vyw460, vyw480), LT) new_esEs19(vyw4610, vyw4810, app(app(ty_@2, eb), ec)) -> new_esEs5(vyw4610, vyw4810, eb, ec) new_compare1(:(vyw4600, vyw4601), [], gg) -> GT new_compare12(vyw460, vyw480, False) -> GT new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) new_esEs20(vyw460, vyw480, app(ty_Ratio, ccc)) -> new_esEs17(vyw460, vyw480, ccc) new_esEs27(vyw4611, vyw4811, ty_Integer) -> new_esEs15(vyw4611, vyw4811) new_esEs10(GT, GT) -> True new_ltEs13(Right(vyw4610), Right(vyw4810), cd, ty_Integer) -> new_ltEs17(vyw4610, vyw4810) new_not(True) -> False new_esEs28(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_primCompAux0(vyw4600, vyw4800, vyw110, gg) -> new_primCompAux00(vyw110, new_compare32(vyw4600, vyw4800, gg)) new_ltEs11(vyw4611, vyw4811, ty_Int) -> new_ltEs8(vyw4611, vyw4811) new_compare6(vyw460, vyw480, gh) -> new_compare23(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_ltEs20(vyw4612, vyw4812, app(app(ty_@2, bdf), bdg)) -> new_ltEs10(vyw4612, vyw4812, bdf, bdg) new_primCompAux00(vyw120, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Char) -> new_ltEs18(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, ty_Double) -> new_esEs16(vyw4611, vyw4811) new_ltEs20(vyw4612, vyw4812, ty_Integer) -> new_ltEs17(vyw4612, vyw4812) new_compare32(vyw4600, vyw4800, app(app(ty_Either, bee), bef)) -> new_compare8(vyw4600, vyw4800, bee, bef) new_esEs25(vyw502, vyw3002, ty_Ordering) -> new_esEs10(vyw502, vyw3002) new_ltEs11(vyw4611, vyw4811, ty_@0) -> new_ltEs14(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, ty_Bool) -> new_esEs11(vyw4611, vyw4811) new_compare32(vyw4600, vyw4800, ty_Ordering) -> new_compare30(vyw4600, vyw4800) new_esEs26(vyw4610, vyw4810, ty_Integer) -> new_esEs15(vyw4610, vyw4810) new_esEs29(vyw501, vyw3001, app(ty_[], dda)) -> new_esEs13(vyw501, vyw3001, dda) new_esEs25(vyw502, vyw3002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs7(vyw502, vyw3002, cfg, cfh, cga) new_esEs19(vyw4610, vyw4810, ty_Float) -> new_esEs8(vyw4610, vyw4810) new_esEs25(vyw502, vyw3002, ty_Float) -> new_esEs8(vyw502, vyw3002) new_ltEs12(vyw461, vyw481) -> new_fsEs(new_compare31(vyw461, vyw481)) new_ltEs19(vyw461, vyw481, ty_Char) -> new_ltEs18(vyw461, vyw481) new_lt9(vyw460, vyw480, gd, ge) -> new_esEs10(new_compare17(vyw460, vyw480, gd, ge), LT) new_esEs28(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_primEqNat0(Succ(vyw5000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_esEs19(vyw4610, vyw4810, ty_Ordering) -> new_esEs10(vyw4610, vyw4810) new_esEs19(vyw4610, vyw4810, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs7(vyw4610, vyw4810, ef, eg, eh) new_esEs4(Right(vyw500), Right(vyw3000), bhc, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs7(vyw500, vyw3000, bhd, bhe, bhf) new_esEs13([], [], caf) -> True new_esEs26(vyw4610, vyw4810, ty_Ordering) -> new_esEs10(vyw4610, vyw4810) new_esEs4(Right(vyw500), Right(vyw3000), bhc, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bac)) -> new_ltEs6(vyw4610, vyw4810, bac) new_esEs6(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_lt10(vyw460, vyw480, gg) -> new_esEs10(new_compare1(vyw460, vyw480, gg), LT) new_esEs4(Left(vyw500), Left(vyw3000), ty_Int, bgc) -> new_esEs9(vyw500, vyw3000) new_ltEs15(GT, EQ) -> False new_esEs26(vyw4610, vyw4810, ty_Float) -> new_esEs8(vyw4610, vyw4810) new_compare31(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare31(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_primCompAux00(vyw120, GT) -> GT new_esEs4(Right(vyw500), Right(vyw3000), bhc, ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs10(EQ, EQ) -> True new_compare110(vyw460, vyw480, True) -> LT new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Integer) -> new_ltEs17(vyw4610, vyw4810) new_esEs18(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_ltEs10(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, ea) -> new_pePe(new_lt7(vyw4610, vyw4810, fa), new_asAs(new_esEs19(vyw4610, vyw4810, fa), new_ltEs11(vyw4611, vyw4811, ea))) new_lt20(vyw4610, vyw4810, ty_Int) -> new_lt12(vyw4610, vyw4810) new_primCmpInt(Pos(Succ(vyw46000)), Neg(vyw4800)) -> GT new_compare14(vyw460, vyw480, False, gh) -> GT new_esEs4(Right(vyw500), Right(vyw3000), bhc, app(ty_[], bhg)) -> new_esEs13(vyw500, vyw3000, bhg) new_compare11(vyw96, vyw97, vyw98, vyw99, True, bff, bfg) -> LT new_lt5(vyw460, vyw480, h, ba) -> new_esEs10(new_compare8(vyw460, vyw480, h, ba), LT) new_lt7(vyw4610, vyw4810, app(app(ty_@2, eb), ec)) -> new_lt9(vyw4610, vyw4810, eb, ec) new_primPlusNat1(Succ(vyw8700), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw8700, vyw3000000))) new_esEs24(vyw501, vyw3001, ty_@0) -> new_esEs12(vyw501, vyw3001) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_[], bgd), bgc) -> new_esEs13(vyw500, vyw3000, bgd) new_esEs10(LT, EQ) -> False new_esEs10(EQ, LT) -> False new_primCmpNat0(Zero, Succ(vyw48000)) -> LT new_esEs26(vyw4610, vyw4810, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(vyw4610, vyw4810, bbg, bbh, bca) new_esEs20(vyw460, vyw480, ty_Ordering) -> new_esEs10(vyw460, vyw480) new_lt18(vyw460, vyw480) -> new_esEs10(new_compare19(vyw460, vyw480), LT) new_compare210(vyw460, vyw480, True) -> EQ new_esEs20(vyw460, vyw480, ty_Float) -> new_esEs8(vyw460, vyw480) new_esEs24(vyw501, vyw3001, app(ty_[], ceh)) -> new_esEs13(vyw501, vyw3001, ceh) new_primCmpNat0(Succ(vyw46000), Zero) -> GT new_pePe(False, vyw115) -> vyw115 new_lt20(vyw4610, vyw4810, ty_@0) -> new_lt11(vyw4610, vyw4810) new_lt19(vyw460, vyw480, ty_Double) -> new_lt8(vyw460, vyw480) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, app(ty_Maybe, dc)) -> new_ltEs6(vyw4610, vyw4810, dc) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_lt19(vyw460, vyw480, ty_Int) -> new_lt12(vyw460, vyw480) new_ltEs13(Left(vyw4610), Right(vyw4810), cd, bd) -> True new_lt13(vyw460, vyw480) -> new_esEs10(new_compare30(vyw460, vyw480), LT) new_esEs4(Right(vyw500), Right(vyw3000), bhc, app(ty_Ratio, cac)) -> new_esEs17(vyw500, vyw3000, cac) new_esEs26(vyw4610, vyw4810, ty_@0) -> new_esEs12(vyw4610, vyw4810) new_esEs26(vyw4610, vyw4810, app(app(ty_@2, bbc), bbd)) -> new_esEs5(vyw4610, vyw4810, bbc, bbd) new_ltEs19(vyw461, vyw481, app(app(ty_@2, fa), ea)) -> new_ltEs10(vyw461, vyw481, fa, ea) new_compare18(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Int) -> new_compare13(new_sr(vyw4600, vyw4801), new_sr(vyw4800, vyw4601)) new_ltEs19(vyw461, vyw481, ty_Integer) -> new_ltEs17(vyw461, vyw481) new_esEs29(vyw501, vyw3001, ty_Char) -> new_esEs14(vyw501, vyw3001) new_esEs4(Right(vyw500), Right(vyw3000), bhc, app(app(ty_@2, bhh), caa)) -> new_esEs5(vyw500, vyw3000, bhh, caa) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(ty_Either, bb), bc), bd) -> new_ltEs13(vyw4610, vyw4810, bb, bc) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_ltEs13(Right(vyw4610), Left(vyw4810), cd, bd) -> False new_esEs26(vyw4610, vyw4810, app(ty_Ratio, cha)) -> new_esEs17(vyw4610, vyw4810, cha) new_esEs26(vyw4610, vyw4810, app(ty_[], bbe)) -> new_esEs13(vyw4610, vyw4810, bbe) new_compare32(vyw4600, vyw4800, ty_@0) -> new_compare29(vyw4600, vyw4800) new_esEs29(vyw501, vyw3001, ty_Double) -> new_esEs16(vyw501, vyw3001) new_esEs25(vyw502, vyw3002, ty_Char) -> new_esEs14(vyw502, vyw3002) new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, ty_Int) -> new_ltEs8(vyw4610, vyw4810) new_primCmpInt(Neg(Zero), Pos(Succ(vyw48000))) -> LT new_compare25(vyw460, vyw480, True, ha, hb, hc) -> EQ new_ltEs20(vyw4612, vyw4812, app(app(ty_Either, bdd), bde)) -> new_ltEs13(vyw4612, vyw4812, bdd, bde) new_primMulInt(Pos(vyw5010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) new_esEs29(vyw501, vyw3001, ty_Float) -> new_esEs8(vyw501, vyw3001) new_esEs23(vyw500, vyw3000, app(app(ty_Either, cec), ced)) -> new_esEs4(vyw500, vyw3000, cec, ced) new_ltEs19(vyw461, vyw481, ty_Double) -> new_ltEs12(vyw461, vyw481) new_esEs13(:(vyw500, vyw501), [], caf) -> False new_esEs13([], :(vyw3000, vyw3001), caf) -> False new_compare27(@2(vyw460, vyw461), @2(vyw480, vyw481), False, hd, gf) -> new_compare10(vyw460, vyw461, vyw480, vyw481, new_lt19(vyw460, vyw480, hd), new_asAs(new_esEs20(vyw460, vyw480, hd), new_ltEs19(vyw461, vyw481, gf)), hd, gf) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(ty_@2, be), bf), bd) -> new_ltEs10(vyw4610, vyw4810, be, bf) new_esEs24(vyw501, vyw3001, ty_Ordering) -> new_esEs10(vyw501, vyw3001) new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_Either, dah), dba)) -> new_esEs4(vyw500, vyw3000, dah, dba) new_compare32(vyw4600, vyw4800, ty_Integer) -> new_compare15(vyw4600, vyw4800) new_esEs28(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs24(vyw501, vyw3001, app(ty_Maybe, cfc)) -> new_esEs6(vyw501, vyw3001, cfc) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Ordering, bd) -> new_ltEs15(vyw4610, vyw4810) new_primMulNat0(Succ(vyw50100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_Ratio, ccf)) -> new_ltEs16(vyw4610, vyw4810, ccf) new_lt20(vyw4610, vyw4810, ty_Double) -> new_lt8(vyw4610, vyw4810) new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) new_ltEs20(vyw4612, vyw4812, ty_Double) -> new_ltEs12(vyw4612, vyw4812) new_compare18(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Integer) -> new_compare15(new_sr0(vyw4600, vyw4801), new_sr0(vyw4800, vyw4601)) new_lt19(vyw460, vyw480, ty_Ordering) -> new_lt13(vyw460, vyw480) new_ltEs19(vyw461, vyw481, app(app(ty_Either, cd), bd)) -> new_ltEs13(vyw461, vyw481, cd, bd) new_ltEs18(vyw461, vyw481) -> new_fsEs(new_compare19(vyw461, vyw481)) new_esEs18(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Int) -> new_ltEs8(vyw4610, vyw4810) new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_Ratio, chd), bd) -> new_ltEs16(vyw4610, vyw4810, chd) new_compare23(vyw460, vyw480, False, gh) -> new_compare14(vyw460, vyw480, new_ltEs6(vyw460, vyw480, gh), gh) new_compare26(vyw460, vyw480, False, h, ba) -> new_compare111(vyw460, vyw480, new_ltEs13(vyw460, vyw480, h, ba), h, ba) new_esEs18(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs22(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs19(vyw4610, vyw4810, ty_Double) -> new_esEs16(vyw4610, vyw4810) new_lt7(vyw4610, vyw4810, ty_@0) -> new_lt11(vyw4610, vyw4810) new_compare1([], [], gg) -> EQ new_esEs6(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, chh), daa), dab)) -> new_esEs7(vyw500, vyw3000, chh, daa, dab) new_esEs27(vyw4611, vyw4811, ty_Float) -> new_esEs8(vyw4611, vyw4811) new_ltEs6(Nothing, Just(vyw4810), cce) -> True new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Bool) -> new_ltEs4(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, app(app(app(ty_@3, bcb), bba), bbb)) -> new_ltEs9(vyw461, vyw481, bcb, bba, bbb) new_primPlusNat1(Succ(vyw8700), Zero) -> Succ(vyw8700) new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs23(vyw500, vyw3000, app(ty_Ratio, ceb)) -> new_esEs17(vyw500, vyw3000, ceb) new_esEs24(vyw501, vyw3001, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs7(vyw501, vyw3001, cee, cef, ceg) new_ltEs19(vyw461, vyw481, ty_@0) -> new_ltEs14(vyw461, vyw481) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_@0, bd) -> new_ltEs14(vyw4610, vyw4810) new_esEs18(vyw500, vyw3000, ty_Double) -> new_esEs16(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, app(app(ty_@2, cdg), cdh)) -> new_esEs5(vyw500, vyw3000, cdg, cdh) new_esEs4(Right(vyw500), Right(vyw3000), bhc, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs11(vyw4611, vyw4811, ty_Char) -> new_ltEs18(vyw4611, vyw4811) new_ltEs20(vyw4612, vyw4812, ty_Float) -> new_ltEs5(vyw4612, vyw4812) new_esEs24(vyw501, vyw3001, app(ty_Ratio, cfd)) -> new_esEs17(vyw501, vyw3001, cfd) new_ltEs20(vyw4612, vyw4812, ty_@0) -> new_ltEs14(vyw4612, vyw4812) new_esEs23(vyw500, vyw3000, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs7(vyw500, vyw3000, cdc, cdd, cde) new_esEs20(vyw460, vyw480, ty_Double) -> new_esEs16(vyw460, vyw480) new_esEs23(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(app(ty_@2, bbc), bbd)) -> new_lt9(vyw4610, vyw4810, bbc, bbd) new_primMulInt(Neg(vyw5010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw48000))) -> new_primCmpNat0(Zero, Succ(vyw48000)) new_compare11(vyw96, vyw97, vyw98, vyw99, False, bff, bfg) -> GT new_esEs28(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Maybe, daf)) -> new_esEs6(vyw500, vyw3000, daf) new_esEs6(Nothing, Just(vyw3000), chg) -> False new_esEs6(Just(vyw500), Nothing, chg) -> False new_esEs7(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cch, cda, cdb) -> new_asAs(new_esEs23(vyw500, vyw3000, cch), new_asAs(new_esEs24(vyw501, vyw3001, cda), new_esEs25(vyw502, vyw3002, cdb))) new_esEs4(Right(vyw500), Right(vyw3000), bhc, app(ty_Maybe, cab)) -> new_esEs6(vyw500, vyw3000, cab) new_ltEs15(EQ, GT) -> True new_esEs24(vyw501, vyw3001, ty_Bool) -> new_esEs11(vyw501, vyw3001) new_esEs6(Nothing, Nothing, chg) -> True new_esEs4(Left(vyw500), Left(vyw3000), ty_Ordering, bgc) -> new_esEs10(vyw500, vyw3000) new_esEs24(vyw501, vyw3001, app(app(ty_@2, cfa), cfb)) -> new_esEs5(vyw501, vyw3001, cfa, cfb) new_esEs11(False, False) -> True new_esEs10(LT, LT) -> True new_esEs27(vyw4611, vyw4811, ty_Char) -> new_esEs14(vyw4611, vyw4811) new_lt19(vyw460, vyw480, app(app(ty_@2, gd), ge)) -> new_lt9(vyw460, vyw480, gd, ge) new_esEs21(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_lt21(vyw4611, vyw4811, ty_Ordering) -> new_lt13(vyw4611, vyw4811) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Float, bd) -> new_ltEs5(vyw4610, vyw4810) new_esEs28(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, ty_Float) -> new_ltEs5(vyw461, vyw481) new_compare30(vyw460, vyw480) -> new_compare210(vyw460, vyw480, new_esEs10(vyw460, vyw480)) new_ltEs11(vyw4611, vyw4811, app(app(ty_Either, fb), fc)) -> new_ltEs13(vyw4611, vyw4811, fb, fc) new_esEs27(vyw4611, vyw4811, ty_@0) -> new_esEs12(vyw4611, vyw4811) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs9(vyw4610, vyw4810, dd, de, df) new_esEs28(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, app(app(ty_@2, cg), da)) -> new_ltEs10(vyw4610, vyw4810, cg, da) new_lt19(vyw460, vyw480, app(ty_[], gg)) -> new_lt10(vyw460, vyw480, gg) new_esEs27(vyw4611, vyw4811, app(app(ty_@2, bce), bcf)) -> new_esEs5(vyw4611, vyw4811, bce, bcf) new_primMulInt(Pos(vyw5010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) new_primMulInt(Neg(vyw5010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) new_ltEs20(vyw4612, vyw4812, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs9(vyw4612, vyw4812, beb, bec, bed) new_ltEs11(vyw4611, vyw4811, ty_Float) -> new_ltEs5(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, app(ty_Ratio, chb)) -> new_esEs17(vyw4611, vyw4811, chb) new_esEs20(vyw460, vyw480, ty_Integer) -> new_esEs15(vyw460, vyw480) new_esEs4(Left(vyw500), Left(vyw3000), ty_Float, bgc) -> new_esEs8(vyw500, vyw3000) new_esEs4(Right(vyw500), Right(vyw3000), bhc, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), app(ty_[], bab)) -> new_ltEs7(vyw4610, vyw4810, bab) new_lt7(vyw4610, vyw4810, app(app(app(ty_@3, ef), eg), eh)) -> new_lt17(vyw4610, vyw4810, ef, eg, eh) new_compare15(Integer(vyw4600), Integer(vyw4800)) -> new_primCmpInt(vyw4600, vyw4800) new_compare19(Char(vyw4600), Char(vyw4800)) -> new_primCmpNat0(vyw4600, vyw4800) new_esEs23(vyw500, vyw3000, app(ty_[], cdf)) -> new_esEs13(vyw500, vyw3000, cdf) new_lt21(vyw4611, vyw4811, ty_@0) -> new_lt11(vyw4611, vyw4811) new_sr0(Integer(vyw46000), Integer(vyw48010)) -> Integer(new_primMulInt(vyw46000, vyw48010)) new_ltEs15(LT, GT) -> True new_esEs29(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_lt6(vyw460, vyw480, gh) -> new_esEs10(new_compare6(vyw460, vyw480, gh), LT) new_esEs28(vyw500, vyw3000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(vyw500, vyw3000, dbd, dbe, dbf) new_esEs20(vyw460, vyw480, ty_Int) -> new_esEs9(vyw460, vyw480) new_ltEs11(vyw4611, vyw4811, ty_Integer) -> new_ltEs17(vyw4611, vyw4811) new_esEs15(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_Bool) -> new_esEs11(vyw502, vyw3002) new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_@2, dad), dae)) -> new_esEs5(vyw500, vyw3000, dad, dae) new_lt7(vyw4610, vyw4810, ty_Ordering) -> new_lt13(vyw4610, vyw4810) new_esEs17(:%(vyw500, vyw501), :%(vyw3000, vyw3001), ccg) -> new_asAs(new_esEs21(vyw500, vyw3000, ccg), new_esEs22(vyw501, vyw3001, ccg)) new_esEs25(vyw502, vyw3002, ty_Int) -> new_esEs9(vyw502, vyw3002) new_asAs(True, vyw67) -> vyw67 new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Integer, bd) -> new_ltEs17(vyw4610, vyw4810) new_lt19(vyw460, vyw480, app(ty_Ratio, ccc)) -> new_lt15(vyw460, vyw480, ccc) new_lt20(vyw4610, vyw4810, ty_Ordering) -> new_lt13(vyw4610, vyw4810) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, ty_Double) -> new_ltEs12(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, app(ty_[], bcg)) -> new_esEs13(vyw4611, vyw4811, bcg) new_compare32(vyw4600, vyw4800, app(ty_Maybe, bfb)) -> new_compare6(vyw4600, vyw4800, bfb) new_lt19(vyw460, vyw480, ty_Char) -> new_lt18(vyw460, vyw480) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, app(app(ty_Either, ce), cf)) -> new_ltEs13(vyw4610, vyw4810, ce, cf) new_compare32(vyw4600, vyw4800, app(app(ty_@2, beg), beh)) -> new_compare17(vyw4600, vyw4800, beg, beh) new_esEs4(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, bfh), bga), bgb), bgc) -> new_esEs7(vyw500, vyw3000, bfh, bga, bgb) new_esEs4(Left(vyw500), Left(vyw3000), ty_Char, bgc) -> new_esEs14(vyw500, vyw3000) new_esEs4(Left(vyw500), Left(vyw3000), app(app(ty_Either, bha), bhb), bgc) -> new_esEs4(vyw500, vyw3000, bha, bhb) new_esEs24(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_compare111(vyw460, vyw480, False, h, ba) -> GT new_esEs19(vyw4610, vyw4810, ty_Bool) -> new_esEs11(vyw4610, vyw4810) new_lt8(vyw460, vyw480) -> new_esEs10(new_compare31(vyw460, vyw480), LT) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Ratio, dag)) -> new_esEs17(vyw500, vyw3000, dag) new_lt17(vyw460, vyw480, ha, hb, hc) -> new_esEs10(new_compare28(vyw460, vyw480, ha, hb, hc), LT) new_lt21(vyw4611, vyw4811, app(app(ty_@2, bce), bcf)) -> new_lt9(vyw4611, vyw4811, bce, bcf) new_lt21(vyw4611, vyw4811, ty_Int) -> new_lt12(vyw4611, vyw4811) new_esEs19(vyw4610, vyw4810, ty_Int) -> new_esEs9(vyw4610, vyw4810) new_compare32(vyw4600, vyw4800, app(ty_[], bfa)) -> new_compare1(vyw4600, vyw4800, bfa) new_compare32(vyw4600, vyw4800, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare28(vyw4600, vyw4800, bfc, bfd, bfe) new_primCmpInt(Pos(Succ(vyw46000)), Pos(vyw4800)) -> new_primCmpNat0(Succ(vyw46000), vyw4800) new_lt16(vyw460, vyw480) -> new_esEs10(new_compare15(vyw460, vyw480), LT) new_compare110(vyw460, vyw480, False) -> GT new_lt20(vyw4610, vyw4810, app(ty_[], bbe)) -> new_lt10(vyw4610, vyw4810, bbe) new_esEs4(Right(vyw500), Right(vyw3000), bhc, ty_Double) -> new_esEs16(vyw500, vyw3000) new_primCompAux00(vyw120, EQ) -> vyw120 new_esEs6(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs12(vyw500, vyw3000) new_esEs20(vyw460, vyw480, app(app(ty_Either, h), ba)) -> new_esEs4(vyw460, vyw480, h, ba) new_sr(vyw501, vyw3000) -> new_primMulInt(vyw501, vyw3000) new_esEs19(vyw4610, vyw4810, app(app(ty_Either, dg), dh)) -> new_esEs4(vyw4610, vyw4810, dg, dh) new_esEs25(vyw502, vyw3002, ty_Integer) -> new_esEs15(vyw502, vyw3002) new_primMulNat0(Zero, Zero) -> Zero new_compare13(vyw460, vyw480) -> new_primCmpInt(vyw460, vyw480) new_lt21(vyw4611, vyw4811, ty_Double) -> new_lt8(vyw4611, vyw4811) new_esEs23(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_esEs23(vyw500, vyw3000, ty_@0) -> new_esEs12(vyw500, vyw3000) new_ltEs14(vyw461, vyw481) -> new_fsEs(new_compare29(vyw461, vyw481)) new_lt21(vyw4611, vyw4811, app(ty_[], bcg)) -> new_lt10(vyw4611, vyw4811, bcg) new_ltEs9(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, bbb) -> new_pePe(new_lt20(vyw4610, vyw4810, bcb), new_asAs(new_esEs26(vyw4610, vyw4810, bcb), new_pePe(new_lt21(vyw4611, vyw4811, bba), new_asAs(new_esEs27(vyw4611, vyw4811, bba), new_ltEs20(vyw4612, vyw4812, bbb))))) new_compare1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_primCompAux0(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, gg), gg) new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_[], bg), bd) -> new_ltEs7(vyw4610, vyw4810, bg) new_esEs25(vyw502, vyw3002, app(app(ty_Either, cgg), cgh)) -> new_esEs4(vyw502, vyw3002, cgg, cgh) new_esEs19(vyw4610, vyw4810, ty_Integer) -> new_esEs15(vyw4610, vyw4810) new_ltEs15(EQ, EQ) -> True new_lt20(vyw4610, vyw4810, app(ty_Ratio, cha)) -> new_lt15(vyw4610, vyw4810, cha) new_ltEs20(vyw4612, vyw4812, app(ty_Maybe, bea)) -> new_ltEs6(vyw4612, vyw4812, bea) new_esEs26(vyw4610, vyw4810, app(ty_Maybe, bbf)) -> new_esEs6(vyw4610, vyw4810, bbf) new_fsEs(vyw102) -> new_not(new_esEs10(vyw102, GT)) new_esEs26(vyw4610, vyw4810, ty_Bool) -> new_esEs11(vyw4610, vyw4810) new_esEs4(Right(vyw500), Right(vyw3000), bhc, app(app(ty_Either, cad), cae)) -> new_esEs4(vyw500, vyw3000, cad, cae) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Char, bd) -> new_ltEs18(vyw4610, vyw4810) new_compare31(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare7(vyw460, vyw480) -> new_compare24(vyw460, vyw480, new_esEs11(vyw460, vyw480)) new_esEs18(vyw500, vyw3000, ty_Char) -> new_esEs14(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, app(ty_Maybe, cce)) -> new_ltEs6(vyw461, vyw481, cce) new_esEs18(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_esEs29(vyw501, vyw3001, app(app(ty_Either, ddf), ddg)) -> new_esEs4(vyw501, vyw3001, ddf, ddg) new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_esEs24(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs25(vyw502, vyw3002, app(ty_Maybe, cge)) -> new_esEs6(vyw502, vyw3002, cge) new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_lt19(vyw460, vyw480, ty_@0) -> new_lt11(vyw460, vyw480) new_ltEs15(LT, EQ) -> True new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_ltEs4(True, False) -> False new_compare24(vyw460, vyw480, True) -> EQ new_ltEs13(Left(vyw4610), Left(vyw4810), app(ty_Maybe, bh), bd) -> new_ltEs6(vyw4610, vyw4810, bh) new_esEs24(vyw501, vyw3001, ty_Char) -> new_esEs14(vyw501, vyw3001) new_ltEs6(Nothing, Nothing, cce) -> True new_esEs20(vyw460, vyw480, app(ty_Maybe, gh)) -> new_esEs6(vyw460, vyw480, gh) new_esEs6(Just(vyw500), Just(vyw3000), app(ty_[], dac)) -> new_esEs13(vyw500, vyw3000, dac) new_ltEs11(vyw4611, vyw4811, ty_Bool) -> new_ltEs4(vyw4611, vyw4811) new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False new_esEs11(True, True) -> True new_compare10(vyw96, vyw97, vyw98, vyw99, True, vyw101, bff, bfg) -> new_compare11(vyw96, vyw97, vyw98, vyw99, True, bff, bfg) new_esEs19(vyw4610, vyw4810, app(ty_Maybe, ee)) -> new_esEs6(vyw4610, vyw4810, ee) new_lt21(vyw4611, vyw4811, app(ty_Ratio, chb)) -> new_lt15(vyw4611, vyw4811, chb) new_primCmpInt(Neg(Zero), Neg(Succ(vyw48000))) -> new_primCmpNat0(Succ(vyw48000), Zero) new_ltEs6(Just(vyw4610), Nothing, cce) -> False new_esEs28(vyw500, vyw3000, app(ty_[], dbg)) -> new_esEs13(vyw500, vyw3000, dbg) new_lt21(vyw4611, vyw4811, ty_Bool) -> new_lt4(vyw4611, vyw4811) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, app(ty_[], db)) -> new_ltEs7(vyw4610, vyw4810, db) new_esEs29(vyw501, vyw3001, ty_Int) -> new_esEs9(vyw501, vyw3001) new_esEs24(vyw501, vyw3001, app(app(ty_Either, cfe), cff)) -> new_esEs4(vyw501, vyw3001, cfe, cff) new_esEs4(Right(vyw500), Right(vyw3000), bhc, ty_Int) -> new_esEs9(vyw500, vyw3000) new_lt7(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_esEs18(vyw500, vyw3000, app(app(ty_Either, cbg), cbh)) -> new_esEs4(vyw500, vyw3000, cbg, cbh) new_ltEs4(False, False) -> True new_compare8(vyw460, vyw480, h, ba) -> new_compare26(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba), h, ba) new_ltEs13(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, ca), cb), cc), bd) -> new_ltEs9(vyw4610, vyw4810, ca, cb, cc) new_compare32(vyw4600, vyw4800, ty_Char) -> new_compare19(vyw4600, vyw4800) new_lt7(vyw4610, vyw4810, app(ty_Ratio, cca)) -> new_lt15(vyw4610, vyw4810, cca) new_lt15(vyw460, vyw480, ccc) -> new_esEs10(new_compare18(vyw460, vyw480, ccc), LT) new_esEs10(LT, GT) -> False new_esEs10(GT, LT) -> False new_esEs21(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_compare31(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_ltEs5(vyw461, vyw481) -> new_fsEs(new_compare9(vyw461, vyw481)) new_ltEs11(vyw4611, vyw4811, app(ty_Ratio, ccb)) -> new_ltEs16(vyw4611, vyw4811, ccb) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, ty_Ordering) -> new_ltEs15(vyw4610, vyw4810) new_esEs29(vyw501, vyw3001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(vyw501, vyw3001, dcf, dcg, dch) new_ltEs7(vyw461, vyw481, he) -> new_fsEs(new_compare1(vyw461, vyw481, he)) new_lt7(vyw4610, vyw4810, ty_Char) -> new_lt18(vyw4610, vyw4810) new_ltEs8(vyw461, vyw481) -> new_fsEs(new_compare13(vyw461, vyw481)) new_ltEs19(vyw461, vyw481, app(ty_[], he)) -> new_ltEs7(vyw461, vyw481, he) new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare13(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare13(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) new_not(False) -> True new_esEs28(vyw500, vyw3000, ty_Int) -> new_esEs9(vyw500, vyw3000) new_ltEs20(vyw4612, vyw4812, ty_Bool) -> new_ltEs4(vyw4612, vyw4812) new_lt19(vyw460, vyw480, ty_Float) -> new_lt14(vyw460, vyw480) new_esEs29(vyw501, vyw3001, ty_Ordering) -> new_esEs10(vyw501, vyw3001) new_esEs19(vyw4610, vyw4810, ty_Char) -> new_esEs14(vyw4610, vyw4810) new_compare1([], :(vyw4800, vyw4801), gg) -> LT new_esEs20(vyw460, vyw480, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs7(vyw460, vyw480, ha, hb, hc) new_lt14(vyw460, vyw480) -> new_esEs10(new_compare9(vyw460, vyw480), LT) new_lt19(vyw460, vyw480, app(app(ty_Either, h), ba)) -> new_lt5(vyw460, vyw480, h, ba) new_compare32(vyw4600, vyw4800, ty_Float) -> new_compare9(vyw4600, vyw4800) new_ltEs11(vyw4611, vyw4811, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs9(vyw4611, vyw4811, ga, gb, gc) new_lt19(vyw460, vyw480, app(ty_Maybe, gh)) -> new_lt6(vyw460, vyw480, gh) new_lt21(vyw4611, vyw4811, app(app(app(ty_@3, bda), bdb), bdc)) -> new_lt17(vyw4611, vyw4811, bda, bdb, bdc) new_compare27(vyw46, vyw48, True, hd, gf) -> EQ new_ltEs20(vyw4612, vyw4812, app(ty_[], bdh)) -> new_ltEs7(vyw4612, vyw4812, bdh) new_lt7(vyw4610, vyw4810, app(ty_[], ed)) -> new_lt10(vyw4610, vyw4810, ed) new_esEs24(vyw501, vyw3001, ty_Double) -> new_esEs16(vyw501, vyw3001) new_esEs18(vyw500, vyw3000, app(ty_Maybe, cbe)) -> new_esEs6(vyw500, vyw3000, cbe) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, ty_Char) -> new_ltEs18(vyw4610, vyw4810) new_esEs27(vyw4611, vyw4811, ty_Ordering) -> new_esEs10(vyw4611, vyw4811) new_esEs27(vyw4611, vyw4811, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(vyw4611, vyw4811, bda, bdb, bdc) new_primPlusNat0(Succ(vyw870), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw870, vyw300000))) new_compare16(vyw460, vyw480, False, ha, hb, hc) -> GT new_lt21(vyw4611, vyw4811, ty_Integer) -> new_lt16(vyw4611, vyw4811) new_esEs29(vyw501, vyw3001, app(ty_Maybe, ddd)) -> new_esEs6(vyw501, vyw3001, ddd) new_esEs18(vyw500, vyw3000, app(ty_[], cbb)) -> new_esEs13(vyw500, vyw3000, cbb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs13(Right(vyw4610), Right(vyw4810), cd, app(ty_Ratio, che)) -> new_ltEs16(vyw4610, vyw4810, che) new_esEs20(vyw460, vyw480, ty_Char) -> new_esEs14(vyw460, vyw480) new_primPlusNat1(Zero, Zero) -> Zero new_compare25(vyw460, vyw480, False, ha, hb, hc) -> new_compare16(vyw460, vyw480, new_ltEs9(vyw460, vyw480, ha, hb, hc), ha, hb, hc) new_esEs26(vyw4610, vyw4810, ty_Double) -> new_esEs16(vyw4610, vyw4810) new_esEs28(vyw500, vyw3000, app(app(ty_@2, dbh), dca)) -> new_esEs5(vyw500, vyw3000, dbh, dca) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_Ratio, bgh), bgc) -> new_esEs17(vyw500, vyw3000, bgh) new_esEs20(vyw460, vyw480, ty_Bool) -> new_esEs11(vyw460, vyw480) new_ltEs17(vyw461, vyw481) -> new_fsEs(new_compare15(vyw461, vyw481)) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_@0) -> new_ltEs14(vyw4610, vyw4810) new_esEs4(Left(vyw500), Left(vyw3000), ty_@0, bgc) -> new_esEs12(vyw500, vyw3000) new_lt19(vyw460, vyw480, ty_Bool) -> new_lt4(vyw460, vyw480) new_esEs28(vyw500, vyw3000, app(app(ty_Either, dcd), dce)) -> new_esEs4(vyw500, vyw3000, dcd, dce) new_ltEs11(vyw4611, vyw4811, ty_Ordering) -> new_ltEs15(vyw4611, vyw4811) new_lt20(vyw4610, vyw4810, ty_Float) -> new_lt14(vyw4610, vyw4810) new_esEs24(vyw501, vyw3001, ty_Float) -> new_esEs8(vyw501, vyw3001) new_ltEs15(LT, LT) -> True new_esEs6(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs14(vyw500, vyw3000) new_esEs28(vyw500, vyw3000, app(ty_Ratio, dcc)) -> new_esEs17(vyw500, vyw3000, dcc) new_esEs18(vyw500, vyw3000, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs7(vyw500, vyw3000, cag, cah, cba) new_esEs10(EQ, GT) -> False new_esEs10(GT, EQ) -> False new_esEs18(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs19(vyw461, vyw481, ty_Bool) -> new_ltEs4(vyw461, vyw481) new_esEs26(vyw4610, vyw4810, app(app(ty_Either, bag), bah)) -> new_esEs4(vyw4610, vyw4810, bag, bah) new_esEs28(vyw500, vyw3000, app(ty_Maybe, dcb)) -> new_esEs6(vyw500, vyw3000, dcb) new_esEs8(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs9(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_primMulNat0(Succ(vyw50100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw50100, Succ(vyw300000)), vyw300000) new_lt21(vyw4611, vyw4811, ty_Float) -> new_lt14(vyw4611, vyw4811) new_esEs12(@0, @0) -> True new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Int, bd) -> new_ltEs8(vyw4610, vyw4810) new_compare28(vyw460, vyw480, ha, hb, hc) -> new_compare25(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb, hc), ha, hb, hc) new_primCmpNat0(Succ(vyw46000), Succ(vyw48000)) -> new_primCmpNat0(vyw46000, vyw48000) new_compare16(vyw460, vyw480, True, ha, hb, hc) -> LT new_esEs27(vyw4611, vyw4811, app(ty_Maybe, bch)) -> new_esEs6(vyw4611, vyw4811, bch) new_compare12(vyw460, vyw480, True) -> LT new_compare32(vyw4600, vyw4800, ty_Double) -> new_compare31(vyw4600, vyw4800) new_ltEs11(vyw4611, vyw4811, app(ty_Maybe, fh)) -> new_ltEs6(vyw4611, vyw4811, fh) new_lt12(vyw460, vyw480) -> new_esEs10(new_compare13(vyw460, vyw480), LT) new_ltEs20(vyw4612, vyw4812, ty_Int) -> new_ltEs8(vyw4612, vyw4812) new_compare210(vyw460, vyw480, False) -> new_compare110(vyw460, vyw480, new_ltEs15(vyw460, vyw480)) new_lt20(vyw4610, vyw4810, ty_Char) -> new_lt18(vyw4610, vyw4810) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs16(vyw461, vyw481, ccd) -> new_fsEs(new_compare18(vyw461, vyw481, ccd)) new_lt21(vyw4611, vyw4811, app(app(ty_Either, bcc), bcd)) -> new_lt5(vyw4611, vyw4811, bcc, bcd) new_esEs4(Right(vyw500), Right(vyw3000), bhc, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(ty_Maybe, bbf)) -> new_lt6(vyw4610, vyw4810, bbf) new_ltEs6(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs9(vyw4610, vyw4810, bad, bae, baf) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, ty_Float) -> new_ltEs5(vyw4610, vyw4810) new_esEs18(vyw500, vyw3000, app(app(ty_@2, cbc), cbd)) -> new_esEs5(vyw500, vyw3000, cbc, cbd) new_esEs23(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) new_ltEs13(Right(vyw4610), Right(vyw4810), cd, ty_@0) -> new_ltEs14(vyw4610, vyw4810) new_primEqNat0(Zero, Zero) -> True new_lt19(vyw460, vyw480, app(app(app(ty_@3, ha), hb), hc)) -> new_lt17(vyw460, vyw480, ha, hb, hc) new_esEs4(Left(vyw500), Left(vyw3000), app(ty_Maybe, bgg), bgc) -> new_esEs6(vyw500, vyw3000, bgg) new_ltEs11(vyw4611, vyw4811, app(app(ty_@2, fd), ff)) -> new_ltEs10(vyw4611, vyw4811, fd, ff) new_esEs18(vyw500, vyw3000, ty_Bool) -> new_esEs11(vyw500, vyw3000) new_compare14(vyw460, vyw480, True, gh) -> LT new_esEs28(vyw500, vyw3000, ty_Ordering) -> new_esEs10(vyw500, vyw3000) new_ltEs20(vyw4612, vyw4812, app(ty_Ratio, chc)) -> new_ltEs16(vyw4612, vyw4812, chc) new_esEs29(vyw501, vyw3001, app(app(ty_@2, ddb), ddc)) -> new_esEs5(vyw501, vyw3001, ddb, ddc) new_lt7(vyw4610, vyw4810, ty_Int) -> new_lt12(vyw4610, vyw4810) new_lt20(vyw4610, vyw4810, app(app(ty_Either, bag), bah)) -> new_lt5(vyw4610, vyw4810, bag, bah) new_lt21(vyw4611, vyw4811, app(ty_Maybe, bch)) -> new_lt6(vyw4611, vyw4811, bch) new_lt21(vyw4611, vyw4811, ty_Char) -> new_lt18(vyw4611, vyw4811) new_esEs29(vyw501, vyw3001, app(ty_Ratio, dde)) -> new_esEs17(vyw501, vyw3001, dde) new_esEs29(vyw501, vyw3001, ty_Bool) -> new_esEs11(vyw501, vyw3001) new_asAs(False, vyw67) -> False new_esEs19(vyw4610, vyw4810, app(ty_[], ed)) -> new_esEs13(vyw4610, vyw4810, ed) new_compare32(vyw4600, vyw4800, ty_Int) -> new_compare13(vyw4600, vyw4800) new_esEs23(vyw500, vyw3000, ty_Float) -> new_esEs8(vyw500, vyw3000) new_lt20(vyw4610, vyw4810, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt17(vyw4610, vyw4810, bbg, bbh, bca) new_esEs18(vyw500, vyw3000, app(ty_Ratio, cbf)) -> new_esEs17(vyw500, vyw3000, cbf) new_esEs26(vyw4610, vyw4810, ty_Int) -> new_esEs9(vyw4610, vyw4810) new_ltEs19(vyw461, vyw481, ty_Int) -> new_ltEs8(vyw461, vyw481) new_esEs27(vyw4611, vyw4811, app(app(ty_Either, bcc), bcd)) -> new_esEs4(vyw4611, vyw4811, bcc, bcd) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Ordering) -> new_ltEs15(vyw4610, vyw4810) new_esEs6(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs8(vyw500, vyw3000) new_esEs25(vyw502, vyw3002, ty_Double) -> new_esEs16(vyw502, vyw3002) new_compare10(vyw96, vyw97, vyw98, vyw99, False, vyw101, bff, bfg) -> new_compare11(vyw96, vyw97, vyw98, vyw99, vyw101, bff, bfg) new_ltEs13(Left(vyw4610), Left(vyw4810), ty_Bool, bd) -> new_ltEs4(vyw4610, vyw4810) new_esEs20(vyw460, vyw480, app(ty_[], gg)) -> new_esEs13(vyw460, vyw480, gg) new_lt19(vyw460, vyw480, ty_Integer) -> new_lt16(vyw460, vyw480) new_esEs4(Left(vyw500), Left(vyw3000), ty_Integer, bgc) -> new_esEs15(vyw500, vyw3000) new_esEs6(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs6(Just(vyw4610), Just(vyw4810), ty_Double) -> new_ltEs12(vyw4610, vyw4810) The set Q consists of the following terms: new_esEs13([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs27(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_primCompAux00(x0, LT) new_esEs10(EQ, EQ) new_lt7(x0, x1, ty_Ordering) new_ltEs6(Just(x0), Just(x1), ty_@0) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_primMulNat0(Succ(x0), Succ(x1)) new_lt15(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1, x2, x3, x4) new_pePe(False, x0) new_esEs26(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Bool) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_compare29(@0, @0) new_ltEs11(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Double) new_compare32(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Integer) new_ltEs5(x0, x1) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare28(x0, x1, x2, x3, x4) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs6(Nothing, Nothing, x0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Int) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs29(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Int) new_ltEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Just(x0), Nothing, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Int) new_compare14(x0, x1, False, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs11(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Double) new_lt9(x0, x1, x2, x3) new_compare11(x0, x1, x2, x3, False, x4, x5) new_primCmpNat0(Zero, Succ(x0)) new_compare16(x0, x1, False, x2, x3, x4) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_lt21(x0, x1, ty_Float) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primMulNat0(Succ(x0), Zero) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs13(:(x0, x1), :(x2, x3), x4) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Ordering) new_ltEs15(EQ, EQ) new_esEs27(x0, x1, ty_Bool) new_lt18(x0, x1) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_esEs24(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Bool) new_esEs14(Char(x0), Char(x1)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs8(Float(x0, x1), Float(x2, x3)) new_compare110(x0, x1, True) new_ltEs6(Nothing, Just(x0), x1) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare1([], :(x0, x1), x2) new_compare19(Char(x0), Char(x1)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs28(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Integer) new_compare8(x0, x1, x2, x3) new_esEs20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_@0) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_esEs25(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt21(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Int) new_ltEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs4(True, True) new_esEs6(Just(x0), Just(x1), ty_Double) new_compare15(Integer(x0), Integer(x1)) new_ltEs15(GT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(LT, GT) new_primCmpNat0(Succ(x0), Zero) new_ltEs11(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs25(x0, x1, ty_Integer) new_ltEs7(x0, x1, x2) new_ltEs19(x0, x1, ty_Int) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs6(Just(x0), Just(x1), ty_Integer) new_esEs26(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_asAs(False, x0) new_compare32(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, EQ) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_esEs26(x0, x1, ty_Float) new_lt8(x0, x1) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs13([], :(x0, x1), x2) new_lt7(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), ty_Float) new_primEqNat0(Zero, Succ(x0)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Float) new_compare31(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt13(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Float) new_lt7(x0, x1, ty_Integer) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_esEs16(Double(x0, x1), Double(x2, x3)) new_ltEs19(x0, x1, ty_Char) new_lt7(x0, x1, app(ty_[], x2)) new_esEs6(Nothing, Just(x0), x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs19(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Just(x0), Just(x1), ty_Bool) new_compare23(x0, x1, False, x2) new_esEs18(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs26(x0, x1, ty_Int) new_esEs11(False, False) new_esEs10(LT, GT) new_esEs10(GT, LT) new_esEs18(x0, x1, ty_Float) new_ltEs6(Just(x0), Just(x1), ty_Int) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs13(:(x0, x1), [], x2) new_esEs24(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Int) new_compare24(x0, x1, True) new_ltEs6(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Int) new_lt14(x0, x1) new_fsEs(x0) new_esEs18(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(EQ, GT) new_esEs10(GT, EQ) new_esEs25(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_ltEs14(x0, x1) new_compare1(:(x0, x1), [], x2) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(x0, x1, ty_Integer) new_primPlusNat1(Zero, Succ(x0)) new_ltEs6(Nothing, Nothing, x0) new_compare1([], [], x0) new_esEs25(x0, x1, ty_Float) new_lt20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare30(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, x2, x3) new_lt19(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Zero) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare6(x0, x1, x2) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare11(x0, x1, x2, x3, True, x4, x5) new_asAs(True, x0) new_compare26(x0, x1, False, x2, x3) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Double) new_esEs9(x0, x1) new_ltEs18(x0, x1) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Float) new_compare24(x0, x1, False) new_primMulInt(Pos(x0), Pos(x1)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Zero) new_ltEs8(x0, x1) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, GT) new_lt21(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs12(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare14(x0, x1, True, x2) new_compare111(x0, x1, False, x2, x3) new_esEs23(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs6(Just(x0), Just(x1), ty_@0) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_esEs10(LT, LT) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Char) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs22(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_Ratio, x2)) new_not(True) new_primMulNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt21(x0, x1, ty_Int) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(x0, x1, ty_Int) new_ltEs11(x0, x1, app(ty_Ratio, x2)) new_esEs11(True, True) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs15(GT, EQ) new_ltEs11(x0, x1, ty_Char) new_ltEs15(EQ, GT) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs11(False, True) new_esEs11(True, False) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt21(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1, app(ty_[], x2)) new_compare32(x0, x1, ty_Float) new_ltEs4(False, True) new_ltEs4(True, False) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Bool) new_compare210(x0, x1, True) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Int) new_ltEs16(x0, x1, x2) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt19(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), x1) new_lt20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs11(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare12(x0, x1, True) new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3) new_esEs10(GT, GT) new_primCompAux0(x0, x1, x2, x3) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_sr0(Integer(x0), Integer(x1)) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs27(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs10(LT, EQ) new_esEs10(EQ, LT) new_esEs25(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs12(@0, @0) new_esEs15(Integer(x0), Integer(x1)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare1(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(Just(x0), Nothing, x1) new_lt7(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, True, x2, x3, x4) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(False, False) new_esEs6(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_lt16(x0, x1) new_compare13(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare32(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Ordering) new_compare12(x0, x1, False) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs15(GT, GT) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs20(x0, x1, ty_@0) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Char) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Zero, Zero) new_lt20(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Double) new_not(False) new_esEs23(x0, x1, ty_Bool) new_ltEs11(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Float) new_lt11(x0, x1) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_esEs6(Just(x0), Just(x1), ty_Integer) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare111(x0, x1, True, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primMulInt(Neg(x0), Neg(x1)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, ty_Double) new_compare210(x0, x1, False) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_compare17(x0, x1, x2, x3) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_compare16(x0, x1, True, x2, x3, x4) new_ltEs15(LT, LT) new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_@0) new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) new_sr(x0, x1) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Double) new_pePe(True, x0) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs23(x0, x1, ty_Int) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare31(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare31(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, ty_Float) new_compare32(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs11(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_Double) new_compare27(x0, x1, True, x2, x3) new_ltEs17(x0, x1) new_ltEs20(x0, x1, ty_Int) new_primCmpNat0(Zero, Zero) new_ltEs6(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, app(ty_Maybe, x2)) new_compare27(@2(x0, x1), @2(x2, x3), False, x4, x5) new_lt6(x0, x1, x2) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 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_lt3(vyw460, vyw480, ha, hb, hc) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb, hc), ha, hb, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare4(vyw460, vyw480, gh) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare5(vyw460, vyw480, ha, hb, hc) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb, hc), ha, hb, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_lt0(vyw460, vyw480, gd, ge) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, gd, ge), gd, ge) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs3(vyw4611, vyw4811, ga, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vyw4600, vyw4800, vyw110, app(ty_[], bfa)) -> new_compare3(vyw4600, vyw4800, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs3(vyw4612, vyw4812, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(app(ty_@2, fd), ff)) -> new_ltEs0(vyw4611, vyw4811, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(vyw461, vyw481, he) -> new_compare3(vyw461, vyw481, he) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(app(ty_@2, bdf), bdg)) -> new_ltEs0(vyw4612, vyw4812, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_lt2(vyw460, vyw480, gh) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vyw4610, vyw4810, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(ty_@2, hh), baa)) -> new_ltEs0(vyw4610, vyw4810, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(ty_Maybe, fh)) -> new_ltEs2(vyw4611, vyw4811, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(ty_Maybe, bea)) -> new_ltEs2(vyw4612, vyw4812, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bac)) -> new_ltEs2(vyw4610, vyw4810, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_primCompAux(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, gg), gg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_compare3(vyw4601, vyw4801, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(app(ty_Either, fb), fc)) -> new_ltEs(vyw4611, vyw4811, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(app(ty_Either, bdd), bde)) -> new_ltEs(vyw4612, vyw4812, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(ty_Either, hf), hg)) -> new_ltEs(vyw4610, vyw4810, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(ty_[], bab)) -> new_ltEs1(vyw4610, vyw4810, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(ty_@2, gd), ge), gf) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, gd, ge), gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare0(vyw460, vyw480, gd, ge) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, gd, ge), gd, ge) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare20(@2(:(vyw4600, vyw4601), vyw461), @2(:(vyw4800, vyw4801), vyw481), False, app(ty_[], gg), gf) -> new_primCompAux(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, gg), gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare3(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_primCompAux(vyw4600, vyw4800, new_compare1(vyw4601, vyw4801, gg), gg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(vyw4600, vyw4800, vyw110, app(app(ty_@2, beg), beh)) -> new_compare0(vyw4600, vyw4800, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare3(:(vyw4600, vyw4601), :(vyw4800, vyw4801), gg) -> new_compare3(vyw4601, vyw4801, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare22(vyw460, vyw480, False, ha, hb, hc) -> new_ltEs3(vyw460, vyw480, ha, hb, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_compare21(vyw460, vyw480, False, gh) -> new_ltEs2(vyw460, vyw480, gh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_compare2(vyw460, vyw480, False, h, ba) -> new_ltEs(vyw460, vyw480, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(ty_Either, dg), dh), ea) -> new_lt(vyw4610, vyw4810, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(app(ty_@3, ha), hb), hc), gf) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb, hc), ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_lt(vyw460, vyw480, h, ba) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare(vyw460, vyw480, h, ba) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(vyw4600, vyw4800, vyw110, app(ty_Maybe, bfb)) -> new_compare4(vyw4600, vyw4800, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw4600, vyw4800, vyw110, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare5(vyw4600, vyw4800, bfc, bfd, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vyw4600, vyw4800, vyw110, app(app(ty_Either, bee), bef)) -> new_compare(vyw4600, vyw4800, bee, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(ty_[], ed), ea) -> new_lt1(vyw4610, vyw4810, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(app(ty_@3, ef), eg), eh), ea) -> new_lt3(vyw4610, vyw4810, ef, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(ty_Maybe, ee), ea) -> new_lt2(vyw4610, vyw4810, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(ty_Either, h), ba), gf) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), fa, app(ty_[], fg)) -> new_ltEs1(vyw4611, vyw4811, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(ty_@2, eb), ec), ea) -> new_lt0(vyw4610, vyw4810, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, bba, app(ty_[], bdh)) -> new_ltEs1(vyw4612, vyw4812, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(ty_Maybe, gh), gf) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(app(app(ty_@3, ga), gb), gc))) -> new_ltEs3(vyw4611, vyw4811, ga, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(app(app(ty_@3, ca), cb), cc)), bd)) -> new_ltEs3(vyw4610, vyw4810, ca, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vyw4610, vyw4810, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(app(app(ty_@3, beb), bec), bed))) -> new_ltEs3(vyw4612, vyw4812, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(app(app(ty_@3, dd), de), df))) -> new_ltEs3(vyw4610, vyw4810, dd, de, df) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, ca), cb), cc), bd) -> new_ltEs3(vyw4610, vyw4810, ca, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(vyw4610, vyw4810, dd, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, hd, app(ty_[], he)) -> new_compare3(vyw461, vyw481, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(:(vyw4600, vyw4601), vyw461), @2(:(vyw4800, vyw4801), vyw481), False, app(ty_[], gg), gf) -> new_compare3(vyw4601, vyw4801, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(ty_Either, bag), bah), bba, bbb) -> new_lt(vyw4610, vyw4810, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(app(ty_Either, bcc), bcd), bbb) -> new_lt(vyw4611, vyw4811, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(ty_[], bcg), bbb) -> new_lt1(vyw4611, vyw4811, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(ty_[], bbe), bba, bbb) -> new_lt1(vyw4610, vyw4810, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(app(ty_@3, bbg), bbh), bca), bba, bbb) -> new_lt3(vyw4610, vyw4810, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(app(app(ty_@3, bda), bdb), bdc), bbb) -> new_lt3(vyw4611, vyw4811, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(ty_Maybe, bch), bbb) -> new_lt2(vyw4611, vyw4811, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(ty_Maybe, bbf), bba, bbb) -> new_lt2(vyw4610, vyw4810, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(ty_@2, bbc), bbd), bba, bbb) -> new_lt0(vyw4610, vyw4810, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), bcb, app(app(ty_@2, bce), bcf), bbb) -> new_lt0(vyw4611, vyw4811, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(app(ty_@2, fd), ff))) -> new_ltEs0(vyw4611, vyw4811, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(app(ty_@2, be), bf)), bd)) -> new_ltEs0(vyw4610, vyw4810, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(app(ty_@2, hh), baa))) -> new_ltEs0(vyw4610, vyw4810, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(app(ty_@2, bdf), bdg))) -> new_ltEs0(vyw4612, vyw4812, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(app(ty_@2, cg), da))) -> new_ltEs0(vyw4610, vyw4810, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vyw4610), Left(vyw4810), app(app(ty_@2, be), bf), bd) -> new_ltEs0(vyw4610, vyw4810, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(app(ty_@2, cg), da)) -> new_ltEs0(vyw4610, vyw4810, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(ty_Maybe, bea))) -> new_ltEs2(vyw4612, vyw4812, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(ty_Maybe, fh))) -> new_ltEs2(vyw4611, vyw4811, fh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs2(vyw4610, vyw4810, bac) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(ty_Maybe, bh)), bd)) -> new_ltEs2(vyw4610, vyw4810, bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(ty_Maybe, dc))) -> new_ltEs2(vyw4610, vyw4810, dc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(ty_Maybe, dc)) -> new_ltEs2(vyw4610, vyw4810, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vyw4610), Left(vyw4810), app(ty_Maybe, bh), bd) -> new_ltEs2(vyw4610, vyw4810, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(app(ty_Either, ce), cf))) -> new_ltEs(vyw4610, vyw4810, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd)) -> new_ltEs(vyw4610, vyw4810, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(app(ty_Either, bdd), bde))) -> new_ltEs(vyw4612, vyw4812, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(app(ty_Either, hf), hg))) -> new_ltEs(vyw4610, vyw4810, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(app(ty_Either, fb), fc))) -> new_ltEs(vyw4611, vyw4811, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vyw4610), Left(vyw4810), app(app(ty_Either, bb), bc), bd) -> new_ltEs(vyw4610, vyw4810, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(app(ty_Either, ce), cf)) -> new_ltEs(vyw4610, vyw4810, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(app(ty_Either, bcc), bcd)), bbb)) -> new_lt(vyw4611, vyw4811, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(app(ty_Either, dg), dh)), ea)) -> new_lt(vyw4610, vyw4810, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), bba), bbb)) -> new_lt(vyw4610, vyw4810, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(ty_[], bbe)), bba), bbb)) -> new_lt1(vyw4610, vyw4810, bbe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(ty_[], ed)), ea)) -> new_lt1(vyw4610, vyw4810, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(ty_[], bcg)), bbb)) -> new_lt1(vyw4611, vyw4811, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(app(app(ty_@3, bbg), bbh), bca)), bba), bbb)) -> new_lt3(vyw4610, vyw4810, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(app(app(ty_@3, bda), bdb), bdc)), bbb)) -> new_lt3(vyw4611, vyw4811, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(app(app(ty_@3, ef), eg), eh)), ea)) -> new_lt3(vyw4610, vyw4810, ef, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(ty_Maybe, bbf)), bba), bbb)) -> new_lt2(vyw4610, vyw4810, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(ty_Maybe, bch)), bbb)) -> new_lt2(vyw4611, vyw4811, bch) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(ty_Maybe, ee)), ea)) -> new_lt2(vyw4610, vyw4810, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hd, app(app(ty_Either, cd), app(ty_[], db))) -> new_ltEs1(vyw4610, vyw4810, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), bba), app(ty_[], bdh))) -> new_ltEs1(vyw4612, vyw4812, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, fa), app(ty_[], fg))) -> new_ltEs1(vyw4611, vyw4811, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hd, app(app(ty_Either, app(ty_[], bg)), bd)) -> new_ltEs1(vyw4610, vyw4810, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hd, app(ty_Maybe, app(ty_[], bab))) -> new_ltEs1(vyw4610, vyw4810, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, app(app(ty_@2, bbc), bbd)), bba), bbb)) -> new_lt0(vyw4610, vyw4810, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hd, app(app(app(ty_@3, bcb), app(app(ty_@2, bce), bcf)), bbb)) -> new_lt0(vyw4611, vyw4811, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hd, app(app(ty_@2, app(app(ty_@2, eb), ec)), ea)) -> new_lt0(vyw4610, vyw4810, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vyw4610), Left(vyw4810), app(ty_[], bg), bd) -> new_ltEs1(vyw4610, vyw4810, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw4610), Right(vyw4810), cd, app(ty_[], db)) -> new_ltEs1(vyw4610, vyw4810, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (33) YES ---------------------------------------- (34) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, 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(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, 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_primPlusNat(Succ(vyw8700), Succ(vyw3000000)) -> new_primPlusNat(vyw8700, vyw3000000) R is empty. Q is empty. 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_primPlusNat(Succ(vyw8700), Succ(vyw3000000)) -> new_primPlusNat(vyw8700, vyw3000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (39) YES