/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 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, 9 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 18 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, 35 ms] (22) YES (23) QDP (24) DependencyGraphProof [EQUIVALENT, 0 ms] (25) AND (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) TransformationProof [EQUIVALENT, 1789 ms] (31) QDP (32) DependencyGraphProof [EQUIVALENT, 0 ms] (33) QDP (34) TransformationProof [EQUIVALENT, 0 ms] (35) QDP (36) TransformationProof [EQUIVALENT, 0 ms] (37) QDP (38) TransformationProof [EQUIVALENT, 0 ms] (39) QDP (40) QDPSizeChangeProof [EQUIVALENT, 0 ms] (41) YES (42) QDP (43) QDPSizeChangeProof [EQUIVALENT, 89 ms] (44) YES (45) QDP (46) QDPSizeChangeProof [EQUIVALENT, 0 ms] (47) YES (48) QDP (49) QDPSizeChangeProof [EQUIVALENT, 0 ms] (50) YES (51) QDP (52) QDPSizeChangeProof [EQUIVALENT, 0 ms] (53) YES ---------------------------------------- (0) 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; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 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; 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 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; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; 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 b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case lookupFM fm key of { Nothing -> False; Just elt -> True} " is transformed to "elemFM0 Nothing = False; elemFM0 (Just elt) = True; " ---------------------------------------- (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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap 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 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; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap 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; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " 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 "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; " "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); " "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; " "lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); " "lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap 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'0 x y = gcd0Gcd' y (x `rem` y); " "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; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vyu vyv x y True = error []; reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; " "reduce2D vyu vyv = gcd vyu vyv; " "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> 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; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; 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 a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 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.elemFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.elemFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.elemFM vyw3 vyw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw4 vyw3)",fontsize=16,color="burlywood",shape="triangle"];3380[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 3380[label="",style="solid", color="burlywood", weight=9]; 3380 -> 6[label="",style="solid", color="burlywood", weight=3]; 3381[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 3381[label="",style="solid", color="burlywood", weight=9]; 3381 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="FiniteMap.elemFM0 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="FiniteMap.elemFM0 (FiniteMap.lookupFM (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.elemFM0 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.elemFM0 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.elemFM0 Nothing",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 11[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (vyw3 < vyw40))",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 12[label="False",fontsize=16,color="green",shape="box"];13[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (compare vyw3 vyw40 == LT))",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 14[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (compare3 vyw3 vyw40 == LT))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 15[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (compare2 vyw3 vyw40 (vyw3 == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];3382[label="vyw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];15 -> 3382[label="",style="solid", color="burlywood", weight=9]; 3382 -> 16[label="",style="solid", color="burlywood", weight=3]; 3383[label="vyw3/Just vyw30",fontsize=10,color="white",style="solid",shape="box"];15 -> 3383[label="",style="solid", color="burlywood", weight=9]; 3383 -> 17[label="",style="solid", color="burlywood", weight=3]; 16[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 Nothing (compare2 Nothing vyw40 (Nothing == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];3384[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];16 -> 3384[label="",style="solid", color="burlywood", weight=9]; 3384 -> 18[label="",style="solid", color="burlywood", weight=3]; 3385[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];16 -> 3385[label="",style="solid", color="burlywood", weight=9]; 3385 -> 19[label="",style="solid", color="burlywood", weight=3]; 17[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 (Just vyw30) (compare2 (Just vyw30) vyw40 (Just vyw30 == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];3386[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];17 -> 3386[label="",style="solid", color="burlywood", weight=9]; 3386 -> 20[label="",style="solid", color="burlywood", weight=3]; 3387[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];17 -> 3387[label="",style="solid", color="burlywood", weight=9]; 3387 -> 21[label="",style="solid", color="burlywood", weight=3]; 18[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == LT))",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing (compare2 Nothing (Just vyw400) (Nothing == Just vyw400) == LT))",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) (compare2 (Just vyw30) Nothing (Just vyw30 == Nothing) == LT))",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 21[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw400) vyw41 vyw42 vyw43 vyw44 (Just vyw30) (compare2 (Just vyw30) (Just vyw400) (Just vyw30 == Just vyw400) == LT))",fontsize=16,color="black",shape="box"];21 -> 25[label="",style="solid", color="black", weight=3]; 22[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 Nothing (compare2 Nothing Nothing True == LT))",fontsize=16,color="black",shape="box"];22 -> 26[label="",style="solid", color="black", weight=3]; 23 -> 82[label="",style="dashed", color="red", weight=0]; 23[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing (compare2 Nothing (Just vyw400) False == LT))",fontsize=16,color="magenta"];23 -> 83[label="",style="dashed", color="magenta", weight=3]; 24 -> 91[label="",style="dashed", color="red", weight=0]; 24[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) (compare2 (Just vyw30) Nothing False == LT))",fontsize=16,color="magenta"];24 -> 92[label="",style="dashed", color="magenta", weight=3]; 25 -> 138[label="",style="dashed", color="red", weight=0]; 25[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw400) vyw41 vyw42 vyw43 vyw44 (Just vyw30) (compare2 (Just vyw30) (Just vyw400) (vyw30 == vyw400) == LT))",fontsize=16,color="magenta"];25 -> 139[label="",style="dashed", color="magenta", weight=3]; 25 -> 140[label="",style="dashed", color="magenta", weight=3]; 25 -> 141[label="",style="dashed", color="magenta", weight=3]; 25 -> 142[label="",style="dashed", color="magenta", weight=3]; 25 -> 143[label="",style="dashed", color="magenta", weight=3]; 25 -> 144[label="",style="dashed", color="magenta", weight=3]; 25 -> 145[label="",style="dashed", color="magenta", weight=3]; 26[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 Nothing (EQ == LT))",fontsize=16,color="black",shape="box"];26 -> 37[label="",style="solid", color="black", weight=3]; 83 -> 53[label="",style="dashed", color="red", weight=0]; 83[label="compare2 Nothing (Just vyw400) False == LT",fontsize=16,color="magenta"];83 -> 87[label="",style="dashed", color="magenta", weight=3]; 83 -> 88[label="",style="dashed", color="magenta", weight=3]; 82[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing vyw20)",fontsize=16,color="burlywood",shape="triangle"];3388[label="vyw20/False",fontsize=10,color="white",style="solid",shape="box"];82 -> 3388[label="",style="solid", color="burlywood", weight=9]; 3388 -> 89[label="",style="solid", color="burlywood", weight=3]; 3389[label="vyw20/True",fontsize=10,color="white",style="solid",shape="box"];82 -> 3389[label="",style="solid", color="burlywood", weight=9]; 3389 -> 90[label="",style="solid", color="burlywood", weight=3]; 92 -> 53[label="",style="dashed", color="red", weight=0]; 92[label="compare2 (Just vyw30) Nothing False == LT",fontsize=16,color="magenta"];92 -> 96[label="",style="dashed", color="magenta", weight=3]; 92 -> 97[label="",style="dashed", color="magenta", weight=3]; 91[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) vyw21)",fontsize=16,color="burlywood",shape="triangle"];3390[label="vyw21/False",fontsize=10,color="white",style="solid",shape="box"];91 -> 3390[label="",style="solid", color="burlywood", weight=9]; 3390 -> 98[label="",style="solid", color="burlywood", weight=3]; 3391[label="vyw21/True",fontsize=10,color="white",style="solid",shape="box"];91 -> 3391[label="",style="solid", color="burlywood", weight=9]; 3391 -> 99[label="",style="solid", color="burlywood", weight=3]; 139[label="vyw42",fontsize=16,color="green",shape="box"];140 -> 53[label="",style="dashed", color="red", weight=0]; 140[label="compare2 (Just vyw30) (Just vyw400) (vyw30 == vyw400) == LT",fontsize=16,color="magenta"];140 -> 149[label="",style="dashed", color="magenta", weight=3]; 140 -> 150[label="",style="dashed", color="magenta", weight=3]; 141[label="vyw41",fontsize=16,color="green",shape="box"];142[label="vyw43",fontsize=16,color="green",shape="box"];143[label="vyw30",fontsize=16,color="green",shape="box"];144[label="vyw44",fontsize=16,color="green",shape="box"];145[label="vyw400",fontsize=16,color="green",shape="box"];138[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) vyw22)",fontsize=16,color="burlywood",shape="triangle"];3392[label="vyw22/False",fontsize=10,color="white",style="solid",shape="box"];138 -> 3392[label="",style="solid", color="burlywood", weight=9]; 3392 -> 151[label="",style="solid", color="burlywood", weight=3]; 3393[label="vyw22/True",fontsize=10,color="white",style="solid",shape="box"];138 -> 3393[label="",style="solid", color="burlywood", weight=9]; 3393 -> 152[label="",style="solid", color="burlywood", weight=3]; 37[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 Nothing False)",fontsize=16,color="black",shape="box"];37 -> 56[label="",style="solid", color="black", weight=3]; 87 -> 1672[label="",style="dashed", color="red", weight=0]; 87[label="compare2 Nothing (Just vyw400) False",fontsize=16,color="magenta"];87 -> 1673[label="",style="dashed", color="magenta", weight=3]; 87 -> 1674[label="",style="dashed", color="magenta", weight=3]; 87 -> 1675[label="",style="dashed", color="magenta", weight=3]; 88[label="LT",fontsize=16,color="green",shape="box"];53[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3394[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];53 -> 3394[label="",style="solid", color="burlywood", weight=9]; 3394 -> 76[label="",style="solid", color="burlywood", weight=3]; 3395[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];53 -> 3395[label="",style="solid", color="burlywood", weight=9]; 3395 -> 77[label="",style="solid", color="burlywood", weight=3]; 3396[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];53 -> 3396[label="",style="solid", color="burlywood", weight=9]; 3396 -> 78[label="",style="solid", color="burlywood", weight=3]; 89[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing False)",fontsize=16,color="black",shape="box"];89 -> 101[label="",style="solid", color="black", weight=3]; 90[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing True)",fontsize=16,color="black",shape="box"];90 -> 102[label="",style="solid", color="black", weight=3]; 96 -> 1672[label="",style="dashed", color="red", weight=0]; 96[label="compare2 (Just vyw30) Nothing False",fontsize=16,color="magenta"];96 -> 1676[label="",style="dashed", color="magenta", weight=3]; 96 -> 1677[label="",style="dashed", color="magenta", weight=3]; 96 -> 1678[label="",style="dashed", color="magenta", weight=3]; 97[label="LT",fontsize=16,color="green",shape="box"];98[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) False)",fontsize=16,color="black",shape="box"];98 -> 154[label="",style="solid", color="black", weight=3]; 99[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) True)",fontsize=16,color="black",shape="box"];99 -> 155[label="",style="solid", color="black", weight=3]; 149 -> 1672[label="",style="dashed", color="red", weight=0]; 149[label="compare2 (Just vyw30) (Just vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];149 -> 1679[label="",style="dashed", color="magenta", weight=3]; 149 -> 1680[label="",style="dashed", color="magenta", weight=3]; 149 -> 1681[label="",style="dashed", color="magenta", weight=3]; 150[label="LT",fontsize=16,color="green",shape="box"];151[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) False)",fontsize=16,color="black",shape="box"];151 -> 167[label="",style="solid", color="black", weight=3]; 152[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) True)",fontsize=16,color="black",shape="box"];152 -> 168[label="",style="solid", color="black", weight=3]; 56 -> 160[label="",style="dashed", color="red", weight=0]; 56[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 Nothing vyw41 vyw42 vyw43 vyw44 Nothing (Nothing > Nothing))",fontsize=16,color="magenta"];56 -> 161[label="",style="dashed", color="magenta", weight=3]; 1673[label="Nothing",fontsize=16,color="green",shape="box"];1674[label="Just vyw400",fontsize=16,color="green",shape="box"];1675[label="False",fontsize=16,color="green",shape="box"];1672[label="compare2 vyw280 vyw290 vyw67",fontsize=16,color="burlywood",shape="triangle"];3397[label="vyw67/False",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3397[label="",style="solid", color="burlywood", weight=9]; 3397 -> 1707[label="",style="solid", color="burlywood", weight=3]; 3398[label="vyw67/True",fontsize=10,color="white",style="solid",shape="box"];1672 -> 3398[label="",style="solid", color="burlywood", weight=9]; 3398 -> 1708[label="",style="solid", color="burlywood", weight=3]; 76[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];3399[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];76 -> 3399[label="",style="solid", color="burlywood", weight=9]; 3399 -> 103[label="",style="solid", color="burlywood", weight=3]; 3400[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];76 -> 3400[label="",style="solid", color="burlywood", weight=9]; 3400 -> 104[label="",style="solid", color="burlywood", weight=3]; 3401[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];76 -> 3401[label="",style="solid", color="burlywood", weight=9]; 3401 -> 105[label="",style="solid", color="burlywood", weight=3]; 77[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];3402[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];77 -> 3402[label="",style="solid", color="burlywood", weight=9]; 3402 -> 106[label="",style="solid", color="burlywood", weight=3]; 3403[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];77 -> 3403[label="",style="solid", color="burlywood", weight=9]; 3403 -> 107[label="",style="solid", color="burlywood", weight=3]; 3404[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];77 -> 3404[label="",style="solid", color="burlywood", weight=9]; 3404 -> 108[label="",style="solid", color="burlywood", weight=3]; 78[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];3405[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];78 -> 3405[label="",style="solid", color="burlywood", weight=9]; 3405 -> 109[label="",style="solid", color="burlywood", weight=3]; 3406[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];78 -> 3406[label="",style="solid", color="burlywood", weight=9]; 3406 -> 110[label="",style="solid", color="burlywood", weight=3]; 3407[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];78 -> 3407[label="",style="solid", color="burlywood", weight=9]; 3407 -> 111[label="",style="solid", color="burlywood", weight=3]; 101 -> 202[label="",style="dashed", color="red", weight=0]; 101[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing (Nothing > Just vyw400))",fontsize=16,color="magenta"];101 -> 203[label="",style="dashed", color="magenta", weight=3]; 102 -> 5[label="",style="dashed", color="red", weight=0]; 102[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw43 Nothing)",fontsize=16,color="magenta"];102 -> 158[label="",style="dashed", color="magenta", weight=3]; 102 -> 159[label="",style="dashed", color="magenta", weight=3]; 1676[label="Just vyw30",fontsize=16,color="green",shape="box"];1677[label="Nothing",fontsize=16,color="green",shape="box"];1678[label="False",fontsize=16,color="green",shape="box"];154 -> 212[label="",style="dashed", color="red", weight=0]; 154[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) (Just vyw30 > Nothing))",fontsize=16,color="magenta"];154 -> 213[label="",style="dashed", color="magenta", weight=3]; 155 -> 5[label="",style="dashed", color="red", weight=0]; 155[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw43 (Just vyw30))",fontsize=16,color="magenta"];155 -> 171[label="",style="dashed", color="magenta", weight=3]; 155 -> 172[label="",style="dashed", color="magenta", weight=3]; 1679[label="Just vyw30",fontsize=16,color="green",shape="box"];1680[label="Just vyw400",fontsize=16,color="green",shape="box"];1681[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3408[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1709[label="",style="solid", color="blue", weight=3]; 3409[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1710[label="",style="solid", color="blue", weight=3]; 3410[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1711[label="",style="solid", color="blue", weight=3]; 3411[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1712[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1713[label="",style="solid", color="blue", weight=3]; 3413[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1714[label="",style="solid", color="blue", weight=3]; 3414[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1715[label="",style="solid", color="blue", weight=3]; 3415[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1716[label="",style="solid", color="blue", weight=3]; 3416[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1717[label="",style="solid", color="blue", weight=3]; 3417[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1718[label="",style="solid", color="blue", weight=3]; 3418[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1719[label="",style="solid", color="blue", weight=3]; 3419[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 1720[label="",style="solid", color="blue", weight=3]; 3420[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 1721[label="",style="solid", color="blue", weight=3]; 3421[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 1722[label="",style="solid", color="blue", weight=3]; 167 -> 237[label="",style="dashed", color="red", weight=0]; 167[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) (Just vyw18 > Just vyw13))",fontsize=16,color="magenta"];167 -> 238[label="",style="dashed", color="magenta", weight=3]; 168 -> 5[label="",style="dashed", color="red", weight=0]; 168[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw16 (Just vyw18))",fontsize=16,color="magenta"];168 -> 206[label="",style="dashed", color="magenta", weight=3]; 168 -> 207[label="",style="dashed", color="magenta", weight=3]; 161[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];161 -> 189[label="",style="solid", color="black", weight=3]; 160[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 Nothing vyw41 vyw42 vyw43 vyw44 Nothing vyw23)",fontsize=16,color="burlywood",shape="triangle"];3422[label="vyw23/False",fontsize=10,color="white",style="solid",shape="box"];160 -> 3422[label="",style="solid", color="burlywood", weight=9]; 3422 -> 190[label="",style="solid", color="burlywood", weight=3]; 3423[label="vyw23/True",fontsize=10,color="white",style="solid",shape="box"];160 -> 3423[label="",style="solid", color="burlywood", weight=9]; 3423 -> 191[label="",style="solid", color="burlywood", weight=3]; 1707[label="compare2 vyw280 vyw290 False",fontsize=16,color="black",shape="box"];1707 -> 1727[label="",style="solid", color="black", weight=3]; 1708[label="compare2 vyw280 vyw290 True",fontsize=16,color="black",shape="box"];1708 -> 1728[label="",style="solid", color="black", weight=3]; 103[label="LT == LT",fontsize=16,color="black",shape="box"];103 -> 193[label="",style="solid", color="black", weight=3]; 104[label="LT == EQ",fontsize=16,color="black",shape="box"];104 -> 194[label="",style="solid", color="black", weight=3]; 105[label="LT == GT",fontsize=16,color="black",shape="box"];105 -> 195[label="",style="solid", color="black", weight=3]; 106[label="EQ == LT",fontsize=16,color="black",shape="box"];106 -> 196[label="",style="solid", color="black", weight=3]; 107[label="EQ == EQ",fontsize=16,color="black",shape="box"];107 -> 197[label="",style="solid", color="black", weight=3]; 108[label="EQ == GT",fontsize=16,color="black",shape="box"];108 -> 198[label="",style="solid", color="black", weight=3]; 109[label="GT == LT",fontsize=16,color="black",shape="box"];109 -> 199[label="",style="solid", color="black", weight=3]; 110[label="GT == EQ",fontsize=16,color="black",shape="box"];110 -> 200[label="",style="solid", color="black", weight=3]; 111[label="GT == GT",fontsize=16,color="black",shape="box"];111 -> 201[label="",style="solid", color="black", weight=3]; 203[label="Nothing > Just vyw400",fontsize=16,color="black",shape="box"];203 -> 208[label="",style="solid", color="black", weight=3]; 202[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing vyw31)",fontsize=16,color="burlywood",shape="triangle"];3424[label="vyw31/False",fontsize=10,color="white",style="solid",shape="box"];202 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 209[label="",style="solid", color="burlywood", weight=3]; 3425[label="vyw31/True",fontsize=10,color="white",style="solid",shape="box"];202 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 210[label="",style="solid", color="burlywood", weight=3]; 158[label="vyw43",fontsize=16,color="green",shape="box"];159[label="Nothing",fontsize=16,color="green",shape="box"];213[label="Just vyw30 > Nothing",fontsize=16,color="black",shape="box"];213 -> 215[label="",style="solid", color="black", weight=3]; 212[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) vyw32)",fontsize=16,color="burlywood",shape="triangle"];3426[label="vyw32/False",fontsize=10,color="white",style="solid",shape="box"];212 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 216[label="",style="solid", color="burlywood", weight=3]; 3427[label="vyw32/True",fontsize=10,color="white",style="solid",shape="box"];212 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 217[label="",style="solid", color="burlywood", weight=3]; 171[label="vyw43",fontsize=16,color="green",shape="box"];172[label="Just vyw30",fontsize=16,color="green",shape="box"];1709[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3428[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];1709 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 1729[label="",style="solid", color="burlywood", weight=3]; 3429[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];1709 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 1730[label="",style="solid", color="burlywood", weight=3]; 1710[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1710 -> 1731[label="",style="solid", color="black", weight=3]; 1711[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3430[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3430[label="",style="solid", color="burlywood", weight=9]; 3430 -> 1732[label="",style="solid", color="burlywood", weight=3]; 3431[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3431[label="",style="solid", color="burlywood", weight=9]; 3431 -> 1733[label="",style="solid", color="burlywood", weight=3]; 1712[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3432[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];1712 -> 3432[label="",style="solid", color="burlywood", weight=9]; 3432 -> 1734[label="",style="solid", color="burlywood", weight=3]; 1713[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3433[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];1713 -> 3433[label="",style="solid", color="burlywood", weight=9]; 3433 -> 1735[label="",style="solid", color="burlywood", weight=3]; 1714[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3434[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3434[label="",style="solid", color="burlywood", weight=9]; 3434 -> 1736[label="",style="solid", color="burlywood", weight=3]; 3435[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3435[label="",style="solid", color="burlywood", weight=9]; 3435 -> 1737[label="",style="solid", color="burlywood", weight=3]; 1715[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1715 -> 1738[label="",style="solid", color="black", weight=3]; 1716[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1716 -> 1739[label="",style="solid", color="black", weight=3]; 1717[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3436[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];1717 -> 3436[label="",style="solid", color="burlywood", weight=9]; 3436 -> 1740[label="",style="solid", color="burlywood", weight=3]; 1718[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3437[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];1718 -> 3437[label="",style="solid", color="burlywood", weight=9]; 3437 -> 1741[label="",style="solid", color="burlywood", weight=3]; 1719[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3438[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];1719 -> 3438[label="",style="solid", color="burlywood", weight=9]; 3438 -> 1742[label="",style="solid", color="burlywood", weight=3]; 1720[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3439[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1720 -> 3439[label="",style="solid", color="burlywood", weight=9]; 3439 -> 1743[label="",style="solid", color="burlywood", weight=3]; 3440[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];1720 -> 3440[label="",style="solid", color="burlywood", weight=9]; 3440 -> 1744[label="",style="solid", color="burlywood", weight=3]; 1721[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1721 -> 1745[label="",style="solid", color="black", weight=3]; 1722 -> 53[label="",style="dashed", color="red", weight=0]; 1722[label="vyw30 == vyw400",fontsize=16,color="magenta"];238[label="Just vyw18 > Just vyw13",fontsize=16,color="black",shape="box"];238 -> 240[label="",style="solid", color="black", weight=3]; 237[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) vyw33)",fontsize=16,color="burlywood",shape="triangle"];3441[label="vyw33/False",fontsize=10,color="white",style="solid",shape="box"];237 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 241[label="",style="solid", color="burlywood", weight=3]; 3442[label="vyw33/True",fontsize=10,color="white",style="solid",shape="box"];237 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 242[label="",style="solid", color="burlywood", weight=3]; 206[label="vyw16",fontsize=16,color="green",shape="box"];207[label="Just vyw18",fontsize=16,color="green",shape="box"];189 -> 53[label="",style="dashed", color="red", weight=0]; 189[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];189 -> 243[label="",style="dashed", color="magenta", weight=3]; 189 -> 244[label="",style="dashed", color="magenta", weight=3]; 190[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 Nothing vyw41 vyw42 vyw43 vyw44 Nothing False)",fontsize=16,color="black",shape="box"];190 -> 245[label="",style="solid", color="black", weight=3]; 191[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 Nothing vyw41 vyw42 vyw43 vyw44 Nothing True)",fontsize=16,color="black",shape="box"];191 -> 246[label="",style="solid", color="black", weight=3]; 1727[label="compare1 vyw280 vyw290 (vyw280 <= vyw290)",fontsize=16,color="burlywood",shape="box"];3443[label="vyw280/Nothing",fontsize=10,color="white",style="solid",shape="box"];1727 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 1760[label="",style="solid", color="burlywood", weight=3]; 3444[label="vyw280/Just vyw2800",fontsize=10,color="white",style="solid",shape="box"];1727 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 1761[label="",style="solid", color="burlywood", weight=3]; 1728[label="EQ",fontsize=16,color="green",shape="box"];193[label="True",fontsize=16,color="green",shape="box"];194[label="False",fontsize=16,color="green",shape="box"];195[label="False",fontsize=16,color="green",shape="box"];196[label="False",fontsize=16,color="green",shape="box"];197[label="True",fontsize=16,color="green",shape="box"];198[label="False",fontsize=16,color="green",shape="box"];199[label="False",fontsize=16,color="green",shape="box"];200[label="False",fontsize=16,color="green",shape="box"];201[label="True",fontsize=16,color="green",shape="box"];208 -> 53[label="",style="dashed", color="red", weight=0]; 208[label="compare Nothing (Just vyw400) == GT",fontsize=16,color="magenta"];208 -> 247[label="",style="dashed", color="magenta", weight=3]; 208 -> 248[label="",style="dashed", color="magenta", weight=3]; 209[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing False)",fontsize=16,color="black",shape="box"];209 -> 249[label="",style="solid", color="black", weight=3]; 210[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing True)",fontsize=16,color="black",shape="box"];210 -> 250[label="",style="solid", color="black", weight=3]; 215 -> 53[label="",style="dashed", color="red", weight=0]; 215[label="compare (Just vyw30) Nothing == GT",fontsize=16,color="magenta"];215 -> 252[label="",style="dashed", color="magenta", weight=3]; 215 -> 253[label="",style="dashed", color="magenta", weight=3]; 216[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) False)",fontsize=16,color="black",shape="box"];216 -> 254[label="",style="solid", color="black", weight=3]; 217[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) True)",fontsize=16,color="black",shape="box"];217 -> 255[label="",style="solid", color="black", weight=3]; 1729[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];3445[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];1729 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 1762[label="",style="solid", color="burlywood", weight=3]; 3446[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];1729 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 1763[label="",style="solid", color="burlywood", weight=3]; 1730[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];3447[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];1730 -> 3447[label="",style="solid", color="burlywood", weight=9]; 3447 -> 1764[label="",style="solid", color="burlywood", weight=3]; 3448[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];1730 -> 3448[label="",style="solid", color="burlywood", weight=9]; 3448 -> 1765[label="",style="solid", color="burlywood", weight=3]; 1731[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3449[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];1731 -> 3449[label="",style="solid", color="burlywood", weight=9]; 3449 -> 1766[label="",style="solid", color="burlywood", weight=3]; 1732[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3450[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3450[label="",style="solid", color="burlywood", weight=9]; 3450 -> 1767[label="",style="solid", color="burlywood", weight=3]; 3451[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3451[label="",style="solid", color="burlywood", weight=9]; 3451 -> 1768[label="",style="solid", color="burlywood", weight=3]; 1733[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];3452[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3452[label="",style="solid", color="burlywood", weight=9]; 3452 -> 1769[label="",style="solid", color="burlywood", weight=3]; 3453[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3453[label="",style="solid", color="burlywood", weight=9]; 3453 -> 1770[label="",style="solid", color="burlywood", weight=3]; 1734[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];3454[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];1734 -> 3454[label="",style="solid", color="burlywood", weight=9]; 3454 -> 1771[label="",style="solid", color="burlywood", weight=3]; 1735[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3455[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];1735 -> 3455[label="",style="solid", color="burlywood", weight=9]; 3455 -> 1772[label="",style="solid", color="burlywood", weight=3]; 1736[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3456[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];1736 -> 3456[label="",style="solid", color="burlywood", weight=9]; 3456 -> 1773[label="",style="solid", color="burlywood", weight=3]; 3457[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];1736 -> 3457[label="",style="solid", color="burlywood", weight=9]; 3457 -> 1774[label="",style="solid", color="burlywood", weight=3]; 1737[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3458[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];1737 -> 3458[label="",style="solid", color="burlywood", weight=9]; 3458 -> 1775[label="",style="solid", color="burlywood", weight=3]; 3459[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];1737 -> 3459[label="",style="solid", color="burlywood", weight=9]; 3459 -> 1776[label="",style="solid", color="burlywood", weight=3]; 1738[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3460[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];1738 -> 3460[label="",style="solid", color="burlywood", weight=9]; 3460 -> 1777[label="",style="solid", color="burlywood", weight=3]; 1739[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3461[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];1739 -> 3461[label="",style="solid", color="burlywood", weight=9]; 3461 -> 1778[label="",style="solid", color="burlywood", weight=3]; 3462[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];1739 -> 3462[label="",style="solid", color="burlywood", weight=9]; 3462 -> 1779[label="",style="solid", color="burlywood", weight=3]; 1740[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];3463[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3463[label="",style="solid", color="burlywood", weight=9]; 3463 -> 1780[label="",style="solid", color="burlywood", weight=3]; 1741[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];3464[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3464[label="",style="solid", color="burlywood", weight=9]; 3464 -> 1781[label="",style="solid", color="burlywood", weight=3]; 1742[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3465[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];1742 -> 3465[label="",style="solid", color="burlywood", weight=9]; 3465 -> 1782[label="",style="solid", color="burlywood", weight=3]; 1743[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];3466[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3466[label="",style="solid", color="burlywood", weight=9]; 3466 -> 1783[label="",style="solid", color="burlywood", weight=3]; 3467[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3467[label="",style="solid", color="burlywood", weight=9]; 3467 -> 1784[label="",style="solid", color="burlywood", weight=3]; 1744[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3468[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3468[label="",style="solid", color="burlywood", weight=9]; 3468 -> 1785[label="",style="solid", color="burlywood", weight=3]; 3469[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3469[label="",style="solid", color="burlywood", weight=9]; 3469 -> 1786[label="",style="solid", color="burlywood", weight=3]; 1745[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3470[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3470[label="",style="solid", color="burlywood", weight=9]; 3470 -> 1787[label="",style="solid", color="burlywood", weight=3]; 240 -> 53[label="",style="dashed", color="red", weight=0]; 240[label="compare (Just vyw18) (Just vyw13) == GT",fontsize=16,color="magenta"];240 -> 283[label="",style="dashed", color="magenta", weight=3]; 240 -> 284[label="",style="dashed", color="magenta", weight=3]; 241[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) False)",fontsize=16,color="black",shape="box"];241 -> 285[label="",style="solid", color="black", weight=3]; 242[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) True)",fontsize=16,color="black",shape="box"];242 -> 286[label="",style="solid", color="black", weight=3]; 243[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];243 -> 287[label="",style="solid", color="black", weight=3]; 244[label="GT",fontsize=16,color="green",shape="box"];245[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 Nothing vyw41 vyw42 vyw43 vyw44 Nothing otherwise)",fontsize=16,color="black",shape="box"];245 -> 288[label="",style="solid", color="black", weight=3]; 246 -> 5[label="",style="dashed", color="red", weight=0]; 246[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw44 Nothing)",fontsize=16,color="magenta"];246 -> 289[label="",style="dashed", color="magenta", weight=3]; 246 -> 290[label="",style="dashed", color="magenta", weight=3]; 1760[label="compare1 Nothing vyw290 (Nothing <= vyw290)",fontsize=16,color="burlywood",shape="box"];3471[label="vyw290/Nothing",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3471[label="",style="solid", color="burlywood", weight=9]; 3471 -> 1816[label="",style="solid", color="burlywood", weight=3]; 3472[label="vyw290/Just vyw2900",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3472[label="",style="solid", color="burlywood", weight=9]; 3472 -> 1817[label="",style="solid", color="burlywood", weight=3]; 1761[label="compare1 (Just vyw2800) vyw290 (Just vyw2800 <= vyw290)",fontsize=16,color="burlywood",shape="box"];3473[label="vyw290/Nothing",fontsize=10,color="white",style="solid",shape="box"];1761 -> 3473[label="",style="solid", color="burlywood", weight=9]; 3473 -> 1818[label="",style="solid", color="burlywood", weight=3]; 3474[label="vyw290/Just vyw2900",fontsize=10,color="white",style="solid",shape="box"];1761 -> 3474[label="",style="solid", color="burlywood", weight=9]; 3474 -> 1819[label="",style="solid", color="burlywood", weight=3]; 247[label="compare Nothing (Just vyw400)",fontsize=16,color="black",shape="box"];247 -> 291[label="",style="solid", color="black", weight=3]; 248[label="GT",fontsize=16,color="green",shape="box"];249[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing otherwise)",fontsize=16,color="black",shape="box"];249 -> 292[label="",style="solid", color="black", weight=3]; 250 -> 5[label="",style="dashed", color="red", weight=0]; 250[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw44 Nothing)",fontsize=16,color="magenta"];250 -> 293[label="",style="dashed", color="magenta", weight=3]; 250 -> 294[label="",style="dashed", color="magenta", weight=3]; 252[label="compare (Just vyw30) Nothing",fontsize=16,color="black",shape="box"];252 -> 296[label="",style="solid", color="black", weight=3]; 253[label="GT",fontsize=16,color="green",shape="box"];254[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) otherwise)",fontsize=16,color="black",shape="box"];254 -> 297[label="",style="solid", color="black", weight=3]; 255 -> 5[label="",style="dashed", color="red", weight=0]; 255[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw44 (Just vyw30))",fontsize=16,color="magenta"];255 -> 298[label="",style="dashed", color="magenta", weight=3]; 255 -> 299[label="",style="dashed", color="magenta", weight=3]; 1762[label="False == False",fontsize=16,color="black",shape="box"];1762 -> 1820[label="",style="solid", color="black", weight=3]; 1763[label="False == True",fontsize=16,color="black",shape="box"];1763 -> 1821[label="",style="solid", color="black", weight=3]; 1764[label="True == False",fontsize=16,color="black",shape="box"];1764 -> 1822[label="",style="solid", color="black", weight=3]; 1765[label="True == True",fontsize=16,color="black",shape="box"];1765 -> 1823[label="",style="solid", color="black", weight=3]; 1766[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3475[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];1766 -> 3475[label="",style="solid", color="burlywood", weight=9]; 3475 -> 1824[label="",style="solid", color="burlywood", weight=3]; 1767[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];1767 -> 1825[label="",style="solid", color="black", weight=3]; 1768[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];1768 -> 1826[label="",style="solid", color="black", weight=3]; 1769[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];1769 -> 1827[label="",style="solid", color="black", weight=3]; 1770[label="[] == []",fontsize=16,color="black",shape="box"];1770 -> 1828[label="",style="solid", color="black", weight=3]; 1771[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];1771 -> 1829[label="",style="solid", color="black", weight=3]; 1772[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];1772 -> 1830[label="",style="solid", color="black", weight=3]; 1773[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];1773 -> 1831[label="",style="solid", color="black", weight=3]; 1774[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];1774 -> 1832[label="",style="solid", color="black", weight=3]; 1775[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];1775 -> 1833[label="",style="solid", color="black", weight=3]; 1776[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];1776 -> 1834[label="",style="solid", color="black", weight=3]; 1777[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3476[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];1777 -> 3476[label="",style="solid", color="burlywood", weight=9]; 3476 -> 1835[label="",style="solid", color="burlywood", weight=3]; 1778[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3477[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3477[label="",style="solid", color="burlywood", weight=9]; 3477 -> 1836[label="",style="solid", color="burlywood", weight=3]; 3478[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3478[label="",style="solid", color="burlywood", weight=9]; 3478 -> 1837[label="",style="solid", color="burlywood", weight=3]; 1779[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3479[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3479[label="",style="solid", color="burlywood", weight=9]; 3479 -> 1838[label="",style="solid", color="burlywood", weight=3]; 3480[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3480[label="",style="solid", color="burlywood", weight=9]; 3480 -> 1839[label="",style="solid", color="burlywood", weight=3]; 1780[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];1780 -> 1840[label="",style="solid", color="black", weight=3]; 1781[label="() == ()",fontsize=16,color="black",shape="box"];1781 -> 1841[label="",style="solid", color="black", weight=3]; 1782[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];1782 -> 1842[label="",style="solid", color="black", weight=3]; 1783[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1783 -> 1843[label="",style="solid", color="black", weight=3]; 1784[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];1784 -> 1844[label="",style="solid", color="black", weight=3]; 1785[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];1785 -> 1845[label="",style="solid", color="black", weight=3]; 1786[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];1786 -> 1846[label="",style="solid", color="black", weight=3]; 1787[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3481[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];1787 -> 3481[label="",style="solid", color="burlywood", weight=9]; 3481 -> 1847[label="",style="solid", color="burlywood", weight=3]; 283[label="compare (Just vyw18) (Just vyw13)",fontsize=16,color="black",shape="box"];283 -> 338[label="",style="solid", color="black", weight=3]; 284[label="GT",fontsize=16,color="green",shape="box"];285[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) otherwise)",fontsize=16,color="black",shape="box"];285 -> 339[label="",style="solid", color="black", weight=3]; 286 -> 5[label="",style="dashed", color="red", weight=0]; 286[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw17 (Just vyw18))",fontsize=16,color="magenta"];286 -> 340[label="",style="dashed", color="magenta", weight=3]; 286 -> 341[label="",style="dashed", color="magenta", weight=3]; 287[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];287 -> 342[label="",style="solid", color="black", weight=3]; 288[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 Nothing vyw41 vyw42 vyw43 vyw44 Nothing True)",fontsize=16,color="black",shape="box"];288 -> 343[label="",style="solid", color="black", weight=3]; 289[label="vyw44",fontsize=16,color="green",shape="box"];290[label="Nothing",fontsize=16,color="green",shape="box"];1816[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];1816 -> 1848[label="",style="solid", color="black", weight=3]; 1817[label="compare1 Nothing (Just vyw2900) (Nothing <= Just vyw2900)",fontsize=16,color="black",shape="box"];1817 -> 1849[label="",style="solid", color="black", weight=3]; 1818[label="compare1 (Just vyw2800) Nothing (Just vyw2800 <= Nothing)",fontsize=16,color="black",shape="box"];1818 -> 1850[label="",style="solid", color="black", weight=3]; 1819[label="compare1 (Just vyw2800) (Just vyw2900) (Just vyw2800 <= Just vyw2900)",fontsize=16,color="black",shape="box"];1819 -> 1851[label="",style="solid", color="black", weight=3]; 291[label="compare3 Nothing (Just vyw400)",fontsize=16,color="black",shape="box"];291 -> 344[label="",style="solid", color="black", weight=3]; 292[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Just vyw400) vyw41 vyw42 vyw43 vyw44 Nothing True)",fontsize=16,color="black",shape="box"];292 -> 345[label="",style="solid", color="black", weight=3]; 293[label="vyw44",fontsize=16,color="green",shape="box"];294[label="Nothing",fontsize=16,color="green",shape="box"];296[label="compare3 (Just vyw30) Nothing",fontsize=16,color="black",shape="box"];296 -> 346[label="",style="solid", color="black", weight=3]; 297[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 Nothing vyw41 vyw42 vyw43 vyw44 (Just vyw30) True)",fontsize=16,color="black",shape="box"];297 -> 347[label="",style="solid", color="black", weight=3]; 298[label="vyw44",fontsize=16,color="green",shape="box"];299[label="Just vyw30",fontsize=16,color="green",shape="box"];1820[label="True",fontsize=16,color="green",shape="box"];1821[label="False",fontsize=16,color="green",shape="box"];1822[label="False",fontsize=16,color="green",shape="box"];1823[label="True",fontsize=16,color="green",shape="box"];1824[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];1824 -> 1852[label="",style="solid", color="black", weight=3]; 1825 -> 1929[label="",style="dashed", color="red", weight=0]; 1825[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1825 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1826[label="False",fontsize=16,color="green",shape="box"];1827[label="False",fontsize=16,color="green",shape="box"];1828[label="True",fontsize=16,color="green",shape="box"];1829 -> 1929[label="",style="dashed", color="red", weight=0]; 1829[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];1829 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1739[label="",style="dashed", color="red", weight=0]; 1830[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];1830 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1831[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3482[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 1866[label="",style="solid", color="blue", weight=3]; 3483[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 1867[label="",style="solid", color="blue", weight=3]; 3484[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 1868[label="",style="solid", color="blue", weight=3]; 3485[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 1869[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 1870[label="",style="solid", color="blue", weight=3]; 3487[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 1871[label="",style="solid", color="blue", weight=3]; 3488[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 1872[label="",style="solid", color="blue", weight=3]; 3489[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 1873[label="",style="solid", color="blue", weight=3]; 3490[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 1874[label="",style="solid", color="blue", weight=3]; 3491[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 1875[label="",style="solid", color="blue", weight=3]; 3492[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 1876[label="",style="solid", color="blue", weight=3]; 3493[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 1877[label="",style="solid", color="blue", weight=3]; 3494[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 1878[label="",style="solid", color="blue", weight=3]; 3495[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 1879[label="",style="solid", color="blue", weight=3]; 1832[label="False",fontsize=16,color="green",shape="box"];1833[label="False",fontsize=16,color="green",shape="box"];1834[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3496[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 1880[label="",style="solid", color="blue", weight=3]; 3497[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 1881[label="",style="solid", color="blue", weight=3]; 3498[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 1882[label="",style="solid", color="blue", weight=3]; 3499[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 1883[label="",style="solid", color="blue", weight=3]; 3500[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 1884[label="",style="solid", color="blue", weight=3]; 3501[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 1885[label="",style="solid", color="blue", weight=3]; 3502[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 1886[label="",style="solid", color="blue", weight=3]; 3503[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 1887[label="",style="solid", color="blue", weight=3]; 3504[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 1888[label="",style="solid", color="blue", weight=3]; 3505[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1889[label="",style="solid", color="blue", weight=3]; 3506[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 1890[label="",style="solid", color="blue", weight=3]; 3507[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 1891[label="",style="solid", color="blue", weight=3]; 3508[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 1892[label="",style="solid", color="blue", weight=3]; 3509[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1834 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 1893[label="",style="solid", color="blue", weight=3]; 1835[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];1835 -> 1894[label="",style="solid", color="black", weight=3]; 1836[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3510[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3510[label="",style="solid", color="burlywood", weight=9]; 3510 -> 1895[label="",style="solid", color="burlywood", weight=3]; 3511[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3511[label="",style="solid", color="burlywood", weight=9]; 3511 -> 1896[label="",style="solid", color="burlywood", weight=3]; 1837[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3512[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3512[label="",style="solid", color="burlywood", weight=9]; 3512 -> 1897[label="",style="solid", color="burlywood", weight=3]; 3513[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1837 -> 3513[label="",style="solid", color="burlywood", weight=9]; 3513 -> 1898[label="",style="solid", color="burlywood", weight=3]; 1838[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3514[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1838 -> 3514[label="",style="solid", color="burlywood", weight=9]; 3514 -> 1899[label="",style="solid", color="burlywood", weight=3]; 3515[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1838 -> 3515[label="",style="solid", color="burlywood", weight=9]; 3515 -> 1900[label="",style="solid", color="burlywood", weight=3]; 1839[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3516[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3516[label="",style="solid", color="burlywood", weight=9]; 3516 -> 1901[label="",style="solid", color="burlywood", weight=3]; 3517[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3517[label="",style="solid", color="burlywood", weight=9]; 3517 -> 1902[label="",style="solid", color="burlywood", weight=3]; 1840 -> 1929[label="",style="dashed", color="red", weight=0]; 1840[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1840 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1840 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1841[label="True",fontsize=16,color="green",shape="box"];1842 -> 1929[label="",style="dashed", color="red", weight=0]; 1842[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1842 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1842 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1843[label="True",fontsize=16,color="green",shape="box"];1844[label="False",fontsize=16,color="green",shape="box"];1845[label="False",fontsize=16,color="green",shape="box"];1846[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3518[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 1903[label="",style="solid", color="blue", weight=3]; 3519[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 1904[label="",style="solid", color="blue", weight=3]; 3520[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 1905[label="",style="solid", color="blue", weight=3]; 3521[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 1906[label="",style="solid", color="blue", weight=3]; 3522[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 1907[label="",style="solid", color="blue", weight=3]; 3523[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 1908[label="",style="solid", color="blue", weight=3]; 3524[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 1909[label="",style="solid", color="blue", weight=3]; 3525[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 1910[label="",style="solid", color="blue", weight=3]; 3526[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 1911[label="",style="solid", color="blue", weight=3]; 3527[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 1912[label="",style="solid", color="blue", weight=3]; 3528[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 1913[label="",style="solid", color="blue", weight=3]; 3529[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 1914[label="",style="solid", color="blue", weight=3]; 3530[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 1915[label="",style="solid", color="blue", weight=3]; 3531[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1846 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 1916[label="",style="solid", color="blue", weight=3]; 1847[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];1847 -> 1917[label="",style="solid", color="black", weight=3]; 338[label="compare3 (Just vyw18) (Just vyw13)",fontsize=16,color="black",shape="box"];338 -> 430[label="",style="solid", color="black", weight=3]; 339[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Just vyw13) vyw14 vyw15 vyw16 vyw17 (Just vyw18) True)",fontsize=16,color="black",shape="box"];339 -> 431[label="",style="solid", color="black", weight=3]; 340[label="vyw17",fontsize=16,color="green",shape="box"];341[label="Just vyw18",fontsize=16,color="green",shape="box"];342 -> 1672[label="",style="dashed", color="red", weight=0]; 342[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];342 -> 1691[label="",style="dashed", color="magenta", weight=3]; 342 -> 1692[label="",style="dashed", color="magenta", weight=3]; 342 -> 1693[label="",style="dashed", color="magenta", weight=3]; 343[label="FiniteMap.elemFM0 (Just vyw41)",fontsize=16,color="black",shape="triangle"];343 -> 434[label="",style="solid", color="black", weight=3]; 1848[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];1848 -> 1918[label="",style="solid", color="black", weight=3]; 1849[label="compare1 Nothing (Just vyw2900) True",fontsize=16,color="black",shape="box"];1849 -> 1919[label="",style="solid", color="black", weight=3]; 1850[label="compare1 (Just vyw2800) Nothing False",fontsize=16,color="black",shape="box"];1850 -> 1920[label="",style="solid", color="black", weight=3]; 1851 -> 1921[label="",style="dashed", color="red", weight=0]; 1851[label="compare1 (Just vyw2800) (Just vyw2900) (vyw2800 <= vyw2900)",fontsize=16,color="magenta"];1851 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1851 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1851 -> 1924[label="",style="dashed", color="magenta", weight=3]; 344 -> 1672[label="",style="dashed", color="red", weight=0]; 344[label="compare2 Nothing (Just vyw400) (Nothing == Just vyw400)",fontsize=16,color="magenta"];344 -> 1694[label="",style="dashed", color="magenta", weight=3]; 344 -> 1695[label="",style="dashed", color="magenta", weight=3]; 344 -> 1696[label="",style="dashed", color="magenta", weight=3]; 345 -> 343[label="",style="dashed", color="red", weight=0]; 345[label="FiniteMap.elemFM0 (Just vyw41)",fontsize=16,color="magenta"];346 -> 1672[label="",style="dashed", color="red", weight=0]; 346[label="compare2 (Just vyw30) Nothing (Just vyw30 == Nothing)",fontsize=16,color="magenta"];346 -> 1697[label="",style="dashed", color="magenta", weight=3]; 346 -> 1698[label="",style="dashed", color="magenta", weight=3]; 346 -> 1699[label="",style="dashed", color="magenta", weight=3]; 347 -> 343[label="",style="dashed", color="red", weight=0]; 347[label="FiniteMap.elemFM0 (Just vyw41)",fontsize=16,color="magenta"];1852 -> 1716[label="",style="dashed", color="red", weight=0]; 1852[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1852 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1852 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1930 -> 1711[label="",style="dashed", color="red", weight=0]; 1930[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1930 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1930 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1931[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3532[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 1944[label="",style="solid", color="blue", weight=3]; 3533[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 1945[label="",style="solid", color="blue", weight=3]; 3534[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 1946[label="",style="solid", color="blue", weight=3]; 3535[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 1947[label="",style="solid", color="blue", weight=3]; 3536[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 1948[label="",style="solid", color="blue", weight=3]; 3537[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 1949[label="",style="solid", color="blue", weight=3]; 3538[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 1950[label="",style="solid", color="blue", weight=3]; 3539[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 1951[label="",style="solid", color="blue", weight=3]; 3540[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 1952[label="",style="solid", color="blue", weight=3]; 3541[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 1953[label="",style="solid", color="blue", weight=3]; 3542[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 1954[label="",style="solid", color="blue", weight=3]; 3543[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 1955[label="",style="solid", color="blue", weight=3]; 3544[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 1956[label="",style="solid", color="blue", weight=3]; 3545[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 1957[label="",style="solid", color="blue", weight=3]; 1929[label="vyw79 && vyw80",fontsize=16,color="burlywood",shape="triangle"];3546[label="vyw79/False",fontsize=10,color="white",style="solid",shape="box"];1929 -> 3546[label="",style="solid", color="burlywood", weight=9]; 3546 -> 1958[label="",style="solid", color="burlywood", weight=3]; 3547[label="vyw79/True",fontsize=10,color="white",style="solid",shape="box"];1929 -> 3547[label="",style="solid", color="burlywood", weight=9]; 3547 -> 1959[label="",style="solid", color="burlywood", weight=3]; 1932 -> 1929[label="",style="dashed", color="red", weight=0]; 1932[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];1932 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1932 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1933[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3548[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 1962[label="",style="solid", color="blue", weight=3]; 3549[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 1963[label="",style="solid", color="blue", weight=3]; 3550[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 1964[label="",style="solid", color="blue", weight=3]; 3551[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 1965[label="",style="solid", color="blue", weight=3]; 3552[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 1966[label="",style="solid", color="blue", weight=3]; 3553[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 1967[label="",style="solid", color="blue", weight=3]; 3554[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3554[label="",style="solid", color="blue", weight=9]; 3554 -> 1968[label="",style="solid", color="blue", weight=3]; 3555[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 1969[label="",style="solid", color="blue", weight=3]; 3556[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 1970[label="",style="solid", color="blue", weight=3]; 3557[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 1971[label="",style="solid", color="blue", weight=3]; 3558[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3558[label="",style="solid", color="blue", weight=9]; 3558 -> 1972[label="",style="solid", color="blue", weight=3]; 3559[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3559[label="",style="solid", color="blue", weight=9]; 3559 -> 1973[label="",style="solid", color="blue", weight=3]; 3560[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3560[label="",style="solid", color="blue", weight=9]; 3560 -> 1974[label="",style="solid", color="blue", weight=3]; 3561[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3561[label="",style="solid", color="blue", weight=9]; 3561 -> 1975[label="",style="solid", color="blue", weight=3]; 1864[label="vyw300",fontsize=16,color="green",shape="box"];1865[label="vyw4000",fontsize=16,color="green",shape="box"];1866 -> 1709[label="",style="dashed", color="red", weight=0]; 1866[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1866 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1866 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1867 -> 1710[label="",style="dashed", color="red", weight=0]; 1867[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1867 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1867 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1868 -> 1711[label="",style="dashed", color="red", weight=0]; 1868[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1868 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1868 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1869 -> 1712[label="",style="dashed", color="red", weight=0]; 1869[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1869 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1869 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1870 -> 1713[label="",style="dashed", color="red", weight=0]; 1870[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1870 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1870 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1871 -> 1714[label="",style="dashed", color="red", weight=0]; 1871[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1871 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1871 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1872 -> 1715[label="",style="dashed", color="red", weight=0]; 1872[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1872 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1872 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1873 -> 1716[label="",style="dashed", color="red", weight=0]; 1873[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1873 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1873 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1717[label="",style="dashed", color="red", weight=0]; 1874[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1874 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1718[label="",style="dashed", color="red", weight=0]; 1875[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1875 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1719[label="",style="dashed", color="red", weight=0]; 1876[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1876 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1720[label="",style="dashed", color="red", weight=0]; 1877[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1877 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1721[label="",style="dashed", color="red", weight=0]; 1878[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1878 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1879 -> 53[label="",style="dashed", color="red", weight=0]; 1879[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1879 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1709[label="",style="dashed", color="red", weight=0]; 1880[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1880 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1710[label="",style="dashed", color="red", weight=0]; 1881[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1881 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1711[label="",style="dashed", color="red", weight=0]; 1882[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1882 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1883 -> 1712[label="",style="dashed", color="red", weight=0]; 1883[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1883 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1884 -> 1713[label="",style="dashed", color="red", weight=0]; 1884[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1884 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1885 -> 1714[label="",style="dashed", color="red", weight=0]; 1885[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1885 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1886 -> 1715[label="",style="dashed", color="red", weight=0]; 1886[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1886 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1887 -> 1716[label="",style="dashed", color="red", weight=0]; 1887[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1887 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1888 -> 1717[label="",style="dashed", color="red", weight=0]; 1888[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1888 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1889 -> 1718[label="",style="dashed", color="red", weight=0]; 1889[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1889 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1890 -> 1719[label="",style="dashed", color="red", weight=0]; 1890[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1890 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1891 -> 1720[label="",style="dashed", color="red", weight=0]; 1891[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1891 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1892 -> 1721[label="",style="dashed", color="red", weight=0]; 1892[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1892 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1893 -> 53[label="",style="dashed", color="red", weight=0]; 1893[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1893 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1894[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];3562[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1894 -> 3562[label="",style="solid", color="burlywood", weight=9]; 3562 -> 2032[label="",style="solid", color="burlywood", weight=3]; 3563[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1894 -> 3563[label="",style="solid", color="burlywood", weight=9]; 3563 -> 2033[label="",style="solid", color="burlywood", weight=3]; 1895[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3564[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3564[label="",style="solid", color="burlywood", weight=9]; 3564 -> 2034[label="",style="solid", color="burlywood", weight=3]; 3565[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3565[label="",style="solid", color="burlywood", weight=9]; 3565 -> 2035[label="",style="solid", color="burlywood", weight=3]; 1896[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];1896 -> 2036[label="",style="solid", color="black", weight=3]; 1897[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3566[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3566[label="",style="solid", color="burlywood", weight=9]; 3566 -> 2037[label="",style="solid", color="burlywood", weight=3]; 3567[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3567[label="",style="solid", color="burlywood", weight=9]; 3567 -> 2038[label="",style="solid", color="burlywood", weight=3]; 1898[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3568[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3568[label="",style="solid", color="burlywood", weight=9]; 3568 -> 2039[label="",style="solid", color="burlywood", weight=3]; 3569[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3569[label="",style="solid", color="burlywood", weight=9]; 3569 -> 2040[label="",style="solid", color="burlywood", weight=3]; 1899[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];1899 -> 2041[label="",style="solid", color="black", weight=3]; 1900[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3570[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1900 -> 3570[label="",style="solid", color="burlywood", weight=9]; 3570 -> 2042[label="",style="solid", color="burlywood", weight=3]; 3571[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1900 -> 3571[label="",style="solid", color="burlywood", weight=9]; 3571 -> 2043[label="",style="solid", color="burlywood", weight=3]; 1901[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3572[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1901 -> 3572[label="",style="solid", color="burlywood", weight=9]; 3572 -> 2044[label="",style="solid", color="burlywood", weight=3]; 3573[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1901 -> 3573[label="",style="solid", color="burlywood", weight=9]; 3573 -> 2045[label="",style="solid", color="burlywood", weight=3]; 1902[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3574[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1902 -> 3574[label="",style="solid", color="burlywood", weight=9]; 3574 -> 2046[label="",style="solid", color="burlywood", weight=3]; 3575[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1902 -> 3575[label="",style="solid", color="burlywood", weight=9]; 3575 -> 2047[label="",style="solid", color="burlywood", weight=3]; 1934[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3576[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 2048[label="",style="solid", color="blue", weight=3]; 3577[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 2049[label="",style="solid", color="blue", weight=3]; 3578[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 2050[label="",style="solid", color="blue", weight=3]; 3579[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 2051[label="",style="solid", color="blue", weight=3]; 3580[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 2052[label="",style="solid", color="blue", weight=3]; 3581[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 2053[label="",style="solid", color="blue", weight=3]; 3582[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 2054[label="",style="solid", color="blue", weight=3]; 3583[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 2055[label="",style="solid", color="blue", weight=3]; 3584[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 2056[label="",style="solid", color="blue", weight=3]; 3585[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 2057[label="",style="solid", color="blue", weight=3]; 3586[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2058[label="",style="solid", color="blue", weight=3]; 3587[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2059[label="",style="solid", color="blue", weight=3]; 3588[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2060[label="",style="solid", color="blue", weight=3]; 3589[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 2061[label="",style="solid", color="blue", weight=3]; 1935[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3590[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 2062[label="",style="solid", color="blue", weight=3]; 3591[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 2063[label="",style="solid", color="blue", weight=3]; 3592[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 2064[label="",style="solid", color="blue", weight=3]; 3593[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 2065[label="",style="solid", color="blue", weight=3]; 3594[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 2066[label="",style="solid", color="blue", weight=3]; 3595[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2067[label="",style="solid", color="blue", weight=3]; 3596[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2068[label="",style="solid", color="blue", weight=3]; 3597[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2069[label="",style="solid", color="blue", weight=3]; 3598[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2070[label="",style="solid", color="blue", weight=3]; 3599[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2071[label="",style="solid", color="blue", weight=3]; 3600[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2072[label="",style="solid", color="blue", weight=3]; 3601[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2073[label="",style="solid", color="blue", weight=3]; 3602[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2074[label="",style="solid", color="blue", weight=3]; 3603[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 2075[label="",style="solid", color="blue", weight=3]; 1936[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3604[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 2076[label="",style="solid", color="blue", weight=3]; 3605[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2077[label="",style="solid", color="blue", weight=3]; 1937[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3606[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2078[label="",style="solid", color="blue", weight=3]; 3607[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2079[label="",style="solid", color="blue", weight=3]; 1903 -> 1709[label="",style="dashed", color="red", weight=0]; 1903[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1903 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1710[label="",style="dashed", color="red", weight=0]; 1904[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1904 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1905 -> 1711[label="",style="dashed", color="red", weight=0]; 1905[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1905 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1906 -> 1712[label="",style="dashed", color="red", weight=0]; 1906[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1906 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1907 -> 1713[label="",style="dashed", color="red", weight=0]; 1907[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1907 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1908 -> 1714[label="",style="dashed", color="red", weight=0]; 1908[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1908 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1715[label="",style="dashed", color="red", weight=0]; 1909[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1909 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1716[label="",style="dashed", color="red", weight=0]; 1910[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1910 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1911 -> 1717[label="",style="dashed", color="red", weight=0]; 1911[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1911 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1912 -> 1718[label="",style="dashed", color="red", weight=0]; 1912[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1912 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1913 -> 1719[label="",style="dashed", color="red", weight=0]; 1913[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1913 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1914 -> 1720[label="",style="dashed", color="red", weight=0]; 1914[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1914 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1915 -> 1721[label="",style="dashed", color="red", weight=0]; 1915[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1915 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1916 -> 53[label="",style="dashed", color="red", weight=0]; 1916[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1916 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1917 -> 1716[label="",style="dashed", color="red", weight=0]; 1917[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1917 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2109[label="",style="dashed", color="magenta", weight=3]; 430 -> 1672[label="",style="dashed", color="red", weight=0]; 430[label="compare2 (Just vyw18) (Just vyw13) (Just vyw18 == Just vyw13)",fontsize=16,color="magenta"];430 -> 1700[label="",style="dashed", color="magenta", weight=3]; 430 -> 1701[label="",style="dashed", color="magenta", weight=3]; 430 -> 1702[label="",style="dashed", color="magenta", weight=3]; 431 -> 343[label="",style="dashed", color="red", weight=0]; 431[label="FiniteMap.elemFM0 (Just vyw14)",fontsize=16,color="magenta"];431 -> 658[label="",style="dashed", color="magenta", weight=3]; 1691[label="Nothing",fontsize=16,color="green",shape="box"];1692[label="Nothing",fontsize=16,color="green",shape="box"];1693[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1693 -> 1723[label="",style="solid", color="black", weight=3]; 434[label="True",fontsize=16,color="green",shape="box"];1918[label="LT",fontsize=16,color="green",shape="box"];1919[label="LT",fontsize=16,color="green",shape="box"];1920[label="compare0 (Just vyw2800) Nothing otherwise",fontsize=16,color="black",shape="box"];1920 -> 2110[label="",style="solid", color="black", weight=3]; 1922[label="vyw2800 <= vyw2900",fontsize=16,color="blue",shape="box"];3608[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2111[label="",style="solid", color="blue", weight=3]; 3609[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2112[label="",style="solid", color="blue", weight=3]; 3610[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2113[label="",style="solid", color="blue", weight=3]; 3611[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2114[label="",style="solid", color="blue", weight=3]; 3612[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2115[label="",style="solid", color="blue", weight=3]; 3613[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2116[label="",style="solid", color="blue", weight=3]; 3614[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 2117[label="",style="solid", color="blue", weight=3]; 3615[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 2118[label="",style="solid", color="blue", weight=3]; 3616[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 2119[label="",style="solid", color="blue", weight=3]; 3617[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 2120[label="",style="solid", color="blue", weight=3]; 3618[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2121[label="",style="solid", color="blue", weight=3]; 3619[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 2122[label="",style="solid", color="blue", weight=3]; 3620[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 2123[label="",style="solid", color="blue", weight=3]; 3621[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 2124[label="",style="solid", color="blue", weight=3]; 1923[label="vyw2900",fontsize=16,color="green",shape="box"];1924[label="vyw2800",fontsize=16,color="green",shape="box"];1921[label="compare1 (Just vyw73) (Just vyw74) vyw75",fontsize=16,color="burlywood",shape="triangle"];3622[label="vyw75/False",fontsize=10,color="white",style="solid",shape="box"];1921 -> 3622[label="",style="solid", color="burlywood", weight=9]; 3622 -> 2125[label="",style="solid", color="burlywood", weight=3]; 3623[label="vyw75/True",fontsize=10,color="white",style="solid",shape="box"];1921 -> 3623[label="",style="solid", color="burlywood", weight=9]; 3623 -> 2126[label="",style="solid", color="burlywood", weight=3]; 1694[label="Nothing",fontsize=16,color="green",shape="box"];1695[label="Just vyw400",fontsize=16,color="green",shape="box"];1696[label="Nothing == Just vyw400",fontsize=16,color="black",shape="box"];1696 -> 1724[label="",style="solid", color="black", weight=3]; 1697[label="Just vyw30",fontsize=16,color="green",shape="box"];1698[label="Nothing",fontsize=16,color="green",shape="box"];1699[label="Just vyw30 == Nothing",fontsize=16,color="black",shape="box"];1699 -> 1725[label="",style="solid", color="black", weight=3]; 1925[label="vyw300 * vyw4001",fontsize=16,color="black",shape="triangle"];1925 -> 2127[label="",style="solid", color="black", weight=3]; 1926 -> 1925[label="",style="dashed", color="red", weight=0]; 1926[label="vyw301 * vyw4000",fontsize=16,color="magenta"];1926 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1942[label="vyw301",fontsize=16,color="green",shape="box"];1943[label="vyw4001",fontsize=16,color="green",shape="box"];1944 -> 1709[label="",style="dashed", color="red", weight=0]; 1944[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1944 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1945 -> 1710[label="",style="dashed", color="red", weight=0]; 1945[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1945 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1946 -> 1711[label="",style="dashed", color="red", weight=0]; 1946[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1946 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1947 -> 1712[label="",style="dashed", color="red", weight=0]; 1947[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1947 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1948 -> 1713[label="",style="dashed", color="red", weight=0]; 1948[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1948 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1949 -> 1714[label="",style="dashed", color="red", weight=0]; 1949[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1949 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1950 -> 1715[label="",style="dashed", color="red", weight=0]; 1950[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1950 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1951 -> 1716[label="",style="dashed", color="red", weight=0]; 1951[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1951 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1952 -> 1717[label="",style="dashed", color="red", weight=0]; 1952[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1952 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1953 -> 1718[label="",style="dashed", color="red", weight=0]; 1953[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1953 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1953 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1954 -> 1719[label="",style="dashed", color="red", weight=0]; 1954[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1954 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1954 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1955 -> 1720[label="",style="dashed", color="red", weight=0]; 1955[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1955 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1955 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1956 -> 1721[label="",style="dashed", color="red", weight=0]; 1956[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1956 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1957 -> 53[label="",style="dashed", color="red", weight=0]; 1957[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1957 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1958[label="False && vyw80",fontsize=16,color="black",shape="box"];1958 -> 2158[label="",style="solid", color="black", weight=3]; 1959[label="True && vyw80",fontsize=16,color="black",shape="box"];1959 -> 2159[label="",style="solid", color="black", weight=3]; 1960[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];3624[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 2160[label="",style="solid", color="blue", weight=3]; 3625[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3625[label="",style="solid", color="blue", weight=9]; 3625 -> 2161[label="",style="solid", color="blue", weight=3]; 3626[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3626[label="",style="solid", color="blue", weight=9]; 3626 -> 2162[label="",style="solid", color="blue", weight=3]; 3627[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3627[label="",style="solid", color="blue", weight=9]; 3627 -> 2163[label="",style="solid", color="blue", weight=3]; 3628[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 2164[label="",style="solid", color="blue", weight=3]; 3629[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 2165[label="",style="solid", color="blue", weight=3]; 3630[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 2166[label="",style="solid", color="blue", weight=3]; 3631[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 2167[label="",style="solid", color="blue", weight=3]; 3632[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 2168[label="",style="solid", color="blue", weight=3]; 3633[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 2169[label="",style="solid", color="blue", weight=3]; 3634[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 2170[label="",style="solid", color="blue", weight=3]; 3635[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 2171[label="",style="solid", color="blue", weight=3]; 3636[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 2172[label="",style="solid", color="blue", weight=3]; 3637[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 2173[label="",style="solid", color="blue", weight=3]; 1961[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3638[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 2174[label="",style="solid", color="blue", weight=3]; 3639[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 2175[label="",style="solid", color="blue", weight=3]; 3640[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 2176[label="",style="solid", color="blue", weight=3]; 3641[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 2177[label="",style="solid", color="blue", weight=3]; 3642[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 2178[label="",style="solid", color="blue", weight=3]; 3643[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 2179[label="",style="solid", color="blue", weight=3]; 3644[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 2180[label="",style="solid", color="blue", weight=3]; 3645[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 2181[label="",style="solid", color="blue", weight=3]; 3646[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 2182[label="",style="solid", color="blue", weight=3]; 3647[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 2183[label="",style="solid", color="blue", weight=3]; 3648[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 2184[label="",style="solid", color="blue", weight=3]; 3649[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 2185[label="",style="solid", color="blue", weight=3]; 3650[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 2186[label="",style="solid", color="blue", weight=3]; 3651[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 2187[label="",style="solid", color="blue", weight=3]; 1962 -> 1709[label="",style="dashed", color="red", weight=0]; 1962[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1962 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1963 -> 1710[label="",style="dashed", color="red", weight=0]; 1963[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1963 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1964 -> 1711[label="",style="dashed", color="red", weight=0]; 1964[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1964 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1965 -> 1712[label="",style="dashed", color="red", weight=0]; 1965[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1965 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1966 -> 1713[label="",style="dashed", color="red", weight=0]; 1966[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1966 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1967 -> 1714[label="",style="dashed", color="red", weight=0]; 1967[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1967 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1968 -> 1715[label="",style="dashed", color="red", weight=0]; 1968[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1968 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1969 -> 1716[label="",style="dashed", color="red", weight=0]; 1969[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1969 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1717[label="",style="dashed", color="red", weight=0]; 1970[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1970 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1971 -> 1718[label="",style="dashed", color="red", weight=0]; 1971[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1971 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1719[label="",style="dashed", color="red", weight=0]; 1972[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1972 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1720[label="",style="dashed", color="red", weight=0]; 1973[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1973 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1721[label="",style="dashed", color="red", weight=0]; 1974[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1974 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1975 -> 53[label="",style="dashed", color="red", weight=0]; 1975[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1975 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1976[label="vyw300",fontsize=16,color="green",shape="box"];1977[label="vyw4000",fontsize=16,color="green",shape="box"];1978[label="vyw300",fontsize=16,color="green",shape="box"];1979[label="vyw4000",fontsize=16,color="green",shape="box"];1980[label="vyw300",fontsize=16,color="green",shape="box"];1981[label="vyw4000",fontsize=16,color="green",shape="box"];1982[label="vyw300",fontsize=16,color="green",shape="box"];1983[label="vyw4000",fontsize=16,color="green",shape="box"];1984[label="vyw300",fontsize=16,color="green",shape="box"];1985[label="vyw4000",fontsize=16,color="green",shape="box"];1986[label="vyw300",fontsize=16,color="green",shape="box"];1987[label="vyw4000",fontsize=16,color="green",shape="box"];1988[label="vyw300",fontsize=16,color="green",shape="box"];1989[label="vyw4000",fontsize=16,color="green",shape="box"];1990[label="vyw300",fontsize=16,color="green",shape="box"];1991[label="vyw4000",fontsize=16,color="green",shape="box"];1992[label="vyw300",fontsize=16,color="green",shape="box"];1993[label="vyw4000",fontsize=16,color="green",shape="box"];1994[label="vyw300",fontsize=16,color="green",shape="box"];1995[label="vyw4000",fontsize=16,color="green",shape="box"];1996[label="vyw300",fontsize=16,color="green",shape="box"];1997[label="vyw4000",fontsize=16,color="green",shape="box"];1998[label="vyw300",fontsize=16,color="green",shape="box"];1999[label="vyw4000",fontsize=16,color="green",shape="box"];2000[label="vyw300",fontsize=16,color="green",shape="box"];2001[label="vyw4000",fontsize=16,color="green",shape="box"];2002[label="vyw300",fontsize=16,color="green",shape="box"];2003[label="vyw4000",fontsize=16,color="green",shape="box"];2004[label="vyw300",fontsize=16,color="green",shape="box"];2005[label="vyw4000",fontsize=16,color="green",shape="box"];2006[label="vyw300",fontsize=16,color="green",shape="box"];2007[label="vyw4000",fontsize=16,color="green",shape="box"];2008[label="vyw300",fontsize=16,color="green",shape="box"];2009[label="vyw4000",fontsize=16,color="green",shape="box"];2010[label="vyw300",fontsize=16,color="green",shape="box"];2011[label="vyw4000",fontsize=16,color="green",shape="box"];2012[label="vyw300",fontsize=16,color="green",shape="box"];2013[label="vyw4000",fontsize=16,color="green",shape="box"];2014[label="vyw300",fontsize=16,color="green",shape="box"];2015[label="vyw4000",fontsize=16,color="green",shape="box"];2016[label="vyw300",fontsize=16,color="green",shape="box"];2017[label="vyw4000",fontsize=16,color="green",shape="box"];2018[label="vyw300",fontsize=16,color="green",shape="box"];2019[label="vyw4000",fontsize=16,color="green",shape="box"];2020[label="vyw300",fontsize=16,color="green",shape="box"];2021[label="vyw4000",fontsize=16,color="green",shape="box"];2022[label="vyw300",fontsize=16,color="green",shape="box"];2023[label="vyw4000",fontsize=16,color="green",shape="box"];2024[label="vyw300",fontsize=16,color="green",shape="box"];2025[label="vyw4000",fontsize=16,color="green",shape="box"];2026[label="vyw300",fontsize=16,color="green",shape="box"];2027[label="vyw4000",fontsize=16,color="green",shape="box"];2028[label="vyw300",fontsize=16,color="green",shape="box"];2029[label="vyw4000",fontsize=16,color="green",shape="box"];2030[label="vyw300",fontsize=16,color="green",shape="box"];2031[label="vyw4000",fontsize=16,color="green",shape="box"];2032[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];3652[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3652[label="",style="solid", color="burlywood", weight=9]; 3652 -> 2216[label="",style="solid", color="burlywood", weight=3]; 3653[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3653[label="",style="solid", color="burlywood", weight=9]; 3653 -> 2217[label="",style="solid", color="burlywood", weight=3]; 2033[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];3654[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2033 -> 3654[label="",style="solid", color="burlywood", weight=9]; 3654 -> 2218[label="",style="solid", color="burlywood", weight=3]; 3655[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2033 -> 3655[label="",style="solid", color="burlywood", weight=9]; 3655 -> 2219[label="",style="solid", color="burlywood", weight=3]; 2034[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2034 -> 2220[label="",style="solid", color="black", weight=3]; 2035[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2035 -> 2221[label="",style="solid", color="black", weight=3]; 2036[label="False",fontsize=16,color="green",shape="box"];2037[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2037 -> 2222[label="",style="solid", color="black", weight=3]; 2038[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2038 -> 2223[label="",style="solid", color="black", weight=3]; 2039[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2039 -> 2224[label="",style="solid", color="black", weight=3]; 2040[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2040 -> 2225[label="",style="solid", color="black", weight=3]; 2041[label="False",fontsize=16,color="green",shape="box"];2042[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2042 -> 2226[label="",style="solid", color="black", weight=3]; 2043[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2043 -> 2227[label="",style="solid", color="black", weight=3]; 2044[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2044 -> 2228[label="",style="solid", color="black", weight=3]; 2045[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2045 -> 2229[label="",style="solid", color="black", weight=3]; 2046[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2046 -> 2230[label="",style="solid", color="black", weight=3]; 2047[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2047 -> 2231[label="",style="solid", color="black", weight=3]; 2048 -> 1709[label="",style="dashed", color="red", weight=0]; 2048[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2048 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2048 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2049 -> 1710[label="",style="dashed", color="red", weight=0]; 2049[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2049 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2050 -> 1711[label="",style="dashed", color="red", weight=0]; 2050[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2050 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2051 -> 1712[label="",style="dashed", color="red", weight=0]; 2051[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2051 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2052 -> 1713[label="",style="dashed", color="red", weight=0]; 2052[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2052 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2053 -> 1714[label="",style="dashed", color="red", weight=0]; 2053[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2053 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2054 -> 1715[label="",style="dashed", color="red", weight=0]; 2054[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2054 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2055 -> 1716[label="",style="dashed", color="red", weight=0]; 2055[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2055 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2056 -> 1717[label="",style="dashed", color="red", weight=0]; 2056[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2056 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2057 -> 1718[label="",style="dashed", color="red", weight=0]; 2057[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2057 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2058 -> 1719[label="",style="dashed", color="red", weight=0]; 2058[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2058 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2059 -> 1720[label="",style="dashed", color="red", weight=0]; 2059[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2059 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2060 -> 1721[label="",style="dashed", color="red", weight=0]; 2060[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2060 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2061 -> 53[label="",style="dashed", color="red", weight=0]; 2061[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2061 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2062 -> 1709[label="",style="dashed", color="red", weight=0]; 2062[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2062 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2063 -> 1710[label="",style="dashed", color="red", weight=0]; 2063[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2063 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2064 -> 1711[label="",style="dashed", color="red", weight=0]; 2064[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2064 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2065 -> 1712[label="",style="dashed", color="red", weight=0]; 2065[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2065 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2066 -> 1713[label="",style="dashed", color="red", weight=0]; 2066[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2066 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2067 -> 1714[label="",style="dashed", color="red", weight=0]; 2067[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2067 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2068 -> 1715[label="",style="dashed", color="red", weight=0]; 2068[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2068 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2069 -> 1716[label="",style="dashed", color="red", weight=0]; 2069[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2069 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2070 -> 1717[label="",style="dashed", color="red", weight=0]; 2070[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2070 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2071 -> 1718[label="",style="dashed", color="red", weight=0]; 2071[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2071 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2072 -> 1719[label="",style="dashed", color="red", weight=0]; 2072[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2072 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2073 -> 1720[label="",style="dashed", color="red", weight=0]; 2073[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2073 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2074 -> 1721[label="",style="dashed", color="red", weight=0]; 2074[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2074 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2075 -> 53[label="",style="dashed", color="red", weight=0]; 2075[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2075 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2076 -> 1713[label="",style="dashed", color="red", weight=0]; 2076[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2076 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2077 -> 1716[label="",style="dashed", color="red", weight=0]; 2077[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2077 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2078 -> 1713[label="",style="dashed", color="red", weight=0]; 2078[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2078 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2079 -> 1716[label="",style="dashed", color="red", weight=0]; 2079[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2079 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2080[label="vyw300",fontsize=16,color="green",shape="box"];2081[label="vyw4000",fontsize=16,color="green",shape="box"];2082[label="vyw300",fontsize=16,color="green",shape="box"];2083[label="vyw4000",fontsize=16,color="green",shape="box"];2084[label="vyw300",fontsize=16,color="green",shape="box"];2085[label="vyw4000",fontsize=16,color="green",shape="box"];2086[label="vyw300",fontsize=16,color="green",shape="box"];2087[label="vyw4000",fontsize=16,color="green",shape="box"];2088[label="vyw300",fontsize=16,color="green",shape="box"];2089[label="vyw4000",fontsize=16,color="green",shape="box"];2090[label="vyw300",fontsize=16,color="green",shape="box"];2091[label="vyw4000",fontsize=16,color="green",shape="box"];2092[label="vyw300",fontsize=16,color="green",shape="box"];2093[label="vyw4000",fontsize=16,color="green",shape="box"];2094[label="vyw300",fontsize=16,color="green",shape="box"];2095[label="vyw4000",fontsize=16,color="green",shape="box"];2096[label="vyw300",fontsize=16,color="green",shape="box"];2097[label="vyw4000",fontsize=16,color="green",shape="box"];2098[label="vyw300",fontsize=16,color="green",shape="box"];2099[label="vyw4000",fontsize=16,color="green",shape="box"];2100[label="vyw300",fontsize=16,color="green",shape="box"];2101[label="vyw4000",fontsize=16,color="green",shape="box"];2102[label="vyw300",fontsize=16,color="green",shape="box"];2103[label="vyw4000",fontsize=16,color="green",shape="box"];2104[label="vyw300",fontsize=16,color="green",shape="box"];2105[label="vyw4000",fontsize=16,color="green",shape="box"];2106[label="vyw300",fontsize=16,color="green",shape="box"];2107[label="vyw4000",fontsize=16,color="green",shape="box"];2108 -> 1925[label="",style="dashed", color="red", weight=0]; 2108[label="vyw300 * vyw4001",fontsize=16,color="magenta"];2108 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2109 -> 1925[label="",style="dashed", color="red", weight=0]; 2109[label="vyw301 * vyw4000",fontsize=16,color="magenta"];2109 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2299[label="",style="dashed", color="magenta", weight=3]; 1700[label="Just vyw18",fontsize=16,color="green",shape="box"];1701[label="Just vyw13",fontsize=16,color="green",shape="box"];1702[label="Just vyw18 == Just vyw13",fontsize=16,color="black",shape="box"];1702 -> 1726[label="",style="solid", color="black", weight=3]; 658[label="vyw14",fontsize=16,color="green",shape="box"];1723[label="True",fontsize=16,color="green",shape="box"];2110[label="compare0 (Just vyw2800) Nothing True",fontsize=16,color="black",shape="box"];2110 -> 2300[label="",style="solid", color="black", weight=3]; 2111[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3656[label="vyw2800/(vyw28000,vyw28001,vyw28002)",fontsize=10,color="white",style="solid",shape="box"];2111 -> 3656[label="",style="solid", color="burlywood", weight=9]; 3656 -> 2301[label="",style="solid", color="burlywood", weight=3]; 2112[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2112 -> 2302[label="",style="solid", color="black", weight=3]; 2113[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3657[label="vyw2800/Left vyw28000",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3657[label="",style="solid", color="burlywood", weight=9]; 3657 -> 2303[label="",style="solid", color="burlywood", weight=3]; 3658[label="vyw2800/Right vyw28000",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3658[label="",style="solid", color="burlywood", weight=9]; 3658 -> 2304[label="",style="solid", color="burlywood", weight=3]; 2114[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2114 -> 2305[label="",style="solid", color="black", weight=3]; 2115[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3659[label="vyw2800/False",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3659[label="",style="solid", color="burlywood", weight=9]; 3659 -> 2306[label="",style="solid", color="burlywood", weight=3]; 3660[label="vyw2800/True",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3660[label="",style="solid", color="burlywood", weight=9]; 3660 -> 2307[label="",style="solid", color="burlywood", weight=3]; 2116[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3661[label="vyw2800/(vyw28000,vyw28001)",fontsize=10,color="white",style="solid",shape="box"];2116 -> 3661[label="",style="solid", color="burlywood", weight=9]; 3661 -> 2308[label="",style="solid", color="burlywood", weight=3]; 2117[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3662[label="vyw2800/LT",fontsize=10,color="white",style="solid",shape="box"];2117 -> 3662[label="",style="solid", color="burlywood", weight=9]; 3662 -> 2309[label="",style="solid", color="burlywood", weight=3]; 3663[label="vyw2800/EQ",fontsize=10,color="white",style="solid",shape="box"];2117 -> 3663[label="",style="solid", color="burlywood", weight=9]; 3663 -> 2310[label="",style="solid", color="burlywood", weight=3]; 3664[label="vyw2800/GT",fontsize=10,color="white",style="solid",shape="box"];2117 -> 3664[label="",style="solid", color="burlywood", weight=9]; 3664 -> 2311[label="",style="solid", color="burlywood", weight=3]; 2118[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3665[label="vyw2800/Nothing",fontsize=10,color="white",style="solid",shape="box"];2118 -> 3665[label="",style="solid", color="burlywood", weight=9]; 3665 -> 2312[label="",style="solid", color="burlywood", weight=3]; 3666[label="vyw2800/Just vyw28000",fontsize=10,color="white",style="solid",shape="box"];2118 -> 3666[label="",style="solid", color="burlywood", weight=9]; 3666 -> 2313[label="",style="solid", color="burlywood", weight=3]; 2119[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2119 -> 2314[label="",style="solid", color="black", weight=3]; 2120[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2120 -> 2315[label="",style="solid", color="black", weight=3]; 2121[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2121 -> 2316[label="",style="solid", color="black", weight=3]; 2122[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2122 -> 2317[label="",style="solid", color="black", weight=3]; 2123[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2123 -> 2318[label="",style="solid", color="black", weight=3]; 2124[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2124 -> 2319[label="",style="solid", color="black", weight=3]; 2125[label="compare1 (Just vyw73) (Just vyw74) False",fontsize=16,color="black",shape="box"];2125 -> 2320[label="",style="solid", color="black", weight=3]; 2126[label="compare1 (Just vyw73) (Just vyw74) True",fontsize=16,color="black",shape="box"];2126 -> 2321[label="",style="solid", color="black", weight=3]; 1724[label="False",fontsize=16,color="green",shape="box"];1725[label="False",fontsize=16,color="green",shape="box"];2127[label="primMulInt vyw300 vyw4001",fontsize=16,color="burlywood",shape="triangle"];3667[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3667[label="",style="solid", color="burlywood", weight=9]; 3667 -> 2322[label="",style="solid", color="burlywood", weight=3]; 3668[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3668[label="",style="solid", color="burlywood", weight=9]; 3668 -> 2323[label="",style="solid", color="burlywood", weight=3]; 2128[label="vyw301",fontsize=16,color="green",shape="box"];2129[label="vyw4000",fontsize=16,color="green",shape="box"];2130[label="vyw300",fontsize=16,color="green",shape="box"];2131[label="vyw4000",fontsize=16,color="green",shape="box"];2132[label="vyw300",fontsize=16,color="green",shape="box"];2133[label="vyw4000",fontsize=16,color="green",shape="box"];2134[label="vyw300",fontsize=16,color="green",shape="box"];2135[label="vyw4000",fontsize=16,color="green",shape="box"];2136[label="vyw300",fontsize=16,color="green",shape="box"];2137[label="vyw4000",fontsize=16,color="green",shape="box"];2138[label="vyw300",fontsize=16,color="green",shape="box"];2139[label="vyw4000",fontsize=16,color="green",shape="box"];2140[label="vyw300",fontsize=16,color="green",shape="box"];2141[label="vyw4000",fontsize=16,color="green",shape="box"];2142[label="vyw300",fontsize=16,color="green",shape="box"];2143[label="vyw4000",fontsize=16,color="green",shape="box"];2144[label="vyw300",fontsize=16,color="green",shape="box"];2145[label="vyw4000",fontsize=16,color="green",shape="box"];2146[label="vyw300",fontsize=16,color="green",shape="box"];2147[label="vyw4000",fontsize=16,color="green",shape="box"];2148[label="vyw300",fontsize=16,color="green",shape="box"];2149[label="vyw4000",fontsize=16,color="green",shape="box"];2150[label="vyw300",fontsize=16,color="green",shape="box"];2151[label="vyw4000",fontsize=16,color="green",shape="box"];2152[label="vyw300",fontsize=16,color="green",shape="box"];2153[label="vyw4000",fontsize=16,color="green",shape="box"];2154[label="vyw300",fontsize=16,color="green",shape="box"];2155[label="vyw4000",fontsize=16,color="green",shape="box"];2156[label="vyw300",fontsize=16,color="green",shape="box"];2157[label="vyw4000",fontsize=16,color="green",shape="box"];2158[label="False",fontsize=16,color="green",shape="box"];2159[label="vyw80",fontsize=16,color="green",shape="box"];2160 -> 1709[label="",style="dashed", color="red", weight=0]; 2160[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2160 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2161 -> 1710[label="",style="dashed", color="red", weight=0]; 2161[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2161 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2162 -> 1711[label="",style="dashed", color="red", weight=0]; 2162[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2162 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2163 -> 1712[label="",style="dashed", color="red", weight=0]; 2163[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2163 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2164 -> 1713[label="",style="dashed", color="red", weight=0]; 2164[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2164 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2165 -> 1714[label="",style="dashed", color="red", weight=0]; 2165[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2165 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2166 -> 1715[label="",style="dashed", color="red", weight=0]; 2166[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2166 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2167 -> 1716[label="",style="dashed", color="red", weight=0]; 2167[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2167 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2168 -> 1717[label="",style="dashed", color="red", weight=0]; 2168[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2168 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2169 -> 1718[label="",style="dashed", color="red", weight=0]; 2169[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2169 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2170 -> 1719[label="",style="dashed", color="red", weight=0]; 2170[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2170 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2171 -> 1720[label="",style="dashed", color="red", weight=0]; 2171[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2171 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2172 -> 1721[label="",style="dashed", color="red", weight=0]; 2172[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2172 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2173 -> 53[label="",style="dashed", color="red", weight=0]; 2173[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2173 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2174 -> 1709[label="",style="dashed", color="red", weight=0]; 2174[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2174 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2175 -> 1710[label="",style="dashed", color="red", weight=0]; 2175[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2175 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2176 -> 1711[label="",style="dashed", color="red", weight=0]; 2176[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2176 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2177 -> 1712[label="",style="dashed", color="red", weight=0]; 2177[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2177 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2178 -> 1713[label="",style="dashed", color="red", weight=0]; 2178[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2178 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2179 -> 1714[label="",style="dashed", color="red", weight=0]; 2179[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2179 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2180 -> 1715[label="",style="dashed", color="red", weight=0]; 2180[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2180 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2181 -> 1716[label="",style="dashed", color="red", weight=0]; 2181[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2181 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2182 -> 1717[label="",style="dashed", color="red", weight=0]; 2182[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2182 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2183 -> 1718[label="",style="dashed", color="red", weight=0]; 2183[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2183 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2184 -> 1719[label="",style="dashed", color="red", weight=0]; 2184[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2184 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2185 -> 1720[label="",style="dashed", color="red", weight=0]; 2185[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2185 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2186 -> 1721[label="",style="dashed", color="red", weight=0]; 2186[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2186 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2187 -> 53[label="",style="dashed", color="red", weight=0]; 2187[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2187 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2188[label="vyw300",fontsize=16,color="green",shape="box"];2189[label="vyw4000",fontsize=16,color="green",shape="box"];2190[label="vyw300",fontsize=16,color="green",shape="box"];2191[label="vyw4000",fontsize=16,color="green",shape="box"];2192[label="vyw300",fontsize=16,color="green",shape="box"];2193[label="vyw4000",fontsize=16,color="green",shape="box"];2194[label="vyw300",fontsize=16,color="green",shape="box"];2195[label="vyw4000",fontsize=16,color="green",shape="box"];2196[label="vyw300",fontsize=16,color="green",shape="box"];2197[label="vyw4000",fontsize=16,color="green",shape="box"];2198[label="vyw300",fontsize=16,color="green",shape="box"];2199[label="vyw4000",fontsize=16,color="green",shape="box"];2200[label="vyw300",fontsize=16,color="green",shape="box"];2201[label="vyw4000",fontsize=16,color="green",shape="box"];2202[label="vyw300",fontsize=16,color="green",shape="box"];2203[label="vyw4000",fontsize=16,color="green",shape="box"];2204[label="vyw300",fontsize=16,color="green",shape="box"];2205[label="vyw4000",fontsize=16,color="green",shape="box"];2206[label="vyw300",fontsize=16,color="green",shape="box"];2207[label="vyw4000",fontsize=16,color="green",shape="box"];2208[label="vyw300",fontsize=16,color="green",shape="box"];2209[label="vyw4000",fontsize=16,color="green",shape="box"];2210[label="vyw300",fontsize=16,color="green",shape="box"];2211[label="vyw4000",fontsize=16,color="green",shape="box"];2212[label="vyw300",fontsize=16,color="green",shape="box"];2213[label="vyw4000",fontsize=16,color="green",shape="box"];2214[label="vyw300",fontsize=16,color="green",shape="box"];2215[label="vyw4000",fontsize=16,color="green",shape="box"];2216[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];2216 -> 2380[label="",style="solid", color="black", weight=3]; 2217[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];2217 -> 2381[label="",style="solid", color="black", weight=3]; 2218[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];2218 -> 2382[label="",style="solid", color="black", weight=3]; 2219[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2219 -> 2383[label="",style="solid", color="black", weight=3]; 2220 -> 1894[label="",style="dashed", color="red", weight=0]; 2220[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2220 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2221[label="False",fontsize=16,color="green",shape="box"];2222[label="False",fontsize=16,color="green",shape="box"];2223[label="True",fontsize=16,color="green",shape="box"];2224[label="False",fontsize=16,color="green",shape="box"];2225[label="True",fontsize=16,color="green",shape="box"];2226 -> 1894[label="",style="dashed", color="red", weight=0]; 2226[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2226 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2227[label="False",fontsize=16,color="green",shape="box"];2228[label="False",fontsize=16,color="green",shape="box"];2229[label="True",fontsize=16,color="green",shape="box"];2230[label="False",fontsize=16,color="green",shape="box"];2231[label="True",fontsize=16,color="green",shape="box"];2232[label="vyw301",fontsize=16,color="green",shape="box"];2233[label="vyw4001",fontsize=16,color="green",shape="box"];2234[label="vyw301",fontsize=16,color="green",shape="box"];2235[label="vyw4001",fontsize=16,color="green",shape="box"];2236[label="vyw301",fontsize=16,color="green",shape="box"];2237[label="vyw4001",fontsize=16,color="green",shape="box"];2238[label="vyw301",fontsize=16,color="green",shape="box"];2239[label="vyw4001",fontsize=16,color="green",shape="box"];2240[label="vyw301",fontsize=16,color="green",shape="box"];2241[label="vyw4001",fontsize=16,color="green",shape="box"];2242[label="vyw301",fontsize=16,color="green",shape="box"];2243[label="vyw4001",fontsize=16,color="green",shape="box"];2244[label="vyw301",fontsize=16,color="green",shape="box"];2245[label="vyw4001",fontsize=16,color="green",shape="box"];2246[label="vyw301",fontsize=16,color="green",shape="box"];2247[label="vyw4001",fontsize=16,color="green",shape="box"];2248[label="vyw301",fontsize=16,color="green",shape="box"];2249[label="vyw4001",fontsize=16,color="green",shape="box"];2250[label="vyw301",fontsize=16,color="green",shape="box"];2251[label="vyw4001",fontsize=16,color="green",shape="box"];2252[label="vyw301",fontsize=16,color="green",shape="box"];2253[label="vyw4001",fontsize=16,color="green",shape="box"];2254[label="vyw301",fontsize=16,color="green",shape="box"];2255[label="vyw4001",fontsize=16,color="green",shape="box"];2256[label="vyw301",fontsize=16,color="green",shape="box"];2257[label="vyw4001",fontsize=16,color="green",shape="box"];2258[label="vyw301",fontsize=16,color="green",shape="box"];2259[label="vyw4001",fontsize=16,color="green",shape="box"];2260[label="vyw300",fontsize=16,color="green",shape="box"];2261[label="vyw4000",fontsize=16,color="green",shape="box"];2262[label="vyw300",fontsize=16,color="green",shape="box"];2263[label="vyw4000",fontsize=16,color="green",shape="box"];2264[label="vyw300",fontsize=16,color="green",shape="box"];2265[label="vyw4000",fontsize=16,color="green",shape="box"];2266[label="vyw300",fontsize=16,color="green",shape="box"];2267[label="vyw4000",fontsize=16,color="green",shape="box"];2268[label="vyw300",fontsize=16,color="green",shape="box"];2269[label="vyw4000",fontsize=16,color="green",shape="box"];2270[label="vyw300",fontsize=16,color="green",shape="box"];2271[label="vyw4000",fontsize=16,color="green",shape="box"];2272[label="vyw300",fontsize=16,color="green",shape="box"];2273[label="vyw4000",fontsize=16,color="green",shape="box"];2274[label="vyw300",fontsize=16,color="green",shape="box"];2275[label="vyw4000",fontsize=16,color="green",shape="box"];2276[label="vyw300",fontsize=16,color="green",shape="box"];2277[label="vyw4000",fontsize=16,color="green",shape="box"];2278[label="vyw300",fontsize=16,color="green",shape="box"];2279[label="vyw4000",fontsize=16,color="green",shape="box"];2280[label="vyw300",fontsize=16,color="green",shape="box"];2281[label="vyw4000",fontsize=16,color="green",shape="box"];2282[label="vyw300",fontsize=16,color="green",shape="box"];2283[label="vyw4000",fontsize=16,color="green",shape="box"];2284[label="vyw300",fontsize=16,color="green",shape="box"];2285[label="vyw4000",fontsize=16,color="green",shape="box"];2286[label="vyw300",fontsize=16,color="green",shape="box"];2287[label="vyw4000",fontsize=16,color="green",shape="box"];2288[label="vyw301",fontsize=16,color="green",shape="box"];2289[label="vyw4001",fontsize=16,color="green",shape="box"];2290[label="vyw301",fontsize=16,color="green",shape="box"];2291[label="vyw4001",fontsize=16,color="green",shape="box"];2292[label="vyw300",fontsize=16,color="green",shape="box"];2293[label="vyw4000",fontsize=16,color="green",shape="box"];2294[label="vyw300",fontsize=16,color="green",shape="box"];2295[label="vyw4000",fontsize=16,color="green",shape="box"];2296[label="vyw300",fontsize=16,color="green",shape="box"];2297[label="vyw4001",fontsize=16,color="green",shape="box"];2298[label="vyw301",fontsize=16,color="green",shape="box"];2299[label="vyw4000",fontsize=16,color="green",shape="box"];1726[label="vyw18 == vyw13",fontsize=16,color="blue",shape="box"];3669[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 1746[label="",style="solid", color="blue", weight=3]; 3670[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 1747[label="",style="solid", color="blue", weight=3]; 3671[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 1748[label="",style="solid", color="blue", weight=3]; 3672[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 1749[label="",style="solid", color="blue", weight=3]; 3673[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 1750[label="",style="solid", color="blue", weight=3]; 3674[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 1751[label="",style="solid", color="blue", weight=3]; 3675[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 1752[label="",style="solid", color="blue", weight=3]; 3676[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3676[label="",style="solid", color="blue", weight=9]; 3676 -> 1753[label="",style="solid", color="blue", weight=3]; 3677[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 1754[label="",style="solid", color="blue", weight=3]; 3678[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 1755[label="",style="solid", color="blue", weight=3]; 3679[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3679[label="",style="solid", color="blue", weight=9]; 3679 -> 1756[label="",style="solid", color="blue", weight=3]; 3680[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3680[label="",style="solid", color="blue", weight=9]; 3680 -> 1757[label="",style="solid", color="blue", weight=3]; 3681[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3681[label="",style="solid", color="blue", weight=9]; 3681 -> 1758[label="",style="solid", color="blue", weight=3]; 3682[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3682[label="",style="solid", color="blue", weight=9]; 3682 -> 1759[label="",style="solid", color="blue", weight=3]; 2300[label="GT",fontsize=16,color="green",shape="box"];2301[label="(vyw28000,vyw28001,vyw28002) <= vyw2900",fontsize=16,color="burlywood",shape="box"];3683[label="vyw2900/(vyw29000,vyw29001,vyw29002)",fontsize=10,color="white",style="solid",shape="box"];2301 -> 3683[label="",style="solid", color="burlywood", weight=9]; 3683 -> 2388[label="",style="solid", color="burlywood", weight=3]; 2302[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2302 -> 2389[label="",style="solid", color="black", weight=3]; 2303[label="Left vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3684[label="vyw2900/Left vyw29000",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3684[label="",style="solid", color="burlywood", weight=9]; 3684 -> 2390[label="",style="solid", color="burlywood", weight=3]; 3685[label="vyw2900/Right vyw29000",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3685[label="",style="solid", color="burlywood", weight=9]; 3685 -> 2391[label="",style="solid", color="burlywood", weight=3]; 2304[label="Right vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3686[label="vyw2900/Left vyw29000",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3686[label="",style="solid", color="burlywood", weight=9]; 3686 -> 2392[label="",style="solid", color="burlywood", weight=3]; 3687[label="vyw2900/Right vyw29000",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3687[label="",style="solid", color="burlywood", weight=9]; 3687 -> 2393[label="",style="solid", color="burlywood", weight=3]; 2305[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2305 -> 2394[label="",style="solid", color="black", weight=3]; 2306[label="False <= vyw2900",fontsize=16,color="burlywood",shape="box"];3688[label="vyw2900/False",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3688[label="",style="solid", color="burlywood", weight=9]; 3688 -> 2395[label="",style="solid", color="burlywood", weight=3]; 3689[label="vyw2900/True",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3689[label="",style="solid", color="burlywood", weight=9]; 3689 -> 2396[label="",style="solid", color="burlywood", weight=3]; 2307[label="True <= vyw2900",fontsize=16,color="burlywood",shape="box"];3690[label="vyw2900/False",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3690[label="",style="solid", color="burlywood", weight=9]; 3690 -> 2397[label="",style="solid", color="burlywood", weight=3]; 3691[label="vyw2900/True",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3691[label="",style="solid", color="burlywood", weight=9]; 3691 -> 2398[label="",style="solid", color="burlywood", weight=3]; 2308[label="(vyw28000,vyw28001) <= vyw2900",fontsize=16,color="burlywood",shape="box"];3692[label="vyw2900/(vyw29000,vyw29001)",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3692[label="",style="solid", color="burlywood", weight=9]; 3692 -> 2399[label="",style="solid", color="burlywood", weight=3]; 2309[label="LT <= vyw2900",fontsize=16,color="burlywood",shape="box"];3693[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3693[label="",style="solid", color="burlywood", weight=9]; 3693 -> 2400[label="",style="solid", color="burlywood", weight=3]; 3694[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3694[label="",style="solid", color="burlywood", weight=9]; 3694 -> 2401[label="",style="solid", color="burlywood", weight=3]; 3695[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3695[label="",style="solid", color="burlywood", weight=9]; 3695 -> 2402[label="",style="solid", color="burlywood", weight=3]; 2310[label="EQ <= vyw2900",fontsize=16,color="burlywood",shape="box"];3696[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2310 -> 3696[label="",style="solid", color="burlywood", weight=9]; 3696 -> 2403[label="",style="solid", color="burlywood", weight=3]; 3697[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2310 -> 3697[label="",style="solid", color="burlywood", weight=9]; 3697 -> 2404[label="",style="solid", color="burlywood", weight=3]; 3698[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2310 -> 3698[label="",style="solid", color="burlywood", weight=9]; 3698 -> 2405[label="",style="solid", color="burlywood", weight=3]; 2311[label="GT <= vyw2900",fontsize=16,color="burlywood",shape="box"];3699[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3699[label="",style="solid", color="burlywood", weight=9]; 3699 -> 2406[label="",style="solid", color="burlywood", weight=3]; 3700[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3700[label="",style="solid", color="burlywood", weight=9]; 3700 -> 2407[label="",style="solid", color="burlywood", weight=3]; 3701[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3701[label="",style="solid", color="burlywood", weight=9]; 3701 -> 2408[label="",style="solid", color="burlywood", weight=3]; 2312[label="Nothing <= vyw2900",fontsize=16,color="burlywood",shape="box"];3702[label="vyw2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3702[label="",style="solid", color="burlywood", weight=9]; 3702 -> 2409[label="",style="solid", color="burlywood", weight=3]; 3703[label="vyw2900/Just vyw29000",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3703[label="",style="solid", color="burlywood", weight=9]; 3703 -> 2410[label="",style="solid", color="burlywood", weight=3]; 2313[label="Just vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3704[label="vyw2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3704[label="",style="solid", color="burlywood", weight=9]; 3704 -> 2411[label="",style="solid", color="burlywood", weight=3]; 3705[label="vyw2900/Just vyw29000",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3705[label="",style="solid", color="burlywood", weight=9]; 3705 -> 2412[label="",style="solid", color="burlywood", weight=3]; 2314[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2314 -> 2413[label="",style="solid", color="black", weight=3]; 2315[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2315 -> 2414[label="",style="solid", color="black", weight=3]; 2316[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2316 -> 2415[label="",style="solid", color="black", weight=3]; 2317[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2317 -> 2416[label="",style="solid", color="black", weight=3]; 2318[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2318 -> 2417[label="",style="solid", color="black", weight=3]; 2319[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2319 -> 2418[label="",style="solid", color="black", weight=3]; 2320[label="compare0 (Just vyw73) (Just vyw74) otherwise",fontsize=16,color="black",shape="box"];2320 -> 2419[label="",style="solid", color="black", weight=3]; 2321[label="LT",fontsize=16,color="green",shape="box"];2322[label="primMulInt (Pos vyw3000) vyw4001",fontsize=16,color="burlywood",shape="box"];3706[label="vyw4001/Pos vyw40010",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3706[label="",style="solid", color="burlywood", weight=9]; 3706 -> 2420[label="",style="solid", color="burlywood", weight=3]; 3707[label="vyw4001/Neg vyw40010",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3707[label="",style="solid", color="burlywood", weight=9]; 3707 -> 2421[label="",style="solid", color="burlywood", weight=3]; 2323[label="primMulInt (Neg vyw3000) vyw4001",fontsize=16,color="burlywood",shape="box"];3708[label="vyw4001/Pos vyw40010",fontsize=10,color="white",style="solid",shape="box"];2323 -> 3708[label="",style="solid", color="burlywood", weight=9]; 3708 -> 2422[label="",style="solid", color="burlywood", weight=3]; 3709[label="vyw4001/Neg vyw40010",fontsize=10,color="white",style="solid",shape="box"];2323 -> 3709[label="",style="solid", color="burlywood", weight=9]; 3709 -> 2423[label="",style="solid", color="burlywood", weight=3]; 2324[label="vyw302",fontsize=16,color="green",shape="box"];2325[label="vyw4002",fontsize=16,color="green",shape="box"];2326[label="vyw302",fontsize=16,color="green",shape="box"];2327[label="vyw4002",fontsize=16,color="green",shape="box"];2328[label="vyw302",fontsize=16,color="green",shape="box"];2329[label="vyw4002",fontsize=16,color="green",shape="box"];2330[label="vyw302",fontsize=16,color="green",shape="box"];2331[label="vyw4002",fontsize=16,color="green",shape="box"];2332[label="vyw302",fontsize=16,color="green",shape="box"];2333[label="vyw4002",fontsize=16,color="green",shape="box"];2334[label="vyw302",fontsize=16,color="green",shape="box"];2335[label="vyw4002",fontsize=16,color="green",shape="box"];2336[label="vyw302",fontsize=16,color="green",shape="box"];2337[label="vyw4002",fontsize=16,color="green",shape="box"];2338[label="vyw302",fontsize=16,color="green",shape="box"];2339[label="vyw4002",fontsize=16,color="green",shape="box"];2340[label="vyw302",fontsize=16,color="green",shape="box"];2341[label="vyw4002",fontsize=16,color="green",shape="box"];2342[label="vyw302",fontsize=16,color="green",shape="box"];2343[label="vyw4002",fontsize=16,color="green",shape="box"];2344[label="vyw302",fontsize=16,color="green",shape="box"];2345[label="vyw4002",fontsize=16,color="green",shape="box"];2346[label="vyw302",fontsize=16,color="green",shape="box"];2347[label="vyw4002",fontsize=16,color="green",shape="box"];2348[label="vyw302",fontsize=16,color="green",shape="box"];2349[label="vyw4002",fontsize=16,color="green",shape="box"];2350[label="vyw302",fontsize=16,color="green",shape="box"];2351[label="vyw4002",fontsize=16,color="green",shape="box"];2352[label="vyw301",fontsize=16,color="green",shape="box"];2353[label="vyw4001",fontsize=16,color="green",shape="box"];2354[label="vyw301",fontsize=16,color="green",shape="box"];2355[label="vyw4001",fontsize=16,color="green",shape="box"];2356[label="vyw301",fontsize=16,color="green",shape="box"];2357[label="vyw4001",fontsize=16,color="green",shape="box"];2358[label="vyw301",fontsize=16,color="green",shape="box"];2359[label="vyw4001",fontsize=16,color="green",shape="box"];2360[label="vyw301",fontsize=16,color="green",shape="box"];2361[label="vyw4001",fontsize=16,color="green",shape="box"];2362[label="vyw301",fontsize=16,color="green",shape="box"];2363[label="vyw4001",fontsize=16,color="green",shape="box"];2364[label="vyw301",fontsize=16,color="green",shape="box"];2365[label="vyw4001",fontsize=16,color="green",shape="box"];2366[label="vyw301",fontsize=16,color="green",shape="box"];2367[label="vyw4001",fontsize=16,color="green",shape="box"];2368[label="vyw301",fontsize=16,color="green",shape="box"];2369[label="vyw4001",fontsize=16,color="green",shape="box"];2370[label="vyw301",fontsize=16,color="green",shape="box"];2371[label="vyw4001",fontsize=16,color="green",shape="box"];2372[label="vyw301",fontsize=16,color="green",shape="box"];2373[label="vyw4001",fontsize=16,color="green",shape="box"];2374[label="vyw301",fontsize=16,color="green",shape="box"];2375[label="vyw4001",fontsize=16,color="green",shape="box"];2376[label="vyw301",fontsize=16,color="green",shape="box"];2377[label="vyw4001",fontsize=16,color="green",shape="box"];2378[label="vyw301",fontsize=16,color="green",shape="box"];2379[label="vyw4001",fontsize=16,color="green",shape="box"];2380 -> 1894[label="",style="dashed", color="red", weight=0]; 2380[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2380 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2381[label="False",fontsize=16,color="green",shape="box"];2382[label="False",fontsize=16,color="green",shape="box"];2383[label="True",fontsize=16,color="green",shape="box"];2384[label="vyw3000",fontsize=16,color="green",shape="box"];2385[label="vyw40000",fontsize=16,color="green",shape="box"];2386[label="vyw3000",fontsize=16,color="green",shape="box"];2387[label="vyw40000",fontsize=16,color="green",shape="box"];1746 -> 1709[label="",style="dashed", color="red", weight=0]; 1746[label="vyw18 == vyw13",fontsize=16,color="magenta"];1746 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1710[label="",style="dashed", color="red", weight=0]; 1747[label="vyw18 == vyw13",fontsize=16,color="magenta"];1747 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1711[label="",style="dashed", color="red", weight=0]; 1748[label="vyw18 == vyw13",fontsize=16,color="magenta"];1748 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1712[label="",style="dashed", color="red", weight=0]; 1749[label="vyw18 == vyw13",fontsize=16,color="magenta"];1749 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1713[label="",style="dashed", color="red", weight=0]; 1750[label="vyw18 == vyw13",fontsize=16,color="magenta"];1750 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1714[label="",style="dashed", color="red", weight=0]; 1751[label="vyw18 == vyw13",fontsize=16,color="magenta"];1751 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1715[label="",style="dashed", color="red", weight=0]; 1752[label="vyw18 == vyw13",fontsize=16,color="magenta"];1752 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1716[label="",style="dashed", color="red", weight=0]; 1753[label="vyw18 == vyw13",fontsize=16,color="magenta"];1753 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1717[label="",style="dashed", color="red", weight=0]; 1754[label="vyw18 == vyw13",fontsize=16,color="magenta"];1754 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1718[label="",style="dashed", color="red", weight=0]; 1755[label="vyw18 == vyw13",fontsize=16,color="magenta"];1755 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1719[label="",style="dashed", color="red", weight=0]; 1756[label="vyw18 == vyw13",fontsize=16,color="magenta"];1756 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1720[label="",style="dashed", color="red", weight=0]; 1757[label="vyw18 == vyw13",fontsize=16,color="magenta"];1757 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1721[label="",style="dashed", color="red", weight=0]; 1758[label="vyw18 == vyw13",fontsize=16,color="magenta"];1758 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1759 -> 53[label="",style="dashed", color="red", weight=0]; 1759[label="vyw18 == vyw13",fontsize=16,color="magenta"];1759 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1815[label="",style="dashed", color="magenta", weight=3]; 2388[label="(vyw28000,vyw28001,vyw28002) <= (vyw29000,vyw29001,vyw29002)",fontsize=16,color="black",shape="box"];2388 -> 2426[label="",style="solid", color="black", weight=3]; 2389 -> 2427[label="",style="dashed", color="red", weight=0]; 2389[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2389 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2390[label="Left vyw28000 <= Left vyw29000",fontsize=16,color="black",shape="box"];2390 -> 2436[label="",style="solid", color="black", weight=3]; 2391[label="Left vyw28000 <= Right vyw29000",fontsize=16,color="black",shape="box"];2391 -> 2437[label="",style="solid", color="black", weight=3]; 2392[label="Right vyw28000 <= Left vyw29000",fontsize=16,color="black",shape="box"];2392 -> 2438[label="",style="solid", color="black", weight=3]; 2393[label="Right vyw28000 <= Right vyw29000",fontsize=16,color="black",shape="box"];2393 -> 2439[label="",style="solid", color="black", weight=3]; 2394 -> 2427[label="",style="dashed", color="red", weight=0]; 2394[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2394 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2395[label="False <= False",fontsize=16,color="black",shape="box"];2395 -> 2440[label="",style="solid", color="black", weight=3]; 2396[label="False <= True",fontsize=16,color="black",shape="box"];2396 -> 2441[label="",style="solid", color="black", weight=3]; 2397[label="True <= False",fontsize=16,color="black",shape="box"];2397 -> 2442[label="",style="solid", color="black", weight=3]; 2398[label="True <= True",fontsize=16,color="black",shape="box"];2398 -> 2443[label="",style="solid", color="black", weight=3]; 2399[label="(vyw28000,vyw28001) <= (vyw29000,vyw29001)",fontsize=16,color="black",shape="box"];2399 -> 2444[label="",style="solid", color="black", weight=3]; 2400[label="LT <= LT",fontsize=16,color="black",shape="box"];2400 -> 2445[label="",style="solid", color="black", weight=3]; 2401[label="LT <= EQ",fontsize=16,color="black",shape="box"];2401 -> 2446[label="",style="solid", color="black", weight=3]; 2402[label="LT <= GT",fontsize=16,color="black",shape="box"];2402 -> 2447[label="",style="solid", color="black", weight=3]; 2403[label="EQ <= LT",fontsize=16,color="black",shape="box"];2403 -> 2448[label="",style="solid", color="black", weight=3]; 2404[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2404 -> 2449[label="",style="solid", color="black", weight=3]; 2405[label="EQ <= GT",fontsize=16,color="black",shape="box"];2405 -> 2450[label="",style="solid", color="black", weight=3]; 2406[label="GT <= LT",fontsize=16,color="black",shape="box"];2406 -> 2451[label="",style="solid", color="black", weight=3]; 2407[label="GT <= EQ",fontsize=16,color="black",shape="box"];2407 -> 2452[label="",style="solid", color="black", weight=3]; 2408[label="GT <= GT",fontsize=16,color="black",shape="box"];2408 -> 2453[label="",style="solid", color="black", weight=3]; 2409[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2409 -> 2454[label="",style="solid", color="black", weight=3]; 2410[label="Nothing <= Just vyw29000",fontsize=16,color="black",shape="box"];2410 -> 2455[label="",style="solid", color="black", weight=3]; 2411[label="Just vyw28000 <= Nothing",fontsize=16,color="black",shape="box"];2411 -> 2456[label="",style="solid", color="black", weight=3]; 2412[label="Just vyw28000 <= Just vyw29000",fontsize=16,color="black",shape="box"];2412 -> 2457[label="",style="solid", color="black", weight=3]; 2413 -> 2427[label="",style="dashed", color="red", weight=0]; 2413[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2413 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2427[label="",style="dashed", color="red", weight=0]; 2414[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2414 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2427[label="",style="dashed", color="red", weight=0]; 2415[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2415 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2427[label="",style="dashed", color="red", weight=0]; 2416[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2416 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2417 -> 2427[label="",style="dashed", color="red", weight=0]; 2417[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2417 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2418 -> 2427[label="",style="dashed", color="red", weight=0]; 2418[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2418 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2419[label="compare0 (Just vyw73) (Just vyw74) True",fontsize=16,color="black",shape="box"];2419 -> 2458[label="",style="solid", color="black", weight=3]; 2420[label="primMulInt (Pos vyw3000) (Pos vyw40010)",fontsize=16,color="black",shape="box"];2420 -> 2459[label="",style="solid", color="black", weight=3]; 2421[label="primMulInt (Pos vyw3000) (Neg vyw40010)",fontsize=16,color="black",shape="box"];2421 -> 2460[label="",style="solid", color="black", weight=3]; 2422[label="primMulInt (Neg vyw3000) (Pos vyw40010)",fontsize=16,color="black",shape="box"];2422 -> 2461[label="",style="solid", color="black", weight=3]; 2423[label="primMulInt (Neg vyw3000) (Neg vyw40010)",fontsize=16,color="black",shape="box"];2423 -> 2462[label="",style="solid", color="black", weight=3]; 2424[label="vyw3000",fontsize=16,color="green",shape="box"];2425[label="vyw40000",fontsize=16,color="green",shape="box"];1788[label="vyw18",fontsize=16,color="green",shape="box"];1789[label="vyw13",fontsize=16,color="green",shape="box"];1790[label="vyw18",fontsize=16,color="green",shape="box"];1791[label="vyw13",fontsize=16,color="green",shape="box"];1792[label="vyw18",fontsize=16,color="green",shape="box"];1793[label="vyw13",fontsize=16,color="green",shape="box"];1794[label="vyw18",fontsize=16,color="green",shape="box"];1795[label="vyw13",fontsize=16,color="green",shape="box"];1796[label="vyw18",fontsize=16,color="green",shape="box"];1797[label="vyw13",fontsize=16,color="green",shape="box"];1798[label="vyw18",fontsize=16,color="green",shape="box"];1799[label="vyw13",fontsize=16,color="green",shape="box"];1800[label="vyw18",fontsize=16,color="green",shape="box"];1801[label="vyw13",fontsize=16,color="green",shape="box"];1802[label="vyw18",fontsize=16,color="green",shape="box"];1803[label="vyw13",fontsize=16,color="green",shape="box"];1804[label="vyw18",fontsize=16,color="green",shape="box"];1805[label="vyw13",fontsize=16,color="green",shape="box"];1806[label="vyw18",fontsize=16,color="green",shape="box"];1807[label="vyw13",fontsize=16,color="green",shape="box"];1808[label="vyw18",fontsize=16,color="green",shape="box"];1809[label="vyw13",fontsize=16,color="green",shape="box"];1810[label="vyw18",fontsize=16,color="green",shape="box"];1811[label="vyw13",fontsize=16,color="green",shape="box"];1812[label="vyw18",fontsize=16,color="green",shape="box"];1813[label="vyw13",fontsize=16,color="green",shape="box"];1814[label="vyw18",fontsize=16,color="green",shape="box"];1815[label="vyw13",fontsize=16,color="green",shape="box"];2426 -> 2534[label="",style="dashed", color="red", weight=0]; 2426[label="vyw28000 < vyw29000 || vyw28000 == vyw29000 && (vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002)",fontsize=16,color="magenta"];2426 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2428 -> 53[label="",style="dashed", color="red", weight=0]; 2428[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2428 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2427[label="not vyw81",fontsize=16,color="burlywood",shape="triangle"];3710[label="vyw81/False",fontsize=10,color="white",style="solid",shape="box"];2427 -> 3710[label="",style="solid", color="burlywood", weight=9]; 3710 -> 2470[label="",style="solid", color="burlywood", weight=3]; 3711[label="vyw81/True",fontsize=10,color="white",style="solid",shape="box"];2427 -> 3711[label="",style="solid", color="burlywood", weight=9]; 3711 -> 2471[label="",style="solid", color="burlywood", weight=3]; 2436[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3712[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 2472[label="",style="solid", color="blue", weight=3]; 3713[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 2473[label="",style="solid", color="blue", weight=3]; 3714[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 2474[label="",style="solid", color="blue", weight=3]; 3715[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 2475[label="",style="solid", color="blue", weight=3]; 3716[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 2476[label="",style="solid", color="blue", weight=3]; 3717[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 2477[label="",style="solid", color="blue", weight=3]; 3718[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 2478[label="",style="solid", color="blue", weight=3]; 3719[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 2479[label="",style="solid", color="blue", weight=3]; 3720[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 2480[label="",style="solid", color="blue", weight=3]; 3721[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 2481[label="",style="solid", color="blue", weight=3]; 3722[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 2482[label="",style="solid", color="blue", weight=3]; 3723[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 2483[label="",style="solid", color="blue", weight=3]; 3724[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3724[label="",style="solid", color="blue", weight=9]; 3724 -> 2484[label="",style="solid", color="blue", weight=3]; 3725[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3725[label="",style="solid", color="blue", weight=9]; 3725 -> 2485[label="",style="solid", color="blue", weight=3]; 2437[label="True",fontsize=16,color="green",shape="box"];2438[label="False",fontsize=16,color="green",shape="box"];2439[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3726[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 2486[label="",style="solid", color="blue", weight=3]; 3727[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 2487[label="",style="solid", color="blue", weight=3]; 3728[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 2488[label="",style="solid", color="blue", weight=3]; 3729[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 2489[label="",style="solid", color="blue", weight=3]; 3730[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 2490[label="",style="solid", color="blue", weight=3]; 3731[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3731[label="",style="solid", color="blue", weight=9]; 3731 -> 2491[label="",style="solid", color="blue", weight=3]; 3732[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3732[label="",style="solid", color="blue", weight=9]; 3732 -> 2492[label="",style="solid", color="blue", weight=3]; 3733[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3733[label="",style="solid", color="blue", weight=9]; 3733 -> 2493[label="",style="solid", color="blue", weight=3]; 3734[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 2494[label="",style="solid", color="blue", weight=3]; 3735[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 2495[label="",style="solid", color="blue", weight=3]; 3736[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 2496[label="",style="solid", color="blue", weight=3]; 3737[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 2497[label="",style="solid", color="blue", weight=3]; 3738[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 2498[label="",style="solid", color="blue", weight=3]; 3739[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 2499[label="",style="solid", color="blue", weight=3]; 2429 -> 53[label="",style="dashed", color="red", weight=0]; 2429[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2429 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2440[label="True",fontsize=16,color="green",shape="box"];2441[label="True",fontsize=16,color="green",shape="box"];2442[label="False",fontsize=16,color="green",shape="box"];2443[label="True",fontsize=16,color="green",shape="box"];2444 -> 2534[label="",style="dashed", color="red", weight=0]; 2444[label="vyw28000 < vyw29000 || vyw28000 == vyw29000 && vyw28001 <= vyw29001",fontsize=16,color="magenta"];2444 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2445[label="True",fontsize=16,color="green",shape="box"];2446[label="True",fontsize=16,color="green",shape="box"];2447[label="True",fontsize=16,color="green",shape="box"];2448[label="False",fontsize=16,color="green",shape="box"];2449[label="True",fontsize=16,color="green",shape="box"];2450[label="True",fontsize=16,color="green",shape="box"];2451[label="False",fontsize=16,color="green",shape="box"];2452[label="False",fontsize=16,color="green",shape="box"];2453[label="True",fontsize=16,color="green",shape="box"];2454[label="True",fontsize=16,color="green",shape="box"];2455[label="True",fontsize=16,color="green",shape="box"];2456[label="False",fontsize=16,color="green",shape="box"];2457[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3740[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 2502[label="",style="solid", color="blue", weight=3]; 3741[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 2503[label="",style="solid", color="blue", weight=3]; 3742[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 2504[label="",style="solid", color="blue", weight=3]; 3743[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 2505[label="",style="solid", color="blue", weight=3]; 3744[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 2506[label="",style="solid", color="blue", weight=3]; 3745[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 2507[label="",style="solid", color="blue", weight=3]; 3746[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 2508[label="",style="solid", color="blue", weight=3]; 3747[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 2509[label="",style="solid", color="blue", weight=3]; 3748[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 2510[label="",style="solid", color="blue", weight=3]; 3749[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 2511[label="",style="solid", color="blue", weight=3]; 3750[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 2512[label="",style="solid", color="blue", weight=3]; 3751[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 2513[label="",style="solid", color="blue", weight=3]; 3752[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 2514[label="",style="solid", color="blue", weight=3]; 3753[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 2515[label="",style="solid", color="blue", weight=3]; 2430 -> 53[label="",style="dashed", color="red", weight=0]; 2430[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2430 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2431 -> 53[label="",style="dashed", color="red", weight=0]; 2431[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2431 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2432 -> 53[label="",style="dashed", color="red", weight=0]; 2432[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2432 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2433 -> 53[label="",style="dashed", color="red", weight=0]; 2433[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2433 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2434 -> 53[label="",style="dashed", color="red", weight=0]; 2434[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2434 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2435 -> 53[label="",style="dashed", color="red", weight=0]; 2435[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2435 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2458[label="GT",fontsize=16,color="green",shape="box"];2459[label="Pos (primMulNat vyw3000 vyw40010)",fontsize=16,color="green",shape="box"];2459 -> 2528[label="",style="dashed", color="green", weight=3]; 2460[label="Neg (primMulNat vyw3000 vyw40010)",fontsize=16,color="green",shape="box"];2460 -> 2529[label="",style="dashed", color="green", weight=3]; 2461[label="Neg (primMulNat vyw3000 vyw40010)",fontsize=16,color="green",shape="box"];2461 -> 2530[label="",style="dashed", color="green", weight=3]; 2462[label="Pos (primMulNat vyw3000 vyw40010)",fontsize=16,color="green",shape="box"];2462 -> 2531[label="",style="dashed", color="green", weight=3]; 2535[label="vyw28000 < vyw29000",fontsize=16,color="blue",shape="box"];3754[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 2543[label="",style="solid", color="blue", weight=3]; 3755[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 2544[label="",style="solid", color="blue", weight=3]; 3756[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 2545[label="",style="solid", color="blue", weight=3]; 3757[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3757[label="",style="solid", color="blue", weight=9]; 3757 -> 2546[label="",style="solid", color="blue", weight=3]; 3758[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3758[label="",style="solid", color="blue", weight=9]; 3758 -> 2547[label="",style="solid", color="blue", weight=3]; 3759[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3759[label="",style="solid", color="blue", weight=9]; 3759 -> 2548[label="",style="solid", color="blue", weight=3]; 3760[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3760[label="",style="solid", color="blue", weight=9]; 3760 -> 2549[label="",style="solid", color="blue", weight=3]; 3761[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3761[label="",style="solid", color="blue", weight=9]; 3761 -> 2550[label="",style="solid", color="blue", weight=3]; 3762[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3762[label="",style="solid", color="blue", weight=9]; 3762 -> 2551[label="",style="solid", color="blue", weight=3]; 3763[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3763[label="",style="solid", color="blue", weight=9]; 3763 -> 2552[label="",style="solid", color="blue", weight=3]; 3764[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3764[label="",style="solid", color="blue", weight=9]; 3764 -> 2553[label="",style="solid", color="blue", weight=3]; 3765[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3765[label="",style="solid", color="blue", weight=9]; 3765 -> 2554[label="",style="solid", color="blue", weight=3]; 3766[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3766[label="",style="solid", color="blue", weight=9]; 3766 -> 2555[label="",style="solid", color="blue", weight=3]; 3767[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2535 -> 3767[label="",style="solid", color="blue", weight=9]; 3767 -> 2556[label="",style="solid", color="blue", weight=3]; 2536 -> 1929[label="",style="dashed", color="red", weight=0]; 2536[label="vyw28000 == vyw29000 && (vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002)",fontsize=16,color="magenta"];2536 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2534[label="vyw87 || vyw88",fontsize=16,color="burlywood",shape="triangle"];3768[label="vyw87/False",fontsize=10,color="white",style="solid",shape="box"];2534 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 2559[label="",style="solid", color="burlywood", weight=3]; 3769[label="vyw87/True",fontsize=10,color="white",style="solid",shape="box"];2534 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 2560[label="",style="solid", color="burlywood", weight=3]; 2468[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2468 -> 2561[label="",style="solid", color="black", weight=3]; 2469[label="GT",fontsize=16,color="green",shape="box"];2470[label="not False",fontsize=16,color="black",shape="box"];2470 -> 2562[label="",style="solid", color="black", weight=3]; 2471[label="not True",fontsize=16,color="black",shape="box"];2471 -> 2563[label="",style="solid", color="black", weight=3]; 2472 -> 2111[label="",style="dashed", color="red", weight=0]; 2472[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2472 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2112[label="",style="dashed", color="red", weight=0]; 2473[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2473 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2113[label="",style="dashed", color="red", weight=0]; 2474[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2474 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2114[label="",style="dashed", color="red", weight=0]; 2475[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2475 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2115[label="",style="dashed", color="red", weight=0]; 2476[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2476 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2116[label="",style="dashed", color="red", weight=0]; 2477[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2477 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2117[label="",style="dashed", color="red", weight=0]; 2478[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2478 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2118[label="",style="dashed", color="red", weight=0]; 2479[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2479 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2119[label="",style="dashed", color="red", weight=0]; 2480[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2480 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2120[label="",style="dashed", color="red", weight=0]; 2481[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2481 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2121[label="",style="dashed", color="red", weight=0]; 2482[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2482 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2122[label="",style="dashed", color="red", weight=0]; 2483[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2483 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2123[label="",style="dashed", color="red", weight=0]; 2484[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2484 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2124[label="",style="dashed", color="red", weight=0]; 2485[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2485 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2111[label="",style="dashed", color="red", weight=0]; 2486[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2486 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2112[label="",style="dashed", color="red", weight=0]; 2487[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2487 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2113[label="",style="dashed", color="red", weight=0]; 2488[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2488 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2114[label="",style="dashed", color="red", weight=0]; 2489[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2489 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2115[label="",style="dashed", color="red", weight=0]; 2490[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2490 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2116[label="",style="dashed", color="red", weight=0]; 2491[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2491 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2117[label="",style="dashed", color="red", weight=0]; 2492[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2492 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2118[label="",style="dashed", color="red", weight=0]; 2493[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2493 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2119[label="",style="dashed", color="red", weight=0]; 2494[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2494 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2120[label="",style="dashed", color="red", weight=0]; 2495[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2495 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2121[label="",style="dashed", color="red", weight=0]; 2496[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2496 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2122[label="",style="dashed", color="red", weight=0]; 2497[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2497 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2123[label="",style="dashed", color="red", weight=0]; 2498[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2498 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2124[label="",style="dashed", color="red", weight=0]; 2499[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2499 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2500[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3770[label="vyw2800/vyw28000 : vyw28001",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 2620[label="",style="solid", color="burlywood", weight=3]; 3771[label="vyw2800/[]",fontsize=10,color="white",style="solid",shape="box"];2500 -> 3771[label="",style="solid", color="burlywood", weight=9]; 3771 -> 2621[label="",style="solid", color="burlywood", weight=3]; 2501[label="GT",fontsize=16,color="green",shape="box"];2537[label="vyw28000 < vyw29000",fontsize=16,color="blue",shape="box"];3772[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 2622[label="",style="solid", color="blue", weight=3]; 3773[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 2623[label="",style="solid", color="blue", weight=3]; 3774[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 2624[label="",style="solid", color="blue", weight=3]; 3775[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 2625[label="",style="solid", color="blue", weight=3]; 3776[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3776[label="",style="solid", color="blue", weight=9]; 3776 -> 2626[label="",style="solid", color="blue", weight=3]; 3777[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3777[label="",style="solid", color="blue", weight=9]; 3777 -> 2627[label="",style="solid", color="blue", weight=3]; 3778[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 2628[label="",style="solid", color="blue", weight=3]; 3779[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3779[label="",style="solid", color="blue", weight=9]; 3779 -> 2629[label="",style="solid", color="blue", weight=3]; 3780[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 2630[label="",style="solid", color="blue", weight=3]; 3781[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 2631[label="",style="solid", color="blue", weight=3]; 3782[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 2632[label="",style="solid", color="blue", weight=3]; 3783[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 2633[label="",style="solid", color="blue", weight=3]; 3784[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 2634[label="",style="solid", color="blue", weight=3]; 3785[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 2635[label="",style="solid", color="blue", weight=3]; 2538 -> 1929[label="",style="dashed", color="red", weight=0]; 2538[label="vyw28000 == vyw29000 && vyw28001 <= vyw29001",fontsize=16,color="magenta"];2538 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2111[label="",style="dashed", color="red", weight=0]; 2502[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2502 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2112[label="",style="dashed", color="red", weight=0]; 2503[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2503 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2113[label="",style="dashed", color="red", weight=0]; 2504[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2504 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2114[label="",style="dashed", color="red", weight=0]; 2505[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2505 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2506 -> 2115[label="",style="dashed", color="red", weight=0]; 2506[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2506 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2506 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2116[label="",style="dashed", color="red", weight=0]; 2507[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2507 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2117[label="",style="dashed", color="red", weight=0]; 2508[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2508 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2118[label="",style="dashed", color="red", weight=0]; 2509[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2509 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2119[label="",style="dashed", color="red", weight=0]; 2510[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2510 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2120[label="",style="dashed", color="red", weight=0]; 2511[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2511 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2121[label="",style="dashed", color="red", weight=0]; 2512[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2512 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2122[label="",style="dashed", color="red", weight=0]; 2513[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2513 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2123[label="",style="dashed", color="red", weight=0]; 2514[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2514 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2124[label="",style="dashed", color="red", weight=0]; 2515[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2515 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2516[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3786[label="vyw2800/vyw28000 :% vyw28001",fontsize=10,color="white",style="solid",shape="box"];2516 -> 3786[label="",style="solid", color="burlywood", weight=9]; 3786 -> 2666[label="",style="solid", color="burlywood", weight=3]; 2517[label="GT",fontsize=16,color="green",shape="box"];2518[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2518 -> 2667[label="",style="solid", color="black", weight=3]; 2519[label="GT",fontsize=16,color="green",shape="box"];2520[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2520 -> 2668[label="",style="solid", color="black", weight=3]; 2521[label="GT",fontsize=16,color="green",shape="box"];2522[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3787[label="vyw2800/Integer vyw28000",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 2669[label="",style="solid", color="burlywood", weight=3]; 2523[label="GT",fontsize=16,color="green",shape="box"];2524[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2524 -> 2670[label="",style="solid", color="black", weight=3]; 2525[label="GT",fontsize=16,color="green",shape="box"];2526[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3788[label="vyw2800/()",fontsize=10,color="white",style="solid",shape="box"];2526 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 2671[label="",style="solid", color="burlywood", weight=3]; 2527[label="GT",fontsize=16,color="green",shape="box"];2528[label="primMulNat vyw3000 vyw40010",fontsize=16,color="burlywood",shape="triangle"];3789[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 2672[label="",style="solid", color="burlywood", weight=3]; 3790[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3790[label="",style="solid", color="burlywood", weight=9]; 3790 -> 2673[label="",style="solid", color="burlywood", weight=3]; 2529 -> 2528[label="",style="dashed", color="red", weight=0]; 2529[label="primMulNat vyw3000 vyw40010",fontsize=16,color="magenta"];2529 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2528[label="",style="dashed", color="red", weight=0]; 2530[label="primMulNat vyw3000 vyw40010",fontsize=16,color="magenta"];2530 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2528[label="",style="dashed", color="red", weight=0]; 2531[label="primMulNat vyw3000 vyw40010",fontsize=16,color="magenta"];2531 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2543[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2543 -> 2678[label="",style="solid", color="black", weight=3]; 2544[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2544 -> 2679[label="",style="solid", color="black", weight=3]; 2545[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2545 -> 2680[label="",style="solid", color="black", weight=3]; 2546[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2546 -> 2681[label="",style="solid", color="black", weight=3]; 2547[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2547 -> 2682[label="",style="solid", color="black", weight=3]; 2548[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2548 -> 2683[label="",style="solid", color="black", weight=3]; 2549[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2549 -> 2684[label="",style="solid", color="black", weight=3]; 2550[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2550 -> 2685[label="",style="solid", color="black", weight=3]; 2551[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2551 -> 2686[label="",style="solid", color="black", weight=3]; 2552[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2552 -> 2687[label="",style="solid", color="black", weight=3]; 2553[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2553 -> 2688[label="",style="solid", color="black", weight=3]; 2554[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2554 -> 2689[label="",style="solid", color="black", weight=3]; 2555[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2555 -> 2690[label="",style="solid", color="black", weight=3]; 2556[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2556 -> 2691[label="",style="solid", color="black", weight=3]; 2557 -> 2534[label="",style="dashed", color="red", weight=0]; 2557[label="vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002",fontsize=16,color="magenta"];2557 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2557 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2558[label="vyw28000 == vyw29000",fontsize=16,color="blue",shape="box"];3791[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 2694[label="",style="solid", color="blue", weight=3]; 3792[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 2695[label="",style="solid", color="blue", weight=3]; 3793[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 2696[label="",style="solid", color="blue", weight=3]; 3794[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 2697[label="",style="solid", color="blue", weight=3]; 3795[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 2698[label="",style="solid", color="blue", weight=3]; 3796[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 2699[label="",style="solid", color="blue", weight=3]; 3797[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3797[label="",style="solid", color="blue", weight=9]; 3797 -> 2700[label="",style="solid", color="blue", weight=3]; 3798[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3798[label="",style="solid", color="blue", weight=9]; 3798 -> 2701[label="",style="solid", color="blue", weight=3]; 3799[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3799[label="",style="solid", color="blue", weight=9]; 3799 -> 2702[label="",style="solid", color="blue", weight=3]; 3800[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3800[label="",style="solid", color="blue", weight=9]; 3800 -> 2703[label="",style="solid", color="blue", weight=3]; 3801[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 2704[label="",style="solid", color="blue", weight=3]; 3802[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 2705[label="",style="solid", color="blue", weight=3]; 3803[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 2706[label="",style="solid", color="blue", weight=3]; 3804[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2558 -> 3804[label="",style="solid", color="blue", weight=9]; 3804 -> 2707[label="",style="solid", color="blue", weight=3]; 2559[label="False || vyw88",fontsize=16,color="black",shape="box"];2559 -> 2708[label="",style="solid", color="black", weight=3]; 2560[label="True || vyw88",fontsize=16,color="black",shape="box"];2560 -> 2709[label="",style="solid", color="black", weight=3]; 2561[label="primCmpDouble vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3805[label="vyw2800/Double vyw28000 vyw28001",fontsize=10,color="white",style="solid",shape="box"];2561 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 2710[label="",style="solid", color="burlywood", weight=3]; 2562[label="True",fontsize=16,color="green",shape="box"];2563[label="False",fontsize=16,color="green",shape="box"];2564[label="vyw28000",fontsize=16,color="green",shape="box"];2565[label="vyw29000",fontsize=16,color="green",shape="box"];2566[label="vyw28000",fontsize=16,color="green",shape="box"];2567[label="vyw29000",fontsize=16,color="green",shape="box"];2568[label="vyw28000",fontsize=16,color="green",shape="box"];2569[label="vyw29000",fontsize=16,color="green",shape="box"];2570[label="vyw28000",fontsize=16,color="green",shape="box"];2571[label="vyw29000",fontsize=16,color="green",shape="box"];2572[label="vyw28000",fontsize=16,color="green",shape="box"];2573[label="vyw29000",fontsize=16,color="green",shape="box"];2574[label="vyw28000",fontsize=16,color="green",shape="box"];2575[label="vyw29000",fontsize=16,color="green",shape="box"];2576[label="vyw28000",fontsize=16,color="green",shape="box"];2577[label="vyw29000",fontsize=16,color="green",shape="box"];2578[label="vyw28000",fontsize=16,color="green",shape="box"];2579[label="vyw29000",fontsize=16,color="green",shape="box"];2580[label="vyw28000",fontsize=16,color="green",shape="box"];2581[label="vyw29000",fontsize=16,color="green",shape="box"];2582[label="vyw28000",fontsize=16,color="green",shape="box"];2583[label="vyw29000",fontsize=16,color="green",shape="box"];2584[label="vyw28000",fontsize=16,color="green",shape="box"];2585[label="vyw29000",fontsize=16,color="green",shape="box"];2586[label="vyw28000",fontsize=16,color="green",shape="box"];2587[label="vyw29000",fontsize=16,color="green",shape="box"];2588[label="vyw28000",fontsize=16,color="green",shape="box"];2589[label="vyw29000",fontsize=16,color="green",shape="box"];2590[label="vyw28000",fontsize=16,color="green",shape="box"];2591[label="vyw29000",fontsize=16,color="green",shape="box"];2592[label="vyw28000",fontsize=16,color="green",shape="box"];2593[label="vyw29000",fontsize=16,color="green",shape="box"];2594[label="vyw28000",fontsize=16,color="green",shape="box"];2595[label="vyw29000",fontsize=16,color="green",shape="box"];2596[label="vyw28000",fontsize=16,color="green",shape="box"];2597[label="vyw29000",fontsize=16,color="green",shape="box"];2598[label="vyw28000",fontsize=16,color="green",shape="box"];2599[label="vyw29000",fontsize=16,color="green",shape="box"];2600[label="vyw28000",fontsize=16,color="green",shape="box"];2601[label="vyw29000",fontsize=16,color="green",shape="box"];2602[label="vyw28000",fontsize=16,color="green",shape="box"];2603[label="vyw29000",fontsize=16,color="green",shape="box"];2604[label="vyw28000",fontsize=16,color="green",shape="box"];2605[label="vyw29000",fontsize=16,color="green",shape="box"];2606[label="vyw28000",fontsize=16,color="green",shape="box"];2607[label="vyw29000",fontsize=16,color="green",shape="box"];2608[label="vyw28000",fontsize=16,color="green",shape="box"];2609[label="vyw29000",fontsize=16,color="green",shape="box"];2610[label="vyw28000",fontsize=16,color="green",shape="box"];2611[label="vyw29000",fontsize=16,color="green",shape="box"];2612[label="vyw28000",fontsize=16,color="green",shape="box"];2613[label="vyw29000",fontsize=16,color="green",shape="box"];2614[label="vyw28000",fontsize=16,color="green",shape="box"];2615[label="vyw29000",fontsize=16,color="green",shape="box"];2616[label="vyw28000",fontsize=16,color="green",shape="box"];2617[label="vyw29000",fontsize=16,color="green",shape="box"];2618[label="vyw28000",fontsize=16,color="green",shape="box"];2619[label="vyw29000",fontsize=16,color="green",shape="box"];2620[label="compare (vyw28000 : vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3806[label="vyw2900/vyw29000 : vyw29001",fontsize=10,color="white",style="solid",shape="box"];2620 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 2711[label="",style="solid", color="burlywood", weight=3]; 3807[label="vyw2900/[]",fontsize=10,color="white",style="solid",shape="box"];2620 -> 3807[label="",style="solid", color="burlywood", weight=9]; 3807 -> 2712[label="",style="solid", color="burlywood", weight=3]; 2621[label="compare [] vyw2900",fontsize=16,color="burlywood",shape="box"];3808[label="vyw2900/vyw29000 : vyw29001",fontsize=10,color="white",style="solid",shape="box"];2621 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 2713[label="",style="solid", color="burlywood", weight=3]; 3809[label="vyw2900/[]",fontsize=10,color="white",style="solid",shape="box"];2621 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 2714[label="",style="solid", color="burlywood", weight=3]; 2622 -> 2543[label="",style="dashed", color="red", weight=0]; 2622[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2622 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2544[label="",style="dashed", color="red", weight=0]; 2623[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2623 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2545[label="",style="dashed", color="red", weight=0]; 2624[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2624 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2546[label="",style="dashed", color="red", weight=0]; 2625[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2625 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2547[label="",style="dashed", color="red", weight=0]; 2626[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2626 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2548[label="",style="dashed", color="red", weight=0]; 2627[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2627 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2549[label="",style="dashed", color="red", weight=0]; 2628[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2628 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2550[label="",style="dashed", color="red", weight=0]; 2629[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2629 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2551[label="",style="dashed", color="red", weight=0]; 2630[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2630 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2552[label="",style="dashed", color="red", weight=0]; 2631[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2631 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2553[label="",style="dashed", color="red", weight=0]; 2632[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2632 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2554[label="",style="dashed", color="red", weight=0]; 2633[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2633 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2555[label="",style="dashed", color="red", weight=0]; 2634[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2634 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2556[label="",style="dashed", color="red", weight=0]; 2635[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2635 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2636[label="vyw28001 <= vyw29001",fontsize=16,color="blue",shape="box"];3810[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3810[label="",style="solid", color="blue", weight=9]; 3810 -> 2743[label="",style="solid", color="blue", weight=3]; 3811[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3811[label="",style="solid", color="blue", weight=9]; 3811 -> 2744[label="",style="solid", color="blue", weight=3]; 3812[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3812[label="",style="solid", color="blue", weight=9]; 3812 -> 2745[label="",style="solid", color="blue", weight=3]; 3813[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3813[label="",style="solid", color="blue", weight=9]; 3813 -> 2746[label="",style="solid", color="blue", weight=3]; 3814[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3814[label="",style="solid", color="blue", weight=9]; 3814 -> 2747[label="",style="solid", color="blue", weight=3]; 3815[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3815[label="",style="solid", color="blue", weight=9]; 3815 -> 2748[label="",style="solid", color="blue", weight=3]; 3816[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3816[label="",style="solid", color="blue", weight=9]; 3816 -> 2749[label="",style="solid", color="blue", weight=3]; 3817[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3817[label="",style="solid", color="blue", weight=9]; 3817 -> 2750[label="",style="solid", color="blue", weight=3]; 3818[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3818[label="",style="solid", color="blue", weight=9]; 3818 -> 2751[label="",style="solid", color="blue", weight=3]; 3819[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3819[label="",style="solid", color="blue", weight=9]; 3819 -> 2752[label="",style="solid", color="blue", weight=3]; 3820[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3820[label="",style="solid", color="blue", weight=9]; 3820 -> 2753[label="",style="solid", color="blue", weight=3]; 3821[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 2754[label="",style="solid", color="blue", weight=3]; 3822[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 2755[label="",style="solid", color="blue", weight=3]; 3823[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 3823[label="",style="solid", color="blue", weight=9]; 3823 -> 2756[label="",style="solid", color="blue", weight=3]; 2637[label="vyw28000 == vyw29000",fontsize=16,color="blue",shape="box"];3824[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3824[label="",style="solid", color="blue", weight=9]; 3824 -> 2757[label="",style="solid", color="blue", weight=3]; 3825[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3825[label="",style="solid", color="blue", weight=9]; 3825 -> 2758[label="",style="solid", color="blue", weight=3]; 3826[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3826[label="",style="solid", color="blue", weight=9]; 3826 -> 2759[label="",style="solid", color="blue", weight=3]; 3827[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3827[label="",style="solid", color="blue", weight=9]; 3827 -> 2760[label="",style="solid", color="blue", weight=3]; 3828[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3828[label="",style="solid", color="blue", weight=9]; 3828 -> 2761[label="",style="solid", color="blue", weight=3]; 3829[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3829[label="",style="solid", color="blue", weight=9]; 3829 -> 2762[label="",style="solid", color="blue", weight=3]; 3830[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3830[label="",style="solid", color="blue", weight=9]; 3830 -> 2763[label="",style="solid", color="blue", weight=3]; 3831[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3831[label="",style="solid", color="blue", weight=9]; 3831 -> 2764[label="",style="solid", color="blue", weight=3]; 3832[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3832[label="",style="solid", color="blue", weight=9]; 3832 -> 2765[label="",style="solid", color="blue", weight=3]; 3833[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3833[label="",style="solid", color="blue", weight=9]; 3833 -> 2766[label="",style="solid", color="blue", weight=3]; 3834[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3834[label="",style="solid", color="blue", weight=9]; 3834 -> 2767[label="",style="solid", color="blue", weight=3]; 3835[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3835[label="",style="solid", color="blue", weight=9]; 3835 -> 2768[label="",style="solid", color="blue", weight=3]; 3836[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3836[label="",style="solid", color="blue", weight=9]; 3836 -> 2769[label="",style="solid", color="blue", weight=3]; 3837[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 3837[label="",style="solid", color="blue", weight=9]; 3837 -> 2770[label="",style="solid", color="blue", weight=3]; 2638[label="vyw28000",fontsize=16,color="green",shape="box"];2639[label="vyw29000",fontsize=16,color="green",shape="box"];2640[label="vyw28000",fontsize=16,color="green",shape="box"];2641[label="vyw29000",fontsize=16,color="green",shape="box"];2642[label="vyw28000",fontsize=16,color="green",shape="box"];2643[label="vyw29000",fontsize=16,color="green",shape="box"];2644[label="vyw28000",fontsize=16,color="green",shape="box"];2645[label="vyw29000",fontsize=16,color="green",shape="box"];2646[label="vyw28000",fontsize=16,color="green",shape="box"];2647[label="vyw29000",fontsize=16,color="green",shape="box"];2648[label="vyw28000",fontsize=16,color="green",shape="box"];2649[label="vyw29000",fontsize=16,color="green",shape="box"];2650[label="vyw28000",fontsize=16,color="green",shape="box"];2651[label="vyw29000",fontsize=16,color="green",shape="box"];2652[label="vyw28000",fontsize=16,color="green",shape="box"];2653[label="vyw29000",fontsize=16,color="green",shape="box"];2654[label="vyw28000",fontsize=16,color="green",shape="box"];2655[label="vyw29000",fontsize=16,color="green",shape="box"];2656[label="vyw28000",fontsize=16,color="green",shape="box"];2657[label="vyw29000",fontsize=16,color="green",shape="box"];2658[label="vyw28000",fontsize=16,color="green",shape="box"];2659[label="vyw29000",fontsize=16,color="green",shape="box"];2660[label="vyw28000",fontsize=16,color="green",shape="box"];2661[label="vyw29000",fontsize=16,color="green",shape="box"];2662[label="vyw28000",fontsize=16,color="green",shape="box"];2663[label="vyw29000",fontsize=16,color="green",shape="box"];2664[label="vyw28000",fontsize=16,color="green",shape="box"];2665[label="vyw29000",fontsize=16,color="green",shape="box"];2666[label="compare (vyw28000 :% vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3838[label="vyw2900/vyw29000 :% vyw29001",fontsize=10,color="white",style="solid",shape="box"];2666 -> 3838[label="",style="solid", color="burlywood", weight=9]; 3838 -> 2771[label="",style="solid", color="burlywood", weight=3]; 2667[label="primCmpFloat vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3839[label="vyw2800/Float vyw28000 vyw28001",fontsize=10,color="white",style="solid",shape="box"];2667 -> 3839[label="",style="solid", color="burlywood", weight=9]; 3839 -> 2772[label="",style="solid", color="burlywood", weight=3]; 2668[label="primCmpChar vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3840[label="vyw2800/Char vyw28000",fontsize=10,color="white",style="solid",shape="box"];2668 -> 3840[label="",style="solid", color="burlywood", weight=9]; 3840 -> 2773[label="",style="solid", color="burlywood", weight=3]; 2669[label="compare (Integer vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3841[label="vyw2900/Integer vyw29000",fontsize=10,color="white",style="solid",shape="box"];2669 -> 3841[label="",style="solid", color="burlywood", weight=9]; 3841 -> 2774[label="",style="solid", color="burlywood", weight=3]; 2670[label="primCmpInt vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3842[label="vyw2800/Pos vyw28000",fontsize=10,color="white",style="solid",shape="box"];2670 -> 3842[label="",style="solid", color="burlywood", weight=9]; 3842 -> 2775[label="",style="solid", color="burlywood", weight=3]; 3843[label="vyw2800/Neg vyw28000",fontsize=10,color="white",style="solid",shape="box"];2670 -> 3843[label="",style="solid", color="burlywood", weight=9]; 3843 -> 2776[label="",style="solid", color="burlywood", weight=3]; 2671[label="compare () vyw2900",fontsize=16,color="burlywood",shape="box"];3844[label="vyw2900/()",fontsize=10,color="white",style="solid",shape="box"];2671 -> 3844[label="",style="solid", color="burlywood", weight=9]; 3844 -> 2777[label="",style="solid", color="burlywood", weight=3]; 2672[label="primMulNat (Succ vyw30000) vyw40010",fontsize=16,color="burlywood",shape="box"];3845[label="vyw40010/Succ vyw400100",fontsize=10,color="white",style="solid",shape="box"];2672 -> 3845[label="",style="solid", color="burlywood", weight=9]; 3845 -> 2778[label="",style="solid", color="burlywood", weight=3]; 3846[label="vyw40010/Zero",fontsize=10,color="white",style="solid",shape="box"];2672 -> 3846[label="",style="solid", color="burlywood", weight=9]; 3846 -> 2779[label="",style="solid", color="burlywood", weight=3]; 2673[label="primMulNat Zero vyw40010",fontsize=16,color="burlywood",shape="box"];3847[label="vyw40010/Succ vyw400100",fontsize=10,color="white",style="solid",shape="box"];2673 -> 3847[label="",style="solid", color="burlywood", weight=9]; 3847 -> 2780[label="",style="solid", color="burlywood", weight=3]; 3848[label="vyw40010/Zero",fontsize=10,color="white",style="solid",shape="box"];2673 -> 3848[label="",style="solid", color="burlywood", weight=9]; 3848 -> 2781[label="",style="solid", color="burlywood", weight=3]; 2674[label="vyw40010",fontsize=16,color="green",shape="box"];2675[label="vyw3000",fontsize=16,color="green",shape="box"];2676[label="vyw40010",fontsize=16,color="green",shape="box"];2677[label="vyw3000",fontsize=16,color="green",shape="box"];2678 -> 53[label="",style="dashed", color="red", weight=0]; 2678[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2678 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2679 -> 53[label="",style="dashed", color="red", weight=0]; 2679[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2679 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2680 -> 53[label="",style="dashed", color="red", weight=0]; 2680[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2680 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2681 -> 53[label="",style="dashed", color="red", weight=0]; 2681[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2681 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2682 -> 53[label="",style="dashed", color="red", weight=0]; 2682[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2682 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2683 -> 53[label="",style="dashed", color="red", weight=0]; 2683[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2683 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2684 -> 53[label="",style="dashed", color="red", weight=0]; 2684[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2684 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2685 -> 53[label="",style="dashed", color="red", weight=0]; 2685[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2685 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2686 -> 53[label="",style="dashed", color="red", weight=0]; 2686[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2686 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2687 -> 53[label="",style="dashed", color="red", weight=0]; 2687[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2687 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2688 -> 53[label="",style="dashed", color="red", weight=0]; 2688[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2688 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2689 -> 53[label="",style="dashed", color="red", weight=0]; 2689[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2689 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2690 -> 53[label="",style="dashed", color="red", weight=0]; 2690[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2690 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2691 -> 53[label="",style="dashed", color="red", weight=0]; 2691[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2691 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2692[label="vyw28001 < vyw29001",fontsize=16,color="blue",shape="box"];3849[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 2810[label="",style="solid", color="blue", weight=3]; 3850[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 2811[label="",style="solid", color="blue", weight=3]; 3851[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 2812[label="",style="solid", color="blue", weight=3]; 3852[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 2813[label="",style="solid", color="blue", weight=3]; 3853[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3853[label="",style="solid", color="blue", weight=9]; 3853 -> 2814[label="",style="solid", color="blue", weight=3]; 3854[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3854[label="",style="solid", color="blue", weight=9]; 3854 -> 2815[label="",style="solid", color="blue", weight=3]; 3855[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3855[label="",style="solid", color="blue", weight=9]; 3855 -> 2816[label="",style="solid", color="blue", weight=3]; 3856[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3856[label="",style="solid", color="blue", weight=9]; 3856 -> 2817[label="",style="solid", color="blue", weight=3]; 3857[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3857[label="",style="solid", color="blue", weight=9]; 3857 -> 2818[label="",style="solid", color="blue", weight=3]; 3858[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3858[label="",style="solid", color="blue", weight=9]; 3858 -> 2819[label="",style="solid", color="blue", weight=3]; 3859[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3859[label="",style="solid", color="blue", weight=9]; 3859 -> 2820[label="",style="solid", color="blue", weight=3]; 3860[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3860[label="",style="solid", color="blue", weight=9]; 3860 -> 2821[label="",style="solid", color="blue", weight=3]; 3861[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3861[label="",style="solid", color="blue", weight=9]; 3861 -> 2822[label="",style="solid", color="blue", weight=3]; 3862[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3862[label="",style="solid", color="blue", weight=9]; 3862 -> 2823[label="",style="solid", color="blue", weight=3]; 2693 -> 1929[label="",style="dashed", color="red", weight=0]; 2693[label="vyw28001 == vyw29001 && vyw28002 <= vyw29002",fontsize=16,color="magenta"];2693 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2694 -> 1712[label="",style="dashed", color="red", weight=0]; 2694[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2694 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2695 -> 1710[label="",style="dashed", color="red", weight=0]; 2695[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2695 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2696 -> 1714[label="",style="dashed", color="red", weight=0]; 2696[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2696 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2697 -> 1711[label="",style="dashed", color="red", weight=0]; 2697[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2697 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2698 -> 1709[label="",style="dashed", color="red", weight=0]; 2698[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2698 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2699 -> 1717[label="",style="dashed", color="red", weight=0]; 2699[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2699 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2700 -> 53[label="",style="dashed", color="red", weight=0]; 2700[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2700 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2701 -> 1720[label="",style="dashed", color="red", weight=0]; 2701[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2701 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2702 -> 1719[label="",style="dashed", color="red", weight=0]; 2702[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2702 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2703 -> 1721[label="",style="dashed", color="red", weight=0]; 2703[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2703 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2704 -> 1715[label="",style="dashed", color="red", weight=0]; 2704[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2704 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2705 -> 1713[label="",style="dashed", color="red", weight=0]; 2705[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2705 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2706 -> 1716[label="",style="dashed", color="red", weight=0]; 2706[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2706 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2707 -> 1718[label="",style="dashed", color="red", weight=0]; 2707[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2707 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2708[label="vyw88",fontsize=16,color="green",shape="box"];2709[label="True",fontsize=16,color="green",shape="box"];2710[label="primCmpDouble (Double vyw28000 vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3863[label="vyw28001/Pos vyw280010",fontsize=10,color="white",style="solid",shape="box"];2710 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 2854[label="",style="solid", color="burlywood", weight=3]; 3864[label="vyw28001/Neg vyw280010",fontsize=10,color="white",style="solid",shape="box"];2710 -> 3864[label="",style="solid", color="burlywood", weight=9]; 3864 -> 2855[label="",style="solid", color="burlywood", weight=3]; 2711[label="compare (vyw28000 : vyw28001) (vyw29000 : vyw29001)",fontsize=16,color="black",shape="box"];2711 -> 2856[label="",style="solid", color="black", weight=3]; 2712[label="compare (vyw28000 : vyw28001) []",fontsize=16,color="black",shape="box"];2712 -> 2857[label="",style="solid", color="black", weight=3]; 2713[label="compare [] (vyw29000 : vyw29001)",fontsize=16,color="black",shape="box"];2713 -> 2858[label="",style="solid", color="black", weight=3]; 2714[label="compare [] []",fontsize=16,color="black",shape="box"];2714 -> 2859[label="",style="solid", color="black", weight=3]; 2715[label="vyw28000",fontsize=16,color="green",shape="box"];2716[label="vyw29000",fontsize=16,color="green",shape="box"];2717[label="vyw28000",fontsize=16,color="green",shape="box"];2718[label="vyw29000",fontsize=16,color="green",shape="box"];2719[label="vyw28000",fontsize=16,color="green",shape="box"];2720[label="vyw29000",fontsize=16,color="green",shape="box"];2721[label="vyw28000",fontsize=16,color="green",shape="box"];2722[label="vyw29000",fontsize=16,color="green",shape="box"];2723[label="vyw28000",fontsize=16,color="green",shape="box"];2724[label="vyw29000",fontsize=16,color="green",shape="box"];2725[label="vyw28000",fontsize=16,color="green",shape="box"];2726[label="vyw29000",fontsize=16,color="green",shape="box"];2727[label="vyw28000",fontsize=16,color="green",shape="box"];2728[label="vyw29000",fontsize=16,color="green",shape="box"];2729[label="vyw28000",fontsize=16,color="green",shape="box"];2730[label="vyw29000",fontsize=16,color="green",shape="box"];2731[label="vyw28000",fontsize=16,color="green",shape="box"];2732[label="vyw29000",fontsize=16,color="green",shape="box"];2733[label="vyw28000",fontsize=16,color="green",shape="box"];2734[label="vyw29000",fontsize=16,color="green",shape="box"];2735[label="vyw28000",fontsize=16,color="green",shape="box"];2736[label="vyw29000",fontsize=16,color="green",shape="box"];2737[label="vyw28000",fontsize=16,color="green",shape="box"];2738[label="vyw29000",fontsize=16,color="green",shape="box"];2739[label="vyw28000",fontsize=16,color="green",shape="box"];2740[label="vyw29000",fontsize=16,color="green",shape="box"];2741[label="vyw28000",fontsize=16,color="green",shape="box"];2742[label="vyw29000",fontsize=16,color="green",shape="box"];2743 -> 2111[label="",style="dashed", color="red", weight=0]; 2743[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2743 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2112[label="",style="dashed", color="red", weight=0]; 2744[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2744 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2113[label="",style="dashed", color="red", weight=0]; 2745[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2745 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2114[label="",style="dashed", color="red", weight=0]; 2746[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2746 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2115[label="",style="dashed", color="red", weight=0]; 2747[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2747 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2116[label="",style="dashed", color="red", weight=0]; 2748[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2748 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2117[label="",style="dashed", color="red", weight=0]; 2749[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2749 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2118[label="",style="dashed", color="red", weight=0]; 2750[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2750 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2119[label="",style="dashed", color="red", weight=0]; 2751[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2751 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2120[label="",style="dashed", color="red", weight=0]; 2752[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2752 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2121[label="",style="dashed", color="red", weight=0]; 2753[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2753 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2122[label="",style="dashed", color="red", weight=0]; 2754[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2754 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2123[label="",style="dashed", color="red", weight=0]; 2755[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2755 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2124[label="",style="dashed", color="red", weight=0]; 2756[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2756 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2757 -> 1712[label="",style="dashed", color="red", weight=0]; 2757[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2757 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2758 -> 1710[label="",style="dashed", color="red", weight=0]; 2758[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2758 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2759 -> 1714[label="",style="dashed", color="red", weight=0]; 2759[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2759 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2760 -> 1711[label="",style="dashed", color="red", weight=0]; 2760[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2760 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2761 -> 1709[label="",style="dashed", color="red", weight=0]; 2761[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2761 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2762 -> 1717[label="",style="dashed", color="red", weight=0]; 2762[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2762 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2763 -> 53[label="",style="dashed", color="red", weight=0]; 2763[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2763 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2764 -> 1720[label="",style="dashed", color="red", weight=0]; 2764[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2764 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2765 -> 1719[label="",style="dashed", color="red", weight=0]; 2765[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2765 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2766 -> 1721[label="",style="dashed", color="red", weight=0]; 2766[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2766 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2767 -> 1715[label="",style="dashed", color="red", weight=0]; 2767[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2767 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2768 -> 1713[label="",style="dashed", color="red", weight=0]; 2768[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2768 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2768 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2769 -> 1716[label="",style="dashed", color="red", weight=0]; 2769[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2769 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2770 -> 1718[label="",style="dashed", color="red", weight=0]; 2770[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2770 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2771[label="compare (vyw28000 :% vyw28001) (vyw29000 :% vyw29001)",fontsize=16,color="black",shape="box"];2771 -> 2916[label="",style="solid", color="black", weight=3]; 2772[label="primCmpFloat (Float vyw28000 vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3865[label="vyw28001/Pos vyw280010",fontsize=10,color="white",style="solid",shape="box"];2772 -> 3865[label="",style="solid", color="burlywood", weight=9]; 3865 -> 2917[label="",style="solid", color="burlywood", weight=3]; 3866[label="vyw28001/Neg vyw280010",fontsize=10,color="white",style="solid",shape="box"];2772 -> 3866[label="",style="solid", color="burlywood", weight=9]; 3866 -> 2918[label="",style="solid", color="burlywood", weight=3]; 2773[label="primCmpChar (Char vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3867[label="vyw2900/Char vyw29000",fontsize=10,color="white",style="solid",shape="box"];2773 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 2919[label="",style="solid", color="burlywood", weight=3]; 2774[label="compare (Integer vyw28000) (Integer vyw29000)",fontsize=16,color="black",shape="box"];2774 -> 2920[label="",style="solid", color="black", weight=3]; 2775[label="primCmpInt (Pos vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3868[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];2775 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 2921[label="",style="solid", color="burlywood", weight=3]; 3869[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];2775 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 2922[label="",style="solid", color="burlywood", weight=3]; 2776[label="primCmpInt (Neg vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3870[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];2776 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 2923[label="",style="solid", color="burlywood", weight=3]; 3871[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];2776 -> 3871[label="",style="solid", color="burlywood", weight=9]; 3871 -> 2924[label="",style="solid", color="burlywood", weight=3]; 2777[label="compare () ()",fontsize=16,color="black",shape="box"];2777 -> 2925[label="",style="solid", color="black", weight=3]; 2778[label="primMulNat (Succ vyw30000) (Succ vyw400100)",fontsize=16,color="black",shape="box"];2778 -> 2926[label="",style="solid", color="black", weight=3]; 2779[label="primMulNat (Succ vyw30000) Zero",fontsize=16,color="black",shape="box"];2779 -> 2927[label="",style="solid", color="black", weight=3]; 2780[label="primMulNat Zero (Succ vyw400100)",fontsize=16,color="black",shape="box"];2780 -> 2928[label="",style="solid", color="black", weight=3]; 2781[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2781 -> 2929[label="",style="solid", color="black", weight=3]; 2782[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2782 -> 2930[label="",style="solid", color="black", weight=3]; 2783[label="LT",fontsize=16,color="green",shape="box"];2784 -> 2468[label="",style="dashed", color="red", weight=0]; 2784[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2784 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2785[label="LT",fontsize=16,color="green",shape="box"];2786[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2786 -> 2933[label="",style="solid", color="black", weight=3]; 2787[label="LT",fontsize=16,color="green",shape="box"];2788 -> 2500[label="",style="dashed", color="red", weight=0]; 2788[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2788 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2789[label="LT",fontsize=16,color="green",shape="box"];2790[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2790 -> 2936[label="",style="solid", color="black", weight=3]; 2791[label="LT",fontsize=16,color="green",shape="box"];2792[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2792 -> 2937[label="",style="solid", color="black", weight=3]; 2793[label="LT",fontsize=16,color="green",shape="box"];2794[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2794 -> 2938[label="",style="solid", color="black", weight=3]; 2795[label="LT",fontsize=16,color="green",shape="box"];2796[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2796 -> 2939[label="",style="solid", color="black", weight=3]; 2797[label="LT",fontsize=16,color="green",shape="box"];2798 -> 2516[label="",style="dashed", color="red", weight=0]; 2798[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2798 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2798 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2799[label="LT",fontsize=16,color="green",shape="box"];2800 -> 2518[label="",style="dashed", color="red", weight=0]; 2800[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2800 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2800 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2801[label="LT",fontsize=16,color="green",shape="box"];2802 -> 2520[label="",style="dashed", color="red", weight=0]; 2802[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2802 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2802 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2803[label="LT",fontsize=16,color="green",shape="box"];2804 -> 2522[label="",style="dashed", color="red", weight=0]; 2804[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2804 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2804 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2805[label="LT",fontsize=16,color="green",shape="box"];2806 -> 2524[label="",style="dashed", color="red", weight=0]; 2806[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2806 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2806 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2807[label="LT",fontsize=16,color="green",shape="box"];2808 -> 2526[label="",style="dashed", color="red", weight=0]; 2808[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2808 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2808 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2809[label="LT",fontsize=16,color="green",shape="box"];2810 -> 2543[label="",style="dashed", color="red", weight=0]; 2810[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2810 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2810 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2811 -> 2544[label="",style="dashed", color="red", weight=0]; 2811[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2811 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2811 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2812 -> 2545[label="",style="dashed", color="red", weight=0]; 2812[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2812 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2812 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2813 -> 2546[label="",style="dashed", color="red", weight=0]; 2813[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2813 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2813 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2814 -> 2547[label="",style="dashed", color="red", weight=0]; 2814[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2814 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2814 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2815 -> 2548[label="",style="dashed", color="red", weight=0]; 2815[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2815 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2815 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2816 -> 2549[label="",style="dashed", color="red", weight=0]; 2816[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2816 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2816 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2550[label="",style="dashed", color="red", weight=0]; 2817[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2817 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2551[label="",style="dashed", color="red", weight=0]; 2818[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2818 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2552[label="",style="dashed", color="red", weight=0]; 2819[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2819 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2553[label="",style="dashed", color="red", weight=0]; 2820[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2820 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2554[label="",style="dashed", color="red", weight=0]; 2821[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2821 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2555[label="",style="dashed", color="red", weight=0]; 2822[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2822 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2556[label="",style="dashed", color="red", weight=0]; 2823[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2823 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2824[label="vyw28002 <= vyw29002",fontsize=16,color="blue",shape="box"];3872[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3872[label="",style="solid", color="blue", weight=9]; 3872 -> 2980[label="",style="solid", color="blue", weight=3]; 3873[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3873[label="",style="solid", color="blue", weight=9]; 3873 -> 2981[label="",style="solid", color="blue", weight=3]; 3874[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3874[label="",style="solid", color="blue", weight=9]; 3874 -> 2982[label="",style="solid", color="blue", weight=3]; 3875[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 2983[label="",style="solid", color="blue", weight=3]; 3876[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 2984[label="",style="solid", color="blue", weight=3]; 3877[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 2985[label="",style="solid", color="blue", weight=3]; 3878[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3878[label="",style="solid", color="blue", weight=9]; 3878 -> 2986[label="",style="solid", color="blue", weight=3]; 3879[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 2987[label="",style="solid", color="blue", weight=3]; 3880[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 2988[label="",style="solid", color="blue", weight=3]; 3881[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 2989[label="",style="solid", color="blue", weight=3]; 3882[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 2990[label="",style="solid", color="blue", weight=3]; 3883[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 2991[label="",style="solid", color="blue", weight=3]; 3884[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 2992[label="",style="solid", color="blue", weight=3]; 3885[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 2993[label="",style="solid", color="blue", weight=3]; 2825[label="vyw28001 == vyw29001",fontsize=16,color="blue",shape="box"];3886[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 2994[label="",style="solid", color="blue", weight=3]; 3887[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 2995[label="",style="solid", color="blue", weight=3]; 3888[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 2996[label="",style="solid", color="blue", weight=3]; 3889[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 2997[label="",style="solid", color="blue", weight=3]; 3890[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 2998[label="",style="solid", color="blue", weight=3]; 3891[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3891[label="",style="solid", color="blue", weight=9]; 3891 -> 2999[label="",style="solid", color="blue", weight=3]; 3892[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 3000[label="",style="solid", color="blue", weight=3]; 3893[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 3001[label="",style="solid", color="blue", weight=3]; 3894[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 3002[label="",style="solid", color="blue", weight=3]; 3895[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 3003[label="",style="solid", color="blue", weight=3]; 3896[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 3004[label="",style="solid", color="blue", weight=3]; 3897[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 3005[label="",style="solid", color="blue", weight=3]; 3898[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 3006[label="",style="solid", color="blue", weight=3]; 3899[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2825 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 3007[label="",style="solid", color="blue", weight=3]; 2826[label="vyw28000",fontsize=16,color="green",shape="box"];2827[label="vyw29000",fontsize=16,color="green",shape="box"];2828[label="vyw28000",fontsize=16,color="green",shape="box"];2829[label="vyw29000",fontsize=16,color="green",shape="box"];2830[label="vyw28000",fontsize=16,color="green",shape="box"];2831[label="vyw29000",fontsize=16,color="green",shape="box"];2832[label="vyw28000",fontsize=16,color="green",shape="box"];2833[label="vyw29000",fontsize=16,color="green",shape="box"];2834[label="vyw28000",fontsize=16,color="green",shape="box"];2835[label="vyw29000",fontsize=16,color="green",shape="box"];2836[label="vyw28000",fontsize=16,color="green",shape="box"];2837[label="vyw29000",fontsize=16,color="green",shape="box"];2838[label="vyw28000",fontsize=16,color="green",shape="box"];2839[label="vyw29000",fontsize=16,color="green",shape="box"];2840[label="vyw28000",fontsize=16,color="green",shape="box"];2841[label="vyw29000",fontsize=16,color="green",shape="box"];2842[label="vyw28000",fontsize=16,color="green",shape="box"];2843[label="vyw29000",fontsize=16,color="green",shape="box"];2844[label="vyw28000",fontsize=16,color="green",shape="box"];2845[label="vyw29000",fontsize=16,color="green",shape="box"];2846[label="vyw28000",fontsize=16,color="green",shape="box"];2847[label="vyw29000",fontsize=16,color="green",shape="box"];2848[label="vyw28000",fontsize=16,color="green",shape="box"];2849[label="vyw29000",fontsize=16,color="green",shape="box"];2850[label="vyw28000",fontsize=16,color="green",shape="box"];2851[label="vyw29000",fontsize=16,color="green",shape="box"];2852[label="vyw28000",fontsize=16,color="green",shape="box"];2853[label="vyw29000",fontsize=16,color="green",shape="box"];2854[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3900[label="vyw2900/Double vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2854 -> 3900[label="",style="solid", color="burlywood", weight=9]; 3900 -> 3008[label="",style="solid", color="burlywood", weight=3]; 2855[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3901[label="vyw2900/Double vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2855 -> 3901[label="",style="solid", color="burlywood", weight=9]; 3901 -> 3009[label="",style="solid", color="burlywood", weight=3]; 2856 -> 3010[label="",style="dashed", color="red", weight=0]; 2856[label="primCompAux vyw28000 vyw29000 (compare vyw28001 vyw29001)",fontsize=16,color="magenta"];2856 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2857[label="GT",fontsize=16,color="green",shape="box"];2858[label="LT",fontsize=16,color="green",shape="box"];2859[label="EQ",fontsize=16,color="green",shape="box"];2860[label="vyw28001",fontsize=16,color="green",shape="box"];2861[label="vyw29001",fontsize=16,color="green",shape="box"];2862[label="vyw28001",fontsize=16,color="green",shape="box"];2863[label="vyw29001",fontsize=16,color="green",shape="box"];2864[label="vyw28001",fontsize=16,color="green",shape="box"];2865[label="vyw29001",fontsize=16,color="green",shape="box"];2866[label="vyw28001",fontsize=16,color="green",shape="box"];2867[label="vyw29001",fontsize=16,color="green",shape="box"];2868[label="vyw28001",fontsize=16,color="green",shape="box"];2869[label="vyw29001",fontsize=16,color="green",shape="box"];2870[label="vyw28001",fontsize=16,color="green",shape="box"];2871[label="vyw29001",fontsize=16,color="green",shape="box"];2872[label="vyw28001",fontsize=16,color="green",shape="box"];2873[label="vyw29001",fontsize=16,color="green",shape="box"];2874[label="vyw28001",fontsize=16,color="green",shape="box"];2875[label="vyw29001",fontsize=16,color="green",shape="box"];2876[label="vyw28001",fontsize=16,color="green",shape="box"];2877[label="vyw29001",fontsize=16,color="green",shape="box"];2878[label="vyw28001",fontsize=16,color="green",shape="box"];2879[label="vyw29001",fontsize=16,color="green",shape="box"];2880[label="vyw28001",fontsize=16,color="green",shape="box"];2881[label="vyw29001",fontsize=16,color="green",shape="box"];2882[label="vyw28001",fontsize=16,color="green",shape="box"];2883[label="vyw29001",fontsize=16,color="green",shape="box"];2884[label="vyw28001",fontsize=16,color="green",shape="box"];2885[label="vyw29001",fontsize=16,color="green",shape="box"];2886[label="vyw28001",fontsize=16,color="green",shape="box"];2887[label="vyw29001",fontsize=16,color="green",shape="box"];2888[label="vyw28000",fontsize=16,color="green",shape="box"];2889[label="vyw29000",fontsize=16,color="green",shape="box"];2890[label="vyw28000",fontsize=16,color="green",shape="box"];2891[label="vyw29000",fontsize=16,color="green",shape="box"];2892[label="vyw28000",fontsize=16,color="green",shape="box"];2893[label="vyw29000",fontsize=16,color="green",shape="box"];2894[label="vyw28000",fontsize=16,color="green",shape="box"];2895[label="vyw29000",fontsize=16,color="green",shape="box"];2896[label="vyw28000",fontsize=16,color="green",shape="box"];2897[label="vyw29000",fontsize=16,color="green",shape="box"];2898[label="vyw28000",fontsize=16,color="green",shape="box"];2899[label="vyw29000",fontsize=16,color="green",shape="box"];2900[label="vyw28000",fontsize=16,color="green",shape="box"];2901[label="vyw29000",fontsize=16,color="green",shape="box"];2902[label="vyw28000",fontsize=16,color="green",shape="box"];2903[label="vyw29000",fontsize=16,color="green",shape="box"];2904[label="vyw28000",fontsize=16,color="green",shape="box"];2905[label="vyw29000",fontsize=16,color="green",shape="box"];2906[label="vyw28000",fontsize=16,color="green",shape="box"];2907[label="vyw29000",fontsize=16,color="green",shape="box"];2908[label="vyw28000",fontsize=16,color="green",shape="box"];2909[label="vyw29000",fontsize=16,color="green",shape="box"];2910[label="vyw28000",fontsize=16,color="green",shape="box"];2911[label="vyw29000",fontsize=16,color="green",shape="box"];2912[label="vyw28000",fontsize=16,color="green",shape="box"];2913[label="vyw29000",fontsize=16,color="green",shape="box"];2914[label="vyw28000",fontsize=16,color="green",shape="box"];2915[label="vyw29000",fontsize=16,color="green",shape="box"];2916[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="blue",shape="box"];3902[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2916 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 3012[label="",style="solid", color="blue", weight=3]; 3903[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2916 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 3013[label="",style="solid", color="blue", weight=3]; 2917[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3904[label="vyw2900/Float vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2917 -> 3904[label="",style="solid", color="burlywood", weight=9]; 3904 -> 3014[label="",style="solid", color="burlywood", weight=3]; 2918[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3905[label="vyw2900/Float vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2918 -> 3905[label="",style="solid", color="burlywood", weight=9]; 3905 -> 3015[label="",style="solid", color="burlywood", weight=3]; 2919[label="primCmpChar (Char vyw28000) (Char vyw29000)",fontsize=16,color="black",shape="box"];2919 -> 3016[label="",style="solid", color="black", weight=3]; 2920 -> 2670[label="",style="dashed", color="red", weight=0]; 2920[label="primCmpInt vyw28000 vyw29000",fontsize=16,color="magenta"];2920 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2921[label="primCmpInt (Pos (Succ vyw280000)) vyw2900",fontsize=16,color="burlywood",shape="box"];3906[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2921 -> 3906[label="",style="solid", color="burlywood", weight=9]; 3906 -> 3019[label="",style="solid", color="burlywood", weight=3]; 3907[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2921 -> 3907[label="",style="solid", color="burlywood", weight=9]; 3907 -> 3020[label="",style="solid", color="burlywood", weight=3]; 2922[label="primCmpInt (Pos Zero) vyw2900",fontsize=16,color="burlywood",shape="box"];3908[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2922 -> 3908[label="",style="solid", color="burlywood", weight=9]; 3908 -> 3021[label="",style="solid", color="burlywood", weight=3]; 3909[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2922 -> 3909[label="",style="solid", color="burlywood", weight=9]; 3909 -> 3022[label="",style="solid", color="burlywood", weight=3]; 2923[label="primCmpInt (Neg (Succ vyw280000)) vyw2900",fontsize=16,color="burlywood",shape="box"];3910[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2923 -> 3910[label="",style="solid", color="burlywood", weight=9]; 3910 -> 3023[label="",style="solid", color="burlywood", weight=3]; 3911[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2923 -> 3911[label="",style="solid", color="burlywood", weight=9]; 3911 -> 3024[label="",style="solid", color="burlywood", weight=3]; 2924[label="primCmpInt (Neg Zero) vyw2900",fontsize=16,color="burlywood",shape="box"];3912[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2924 -> 3912[label="",style="solid", color="burlywood", weight=9]; 3912 -> 3025[label="",style="solid", color="burlywood", weight=3]; 3913[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2924 -> 3913[label="",style="solid", color="burlywood", weight=9]; 3913 -> 3026[label="",style="solid", color="burlywood", weight=3]; 2925[label="EQ",fontsize=16,color="green",shape="box"];2926 -> 3027[label="",style="dashed", color="red", weight=0]; 2926[label="primPlusNat (primMulNat vyw30000 (Succ vyw400100)) (Succ vyw400100)",fontsize=16,color="magenta"];2926 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2927[label="Zero",fontsize=16,color="green",shape="box"];2928[label="Zero",fontsize=16,color="green",shape="box"];2929[label="Zero",fontsize=16,color="green",shape="box"];2930[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2930 -> 3029[label="",style="solid", color="black", weight=3]; 2931[label="vyw28000",fontsize=16,color="green",shape="box"];2932[label="vyw29000",fontsize=16,color="green",shape="box"];2933[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2933 -> 3030[label="",style="solid", color="black", weight=3]; 2934[label="vyw28000",fontsize=16,color="green",shape="box"];2935[label="vyw29000",fontsize=16,color="green",shape="box"];2936[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2936 -> 3031[label="",style="solid", color="black", weight=3]; 2937[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2937 -> 3032[label="",style="solid", color="black", weight=3]; 2938[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2938 -> 3033[label="",style="solid", color="black", weight=3]; 2939[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2939 -> 3034[label="",style="solid", color="black", weight=3]; 2940[label="vyw28000",fontsize=16,color="green",shape="box"];2941[label="vyw29000",fontsize=16,color="green",shape="box"];2942[label="vyw28000",fontsize=16,color="green",shape="box"];2943[label="vyw29000",fontsize=16,color="green",shape="box"];2944[label="vyw28000",fontsize=16,color="green",shape="box"];2945[label="vyw29000",fontsize=16,color="green",shape="box"];2946[label="vyw28000",fontsize=16,color="green",shape="box"];2947[label="vyw29000",fontsize=16,color="green",shape="box"];2948[label="vyw28000",fontsize=16,color="green",shape="box"];2949[label="vyw29000",fontsize=16,color="green",shape="box"];2950[label="vyw28000",fontsize=16,color="green",shape="box"];2951[label="vyw29000",fontsize=16,color="green",shape="box"];2952[label="vyw28001",fontsize=16,color="green",shape="box"];2953[label="vyw29001",fontsize=16,color="green",shape="box"];2954[label="vyw28001",fontsize=16,color="green",shape="box"];2955[label="vyw29001",fontsize=16,color="green",shape="box"];2956[label="vyw28001",fontsize=16,color="green",shape="box"];2957[label="vyw29001",fontsize=16,color="green",shape="box"];2958[label="vyw28001",fontsize=16,color="green",shape="box"];2959[label="vyw29001",fontsize=16,color="green",shape="box"];2960[label="vyw28001",fontsize=16,color="green",shape="box"];2961[label="vyw29001",fontsize=16,color="green",shape="box"];2962[label="vyw28001",fontsize=16,color="green",shape="box"];2963[label="vyw29001",fontsize=16,color="green",shape="box"];2964[label="vyw28001",fontsize=16,color="green",shape="box"];2965[label="vyw29001",fontsize=16,color="green",shape="box"];2966[label="vyw28001",fontsize=16,color="green",shape="box"];2967[label="vyw29001",fontsize=16,color="green",shape="box"];2968[label="vyw28001",fontsize=16,color="green",shape="box"];2969[label="vyw29001",fontsize=16,color="green",shape="box"];2970[label="vyw28001",fontsize=16,color="green",shape="box"];2971[label="vyw29001",fontsize=16,color="green",shape="box"];2972[label="vyw28001",fontsize=16,color="green",shape="box"];2973[label="vyw29001",fontsize=16,color="green",shape="box"];2974[label="vyw28001",fontsize=16,color="green",shape="box"];2975[label="vyw29001",fontsize=16,color="green",shape="box"];2976[label="vyw28001",fontsize=16,color="green",shape="box"];2977[label="vyw29001",fontsize=16,color="green",shape="box"];2978[label="vyw28001",fontsize=16,color="green",shape="box"];2979[label="vyw29001",fontsize=16,color="green",shape="box"];2980 -> 2111[label="",style="dashed", color="red", weight=0]; 2980[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2980 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2980 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2981 -> 2112[label="",style="dashed", color="red", weight=0]; 2981[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2981 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2981 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2982 -> 2113[label="",style="dashed", color="red", weight=0]; 2982[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2982 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2982 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2983 -> 2114[label="",style="dashed", color="red", weight=0]; 2983[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2983 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2983 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2984 -> 2115[label="",style="dashed", color="red", weight=0]; 2984[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2984 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2984 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2985 -> 2116[label="",style="dashed", color="red", weight=0]; 2985[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2985 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2985 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2986 -> 2117[label="",style="dashed", color="red", weight=0]; 2986[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2986 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2986 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2987 -> 2118[label="",style="dashed", color="red", weight=0]; 2987[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2987 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2987 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2988 -> 2119[label="",style="dashed", color="red", weight=0]; 2988[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2988 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2988 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2989 -> 2120[label="",style="dashed", color="red", weight=0]; 2989[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2989 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2989 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2990 -> 2121[label="",style="dashed", color="red", weight=0]; 2990[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2990 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2990 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2991 -> 2122[label="",style="dashed", color="red", weight=0]; 2991[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2991 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2991 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2992 -> 2123[label="",style="dashed", color="red", weight=0]; 2992[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2992 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2992 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2993 -> 2124[label="",style="dashed", color="red", weight=0]; 2993[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2993 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2993 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2994 -> 1712[label="",style="dashed", color="red", weight=0]; 2994[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2994 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2994 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2995 -> 1710[label="",style="dashed", color="red", weight=0]; 2995[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2995 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2995 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2996 -> 1714[label="",style="dashed", color="red", weight=0]; 2996[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2996 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2996 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2997 -> 1711[label="",style="dashed", color="red", weight=0]; 2997[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2997 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2998 -> 1709[label="",style="dashed", color="red", weight=0]; 2998[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2998 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2998 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2999 -> 1717[label="",style="dashed", color="red", weight=0]; 2999[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2999 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2999 -> 3074[label="",style="dashed", color="magenta", weight=3]; 3000 -> 53[label="",style="dashed", color="red", weight=0]; 3000[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3000 -> 3075[label="",style="dashed", color="magenta", weight=3]; 3000 -> 3076[label="",style="dashed", color="magenta", weight=3]; 3001 -> 1720[label="",style="dashed", color="red", weight=0]; 3001[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3001 -> 3077[label="",style="dashed", color="magenta", weight=3]; 3001 -> 3078[label="",style="dashed", color="magenta", weight=3]; 3002 -> 1719[label="",style="dashed", color="red", weight=0]; 3002[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3002 -> 3079[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3080[label="",style="dashed", color="magenta", weight=3]; 3003 -> 1721[label="",style="dashed", color="red", weight=0]; 3003[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3003 -> 3081[label="",style="dashed", color="magenta", weight=3]; 3003 -> 3082[label="",style="dashed", color="magenta", weight=3]; 3004 -> 1715[label="",style="dashed", color="red", weight=0]; 3004[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3004 -> 3083[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3084[label="",style="dashed", color="magenta", weight=3]; 3005 -> 1713[label="",style="dashed", color="red", weight=0]; 3005[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3005 -> 3085[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3086[label="",style="dashed", color="magenta", weight=3]; 3006 -> 1716[label="",style="dashed", color="red", weight=0]; 3006[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3006 -> 3087[label="",style="dashed", color="magenta", weight=3]; 3006 -> 3088[label="",style="dashed", color="magenta", weight=3]; 3007 -> 1718[label="",style="dashed", color="red", weight=0]; 3007[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3007 -> 3089[label="",style="dashed", color="magenta", weight=3]; 3007 -> 3090[label="",style="dashed", color="magenta", weight=3]; 3008[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3914[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];3008 -> 3914[label="",style="solid", color="burlywood", weight=9]; 3914 -> 3091[label="",style="solid", color="burlywood", weight=3]; 3915[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];3008 -> 3915[label="",style="solid", color="burlywood", weight=9]; 3915 -> 3092[label="",style="solid", color="burlywood", weight=3]; 3009[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3916[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];3009 -> 3916[label="",style="solid", color="burlywood", weight=9]; 3916 -> 3093[label="",style="solid", color="burlywood", weight=3]; 3917[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];3009 -> 3917[label="",style="solid", color="burlywood", weight=9]; 3917 -> 3094[label="",style="solid", color="burlywood", weight=3]; 3011 -> 2500[label="",style="dashed", color="red", weight=0]; 3011[label="compare vyw28001 vyw29001",fontsize=16,color="magenta"];3011 -> 3095[label="",style="dashed", color="magenta", weight=3]; 3011 -> 3096[label="",style="dashed", color="magenta", weight=3]; 3010[label="primCompAux vyw28000 vyw29000 vyw89",fontsize=16,color="black",shape="triangle"];3010 -> 3097[label="",style="solid", color="black", weight=3]; 3012 -> 2522[label="",style="dashed", color="red", weight=0]; 3012[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="magenta"];3012 -> 3098[label="",style="dashed", color="magenta", weight=3]; 3012 -> 3099[label="",style="dashed", color="magenta", weight=3]; 3013 -> 2524[label="",style="dashed", color="red", weight=0]; 3013[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="magenta"];3013 -> 3100[label="",style="dashed", color="magenta", weight=3]; 3013 -> 3101[label="",style="dashed", color="magenta", weight=3]; 3014[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3918[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];3014 -> 3918[label="",style="solid", color="burlywood", weight=9]; 3918 -> 3102[label="",style="solid", color="burlywood", weight=3]; 3919[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];3014 -> 3919[label="",style="solid", color="burlywood", weight=9]; 3919 -> 3103[label="",style="solid", color="burlywood", weight=3]; 3015[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3920[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];3015 -> 3920[label="",style="solid", color="burlywood", weight=9]; 3920 -> 3104[label="",style="solid", color="burlywood", weight=3]; 3921[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];3015 -> 3921[label="",style="solid", color="burlywood", weight=9]; 3921 -> 3105[label="",style="solid", color="burlywood", weight=3]; 3016[label="primCmpNat vyw28000 vyw29000",fontsize=16,color="burlywood",shape="triangle"];3922[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];3016 -> 3922[label="",style="solid", color="burlywood", weight=9]; 3922 -> 3106[label="",style="solid", color="burlywood", weight=3]; 3923[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];3016 -> 3923[label="",style="solid", color="burlywood", weight=9]; 3923 -> 3107[label="",style="solid", color="burlywood", weight=3]; 3017[label="vyw28000",fontsize=16,color="green",shape="box"];3018[label="vyw29000",fontsize=16,color="green",shape="box"];3019[label="primCmpInt (Pos (Succ vyw280000)) (Pos vyw29000)",fontsize=16,color="black",shape="box"];3019 -> 3108[label="",style="solid", color="black", weight=3]; 3020[label="primCmpInt (Pos (Succ vyw280000)) (Neg vyw29000)",fontsize=16,color="black",shape="box"];3020 -> 3109[label="",style="solid", color="black", weight=3]; 3021[label="primCmpInt (Pos Zero) (Pos vyw29000)",fontsize=16,color="burlywood",shape="box"];3924[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3021 -> 3924[label="",style="solid", color="burlywood", weight=9]; 3924 -> 3110[label="",style="solid", color="burlywood", weight=3]; 3925[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3021 -> 3925[label="",style="solid", color="burlywood", weight=9]; 3925 -> 3111[label="",style="solid", color="burlywood", weight=3]; 3022[label="primCmpInt (Pos Zero) (Neg vyw29000)",fontsize=16,color="burlywood",shape="box"];3926[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3022 -> 3926[label="",style="solid", color="burlywood", weight=9]; 3926 -> 3112[label="",style="solid", color="burlywood", weight=3]; 3927[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3022 -> 3927[label="",style="solid", color="burlywood", weight=9]; 3927 -> 3113[label="",style="solid", color="burlywood", weight=3]; 3023[label="primCmpInt (Neg (Succ vyw280000)) (Pos vyw29000)",fontsize=16,color="black",shape="box"];3023 -> 3114[label="",style="solid", color="black", weight=3]; 3024[label="primCmpInt (Neg (Succ vyw280000)) (Neg vyw29000)",fontsize=16,color="black",shape="box"];3024 -> 3115[label="",style="solid", color="black", weight=3]; 3025[label="primCmpInt (Neg Zero) (Pos vyw29000)",fontsize=16,color="burlywood",shape="box"];3928[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3025 -> 3928[label="",style="solid", color="burlywood", weight=9]; 3928 -> 3116[label="",style="solid", color="burlywood", weight=3]; 3929[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3025 -> 3929[label="",style="solid", color="burlywood", weight=9]; 3929 -> 3117[label="",style="solid", color="burlywood", weight=3]; 3026[label="primCmpInt (Neg Zero) (Neg vyw29000)",fontsize=16,color="burlywood",shape="box"];3930[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3026 -> 3930[label="",style="solid", color="burlywood", weight=9]; 3930 -> 3118[label="",style="solid", color="burlywood", weight=3]; 3931[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3026 -> 3931[label="",style="solid", color="burlywood", weight=9]; 3931 -> 3119[label="",style="solid", color="burlywood", weight=3]; 3028 -> 2528[label="",style="dashed", color="red", weight=0]; 3028[label="primMulNat vyw30000 (Succ vyw400100)",fontsize=16,color="magenta"];3028 -> 3120[label="",style="dashed", color="magenta", weight=3]; 3028 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3027[label="primPlusNat vyw90 (Succ vyw400100)",fontsize=16,color="burlywood",shape="triangle"];3932[label="vyw90/Succ vyw900",fontsize=10,color="white",style="solid",shape="box"];3027 -> 3932[label="",style="solid", color="burlywood", weight=9]; 3932 -> 3122[label="",style="solid", color="burlywood", weight=3]; 3933[label="vyw90/Zero",fontsize=10,color="white",style="solid",shape="box"];3027 -> 3933[label="",style="solid", color="burlywood", weight=9]; 3933 -> 3123[label="",style="solid", color="burlywood", weight=3]; 3029 -> 3124[label="",style="dashed", color="red", weight=0]; 3029[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3029 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3126[label="",style="dashed", color="red", weight=0]; 3030[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3030 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3031 -> 3128[label="",style="dashed", color="red", weight=0]; 3031[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3031 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3032 -> 3130[label="",style="dashed", color="red", weight=0]; 3032[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3032 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3033 -> 3132[label="",style="dashed", color="red", weight=0]; 3033[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3033 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3034 -> 1672[label="",style="dashed", color="red", weight=0]; 3034[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3034 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3035[label="vyw28002",fontsize=16,color="green",shape="box"];3036[label="vyw29002",fontsize=16,color="green",shape="box"];3037[label="vyw28002",fontsize=16,color="green",shape="box"];3038[label="vyw29002",fontsize=16,color="green",shape="box"];3039[label="vyw28002",fontsize=16,color="green",shape="box"];3040[label="vyw29002",fontsize=16,color="green",shape="box"];3041[label="vyw28002",fontsize=16,color="green",shape="box"];3042[label="vyw29002",fontsize=16,color="green",shape="box"];3043[label="vyw28002",fontsize=16,color="green",shape="box"];3044[label="vyw29002",fontsize=16,color="green",shape="box"];3045[label="vyw28002",fontsize=16,color="green",shape="box"];3046[label="vyw29002",fontsize=16,color="green",shape="box"];3047[label="vyw28002",fontsize=16,color="green",shape="box"];3048[label="vyw29002",fontsize=16,color="green",shape="box"];3049[label="vyw28002",fontsize=16,color="green",shape="box"];3050[label="vyw29002",fontsize=16,color="green",shape="box"];3051[label="vyw28002",fontsize=16,color="green",shape="box"];3052[label="vyw29002",fontsize=16,color="green",shape="box"];3053[label="vyw28002",fontsize=16,color="green",shape="box"];3054[label="vyw29002",fontsize=16,color="green",shape="box"];3055[label="vyw28002",fontsize=16,color="green",shape="box"];3056[label="vyw29002",fontsize=16,color="green",shape="box"];3057[label="vyw28002",fontsize=16,color="green",shape="box"];3058[label="vyw29002",fontsize=16,color="green",shape="box"];3059[label="vyw28002",fontsize=16,color="green",shape="box"];3060[label="vyw29002",fontsize=16,color="green",shape="box"];3061[label="vyw28002",fontsize=16,color="green",shape="box"];3062[label="vyw29002",fontsize=16,color="green",shape="box"];3063[label="vyw28001",fontsize=16,color="green",shape="box"];3064[label="vyw29001",fontsize=16,color="green",shape="box"];3065[label="vyw28001",fontsize=16,color="green",shape="box"];3066[label="vyw29001",fontsize=16,color="green",shape="box"];3067[label="vyw28001",fontsize=16,color="green",shape="box"];3068[label="vyw29001",fontsize=16,color="green",shape="box"];3069[label="vyw28001",fontsize=16,color="green",shape="box"];3070[label="vyw29001",fontsize=16,color="green",shape="box"];3071[label="vyw28001",fontsize=16,color="green",shape="box"];3072[label="vyw29001",fontsize=16,color="green",shape="box"];3073[label="vyw28001",fontsize=16,color="green",shape="box"];3074[label="vyw29001",fontsize=16,color="green",shape="box"];3075[label="vyw28001",fontsize=16,color="green",shape="box"];3076[label="vyw29001",fontsize=16,color="green",shape="box"];3077[label="vyw28001",fontsize=16,color="green",shape="box"];3078[label="vyw29001",fontsize=16,color="green",shape="box"];3079[label="vyw28001",fontsize=16,color="green",shape="box"];3080[label="vyw29001",fontsize=16,color="green",shape="box"];3081[label="vyw28001",fontsize=16,color="green",shape="box"];3082[label="vyw29001",fontsize=16,color="green",shape="box"];3083[label="vyw28001",fontsize=16,color="green",shape="box"];3084[label="vyw29001",fontsize=16,color="green",shape="box"];3085[label="vyw28001",fontsize=16,color="green",shape="box"];3086[label="vyw29001",fontsize=16,color="green",shape="box"];3087[label="vyw28001",fontsize=16,color="green",shape="box"];3088[label="vyw29001",fontsize=16,color="green",shape="box"];3089[label="vyw28001",fontsize=16,color="green",shape="box"];3090[label="vyw29001",fontsize=16,color="green",shape="box"];3091[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3091 -> 3137[label="",style="solid", color="black", weight=3]; 3092[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3092 -> 3138[label="",style="solid", color="black", weight=3]; 3093[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3093 -> 3139[label="",style="solid", color="black", weight=3]; 3094[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3094 -> 3140[label="",style="solid", color="black", weight=3]; 3095[label="vyw28001",fontsize=16,color="green",shape="box"];3096[label="vyw29001",fontsize=16,color="green",shape="box"];3097 -> 3141[label="",style="dashed", color="red", weight=0]; 3097[label="primCompAux0 vyw89 (compare vyw28000 vyw29000)",fontsize=16,color="magenta"];3097 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3097 -> 3143[label="",style="dashed", color="magenta", weight=3]; 3098[label="vyw28000 * vyw29001",fontsize=16,color="burlywood",shape="triangle"];3934[label="vyw28000/Integer vyw280000",fontsize=10,color="white",style="solid",shape="box"];3098 -> 3934[label="",style="solid", color="burlywood", weight=9]; 3934 -> 3144[label="",style="solid", color="burlywood", weight=3]; 3099 -> 3098[label="",style="dashed", color="red", weight=0]; 3099[label="vyw29000 * vyw28001",fontsize=16,color="magenta"];3099 -> 3145[label="",style="dashed", color="magenta", weight=3]; 3099 -> 3146[label="",style="dashed", color="magenta", weight=3]; 3100 -> 1925[label="",style="dashed", color="red", weight=0]; 3100[label="vyw28000 * vyw29001",fontsize=16,color="magenta"];3100 -> 3147[label="",style="dashed", color="magenta", weight=3]; 3100 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3101 -> 1925[label="",style="dashed", color="red", weight=0]; 3101[label="vyw29000 * vyw28001",fontsize=16,color="magenta"];3101 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3102[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3102 -> 3151[label="",style="solid", color="black", weight=3]; 3103[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3103 -> 3152[label="",style="solid", color="black", weight=3]; 3104[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3104 -> 3153[label="",style="solid", color="black", weight=3]; 3105[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3105 -> 3154[label="",style="solid", color="black", weight=3]; 3106[label="primCmpNat (Succ vyw280000) vyw29000",fontsize=16,color="burlywood",shape="box"];3935[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3106 -> 3935[label="",style="solid", color="burlywood", weight=9]; 3935 -> 3155[label="",style="solid", color="burlywood", weight=3]; 3936[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3106 -> 3936[label="",style="solid", color="burlywood", weight=9]; 3936 -> 3156[label="",style="solid", color="burlywood", weight=3]; 3107[label="primCmpNat Zero vyw29000",fontsize=16,color="burlywood",shape="box"];3937[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3107 -> 3937[label="",style="solid", color="burlywood", weight=9]; 3937 -> 3157[label="",style="solid", color="burlywood", weight=3]; 3938[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3107 -> 3938[label="",style="solid", color="burlywood", weight=9]; 3938 -> 3158[label="",style="solid", color="burlywood", weight=3]; 3108 -> 3016[label="",style="dashed", color="red", weight=0]; 3108[label="primCmpNat (Succ vyw280000) vyw29000",fontsize=16,color="magenta"];3108 -> 3159[label="",style="dashed", color="magenta", weight=3]; 3108 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3109[label="GT",fontsize=16,color="green",shape="box"];3110[label="primCmpInt (Pos Zero) (Pos (Succ vyw290000))",fontsize=16,color="black",shape="box"];3110 -> 3161[label="",style="solid", color="black", weight=3]; 3111[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3111 -> 3162[label="",style="solid", color="black", weight=3]; 3112[label="primCmpInt (Pos Zero) (Neg (Succ vyw290000))",fontsize=16,color="black",shape="box"];3112 -> 3163[label="",style="solid", color="black", weight=3]; 3113[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3113 -> 3164[label="",style="solid", color="black", weight=3]; 3114[label="LT",fontsize=16,color="green",shape="box"];3115 -> 3016[label="",style="dashed", color="red", weight=0]; 3115[label="primCmpNat vyw29000 (Succ vyw280000)",fontsize=16,color="magenta"];3115 -> 3165[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3166[label="",style="dashed", color="magenta", weight=3]; 3116[label="primCmpInt (Neg Zero) (Pos (Succ vyw290000))",fontsize=16,color="black",shape="box"];3116 -> 3167[label="",style="solid", color="black", weight=3]; 3117[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3117 -> 3168[label="",style="solid", color="black", weight=3]; 3118[label="primCmpInt (Neg Zero) (Neg (Succ vyw290000))",fontsize=16,color="black",shape="box"];3118 -> 3169[label="",style="solid", color="black", weight=3]; 3119[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3119 -> 3170[label="",style="solid", color="black", weight=3]; 3120[label="Succ vyw400100",fontsize=16,color="green",shape="box"];3121[label="vyw30000",fontsize=16,color="green",shape="box"];3122[label="primPlusNat (Succ vyw900) (Succ vyw400100)",fontsize=16,color="black",shape="box"];3122 -> 3171[label="",style="solid", color="black", weight=3]; 3123[label="primPlusNat Zero (Succ vyw400100)",fontsize=16,color="black",shape="box"];3123 -> 3172[label="",style="solid", color="black", weight=3]; 3125 -> 1712[label="",style="dashed", color="red", weight=0]; 3125[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3125 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3125 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3124[label="compare2 vyw28000 vyw29000 vyw91",fontsize=16,color="burlywood",shape="triangle"];3939[label="vyw91/False",fontsize=10,color="white",style="solid",shape="box"];3124 -> 3939[label="",style="solid", color="burlywood", weight=9]; 3939 -> 3175[label="",style="solid", color="burlywood", weight=3]; 3940[label="vyw91/True",fontsize=10,color="white",style="solid",shape="box"];3124 -> 3940[label="",style="solid", color="burlywood", weight=9]; 3940 -> 3176[label="",style="solid", color="burlywood", weight=3]; 3127 -> 1714[label="",style="dashed", color="red", weight=0]; 3127[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3127 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3127 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3126[label="compare2 vyw28000 vyw29000 vyw92",fontsize=16,color="burlywood",shape="triangle"];3941[label="vyw92/False",fontsize=10,color="white",style="solid",shape="box"];3126 -> 3941[label="",style="solid", color="burlywood", weight=9]; 3941 -> 3179[label="",style="solid", color="burlywood", weight=3]; 3942[label="vyw92/True",fontsize=10,color="white",style="solid",shape="box"];3126 -> 3942[label="",style="solid", color="burlywood", weight=9]; 3942 -> 3180[label="",style="solid", color="burlywood", weight=3]; 3129 -> 1709[label="",style="dashed", color="red", weight=0]; 3129[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3129 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3129 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3128[label="compare2 vyw28000 vyw29000 vyw93",fontsize=16,color="burlywood",shape="triangle"];3943[label="vyw93/False",fontsize=10,color="white",style="solid",shape="box"];3128 -> 3943[label="",style="solid", color="burlywood", weight=9]; 3943 -> 3183[label="",style="solid", color="burlywood", weight=3]; 3944[label="vyw93/True",fontsize=10,color="white",style="solid",shape="box"];3128 -> 3944[label="",style="solid", color="burlywood", weight=9]; 3944 -> 3184[label="",style="solid", color="burlywood", weight=3]; 3131 -> 1717[label="",style="dashed", color="red", weight=0]; 3131[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3131 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3131 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3130[label="compare2 vyw28000 vyw29000 vyw94",fontsize=16,color="burlywood",shape="triangle"];3945[label="vyw94/False",fontsize=10,color="white",style="solid",shape="box"];3130 -> 3945[label="",style="solid", color="burlywood", weight=9]; 3945 -> 3187[label="",style="solid", color="burlywood", weight=3]; 3946[label="vyw94/True",fontsize=10,color="white",style="solid",shape="box"];3130 -> 3946[label="",style="solid", color="burlywood", weight=9]; 3946 -> 3188[label="",style="solid", color="burlywood", weight=3]; 3133 -> 53[label="",style="dashed", color="red", weight=0]; 3133[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3133 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3133 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3132[label="compare2 vyw28000 vyw29000 vyw95",fontsize=16,color="burlywood",shape="triangle"];3947[label="vyw95/False",fontsize=10,color="white",style="solid",shape="box"];3132 -> 3947[label="",style="solid", color="burlywood", weight=9]; 3947 -> 3191[label="",style="solid", color="burlywood", weight=3]; 3948[label="vyw95/True",fontsize=10,color="white",style="solid",shape="box"];3132 -> 3948[label="",style="solid", color="burlywood", weight=9]; 3948 -> 3192[label="",style="solid", color="burlywood", weight=3]; 3134[label="vyw28000",fontsize=16,color="green",shape="box"];3135[label="vyw29000",fontsize=16,color="green",shape="box"];3136 -> 1720[label="",style="dashed", color="red", weight=0]; 3136[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3136 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3136 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3137 -> 2524[label="",style="dashed", color="red", weight=0]; 3137[label="compare (vyw28000 * Pos vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3137 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3137 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3138 -> 2524[label="",style="dashed", color="red", weight=0]; 3138[label="compare (vyw28000 * Pos vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3138 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3139 -> 2524[label="",style="dashed", color="red", weight=0]; 3139[label="compare (vyw28000 * Neg vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3139 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3139 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3140 -> 2524[label="",style="dashed", color="red", weight=0]; 3140[label="compare (vyw28000 * Neg vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3140 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3142[label="vyw89",fontsize=16,color="green",shape="box"];3143[label="compare vyw28000 vyw29000",fontsize=16,color="blue",shape="box"];3949[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3949[label="",style="solid", color="blue", weight=9]; 3949 -> 3203[label="",style="solid", color="blue", weight=3]; 3950[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3950[label="",style="solid", color="blue", weight=9]; 3950 -> 3204[label="",style="solid", color="blue", weight=3]; 3951[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3951[label="",style="solid", color="blue", weight=9]; 3951 -> 3205[label="",style="solid", color="blue", weight=3]; 3952[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3952[label="",style="solid", color="blue", weight=9]; 3952 -> 3206[label="",style="solid", color="blue", weight=3]; 3953[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3953[label="",style="solid", color="blue", weight=9]; 3953 -> 3207[label="",style="solid", color="blue", weight=3]; 3954[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 3208[label="",style="solid", color="blue", weight=3]; 3955[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 3209[label="",style="solid", color="blue", weight=3]; 3956[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 3210[label="",style="solid", color="blue", weight=3]; 3957[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 3211[label="",style="solid", color="blue", weight=3]; 3958[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 3212[label="",style="solid", color="blue", weight=3]; 3959[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 3213[label="",style="solid", color="blue", weight=3]; 3960[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 3214[label="",style="solid", color="blue", weight=3]; 3961[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 3215[label="",style="solid", color="blue", weight=3]; 3962[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3143 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 3216[label="",style="solid", color="blue", weight=3]; 3141[label="primCompAux0 vyw99 vyw100",fontsize=16,color="burlywood",shape="triangle"];3963[label="vyw100/LT",fontsize=10,color="white",style="solid",shape="box"];3141 -> 3963[label="",style="solid", color="burlywood", weight=9]; 3963 -> 3217[label="",style="solid", color="burlywood", weight=3]; 3964[label="vyw100/EQ",fontsize=10,color="white",style="solid",shape="box"];3141 -> 3964[label="",style="solid", color="burlywood", weight=9]; 3964 -> 3218[label="",style="solid", color="burlywood", weight=3]; 3965[label="vyw100/GT",fontsize=10,color="white",style="solid",shape="box"];3141 -> 3965[label="",style="solid", color="burlywood", weight=9]; 3965 -> 3219[label="",style="solid", color="burlywood", weight=3]; 3144[label="Integer vyw280000 * vyw29001",fontsize=16,color="burlywood",shape="box"];3966[label="vyw29001/Integer vyw290010",fontsize=10,color="white",style="solid",shape="box"];3144 -> 3966[label="",style="solid", color="burlywood", weight=9]; 3966 -> 3220[label="",style="solid", color="burlywood", weight=3]; 3145[label="vyw28001",fontsize=16,color="green",shape="box"];3146[label="vyw29000",fontsize=16,color="green",shape="box"];3147[label="vyw28000",fontsize=16,color="green",shape="box"];3148[label="vyw29001",fontsize=16,color="green",shape="box"];3149[label="vyw29000",fontsize=16,color="green",shape="box"];3150[label="vyw28001",fontsize=16,color="green",shape="box"];3151 -> 2524[label="",style="dashed", color="red", weight=0]; 3151[label="compare (vyw28000 * Pos vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3151 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3152 -> 2524[label="",style="dashed", color="red", weight=0]; 3152[label="compare (vyw28000 * Pos vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3152 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3152 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3153 -> 2524[label="",style="dashed", color="red", weight=0]; 3153[label="compare (vyw28000 * Neg vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3153 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3154 -> 2524[label="",style="dashed", color="red", weight=0]; 3154[label="compare (vyw28000 * Neg vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3154 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3155[label="primCmpNat (Succ vyw280000) (Succ vyw290000)",fontsize=16,color="black",shape="box"];3155 -> 3229[label="",style="solid", color="black", weight=3]; 3156[label="primCmpNat (Succ vyw280000) Zero",fontsize=16,color="black",shape="box"];3156 -> 3230[label="",style="solid", color="black", weight=3]; 3157[label="primCmpNat Zero (Succ vyw290000)",fontsize=16,color="black",shape="box"];3157 -> 3231[label="",style="solid", color="black", weight=3]; 3158[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3158 -> 3232[label="",style="solid", color="black", weight=3]; 3159[label="Succ vyw280000",fontsize=16,color="green",shape="box"];3160[label="vyw29000",fontsize=16,color="green",shape="box"];3161 -> 3016[label="",style="dashed", color="red", weight=0]; 3161[label="primCmpNat Zero (Succ vyw290000)",fontsize=16,color="magenta"];3161 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3162[label="EQ",fontsize=16,color="green",shape="box"];3163[label="GT",fontsize=16,color="green",shape="box"];3164[label="EQ",fontsize=16,color="green",shape="box"];3165[label="vyw29000",fontsize=16,color="green",shape="box"];3166[label="Succ vyw280000",fontsize=16,color="green",shape="box"];3167[label="LT",fontsize=16,color="green",shape="box"];3168[label="EQ",fontsize=16,color="green",shape="box"];3169 -> 3016[label="",style="dashed", color="red", weight=0]; 3169[label="primCmpNat (Succ vyw290000) Zero",fontsize=16,color="magenta"];3169 -> 3235[label="",style="dashed", color="magenta", weight=3]; 3169 -> 3236[label="",style="dashed", color="magenta", weight=3]; 3170[label="EQ",fontsize=16,color="green",shape="box"];3171[label="Succ (Succ (primPlusNat vyw900 vyw400100))",fontsize=16,color="green",shape="box"];3171 -> 3237[label="",style="dashed", color="green", weight=3]; 3172[label="Succ vyw400100",fontsize=16,color="green",shape="box"];3173[label="vyw28000",fontsize=16,color="green",shape="box"];3174[label="vyw29000",fontsize=16,color="green",shape="box"];3175[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3175 -> 3238[label="",style="solid", color="black", weight=3]; 3176[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3176 -> 3239[label="",style="solid", color="black", weight=3]; 3177[label="vyw28000",fontsize=16,color="green",shape="box"];3178[label="vyw29000",fontsize=16,color="green",shape="box"];3179[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3179 -> 3240[label="",style="solid", color="black", weight=3]; 3180[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3180 -> 3241[label="",style="solid", color="black", weight=3]; 3181[label="vyw28000",fontsize=16,color="green",shape="box"];3182[label="vyw29000",fontsize=16,color="green",shape="box"];3183[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3183 -> 3242[label="",style="solid", color="black", weight=3]; 3184[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3184 -> 3243[label="",style="solid", color="black", weight=3]; 3185[label="vyw28000",fontsize=16,color="green",shape="box"];3186[label="vyw29000",fontsize=16,color="green",shape="box"];3187[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3187 -> 3244[label="",style="solid", color="black", weight=3]; 3188[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3188 -> 3245[label="",style="solid", color="black", weight=3]; 3189[label="vyw28000",fontsize=16,color="green",shape="box"];3190[label="vyw29000",fontsize=16,color="green",shape="box"];3191[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3191 -> 3246[label="",style="solid", color="black", weight=3]; 3192[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3192 -> 3247[label="",style="solid", color="black", weight=3]; 3193[label="vyw28000",fontsize=16,color="green",shape="box"];3194[label="vyw29000",fontsize=16,color="green",shape="box"];3195 -> 1925[label="",style="dashed", color="red", weight=0]; 3195[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3195 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3195 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3196 -> 1925[label="",style="dashed", color="red", weight=0]; 3196[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3196 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3196 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3197 -> 1925[label="",style="dashed", color="red", weight=0]; 3197[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3197 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3197 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3198 -> 1925[label="",style="dashed", color="red", weight=0]; 3198[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3198 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3199 -> 1925[label="",style="dashed", color="red", weight=0]; 3199[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3199 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3199 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3200 -> 1925[label="",style="dashed", color="red", weight=0]; 3200[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3200 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3200 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3201 -> 1925[label="",style="dashed", color="red", weight=0]; 3201[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3201 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3201 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3202 -> 1925[label="",style="dashed", color="red", weight=0]; 3202[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3202 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3202 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3203 -> 2782[label="",style="dashed", color="red", weight=0]; 3203[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3203 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3203 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3204 -> 2468[label="",style="dashed", color="red", weight=0]; 3204[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3204 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3204 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3205 -> 2786[label="",style="dashed", color="red", weight=0]; 3205[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3205 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3205 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3206 -> 2500[label="",style="dashed", color="red", weight=0]; 3206[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3206 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3206 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3207 -> 2790[label="",style="dashed", color="red", weight=0]; 3207[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3207 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3208 -> 2792[label="",style="dashed", color="red", weight=0]; 3208[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3208 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3208 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3209 -> 2794[label="",style="dashed", color="red", weight=0]; 3209[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3209 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3210 -> 2796[label="",style="dashed", color="red", weight=0]; 3210[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3210 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3211 -> 2516[label="",style="dashed", color="red", weight=0]; 3211[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3211 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3212 -> 2518[label="",style="dashed", color="red", weight=0]; 3212[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3212 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3213 -> 2520[label="",style="dashed", color="red", weight=0]; 3213[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3213 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3214 -> 2522[label="",style="dashed", color="red", weight=0]; 3214[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3214 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3214 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3215 -> 2524[label="",style="dashed", color="red", weight=0]; 3215[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3215 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3215 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3216 -> 2526[label="",style="dashed", color="red", weight=0]; 3216[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3216 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3217[label="primCompAux0 vyw99 LT",fontsize=16,color="black",shape="box"];3217 -> 3292[label="",style="solid", color="black", weight=3]; 3218[label="primCompAux0 vyw99 EQ",fontsize=16,color="black",shape="box"];3218 -> 3293[label="",style="solid", color="black", weight=3]; 3219[label="primCompAux0 vyw99 GT",fontsize=16,color="black",shape="box"];3219 -> 3294[label="",style="solid", color="black", weight=3]; 3220[label="Integer vyw280000 * Integer vyw290010",fontsize=16,color="black",shape="box"];3220 -> 3295[label="",style="solid", color="black", weight=3]; 3221 -> 1925[label="",style="dashed", color="red", weight=0]; 3221[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3221 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3222 -> 1925[label="",style="dashed", color="red", weight=0]; 3222[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3222 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3223 -> 1925[label="",style="dashed", color="red", weight=0]; 3223[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3223 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3224 -> 1925[label="",style="dashed", color="red", weight=0]; 3224[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3224 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3225 -> 1925[label="",style="dashed", color="red", weight=0]; 3225[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3225 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3226 -> 1925[label="",style="dashed", color="red", weight=0]; 3226[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3226 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3227 -> 1925[label="",style="dashed", color="red", weight=0]; 3227[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3227 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3228 -> 1925[label="",style="dashed", color="red", weight=0]; 3228[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3228 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3016[label="",style="dashed", color="red", weight=0]; 3229[label="primCmpNat vyw280000 vyw290000",fontsize=16,color="magenta"];3229 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3230[label="GT",fontsize=16,color="green",shape="box"];3231[label="LT",fontsize=16,color="green",shape="box"];3232[label="EQ",fontsize=16,color="green",shape="box"];3233[label="Zero",fontsize=16,color="green",shape="box"];3234[label="Succ vyw290000",fontsize=16,color="green",shape="box"];3235[label="Succ vyw290000",fontsize=16,color="green",shape="box"];3236[label="Zero",fontsize=16,color="green",shape="box"];3237[label="primPlusNat vyw900 vyw400100",fontsize=16,color="burlywood",shape="triangle"];3967[label="vyw900/Succ vyw9000",fontsize=10,color="white",style="solid",shape="box"];3237 -> 3967[label="",style="solid", color="burlywood", weight=9]; 3967 -> 3314[label="",style="solid", color="burlywood", weight=3]; 3968[label="vyw900/Zero",fontsize=10,color="white",style="solid",shape="box"];3237 -> 3968[label="",style="solid", color="burlywood", weight=9]; 3968 -> 3315[label="",style="solid", color="burlywood", weight=3]; 3238 -> 3316[label="",style="dashed", color="red", weight=0]; 3238[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3238 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3239[label="EQ",fontsize=16,color="green",shape="box"];3240 -> 3318[label="",style="dashed", color="red", weight=0]; 3240[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3240 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3241[label="EQ",fontsize=16,color="green",shape="box"];3242 -> 3320[label="",style="dashed", color="red", weight=0]; 3242[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3242 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3243[label="EQ",fontsize=16,color="green",shape="box"];3244 -> 3322[label="",style="dashed", color="red", weight=0]; 3244[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3244 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3245[label="EQ",fontsize=16,color="green",shape="box"];3246 -> 3324[label="",style="dashed", color="red", weight=0]; 3246[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3246 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3247[label="EQ",fontsize=16,color="green",shape="box"];3248[label="vyw28000",fontsize=16,color="green",shape="box"];3249[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3250[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3251[label="vyw29000",fontsize=16,color="green",shape="box"];3252[label="vyw28000",fontsize=16,color="green",shape="box"];3253[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3254[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3255[label="vyw29000",fontsize=16,color="green",shape="box"];3256[label="vyw28000",fontsize=16,color="green",shape="box"];3257[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3258[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3259[label="vyw29000",fontsize=16,color="green",shape="box"];3260[label="vyw28000",fontsize=16,color="green",shape="box"];3261[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3262[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3263[label="vyw29000",fontsize=16,color="green",shape="box"];3264[label="vyw28000",fontsize=16,color="green",shape="box"];3265[label="vyw29000",fontsize=16,color="green",shape="box"];3266[label="vyw28000",fontsize=16,color="green",shape="box"];3267[label="vyw29000",fontsize=16,color="green",shape="box"];3268[label="vyw28000",fontsize=16,color="green",shape="box"];3269[label="vyw29000",fontsize=16,color="green",shape="box"];3270[label="vyw28000",fontsize=16,color="green",shape="box"];3271[label="vyw29000",fontsize=16,color="green",shape="box"];3272[label="vyw28000",fontsize=16,color="green",shape="box"];3273[label="vyw29000",fontsize=16,color="green",shape="box"];3274[label="vyw28000",fontsize=16,color="green",shape="box"];3275[label="vyw29000",fontsize=16,color="green",shape="box"];3276[label="vyw28000",fontsize=16,color="green",shape="box"];3277[label="vyw29000",fontsize=16,color="green",shape="box"];3278[label="vyw28000",fontsize=16,color="green",shape="box"];3279[label="vyw29000",fontsize=16,color="green",shape="box"];3280[label="vyw28000",fontsize=16,color="green",shape="box"];3281[label="vyw29000",fontsize=16,color="green",shape="box"];3282[label="vyw28000",fontsize=16,color="green",shape="box"];3283[label="vyw29000",fontsize=16,color="green",shape="box"];3284[label="vyw28000",fontsize=16,color="green",shape="box"];3285[label="vyw29000",fontsize=16,color="green",shape="box"];3286[label="vyw28000",fontsize=16,color="green",shape="box"];3287[label="vyw29000",fontsize=16,color="green",shape="box"];3288[label="vyw28000",fontsize=16,color="green",shape="box"];3289[label="vyw29000",fontsize=16,color="green",shape="box"];3290[label="vyw28000",fontsize=16,color="green",shape="box"];3291[label="vyw29000",fontsize=16,color="green",shape="box"];3292[label="LT",fontsize=16,color="green",shape="box"];3293[label="vyw99",fontsize=16,color="green",shape="box"];3294[label="GT",fontsize=16,color="green",shape="box"];3295[label="Integer (primMulInt vyw280000 vyw290010)",fontsize=16,color="green",shape="box"];3295 -> 3326[label="",style="dashed", color="green", weight=3]; 3296[label="vyw28000",fontsize=16,color="green",shape="box"];3297[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3298[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3299[label="vyw29000",fontsize=16,color="green",shape="box"];3300[label="vyw28000",fontsize=16,color="green",shape="box"];3301[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3302[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3303[label="vyw29000",fontsize=16,color="green",shape="box"];3304[label="vyw28000",fontsize=16,color="green",shape="box"];3305[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3306[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3307[label="vyw29000",fontsize=16,color="green",shape="box"];3308[label="vyw28000",fontsize=16,color="green",shape="box"];3309[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3310[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3311[label="vyw29000",fontsize=16,color="green",shape="box"];3312[label="vyw280000",fontsize=16,color="green",shape="box"];3313[label="vyw290000",fontsize=16,color="green",shape="box"];3314[label="primPlusNat (Succ vyw9000) vyw400100",fontsize=16,color="burlywood",shape="box"];3969[label="vyw400100/Succ vyw4001000",fontsize=10,color="white",style="solid",shape="box"];3314 -> 3969[label="",style="solid", color="burlywood", weight=9]; 3969 -> 3327[label="",style="solid", color="burlywood", weight=3]; 3970[label="vyw400100/Zero",fontsize=10,color="white",style="solid",shape="box"];3314 -> 3970[label="",style="solid", color="burlywood", weight=9]; 3970 -> 3328[label="",style="solid", color="burlywood", weight=3]; 3315[label="primPlusNat Zero vyw400100",fontsize=16,color="burlywood",shape="box"];3971[label="vyw400100/Succ vyw4001000",fontsize=10,color="white",style="solid",shape="box"];3315 -> 3971[label="",style="solid", color="burlywood", weight=9]; 3971 -> 3329[label="",style="solid", color="burlywood", weight=3]; 3972[label="vyw400100/Zero",fontsize=10,color="white",style="solid",shape="box"];3315 -> 3972[label="",style="solid", color="burlywood", weight=9]; 3972 -> 3330[label="",style="solid", color="burlywood", weight=3]; 3317 -> 2111[label="",style="dashed", color="red", weight=0]; 3317[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3317 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3317 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3316[label="compare1 vyw28000 vyw29000 vyw101",fontsize=16,color="burlywood",shape="triangle"];3973[label="vyw101/False",fontsize=10,color="white",style="solid",shape="box"];3316 -> 3973[label="",style="solid", color="burlywood", weight=9]; 3973 -> 3333[label="",style="solid", color="burlywood", weight=3]; 3974[label="vyw101/True",fontsize=10,color="white",style="solid",shape="box"];3316 -> 3974[label="",style="solid", color="burlywood", weight=9]; 3974 -> 3334[label="",style="solid", color="burlywood", weight=3]; 3319 -> 2113[label="",style="dashed", color="red", weight=0]; 3319[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3319 -> 3335[label="",style="dashed", color="magenta", weight=3]; 3319 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3318[label="compare1 vyw28000 vyw29000 vyw102",fontsize=16,color="burlywood",shape="triangle"];3975[label="vyw102/False",fontsize=10,color="white",style="solid",shape="box"];3318 -> 3975[label="",style="solid", color="burlywood", weight=9]; 3975 -> 3337[label="",style="solid", color="burlywood", weight=3]; 3976[label="vyw102/True",fontsize=10,color="white",style="solid",shape="box"];3318 -> 3976[label="",style="solid", color="burlywood", weight=9]; 3976 -> 3338[label="",style="solid", color="burlywood", weight=3]; 3321 -> 2115[label="",style="dashed", color="red", weight=0]; 3321[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3321 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3320[label="compare1 vyw28000 vyw29000 vyw103",fontsize=16,color="burlywood",shape="triangle"];3977[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];3320 -> 3977[label="",style="solid", color="burlywood", weight=9]; 3977 -> 3341[label="",style="solid", color="burlywood", weight=3]; 3978[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];3320 -> 3978[label="",style="solid", color="burlywood", weight=9]; 3978 -> 3342[label="",style="solid", color="burlywood", weight=3]; 3323 -> 2116[label="",style="dashed", color="red", weight=0]; 3323[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3323 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3322[label="compare1 vyw28000 vyw29000 vyw104",fontsize=16,color="burlywood",shape="triangle"];3979[label="vyw104/False",fontsize=10,color="white",style="solid",shape="box"];3322 -> 3979[label="",style="solid", color="burlywood", weight=9]; 3979 -> 3345[label="",style="solid", color="burlywood", weight=3]; 3980[label="vyw104/True",fontsize=10,color="white",style="solid",shape="box"];3322 -> 3980[label="",style="solid", color="burlywood", weight=9]; 3980 -> 3346[label="",style="solid", color="burlywood", weight=3]; 3325 -> 2117[label="",style="dashed", color="red", weight=0]; 3325[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3325 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3325 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3324[label="compare1 vyw28000 vyw29000 vyw105",fontsize=16,color="burlywood",shape="triangle"];3981[label="vyw105/False",fontsize=10,color="white",style="solid",shape="box"];3324 -> 3981[label="",style="solid", color="burlywood", weight=9]; 3981 -> 3349[label="",style="solid", color="burlywood", weight=3]; 3982[label="vyw105/True",fontsize=10,color="white",style="solid",shape="box"];3324 -> 3982[label="",style="solid", color="burlywood", weight=9]; 3982 -> 3350[label="",style="solid", color="burlywood", weight=3]; 3326 -> 2127[label="",style="dashed", color="red", weight=0]; 3326[label="primMulInt vyw280000 vyw290010",fontsize=16,color="magenta"];3326 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3326 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3327[label="primPlusNat (Succ vyw9000) (Succ vyw4001000)",fontsize=16,color="black",shape="box"];3327 -> 3353[label="",style="solid", color="black", weight=3]; 3328[label="primPlusNat (Succ vyw9000) Zero",fontsize=16,color="black",shape="box"];3328 -> 3354[label="",style="solid", color="black", weight=3]; 3329[label="primPlusNat Zero (Succ vyw4001000)",fontsize=16,color="black",shape="box"];3329 -> 3355[label="",style="solid", color="black", weight=3]; 3330[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3330 -> 3356[label="",style="solid", color="black", weight=3]; 3331[label="vyw28000",fontsize=16,color="green",shape="box"];3332[label="vyw29000",fontsize=16,color="green",shape="box"];3333[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3333 -> 3357[label="",style="solid", color="black", weight=3]; 3334[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3334 -> 3358[label="",style="solid", color="black", weight=3]; 3335[label="vyw28000",fontsize=16,color="green",shape="box"];3336[label="vyw29000",fontsize=16,color="green",shape="box"];3337[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3337 -> 3359[label="",style="solid", color="black", weight=3]; 3338[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3338 -> 3360[label="",style="solid", color="black", weight=3]; 3339[label="vyw28000",fontsize=16,color="green",shape="box"];3340[label="vyw29000",fontsize=16,color="green",shape="box"];3341[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3341 -> 3361[label="",style="solid", color="black", weight=3]; 3342[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3342 -> 3362[label="",style="solid", color="black", weight=3]; 3343[label="vyw28000",fontsize=16,color="green",shape="box"];3344[label="vyw29000",fontsize=16,color="green",shape="box"];3345[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3345 -> 3363[label="",style="solid", color="black", weight=3]; 3346[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3346 -> 3364[label="",style="solid", color="black", weight=3]; 3347[label="vyw28000",fontsize=16,color="green",shape="box"];3348[label="vyw29000",fontsize=16,color="green",shape="box"];3349[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3349 -> 3365[label="",style="solid", color="black", weight=3]; 3350[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3350 -> 3366[label="",style="solid", color="black", weight=3]; 3351[label="vyw280000",fontsize=16,color="green",shape="box"];3352[label="vyw290010",fontsize=16,color="green",shape="box"];3353[label="Succ (Succ (primPlusNat vyw9000 vyw4001000))",fontsize=16,color="green",shape="box"];3353 -> 3367[label="",style="dashed", color="green", weight=3]; 3354[label="Succ vyw9000",fontsize=16,color="green",shape="box"];3355[label="Succ vyw4001000",fontsize=16,color="green",shape="box"];3356[label="Zero",fontsize=16,color="green",shape="box"];3357[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3357 -> 3368[label="",style="solid", color="black", weight=3]; 3358[label="LT",fontsize=16,color="green",shape="box"];3359[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3359 -> 3369[label="",style="solid", color="black", weight=3]; 3360[label="LT",fontsize=16,color="green",shape="box"];3361[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3361 -> 3370[label="",style="solid", color="black", weight=3]; 3362[label="LT",fontsize=16,color="green",shape="box"];3363[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3363 -> 3371[label="",style="solid", color="black", weight=3]; 3364[label="LT",fontsize=16,color="green",shape="box"];3365[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3365 -> 3372[label="",style="solid", color="black", weight=3]; 3366[label="LT",fontsize=16,color="green",shape="box"];3367 -> 3237[label="",style="dashed", color="red", weight=0]; 3367[label="primPlusNat vyw9000 vyw4001000",fontsize=16,color="magenta"];3367 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3367 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3368[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3368 -> 3375[label="",style="solid", color="black", weight=3]; 3369[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3369 -> 3376[label="",style="solid", color="black", weight=3]; 3370[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3370 -> 3377[label="",style="solid", color="black", weight=3]; 3371[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3371 -> 3378[label="",style="solid", color="black", weight=3]; 3372[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3372 -> 3379[label="",style="solid", color="black", weight=3]; 3373[label="vyw4001000",fontsize=16,color="green",shape="box"];3374[label="vyw9000",fontsize=16,color="green",shape="box"];3375[label="GT",fontsize=16,color="green",shape="box"];3376[label="GT",fontsize=16,color="green",shape="box"];3377[label="GT",fontsize=16,color="green",shape="box"];3378[label="GT",fontsize=16,color="green",shape="box"];3379[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(vyw280000), Succ(vyw290000)) -> new_primCmpNat(vyw280000, vyw290000) 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(vyw280000), Succ(vyw290000)) -> new_primCmpNat(vyw280000, vyw290000) 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_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_Either, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_Either, gg), gh), gc) -> new_esEs1(vyw300, vyw4000, gg, gh) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bg), bh)) -> new_esEs2(vyw300, vyw4000, bg, bh) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_Maybe, bae)) -> new_esEs3(vyw300, vyw4000, bae) new_esEs3(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(vyw301, vyw4001, dh, ea, eb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(vyw301, vyw4001, eg) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_Maybe, bbg)) -> new_esEs3(vyw301, vyw4001, bbg) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(vyw301, vyw4001, bbe, bbf) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_[], bag)) -> new_esEs(vyw301, vyw4001, bag) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), h) -> new_esEs(vyw301, vyw4001, h) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(vyw302, vyw4002, de) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, bda), bca) -> new_esEs3(vyw300, vyw4000, bda) new_esEs3(Just(vyw300), Just(vyw4000), app(ty_Maybe, beb)) -> new_esEs3(vyw300, vyw4000, beb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, fd), ff), cc, dg) -> new_esEs1(vyw300, vyw4000, fd, ff) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_@2, dc), dd)) -> new_esEs2(vyw302, vyw4002, dc, dd) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], ba)) -> new_esEs(vyw300, vyw4000, ba) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_@2, ee), ef), dg) -> new_esEs2(vyw301, vyw4001, ee, ef) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(vyw300, vyw4000, ga) new_esEs1(Left(vyw300), Left(vyw4000), app(ty_Maybe, hc), gc) -> new_esEs3(vyw300, vyw4000, hc) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, bcg), bch), bca) -> new_esEs2(vyw300, vyw4000, bcg, bch) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_@2, bac), bad)) -> new_esEs2(vyw300, vyw4000, bac, bad) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(vyw300, vyw4000, bb, bc, bd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw302, vyw4002, ce, cf, cg) new_esEs1(Left(vyw300), Left(vyw4000), app(ty_[], gb), gc) -> new_esEs(vyw300, vyw4000, gb) new_esEs1(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_esEs0(vyw300, vyw4000, gd, ge, gf) new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_@2, bdh), bea)) -> new_esEs2(vyw300, vyw4000, bdh, bea) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, be), bf)) -> new_esEs1(vyw300, vyw4000, be, bf) new_esEs3(Just(vyw300), Just(vyw4000), app(ty_[], bdb)) -> new_esEs(vyw300, vyw4000, bdb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], eh), cc, dg) -> new_esEs(vyw300, vyw4000, eh) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_[], df), dg) -> new_esEs(vyw301, vyw4001, df) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, ca)) -> new_esEs3(vyw300, vyw4000, ca) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_[], cd)) -> new_esEs(vyw302, vyw4002, cd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_Either, ec), ed), dg) -> new_esEs1(vyw301, vyw4001, ec, ed) new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_@2, ha), hb), gc) -> new_esEs2(vyw300, vyw4000, ha, hb) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw300, vyw4000, hf, hg, hh) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bbh), bca) -> new_esEs(vyw300, vyw4000, bbh) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, fg), fh), cc, dg) -> new_esEs2(vyw300, vyw4000, fg, fh) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw300, vyw4000, bcb, bcc, bcd) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_[], he)) -> new_esEs(vyw300, vyw4000, he) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bce), bcf), bca) -> new_esEs1(vyw300, vyw4000, bce, bcf) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(vyw300, vyw4000, baa, bab) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_Either, bbc), bbd)) -> new_esEs1(vyw301, vyw4001, bbc, bbd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(vyw300, vyw4000, fa, fb, fc) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_Either, da), db)) -> new_esEs1(vyw302, vyw4002, da, db) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw301, vyw4001, bah, bba, bbb) 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_esEs3(Just(vyw300), Just(vyw4000), app(ty_Maybe, beb)) -> new_esEs3(vyw300, vyw4000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_Either, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vyw300), Just(vyw4000), app(ty_[], bdb)) -> new_esEs(vyw300, vyw4000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, ca)) -> new_esEs3(vyw300, vyw4000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, be), bf)) -> new_esEs1(vyw300, vyw4000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_@2, bdh), bea)) -> new_esEs2(vyw300, vyw4000, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(vyw300, vyw4000, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bg), bh)) -> new_esEs2(vyw300, vyw4000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_Maybe, bae)) -> new_esEs3(vyw300, vyw4000, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(vyw300), Left(vyw4000), app(ty_Maybe, hc), gc) -> new_esEs3(vyw300, vyw4000, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_Either, gg), gh), gc) -> new_esEs1(vyw300, vyw4000, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(vyw300, vyw4000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vyw300), Left(vyw4000), app(ty_[], gb), gc) -> new_esEs(vyw300, vyw4000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_[], he)) -> new_esEs(vyw300, vyw4000, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_esEs0(vyw300, vyw4000, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw300, vyw4000, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_@2, bac), bad)) -> new_esEs2(vyw300, vyw4000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_@2, ha), hb), gc) -> new_esEs2(vyw300, vyw4000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_Maybe, bbg)) -> new_esEs3(vyw301, vyw4001, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, bda), bca) -> new_esEs3(vyw300, vyw4000, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(vyw301, vyw4001, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(vyw302, vyw4002, de) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(vyw300, vyw4000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bce), bcf), bca) -> new_esEs1(vyw300, vyw4000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_Either, bbc), bbd)) -> new_esEs1(vyw301, vyw4001, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, fd), ff), cc, dg) -> new_esEs1(vyw300, vyw4000, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_Either, ec), ed), dg) -> new_esEs1(vyw301, vyw4001, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_Either, da), db)) -> new_esEs1(vyw302, vyw4002, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_[], bag)) -> new_esEs(vyw301, vyw4001, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bbh), bca) -> new_esEs(vyw300, vyw4000, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw300, vyw4000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw301, vyw4001, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(vyw301, vyw4001, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, bcg), bch), bca) -> new_esEs2(vyw300, vyw4000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], eh), cc, dg) -> new_esEs(vyw300, vyw4000, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_[], df), dg) -> new_esEs(vyw301, vyw4001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_[], cd)) -> new_esEs(vyw302, vyw4002, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), h) -> new_esEs(vyw301, vyw4001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], ba)) -> new_esEs(vyw300, vyw4000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(vyw301, vyw4001, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw302, vyw4002, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(vyw300, vyw4000, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_@2, dc), dd)) -> new_esEs2(vyw302, vyw4002, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_@2, ee), ef), dg) -> new_esEs2(vyw301, vyw4001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, fg), fh), cc, dg) -> new_esEs2(vyw300, vyw4000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw43, Just(vyw30), h, ba) new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw44, Just(vyw30), h, ba) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, False, h, ba) -> new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Just(vyw400), False, ba), GT), h, ba) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), GT), h, ba) new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw43, Nothing, h, ba) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs17(new_compare211(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), LT), h, ba) new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw44, Nothing, h, ba) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM0(vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Nothing, True, ba), GT), h, ba) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Just(vyw400), False, ba), LT), h, ba) new_elemFM0(vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw44, Nothing, h, ba) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(vyw28002, vyw29002, bhg, bhh) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcc), bcd), bce), bbf) -> new_esEs4(vyw300, vyw4000, bcc, bcd, bce) new_lt13(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_lt15(vyw28001, vyw29001, bgb, bgc) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(vyw300, vyw4000, bf, bg, bh) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bfe, bff) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_esEs6(vyw28000, vyw29000, bfe, bff) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, cf)) -> new_esEs7(vyw300, vyw4000, cf) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, dde), ddf)) -> new_compare27(vyw28000, vyw29000, dde, ddf) new_compare211(vyw280, vyw290, True, dea) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dcf)) -> new_esEs7(vyw300, vyw4000, dcf) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bbb, bbc, bbd) -> new_asAs(new_esEs27(vyw300, vyw4000, bbb), new_asAs(new_esEs26(vyw301, vyw4001, bbc), new_esEs25(vyw302, vyw4002, bbd))) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbf, dbg, dbh) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_primCompAux0(vyw28000, vyw29000, vyw89, bef) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, bef)) new_compare3([], [], bef) -> EQ new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs11(vyw18, vyw13) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bbf) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, beh, bfa) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, hd), he), hf)) -> new_ltEs7(vyw28000, vyw29000, hd, he, hf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bch), bda), bbf) -> new_esEs6(vyw300, vyw4000, bch, bda) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_lt17(vyw28000, vyw29000, bfe, bff) new_compare27(vyw28000, vyw29000, bfe, bff) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bfe, bff), bfe, bff) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, ce)) -> new_esEs15(vyw300, vyw4000, ce) new_lt13(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_lt6(vyw28001, vyw29001, bgh) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs12(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, ef) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bbf) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs11(vyw30, vyw400) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, cch), cda)) -> new_ltEs10(vyw2800, vyw2900, cch, cda) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, beh, bfa) -> GT new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs7(vyw28001, vyw29001, ced, cee, cef) new_compare211(Just(vyw2800), Nothing, False, dea) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dea) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dea), dea) new_esEs30(vyw18, vyw13, app(ty_Ratio, dh)) -> new_esEs15(vyw18, vyw13, dh) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), bba) -> new_asAs(new_esEs28(vyw300, vyw4000, bba), new_esEs10(vyw301, vyw4001, bba)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, bhd), bhe)) -> new_ltEs6(vyw28002, vyw29002, bhd, bhe) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, eg), eh), ef) -> new_ltEs6(vyw28000, vyw29000, eg, eh) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, ef) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bbf) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs9(vyw18, vyw13) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw28000, vyw29000, cdb, cdc, cdd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(vyw300, vyw4000, cbf, cbg, cbh) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw18, vyw13, da, db, dc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_esEs15(vyw28001, vyw29001, bgh) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bfe, bff) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bef) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, bef), bef) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt7(vyw28000, vyw29000, hb) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt14(vyw28000, vyw29000, cdb, cdc, cdd) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, ec), ed), ee), ef) -> new_ltEs7(vyw28000, vyw29000, ec, ed, ee) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs7(vyw2800, vyw2900, bfb, bfc, bfd) new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(vyw30, vyw400, bbb, bbc, bbd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, ddg)) -> new_compare15(vyw28000, vyw29000, ddg) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], baa)) -> new_ltEs9(vyw28000, vyw29000, baa) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fb), fc), ef) -> new_ltEs10(vyw28000, vyw29000, fb, fc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Maybe, bee)) -> new_esEs7(vyw300, vyw4000, bee) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), bef) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bd) -> False new_esEs7(Just(vyw300), Nothing, bd) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, cba), cbb)) -> new_esEs6(vyw301, vyw4001, cba, cbb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vyw28001, vyw29001, bfg, bfh, bga) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Ratio, bed)) -> new_esEs15(vyw300, vyw4000, bed) new_compare25(vyw28000, vyw29000, True, beh, bfa) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, ca), cb)) -> new_esEs5(vyw300, vyw4000, ca, cb) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(vyw28001, vyw29001, cfb, cfc) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs17(vyw18, vyw13) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bd) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], bhf)) -> new_ltEs9(vyw28002, vyw29002, bhf) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_esEs6(vyw28000, vyw29000, cdh, cea) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_lt15(vyw28000, vyw29000, beh, bfa) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, hb) -> new_esEs17(new_compare3(vyw28000, vyw29000, hb), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, ef) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, dcg), dch), dda)) -> new_compare13(vyw28000, vyw29000, dcg, dch, dda) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], bgd)) -> new_lt7(vyw28001, vyw29001, bgd) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbg, bbh) -> new_asAs(new_esEs23(vyw300, vyw4000, bbg), new_esEs22(vyw301, vyw4001, bbh)) new_esEs22(vyw301, vyw4001, app(ty_[], cac)) -> new_esEs10(vyw301, vyw4001, cac) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_esEs5(vyw28000, vyw29000, cde, cdf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bbf) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cgg)) -> new_esEs7(vyw302, vyw4002, cgg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, chf), chg)) -> new_esEs6(vyw301, vyw4001, chf, chg) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs4(vyw300, vyw4000, bde, bdf, bdg) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs7(vyw28002, vyw29002, bha, bhb, bhc) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_Either, gc), gd)) -> new_ltEs6(vyw28000, vyw29000, gc, gd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs7(vyw301, vyw4001, cbd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, ccf)) -> new_esEs7(vyw300, vyw4000, ccf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcf), bcg), bbf) -> new_esEs5(vyw300, vyw4000, bcf, bcg) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], ddd)) -> new_compare3(vyw28000, vyw29000, ddd) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw28000, vyw29000, beh, bfa) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs17(vyw30, vyw400) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, beh, bfa) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], cdg)) -> new_esEs10(vyw28000, vyw29000, cdg) new_compare24(vyw28000, vyw29000, False, baf, bag, bah) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, cbc)) -> new_esEs15(vyw301, vyw4001, cbc) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vyw28001, vyw29001, bfg, bfh, bga) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], be)) -> new_esEs10(vyw300, vyw4000, be) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, cc), cd)) -> new_esEs6(vyw300, vyw4000, cc, cd) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs14(vyw18, vyw13) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cch, cda) -> new_pePe(new_lt20(vyw28000, vyw29000, cch), new_asAs(new_esEs24(vyw28000, vyw29000, cch), new_ltEs19(vyw28001, vyw29001, cda))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cce)) -> new_esEs15(vyw300, vyw4000, cce) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_esEs7(vyw28000, vyw29000, ceb) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, bad)) -> new_ltEs11(vyw28000, vyw29000, bad) new_compare12(vyw28000, vyw29000, False, baf, bag, bah) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_lt11(vyw28000, vyw29000, ceb) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs14(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bbf) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_[], bdd)) -> new_esEs10(vyw300, vyw4000, bdd) new_lt15(vyw28000, vyw29000, beh, bfa) -> new_esEs17(new_compare16(vyw28000, vyw29000, beh, bfa), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_@2, beb), bec)) -> new_esEs6(vyw300, vyw4000, beb, bec) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cgd), cge)) -> new_esEs6(vyw302, vyw4002, cgd, cge) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cbe)) -> new_esEs10(vyw300, vyw4000, cbe) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, ddh)) -> new_compare9(vyw28000, vyw29000, ddh) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, fd), ef) -> new_ltEs11(vyw28000, vyw29000, fd) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vyw301, vyw4001, cha, chb, chc) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, ef) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, ccc), ccd)) -> new_esEs6(vyw300, vyw4000, ccc, ccd) new_ltEs19(vyw28001, vyw29001, app(ty_[], cfa)) -> new_ltEs9(vyw28001, vyw29001, cfa) new_lt6(vyw28000, vyw29000, eb) -> new_esEs17(new_compare9(vyw28000, vyw29000, eb), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, ef) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, hc)) -> new_ltEs11(vyw2800, vyw2900, hc) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chh)) -> new_esEs15(vyw301, vyw4001, chh) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs10(vyw28000, vyw29000, hb) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw28000, vyw29000, gf, gg) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, baf, bag, bah) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], cdg)) -> new_lt7(vyw28000, vyw29000, cdg) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bab), bac)) -> new_ltEs10(vyw28000, vyw29000, bab, bac) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_lt17(vyw28000, vyw29000, cdh, cea) new_lt13(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_lt11(vyw28001, vyw29001, bgg) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ccg) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ccg), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, baf, bag, bah) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, ff), ef) -> new_ltEs12(vyw28000, vyw29000, ff) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, beg) -> new_esEs17(new_compare15(vyw28000, vyw29000, beg), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_esEs15(vyw28000, vyw29000, eb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Maybe, gh)) -> new_ltEs11(vyw28000, vyw29000, gh) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs4(vyw301, vyw4001, cad, cae, caf) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, baf, bag, bah) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, beg) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, beg), beg) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], bba) -> False new_esEs10([], :(vyw4000, vyw4001), bba) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyw30, vyw400, bbe, bbf) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, hg), hh)) -> new_ltEs6(vyw28000, vyw29000, hg, hh) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dah), dba)) -> new_esEs6(vyw300, vyw4000, dah, dba) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bbf) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, bef) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, bef), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, caa)) -> new_ltEs11(vyw28002, vyw29002, caa) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Ratio, ha)) -> new_ltEs12(vyw28000, vyw29000, ha) new_ltEs11(Nothing, Just(vyw29000), hc) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw28001, vyw29001, bgb, bgc) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgh)) -> new_esEs10(vyw301, vyw4001, cgh) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), bfb, bfc, bfd) -> new_pePe(new_lt12(vyw28000, vyw29000, bfb), new_asAs(new_esEs21(vyw28000, vyw29000, bfb), new_pePe(new_lt13(vyw28001, vyw29001, bfc), new_asAs(new_esEs20(vyw28001, vyw29001, bfc), new_ltEs18(vyw28002, vyw29002, bfd))))) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_Either, bdh), bea)) -> new_esEs5(vyw300, vyw4000, bdh, bea) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], cff)) -> new_esEs10(vyw302, vyw4002, cff) new_ltEs20(vyw2800, vyw2900, app(ty_[], bef)) -> new_ltEs9(vyw2800, vyw2900, bef) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(vyw300, vyw4000, dcc, dcd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_[], ge)) -> new_ltEs9(vyw28000, vyw29000, ge) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, cfd)) -> new_ltEs11(vyw28001, vyw29001, cfd) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_lt6(vyw28000, vyw29000, eb) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ccg)) -> new_ltEs12(vyw2800, vyw2900, ccg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_lt11(vyw28000, vyw29000, beg) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_esEs7(vyw28000, vyw29000, beg) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, fg), ef)) -> new_ltEs6(vyw2800, vyw2900, fg, ef) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], fa), ef) -> new_ltEs9(vyw28000, vyw29000, fa) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw302, vyw4002, cgb, cgc) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_lt14(vyw28000, vyw29000, baf, bag, bah) -> new_esEs17(new_compare13(vyw28000, vyw29000, baf, bag, bah), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cgf)) -> new_esEs15(vyw302, vyw4002, cgf) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, cfe)) -> new_ltEs12(vyw28001, vyw29001, cfe) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, ceg), ceh)) -> new_ltEs6(vyw28001, vyw29001, ceg, ceh) new_esEs26(vyw301, vyw4001, app(ty_Maybe, daa)) -> new_esEs7(vyw301, vyw4001, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bdb), bbf) -> new_esEs15(vyw300, vyw4000, bdb) new_compare111(vyw73, vyw74, False, dbd) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], bgd)) -> new_esEs10(vyw28001, vyw29001, bgd) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, beh, bfa) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dbc)) -> new_esEs7(vyw300, vyw4000, dbc) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_lt17(vyw28001, vyw29001, bge, bgf) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bdc), bbf) -> new_esEs7(vyw300, vyw4000, bdc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw300, vyw4000, dac, dad, dae) new_ltEs6(Right(vyw28000), Left(vyw29000), fg, ef) -> False new_compare211(Nothing, Just(vyw2900), False, dea) -> LT new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, ef) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bbf) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_esEs7(vyw28001, vyw29001, bgg) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs30(vyw18, vyw13, app(app(ty_@2, df), dg)) -> new_esEs6(vyw18, vyw13, df, dg) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, app(ty_[], bba)) -> new_esEs10(vyw30, vyw400, bba) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dbb)) -> new_esEs15(vyw300, vyw4000, dbb) new_esEs5(Left(vyw300), Right(vyw4000), bbe, bbf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bbe, bbf) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_esEs6(vyw28001, vyw29001, bge, bgf) new_esEs27(vyw300, vyw4000, app(ty_[], dab)) -> new_esEs10(vyw300, vyw4000, dab) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bcb), bbf) -> new_esEs10(vyw300, vyw4000, bcb) new_esEs29(vyw30, vyw400, app(ty_Ratio, bca)) -> new_esEs15(vyw30, vyw400, bca) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cab)) -> new_ltEs12(vyw28002, vyw29002, cab) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, ddb), ddc)) -> new_compare16(vyw28000, vyw29000, ddb, ddc) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs7(vyw28000, vyw29000, fh, ga, gb) new_esEs30(vyw18, vyw13, app(app(ty_Either, dd), de)) -> new_esEs5(vyw18, vyw13, dd, de) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(ty_[], cg)) -> new_esEs10(vyw18, vyw13, cg) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs13(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, ef) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_@2, bbg), bbh)) -> new_esEs6(vyw30, vyw400, bbg, bbh) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, ef) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs4(vyw302, vyw4002, cfg, cfh, cga) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dea) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], bba) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_lt15(vyw28000, vyw29000, cde, cdf) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, dbd) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bae)) -> new_ltEs12(vyw28000, vyw29000, bae) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs30(vyw18, vyw13, app(ty_Maybe, ea)) -> new_esEs7(vyw18, vyw13, ea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bfe, bff) -> new_esEs17(new_compare27(vyw28000, vyw29000, bfe, bff), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, hc) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], bef) -> GT new_ltEs11(Nothing, Nothing, hc) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bbf) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bca) -> new_asAs(new_esEs19(vyw300, vyw4000, bca), new_esEs18(vyw301, vyw4001, bca)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bfe, bff) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs8(vyw18, vyw13) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bfe, bff) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bfe, bff), bfe, bff) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dce)) -> new_esEs15(vyw300, vyw4000, dce) new_esEs28(vyw300, vyw4000, app(ty_[], dbe)) -> new_esEs10(vyw300, vyw4000, dbe) new_esEs29(vyw30, vyw400, app(ty_Maybe, bd)) -> new_esEs7(vyw30, vyw400, bd) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), fg, ef) -> True new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs8(vyw30, vyw400) new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, True, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(LT, LT) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare211(x0, x1, True, x2) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs8(False, True) new_esEs8(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Double) new_esEs8(True, True) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare3([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare3([], [], x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, False, x2, x3, x4) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_lt17(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, x2) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False) new_compare211(Nothing, Nothing, False, x0) new_compare3(:(x0, x1), :(x2, x3), x4) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, GT) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_ltEs18(x0, x1, ty_Char) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare26(x0, x1, True, x2, x3) new_compare211(Just(x0), Nothing, False, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_asAs(True, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Char(x0), Char(x1)) new_ltEs11(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Integer) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_compare111(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(@0, @0) new_primCompAux0(x0, x1, x2, x3) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs12(x0, x1, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(False, False) new_ltEs4(EQ, EQ) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(EQ, EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs10([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare19(x0, x1, True) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare211(Just(x0), Just(x1), False, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs27(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs10([], [], x0) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_compare210(x0, x1, False) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare211(Nothing, Just(x0), False, x1) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs8(False, False) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs13(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4) new_ltEs15(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_lt7(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs11(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (25) Complex Obligation (AND) ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw44, Nothing, h, ba) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM0(vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Nothing, True, ba), GT), h, ba) new_elemFM0(vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw44, Nothing, h, ba) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Just(vyw400), False, ba), LT), h, ba) new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, False, h, ba) -> new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Just(vyw400), False, ba), GT), h, ba) new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw43, Nothing, h, ba) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(vyw28002, vyw29002, bhg, bhh) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcc), bcd), bce), bbf) -> new_esEs4(vyw300, vyw4000, bcc, bcd, bce) new_lt13(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_lt15(vyw28001, vyw29001, bgb, bgc) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(vyw300, vyw4000, bf, bg, bh) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bfe, bff) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_esEs6(vyw28000, vyw29000, bfe, bff) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, cf)) -> new_esEs7(vyw300, vyw4000, cf) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, dde), ddf)) -> new_compare27(vyw28000, vyw29000, dde, ddf) new_compare211(vyw280, vyw290, True, dea) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dcf)) -> new_esEs7(vyw300, vyw4000, dcf) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bbb, bbc, bbd) -> new_asAs(new_esEs27(vyw300, vyw4000, bbb), new_asAs(new_esEs26(vyw301, vyw4001, bbc), new_esEs25(vyw302, vyw4002, bbd))) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbf, dbg, dbh) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_primCompAux0(vyw28000, vyw29000, vyw89, bef) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, bef)) new_compare3([], [], bef) -> EQ new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs11(vyw18, vyw13) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bbf) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, beh, bfa) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, hd), he), hf)) -> new_ltEs7(vyw28000, vyw29000, hd, he, hf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bch), bda), bbf) -> new_esEs6(vyw300, vyw4000, bch, bda) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_lt17(vyw28000, vyw29000, bfe, bff) new_compare27(vyw28000, vyw29000, bfe, bff) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bfe, bff), bfe, bff) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, ce)) -> new_esEs15(vyw300, vyw4000, ce) new_lt13(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_lt6(vyw28001, vyw29001, bgh) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs12(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, ef) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bbf) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs11(vyw30, vyw400) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, cch), cda)) -> new_ltEs10(vyw2800, vyw2900, cch, cda) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, beh, bfa) -> GT new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs7(vyw28001, vyw29001, ced, cee, cef) new_compare211(Just(vyw2800), Nothing, False, dea) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dea) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dea), dea) new_esEs30(vyw18, vyw13, app(ty_Ratio, dh)) -> new_esEs15(vyw18, vyw13, dh) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), bba) -> new_asAs(new_esEs28(vyw300, vyw4000, bba), new_esEs10(vyw301, vyw4001, bba)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, bhd), bhe)) -> new_ltEs6(vyw28002, vyw29002, bhd, bhe) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, eg), eh), ef) -> new_ltEs6(vyw28000, vyw29000, eg, eh) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, ef) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bbf) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs9(vyw18, vyw13) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw28000, vyw29000, cdb, cdc, cdd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(vyw300, vyw4000, cbf, cbg, cbh) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw18, vyw13, da, db, dc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_esEs15(vyw28001, vyw29001, bgh) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bfe, bff) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bef) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, bef), bef) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt7(vyw28000, vyw29000, hb) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt14(vyw28000, vyw29000, cdb, cdc, cdd) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, ec), ed), ee), ef) -> new_ltEs7(vyw28000, vyw29000, ec, ed, ee) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs7(vyw2800, vyw2900, bfb, bfc, bfd) new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(vyw30, vyw400, bbb, bbc, bbd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, ddg)) -> new_compare15(vyw28000, vyw29000, ddg) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], baa)) -> new_ltEs9(vyw28000, vyw29000, baa) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fb), fc), ef) -> new_ltEs10(vyw28000, vyw29000, fb, fc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Maybe, bee)) -> new_esEs7(vyw300, vyw4000, bee) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), bef) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bd) -> False new_esEs7(Just(vyw300), Nothing, bd) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, cba), cbb)) -> new_esEs6(vyw301, vyw4001, cba, cbb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vyw28001, vyw29001, bfg, bfh, bga) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Ratio, bed)) -> new_esEs15(vyw300, vyw4000, bed) new_compare25(vyw28000, vyw29000, True, beh, bfa) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, ca), cb)) -> new_esEs5(vyw300, vyw4000, ca, cb) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(vyw28001, vyw29001, cfb, cfc) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs17(vyw18, vyw13) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bd) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], bhf)) -> new_ltEs9(vyw28002, vyw29002, bhf) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_esEs6(vyw28000, vyw29000, cdh, cea) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_lt15(vyw28000, vyw29000, beh, bfa) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, hb) -> new_esEs17(new_compare3(vyw28000, vyw29000, hb), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, ef) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, dcg), dch), dda)) -> new_compare13(vyw28000, vyw29000, dcg, dch, dda) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], bgd)) -> new_lt7(vyw28001, vyw29001, bgd) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbg, bbh) -> new_asAs(new_esEs23(vyw300, vyw4000, bbg), new_esEs22(vyw301, vyw4001, bbh)) new_esEs22(vyw301, vyw4001, app(ty_[], cac)) -> new_esEs10(vyw301, vyw4001, cac) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_esEs5(vyw28000, vyw29000, cde, cdf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bbf) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cgg)) -> new_esEs7(vyw302, vyw4002, cgg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, chf), chg)) -> new_esEs6(vyw301, vyw4001, chf, chg) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs4(vyw300, vyw4000, bde, bdf, bdg) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs7(vyw28002, vyw29002, bha, bhb, bhc) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_Either, gc), gd)) -> new_ltEs6(vyw28000, vyw29000, gc, gd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs7(vyw301, vyw4001, cbd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, ccf)) -> new_esEs7(vyw300, vyw4000, ccf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcf), bcg), bbf) -> new_esEs5(vyw300, vyw4000, bcf, bcg) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], ddd)) -> new_compare3(vyw28000, vyw29000, ddd) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw28000, vyw29000, beh, bfa) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs17(vyw30, vyw400) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, beh, bfa) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], cdg)) -> new_esEs10(vyw28000, vyw29000, cdg) new_compare24(vyw28000, vyw29000, False, baf, bag, bah) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, cbc)) -> new_esEs15(vyw301, vyw4001, cbc) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vyw28001, vyw29001, bfg, bfh, bga) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], be)) -> new_esEs10(vyw300, vyw4000, be) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, cc), cd)) -> new_esEs6(vyw300, vyw4000, cc, cd) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs14(vyw18, vyw13) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cch, cda) -> new_pePe(new_lt20(vyw28000, vyw29000, cch), new_asAs(new_esEs24(vyw28000, vyw29000, cch), new_ltEs19(vyw28001, vyw29001, cda))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cce)) -> new_esEs15(vyw300, vyw4000, cce) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_esEs7(vyw28000, vyw29000, ceb) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, bad)) -> new_ltEs11(vyw28000, vyw29000, bad) new_compare12(vyw28000, vyw29000, False, baf, bag, bah) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_lt11(vyw28000, vyw29000, ceb) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs14(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bbf) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_[], bdd)) -> new_esEs10(vyw300, vyw4000, bdd) new_lt15(vyw28000, vyw29000, beh, bfa) -> new_esEs17(new_compare16(vyw28000, vyw29000, beh, bfa), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_@2, beb), bec)) -> new_esEs6(vyw300, vyw4000, beb, bec) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cgd), cge)) -> new_esEs6(vyw302, vyw4002, cgd, cge) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cbe)) -> new_esEs10(vyw300, vyw4000, cbe) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, ddh)) -> new_compare9(vyw28000, vyw29000, ddh) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, fd), ef) -> new_ltEs11(vyw28000, vyw29000, fd) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vyw301, vyw4001, cha, chb, chc) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, ef) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, ccc), ccd)) -> new_esEs6(vyw300, vyw4000, ccc, ccd) new_ltEs19(vyw28001, vyw29001, app(ty_[], cfa)) -> new_ltEs9(vyw28001, vyw29001, cfa) new_lt6(vyw28000, vyw29000, eb) -> new_esEs17(new_compare9(vyw28000, vyw29000, eb), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, ef) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, hc)) -> new_ltEs11(vyw2800, vyw2900, hc) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chh)) -> new_esEs15(vyw301, vyw4001, chh) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs10(vyw28000, vyw29000, hb) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw28000, vyw29000, gf, gg) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, baf, bag, bah) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], cdg)) -> new_lt7(vyw28000, vyw29000, cdg) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bab), bac)) -> new_ltEs10(vyw28000, vyw29000, bab, bac) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_lt17(vyw28000, vyw29000, cdh, cea) new_lt13(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_lt11(vyw28001, vyw29001, bgg) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ccg) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ccg), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, baf, bag, bah) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, ff), ef) -> new_ltEs12(vyw28000, vyw29000, ff) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, beg) -> new_esEs17(new_compare15(vyw28000, vyw29000, beg), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_esEs15(vyw28000, vyw29000, eb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Maybe, gh)) -> new_ltEs11(vyw28000, vyw29000, gh) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs4(vyw301, vyw4001, cad, cae, caf) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, baf, bag, bah) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, beg) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, beg), beg) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], bba) -> False new_esEs10([], :(vyw4000, vyw4001), bba) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyw30, vyw400, bbe, bbf) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, hg), hh)) -> new_ltEs6(vyw28000, vyw29000, hg, hh) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dah), dba)) -> new_esEs6(vyw300, vyw4000, dah, dba) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bbf) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, bef) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, bef), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, caa)) -> new_ltEs11(vyw28002, vyw29002, caa) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Ratio, ha)) -> new_ltEs12(vyw28000, vyw29000, ha) new_ltEs11(Nothing, Just(vyw29000), hc) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw28001, vyw29001, bgb, bgc) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgh)) -> new_esEs10(vyw301, vyw4001, cgh) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), bfb, bfc, bfd) -> new_pePe(new_lt12(vyw28000, vyw29000, bfb), new_asAs(new_esEs21(vyw28000, vyw29000, bfb), new_pePe(new_lt13(vyw28001, vyw29001, bfc), new_asAs(new_esEs20(vyw28001, vyw29001, bfc), new_ltEs18(vyw28002, vyw29002, bfd))))) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_Either, bdh), bea)) -> new_esEs5(vyw300, vyw4000, bdh, bea) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], cff)) -> new_esEs10(vyw302, vyw4002, cff) new_ltEs20(vyw2800, vyw2900, app(ty_[], bef)) -> new_ltEs9(vyw2800, vyw2900, bef) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(vyw300, vyw4000, dcc, dcd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_[], ge)) -> new_ltEs9(vyw28000, vyw29000, ge) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, cfd)) -> new_ltEs11(vyw28001, vyw29001, cfd) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_lt6(vyw28000, vyw29000, eb) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ccg)) -> new_ltEs12(vyw2800, vyw2900, ccg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_lt11(vyw28000, vyw29000, beg) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_esEs7(vyw28000, vyw29000, beg) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, fg), ef)) -> new_ltEs6(vyw2800, vyw2900, fg, ef) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], fa), ef) -> new_ltEs9(vyw28000, vyw29000, fa) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw302, vyw4002, cgb, cgc) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_lt14(vyw28000, vyw29000, baf, bag, bah) -> new_esEs17(new_compare13(vyw28000, vyw29000, baf, bag, bah), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cgf)) -> new_esEs15(vyw302, vyw4002, cgf) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, cfe)) -> new_ltEs12(vyw28001, vyw29001, cfe) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, ceg), ceh)) -> new_ltEs6(vyw28001, vyw29001, ceg, ceh) new_esEs26(vyw301, vyw4001, app(ty_Maybe, daa)) -> new_esEs7(vyw301, vyw4001, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bdb), bbf) -> new_esEs15(vyw300, vyw4000, bdb) new_compare111(vyw73, vyw74, False, dbd) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], bgd)) -> new_esEs10(vyw28001, vyw29001, bgd) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, beh, bfa) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dbc)) -> new_esEs7(vyw300, vyw4000, dbc) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_lt17(vyw28001, vyw29001, bge, bgf) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bdc), bbf) -> new_esEs7(vyw300, vyw4000, bdc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw300, vyw4000, dac, dad, dae) new_ltEs6(Right(vyw28000), Left(vyw29000), fg, ef) -> False new_compare211(Nothing, Just(vyw2900), False, dea) -> LT new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, ef) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bbf) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_esEs7(vyw28001, vyw29001, bgg) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs30(vyw18, vyw13, app(app(ty_@2, df), dg)) -> new_esEs6(vyw18, vyw13, df, dg) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, app(ty_[], bba)) -> new_esEs10(vyw30, vyw400, bba) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dbb)) -> new_esEs15(vyw300, vyw4000, dbb) new_esEs5(Left(vyw300), Right(vyw4000), bbe, bbf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bbe, bbf) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_esEs6(vyw28001, vyw29001, bge, bgf) new_esEs27(vyw300, vyw4000, app(ty_[], dab)) -> new_esEs10(vyw300, vyw4000, dab) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bcb), bbf) -> new_esEs10(vyw300, vyw4000, bcb) new_esEs29(vyw30, vyw400, app(ty_Ratio, bca)) -> new_esEs15(vyw30, vyw400, bca) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cab)) -> new_ltEs12(vyw28002, vyw29002, cab) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, ddb), ddc)) -> new_compare16(vyw28000, vyw29000, ddb, ddc) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs7(vyw28000, vyw29000, fh, ga, gb) new_esEs30(vyw18, vyw13, app(app(ty_Either, dd), de)) -> new_esEs5(vyw18, vyw13, dd, de) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(ty_[], cg)) -> new_esEs10(vyw18, vyw13, cg) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs13(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, ef) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_@2, bbg), bbh)) -> new_esEs6(vyw30, vyw400, bbg, bbh) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, ef) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs4(vyw302, vyw4002, cfg, cfh, cga) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dea) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], bba) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_lt15(vyw28000, vyw29000, cde, cdf) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, dbd) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bae)) -> new_ltEs12(vyw28000, vyw29000, bae) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs30(vyw18, vyw13, app(ty_Maybe, ea)) -> new_esEs7(vyw18, vyw13, ea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bfe, bff) -> new_esEs17(new_compare27(vyw28000, vyw29000, bfe, bff), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, hc) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], bef) -> GT new_ltEs11(Nothing, Nothing, hc) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bbf) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bca) -> new_asAs(new_esEs19(vyw300, vyw4000, bca), new_esEs18(vyw301, vyw4001, bca)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bfe, bff) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs8(vyw18, vyw13) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bfe, bff) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bfe, bff), bfe, bff) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dce)) -> new_esEs15(vyw300, vyw4000, dce) new_esEs28(vyw300, vyw4000, app(ty_[], dbe)) -> new_esEs10(vyw300, vyw4000, dbe) new_esEs29(vyw30, vyw400, app(ty_Maybe, bd)) -> new_esEs7(vyw30, vyw400, bd) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), fg, ef) -> True new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs8(vyw30, vyw400) new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, True, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(LT, LT) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare211(x0, x1, True, x2) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs8(False, True) new_esEs8(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Double) new_esEs8(True, True) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare3([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare3([], [], x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, False, x2, x3, x4) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_lt17(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, x2) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False) new_compare211(Nothing, Nothing, False, x0) new_compare3(:(x0, x1), :(x2, x3), x4) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, GT) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_ltEs18(x0, x1, ty_Char) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare26(x0, x1, True, x2, x3) new_compare211(Just(x0), Nothing, False, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_asAs(True, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Char(x0), Char(x1)) new_ltEs11(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Integer) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_compare111(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(@0, @0) new_primCompAux0(x0, x1, x2, x3) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs12(x0, x1, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(False, False) new_ltEs4(EQ, EQ) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(EQ, EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs10([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare19(x0, x1, True) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare211(Just(x0), Just(x1), False, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs27(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs10([], [], x0) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_compare210(x0, x1, False) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare211(Nothing, Just(x0), False, x1) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs8(False, False) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs13(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4) new_ltEs15(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_lt7(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs11(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) 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_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, False, h, ba) -> new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Just(vyw400), False, ba), GT), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 *new_elemFM0(vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw44, Nothing, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 7 >= 4 *new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM0(vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Nothing, True, ba), GT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 6, 4 >= 7 *new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs17(new_compare211(Nothing, Just(vyw400), False, ba), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 *new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw43, Nothing, h, ba) The graph contains the following edges 4 >= 1, 7 >= 3, 8 >= 4 *new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw44, Nothing, h, ba) The graph contains the following edges 5 >= 1, 7 >= 3, 8 >= 4 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), LT), h, ba) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw43, Just(vyw30), h, ba) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs17(new_compare211(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), GT), h, ba) new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw44, Just(vyw30), h, ba) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(vyw28002, vyw29002, bhg, bhh) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcc), bcd), bce), bbf) -> new_esEs4(vyw300, vyw4000, bcc, bcd, bce) new_lt13(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_lt15(vyw28001, vyw29001, bgb, bgc) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(vyw300, vyw4000, bf, bg, bh) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bfe, bff) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_esEs6(vyw28000, vyw29000, bfe, bff) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, cf)) -> new_esEs7(vyw300, vyw4000, cf) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, dde), ddf)) -> new_compare27(vyw28000, vyw29000, dde, ddf) new_compare211(vyw280, vyw290, True, dea) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dcf)) -> new_esEs7(vyw300, vyw4000, dcf) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bbb, bbc, bbd) -> new_asAs(new_esEs27(vyw300, vyw4000, bbb), new_asAs(new_esEs26(vyw301, vyw4001, bbc), new_esEs25(vyw302, vyw4002, bbd))) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbf, dbg, dbh) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_primCompAux0(vyw28000, vyw29000, vyw89, bef) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, bef)) new_compare3([], [], bef) -> EQ new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs11(vyw18, vyw13) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bbf) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, beh, bfa) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, hd), he), hf)) -> new_ltEs7(vyw28000, vyw29000, hd, he, hf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bch), bda), bbf) -> new_esEs6(vyw300, vyw4000, bch, bda) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_lt17(vyw28000, vyw29000, bfe, bff) new_compare27(vyw28000, vyw29000, bfe, bff) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bfe, bff), bfe, bff) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, ce)) -> new_esEs15(vyw300, vyw4000, ce) new_lt13(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_lt6(vyw28001, vyw29001, bgh) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs12(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, ef) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bbf) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs11(vyw30, vyw400) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, cch), cda)) -> new_ltEs10(vyw2800, vyw2900, cch, cda) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, beh, bfa) -> GT new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs7(vyw28001, vyw29001, ced, cee, cef) new_compare211(Just(vyw2800), Nothing, False, dea) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dea) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dea), dea) new_esEs30(vyw18, vyw13, app(ty_Ratio, dh)) -> new_esEs15(vyw18, vyw13, dh) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), bba) -> new_asAs(new_esEs28(vyw300, vyw4000, bba), new_esEs10(vyw301, vyw4001, bba)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, bhd), bhe)) -> new_ltEs6(vyw28002, vyw29002, bhd, bhe) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, eg), eh), ef) -> new_ltEs6(vyw28000, vyw29000, eg, eh) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, ef) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bbf) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs9(vyw18, vyw13) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw28000, vyw29000, cdb, cdc, cdd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(vyw300, vyw4000, cbf, cbg, cbh) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw18, vyw13, da, db, dc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_esEs15(vyw28001, vyw29001, bgh) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bfe, bff) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bef) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, bef), bef) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt7(vyw28000, vyw29000, hb) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt14(vyw28000, vyw29000, cdb, cdc, cdd) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, ec), ed), ee), ef) -> new_ltEs7(vyw28000, vyw29000, ec, ed, ee) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs7(vyw2800, vyw2900, bfb, bfc, bfd) new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(vyw30, vyw400, bbb, bbc, bbd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, ddg)) -> new_compare15(vyw28000, vyw29000, ddg) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], baa)) -> new_ltEs9(vyw28000, vyw29000, baa) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fb), fc), ef) -> new_ltEs10(vyw28000, vyw29000, fb, fc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Maybe, bee)) -> new_esEs7(vyw300, vyw4000, bee) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), bef) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bd) -> False new_esEs7(Just(vyw300), Nothing, bd) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, cba), cbb)) -> new_esEs6(vyw301, vyw4001, cba, cbb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vyw28001, vyw29001, bfg, bfh, bga) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Ratio, bed)) -> new_esEs15(vyw300, vyw4000, bed) new_compare25(vyw28000, vyw29000, True, beh, bfa) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, ca), cb)) -> new_esEs5(vyw300, vyw4000, ca, cb) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(vyw28001, vyw29001, cfb, cfc) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs17(vyw18, vyw13) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bd) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], bhf)) -> new_ltEs9(vyw28002, vyw29002, bhf) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_esEs6(vyw28000, vyw29000, cdh, cea) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_lt15(vyw28000, vyw29000, beh, bfa) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, hb) -> new_esEs17(new_compare3(vyw28000, vyw29000, hb), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, ef) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, dcg), dch), dda)) -> new_compare13(vyw28000, vyw29000, dcg, dch, dda) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], bgd)) -> new_lt7(vyw28001, vyw29001, bgd) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbg, bbh) -> new_asAs(new_esEs23(vyw300, vyw4000, bbg), new_esEs22(vyw301, vyw4001, bbh)) new_esEs22(vyw301, vyw4001, app(ty_[], cac)) -> new_esEs10(vyw301, vyw4001, cac) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_esEs5(vyw28000, vyw29000, cde, cdf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bbf) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cgg)) -> new_esEs7(vyw302, vyw4002, cgg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, chf), chg)) -> new_esEs6(vyw301, vyw4001, chf, chg) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs4(vyw300, vyw4000, bde, bdf, bdg) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs7(vyw28002, vyw29002, bha, bhb, bhc) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_Either, gc), gd)) -> new_ltEs6(vyw28000, vyw29000, gc, gd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs7(vyw301, vyw4001, cbd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, ccf)) -> new_esEs7(vyw300, vyw4000, ccf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcf), bcg), bbf) -> new_esEs5(vyw300, vyw4000, bcf, bcg) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], ddd)) -> new_compare3(vyw28000, vyw29000, ddd) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw28000, vyw29000, beh, bfa) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs17(vyw30, vyw400) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, beh, bfa) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], cdg)) -> new_esEs10(vyw28000, vyw29000, cdg) new_compare24(vyw28000, vyw29000, False, baf, bag, bah) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, cbc)) -> new_esEs15(vyw301, vyw4001, cbc) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vyw28001, vyw29001, bfg, bfh, bga) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], be)) -> new_esEs10(vyw300, vyw4000, be) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, cc), cd)) -> new_esEs6(vyw300, vyw4000, cc, cd) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs14(vyw18, vyw13) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cch, cda) -> new_pePe(new_lt20(vyw28000, vyw29000, cch), new_asAs(new_esEs24(vyw28000, vyw29000, cch), new_ltEs19(vyw28001, vyw29001, cda))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cce)) -> new_esEs15(vyw300, vyw4000, cce) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_esEs7(vyw28000, vyw29000, ceb) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, bad)) -> new_ltEs11(vyw28000, vyw29000, bad) new_compare12(vyw28000, vyw29000, False, baf, bag, bah) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_lt11(vyw28000, vyw29000, ceb) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs14(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bbf) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_[], bdd)) -> new_esEs10(vyw300, vyw4000, bdd) new_lt15(vyw28000, vyw29000, beh, bfa) -> new_esEs17(new_compare16(vyw28000, vyw29000, beh, bfa), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_@2, beb), bec)) -> new_esEs6(vyw300, vyw4000, beb, bec) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cgd), cge)) -> new_esEs6(vyw302, vyw4002, cgd, cge) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cbe)) -> new_esEs10(vyw300, vyw4000, cbe) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, ddh)) -> new_compare9(vyw28000, vyw29000, ddh) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, fd), ef) -> new_ltEs11(vyw28000, vyw29000, fd) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vyw301, vyw4001, cha, chb, chc) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, ef) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, ccc), ccd)) -> new_esEs6(vyw300, vyw4000, ccc, ccd) new_ltEs19(vyw28001, vyw29001, app(ty_[], cfa)) -> new_ltEs9(vyw28001, vyw29001, cfa) new_lt6(vyw28000, vyw29000, eb) -> new_esEs17(new_compare9(vyw28000, vyw29000, eb), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, ef) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, hc)) -> new_ltEs11(vyw2800, vyw2900, hc) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chh)) -> new_esEs15(vyw301, vyw4001, chh) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs10(vyw28000, vyw29000, hb) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw28000, vyw29000, gf, gg) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, baf, bag, bah) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], cdg)) -> new_lt7(vyw28000, vyw29000, cdg) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bab), bac)) -> new_ltEs10(vyw28000, vyw29000, bab, bac) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_lt17(vyw28000, vyw29000, cdh, cea) new_lt13(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_lt11(vyw28001, vyw29001, bgg) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ccg) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ccg), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, baf, bag, bah) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, ff), ef) -> new_ltEs12(vyw28000, vyw29000, ff) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, beg) -> new_esEs17(new_compare15(vyw28000, vyw29000, beg), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_esEs15(vyw28000, vyw29000, eb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Maybe, gh)) -> new_ltEs11(vyw28000, vyw29000, gh) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs4(vyw301, vyw4001, cad, cae, caf) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, baf, bag, bah) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, beg) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, beg), beg) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], bba) -> False new_esEs10([], :(vyw4000, vyw4001), bba) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyw30, vyw400, bbe, bbf) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, hg), hh)) -> new_ltEs6(vyw28000, vyw29000, hg, hh) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dah), dba)) -> new_esEs6(vyw300, vyw4000, dah, dba) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bbf) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, bef) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, bef), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, caa)) -> new_ltEs11(vyw28002, vyw29002, caa) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Ratio, ha)) -> new_ltEs12(vyw28000, vyw29000, ha) new_ltEs11(Nothing, Just(vyw29000), hc) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw28001, vyw29001, bgb, bgc) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgh)) -> new_esEs10(vyw301, vyw4001, cgh) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), bfb, bfc, bfd) -> new_pePe(new_lt12(vyw28000, vyw29000, bfb), new_asAs(new_esEs21(vyw28000, vyw29000, bfb), new_pePe(new_lt13(vyw28001, vyw29001, bfc), new_asAs(new_esEs20(vyw28001, vyw29001, bfc), new_ltEs18(vyw28002, vyw29002, bfd))))) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_Either, bdh), bea)) -> new_esEs5(vyw300, vyw4000, bdh, bea) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], cff)) -> new_esEs10(vyw302, vyw4002, cff) new_ltEs20(vyw2800, vyw2900, app(ty_[], bef)) -> new_ltEs9(vyw2800, vyw2900, bef) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(vyw300, vyw4000, dcc, dcd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_[], ge)) -> new_ltEs9(vyw28000, vyw29000, ge) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, cfd)) -> new_ltEs11(vyw28001, vyw29001, cfd) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_lt6(vyw28000, vyw29000, eb) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ccg)) -> new_ltEs12(vyw2800, vyw2900, ccg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_lt11(vyw28000, vyw29000, beg) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_esEs7(vyw28000, vyw29000, beg) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, fg), ef)) -> new_ltEs6(vyw2800, vyw2900, fg, ef) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], fa), ef) -> new_ltEs9(vyw28000, vyw29000, fa) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw302, vyw4002, cgb, cgc) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_lt14(vyw28000, vyw29000, baf, bag, bah) -> new_esEs17(new_compare13(vyw28000, vyw29000, baf, bag, bah), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cgf)) -> new_esEs15(vyw302, vyw4002, cgf) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, cfe)) -> new_ltEs12(vyw28001, vyw29001, cfe) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, ceg), ceh)) -> new_ltEs6(vyw28001, vyw29001, ceg, ceh) new_esEs26(vyw301, vyw4001, app(ty_Maybe, daa)) -> new_esEs7(vyw301, vyw4001, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bdb), bbf) -> new_esEs15(vyw300, vyw4000, bdb) new_compare111(vyw73, vyw74, False, dbd) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], bgd)) -> new_esEs10(vyw28001, vyw29001, bgd) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, beh, bfa) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dbc)) -> new_esEs7(vyw300, vyw4000, dbc) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_lt17(vyw28001, vyw29001, bge, bgf) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bdc), bbf) -> new_esEs7(vyw300, vyw4000, bdc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw300, vyw4000, dac, dad, dae) new_ltEs6(Right(vyw28000), Left(vyw29000), fg, ef) -> False new_compare211(Nothing, Just(vyw2900), False, dea) -> LT new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, ef) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bbf) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_esEs7(vyw28001, vyw29001, bgg) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs30(vyw18, vyw13, app(app(ty_@2, df), dg)) -> new_esEs6(vyw18, vyw13, df, dg) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, app(ty_[], bba)) -> new_esEs10(vyw30, vyw400, bba) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dbb)) -> new_esEs15(vyw300, vyw4000, dbb) new_esEs5(Left(vyw300), Right(vyw4000), bbe, bbf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bbe, bbf) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_esEs6(vyw28001, vyw29001, bge, bgf) new_esEs27(vyw300, vyw4000, app(ty_[], dab)) -> new_esEs10(vyw300, vyw4000, dab) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bcb), bbf) -> new_esEs10(vyw300, vyw4000, bcb) new_esEs29(vyw30, vyw400, app(ty_Ratio, bca)) -> new_esEs15(vyw30, vyw400, bca) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cab)) -> new_ltEs12(vyw28002, vyw29002, cab) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, ddb), ddc)) -> new_compare16(vyw28000, vyw29000, ddb, ddc) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs7(vyw28000, vyw29000, fh, ga, gb) new_esEs30(vyw18, vyw13, app(app(ty_Either, dd), de)) -> new_esEs5(vyw18, vyw13, dd, de) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(ty_[], cg)) -> new_esEs10(vyw18, vyw13, cg) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs13(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, ef) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_@2, bbg), bbh)) -> new_esEs6(vyw30, vyw400, bbg, bbh) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, ef) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs4(vyw302, vyw4002, cfg, cfh, cga) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dea) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], bba) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_lt15(vyw28000, vyw29000, cde, cdf) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, dbd) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bae)) -> new_ltEs12(vyw28000, vyw29000, bae) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs30(vyw18, vyw13, app(ty_Maybe, ea)) -> new_esEs7(vyw18, vyw13, ea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bfe, bff) -> new_esEs17(new_compare27(vyw28000, vyw29000, bfe, bff), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, hc) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], bef) -> GT new_ltEs11(Nothing, Nothing, hc) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bbf) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bca) -> new_asAs(new_esEs19(vyw300, vyw4000, bca), new_esEs18(vyw301, vyw4001, bca)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bfe, bff) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs8(vyw18, vyw13) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bfe, bff) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bfe, bff), bfe, bff) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dce)) -> new_esEs15(vyw300, vyw4000, dce) new_esEs28(vyw300, vyw4000, app(ty_[], dbe)) -> new_esEs10(vyw300, vyw4000, dbe) new_esEs29(vyw30, vyw400, app(ty_Maybe, bd)) -> new_esEs7(vyw30, vyw400, bd) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), fg, ef) -> True new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs8(vyw30, vyw400) new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, True, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(LT, LT) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare211(x0, x1, True, x2) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs8(False, True) new_esEs8(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Double) new_esEs8(True, True) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare3([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare3([], [], x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, False, x2, x3, x4) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_lt17(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, x2) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False) new_compare211(Nothing, Nothing, False, x0) new_compare3(:(x0, x1), :(x2, x3), x4) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, GT) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_ltEs18(x0, x1, ty_Char) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare26(x0, x1, True, x2, x3) new_compare211(Just(x0), Nothing, False, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_asAs(True, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Char(x0), Char(x1)) new_ltEs11(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Integer) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_compare111(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(@0, @0) new_primCompAux0(x0, x1, x2, x3) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs12(x0, x1, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(False, False) new_ltEs4(EQ, EQ) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(EQ, EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs10([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare19(x0, x1, True) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare211(Just(x0), Just(x1), False, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs27(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs10([], [], x0) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_compare210(x0, x1, False) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare211(Nothing, Just(x0), False, x1) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs8(False, False) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs13(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4) new_ltEs15(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_lt7(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs11(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), LT), h, ba) at position [5,0] we obtained the following new rules [LPAR04]: (new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, LT), h, ba),new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, LT), h, ba)) ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw43, Just(vyw30), h, ba) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs17(new_compare211(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), GT), h, ba) new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw44, Just(vyw30), h, ba) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, LT), h, ba) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(vyw28002, vyw29002, bhg, bhh) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcc), bcd), bce), bbf) -> new_esEs4(vyw300, vyw4000, bcc, bcd, bce) new_lt13(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_lt15(vyw28001, vyw29001, bgb, bgc) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(vyw300, vyw4000, bf, bg, bh) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bfe, bff) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_esEs6(vyw28000, vyw29000, bfe, bff) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, cf)) -> new_esEs7(vyw300, vyw4000, cf) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, dde), ddf)) -> new_compare27(vyw28000, vyw29000, dde, ddf) new_compare211(vyw280, vyw290, True, dea) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dcf)) -> new_esEs7(vyw300, vyw4000, dcf) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bbb, bbc, bbd) -> new_asAs(new_esEs27(vyw300, vyw4000, bbb), new_asAs(new_esEs26(vyw301, vyw4001, bbc), new_esEs25(vyw302, vyw4002, bbd))) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbf, dbg, dbh) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_primCompAux0(vyw28000, vyw29000, vyw89, bef) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, bef)) new_compare3([], [], bef) -> EQ new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs11(vyw18, vyw13) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bbf) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, beh, bfa) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, hd), he), hf)) -> new_ltEs7(vyw28000, vyw29000, hd, he, hf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bch), bda), bbf) -> new_esEs6(vyw300, vyw4000, bch, bda) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_lt17(vyw28000, vyw29000, bfe, bff) new_compare27(vyw28000, vyw29000, bfe, bff) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bfe, bff), bfe, bff) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, ce)) -> new_esEs15(vyw300, vyw4000, ce) new_lt13(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_lt6(vyw28001, vyw29001, bgh) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs12(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, ef) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bbf) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs11(vyw30, vyw400) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, cch), cda)) -> new_ltEs10(vyw2800, vyw2900, cch, cda) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, beh, bfa) -> GT new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs7(vyw28001, vyw29001, ced, cee, cef) new_compare211(Just(vyw2800), Nothing, False, dea) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dea) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dea), dea) new_esEs30(vyw18, vyw13, app(ty_Ratio, dh)) -> new_esEs15(vyw18, vyw13, dh) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), bba) -> new_asAs(new_esEs28(vyw300, vyw4000, bba), new_esEs10(vyw301, vyw4001, bba)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, bhd), bhe)) -> new_ltEs6(vyw28002, vyw29002, bhd, bhe) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, eg), eh), ef) -> new_ltEs6(vyw28000, vyw29000, eg, eh) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, ef) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bbf) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs9(vyw18, vyw13) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw28000, vyw29000, cdb, cdc, cdd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(vyw300, vyw4000, cbf, cbg, cbh) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw18, vyw13, da, db, dc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_esEs15(vyw28001, vyw29001, bgh) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bfe, bff) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bef) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, bef), bef) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt7(vyw28000, vyw29000, hb) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt14(vyw28000, vyw29000, cdb, cdc, cdd) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, ec), ed), ee), ef) -> new_ltEs7(vyw28000, vyw29000, ec, ed, ee) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs7(vyw2800, vyw2900, bfb, bfc, bfd) new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(vyw30, vyw400, bbb, bbc, bbd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, ddg)) -> new_compare15(vyw28000, vyw29000, ddg) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], baa)) -> new_ltEs9(vyw28000, vyw29000, baa) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fb), fc), ef) -> new_ltEs10(vyw28000, vyw29000, fb, fc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Maybe, bee)) -> new_esEs7(vyw300, vyw4000, bee) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), bef) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bd) -> False new_esEs7(Just(vyw300), Nothing, bd) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, cba), cbb)) -> new_esEs6(vyw301, vyw4001, cba, cbb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vyw28001, vyw29001, bfg, bfh, bga) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Ratio, bed)) -> new_esEs15(vyw300, vyw4000, bed) new_compare25(vyw28000, vyw29000, True, beh, bfa) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, ca), cb)) -> new_esEs5(vyw300, vyw4000, ca, cb) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(vyw28001, vyw29001, cfb, cfc) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs17(vyw18, vyw13) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bd) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], bhf)) -> new_ltEs9(vyw28002, vyw29002, bhf) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_esEs6(vyw28000, vyw29000, cdh, cea) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_lt15(vyw28000, vyw29000, beh, bfa) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, hb) -> new_esEs17(new_compare3(vyw28000, vyw29000, hb), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, ef) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, dcg), dch), dda)) -> new_compare13(vyw28000, vyw29000, dcg, dch, dda) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], bgd)) -> new_lt7(vyw28001, vyw29001, bgd) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbg, bbh) -> new_asAs(new_esEs23(vyw300, vyw4000, bbg), new_esEs22(vyw301, vyw4001, bbh)) new_esEs22(vyw301, vyw4001, app(ty_[], cac)) -> new_esEs10(vyw301, vyw4001, cac) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_esEs5(vyw28000, vyw29000, cde, cdf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bbf) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cgg)) -> new_esEs7(vyw302, vyw4002, cgg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, chf), chg)) -> new_esEs6(vyw301, vyw4001, chf, chg) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs4(vyw300, vyw4000, bde, bdf, bdg) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs7(vyw28002, vyw29002, bha, bhb, bhc) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_Either, gc), gd)) -> new_ltEs6(vyw28000, vyw29000, gc, gd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs7(vyw301, vyw4001, cbd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, ccf)) -> new_esEs7(vyw300, vyw4000, ccf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcf), bcg), bbf) -> new_esEs5(vyw300, vyw4000, bcf, bcg) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], ddd)) -> new_compare3(vyw28000, vyw29000, ddd) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw28000, vyw29000, beh, bfa) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs17(vyw30, vyw400) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, beh, bfa) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], cdg)) -> new_esEs10(vyw28000, vyw29000, cdg) new_compare24(vyw28000, vyw29000, False, baf, bag, bah) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, cbc)) -> new_esEs15(vyw301, vyw4001, cbc) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vyw28001, vyw29001, bfg, bfh, bga) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], be)) -> new_esEs10(vyw300, vyw4000, be) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, cc), cd)) -> new_esEs6(vyw300, vyw4000, cc, cd) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs14(vyw18, vyw13) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cch, cda) -> new_pePe(new_lt20(vyw28000, vyw29000, cch), new_asAs(new_esEs24(vyw28000, vyw29000, cch), new_ltEs19(vyw28001, vyw29001, cda))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cce)) -> new_esEs15(vyw300, vyw4000, cce) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_esEs7(vyw28000, vyw29000, ceb) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, bad)) -> new_ltEs11(vyw28000, vyw29000, bad) new_compare12(vyw28000, vyw29000, False, baf, bag, bah) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_lt11(vyw28000, vyw29000, ceb) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs14(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bbf) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_[], bdd)) -> new_esEs10(vyw300, vyw4000, bdd) new_lt15(vyw28000, vyw29000, beh, bfa) -> new_esEs17(new_compare16(vyw28000, vyw29000, beh, bfa), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_@2, beb), bec)) -> new_esEs6(vyw300, vyw4000, beb, bec) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cgd), cge)) -> new_esEs6(vyw302, vyw4002, cgd, cge) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cbe)) -> new_esEs10(vyw300, vyw4000, cbe) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, ddh)) -> new_compare9(vyw28000, vyw29000, ddh) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, fd), ef) -> new_ltEs11(vyw28000, vyw29000, fd) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vyw301, vyw4001, cha, chb, chc) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, ef) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, ccc), ccd)) -> new_esEs6(vyw300, vyw4000, ccc, ccd) new_ltEs19(vyw28001, vyw29001, app(ty_[], cfa)) -> new_ltEs9(vyw28001, vyw29001, cfa) new_lt6(vyw28000, vyw29000, eb) -> new_esEs17(new_compare9(vyw28000, vyw29000, eb), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, ef) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, hc)) -> new_ltEs11(vyw2800, vyw2900, hc) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chh)) -> new_esEs15(vyw301, vyw4001, chh) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs10(vyw28000, vyw29000, hb) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw28000, vyw29000, gf, gg) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, baf, bag, bah) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], cdg)) -> new_lt7(vyw28000, vyw29000, cdg) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bab), bac)) -> new_ltEs10(vyw28000, vyw29000, bab, bac) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_lt17(vyw28000, vyw29000, cdh, cea) new_lt13(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_lt11(vyw28001, vyw29001, bgg) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ccg) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ccg), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, baf, bag, bah) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, ff), ef) -> new_ltEs12(vyw28000, vyw29000, ff) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, beg) -> new_esEs17(new_compare15(vyw28000, vyw29000, beg), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_esEs15(vyw28000, vyw29000, eb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Maybe, gh)) -> new_ltEs11(vyw28000, vyw29000, gh) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs4(vyw301, vyw4001, cad, cae, caf) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, baf, bag, bah) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, beg) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, beg), beg) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], bba) -> False new_esEs10([], :(vyw4000, vyw4001), bba) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyw30, vyw400, bbe, bbf) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, hg), hh)) -> new_ltEs6(vyw28000, vyw29000, hg, hh) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dah), dba)) -> new_esEs6(vyw300, vyw4000, dah, dba) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bbf) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, bef) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, bef), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, caa)) -> new_ltEs11(vyw28002, vyw29002, caa) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Ratio, ha)) -> new_ltEs12(vyw28000, vyw29000, ha) new_ltEs11(Nothing, Just(vyw29000), hc) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw28001, vyw29001, bgb, bgc) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgh)) -> new_esEs10(vyw301, vyw4001, cgh) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), bfb, bfc, bfd) -> new_pePe(new_lt12(vyw28000, vyw29000, bfb), new_asAs(new_esEs21(vyw28000, vyw29000, bfb), new_pePe(new_lt13(vyw28001, vyw29001, bfc), new_asAs(new_esEs20(vyw28001, vyw29001, bfc), new_ltEs18(vyw28002, vyw29002, bfd))))) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_Either, bdh), bea)) -> new_esEs5(vyw300, vyw4000, bdh, bea) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], cff)) -> new_esEs10(vyw302, vyw4002, cff) new_ltEs20(vyw2800, vyw2900, app(ty_[], bef)) -> new_ltEs9(vyw2800, vyw2900, bef) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(vyw300, vyw4000, dcc, dcd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_[], ge)) -> new_ltEs9(vyw28000, vyw29000, ge) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, cfd)) -> new_ltEs11(vyw28001, vyw29001, cfd) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_lt6(vyw28000, vyw29000, eb) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ccg)) -> new_ltEs12(vyw2800, vyw2900, ccg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_lt11(vyw28000, vyw29000, beg) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_esEs7(vyw28000, vyw29000, beg) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, fg), ef)) -> new_ltEs6(vyw2800, vyw2900, fg, ef) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], fa), ef) -> new_ltEs9(vyw28000, vyw29000, fa) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw302, vyw4002, cgb, cgc) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_lt14(vyw28000, vyw29000, baf, bag, bah) -> new_esEs17(new_compare13(vyw28000, vyw29000, baf, bag, bah), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cgf)) -> new_esEs15(vyw302, vyw4002, cgf) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, cfe)) -> new_ltEs12(vyw28001, vyw29001, cfe) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, ceg), ceh)) -> new_ltEs6(vyw28001, vyw29001, ceg, ceh) new_esEs26(vyw301, vyw4001, app(ty_Maybe, daa)) -> new_esEs7(vyw301, vyw4001, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bdb), bbf) -> new_esEs15(vyw300, vyw4000, bdb) new_compare111(vyw73, vyw74, False, dbd) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], bgd)) -> new_esEs10(vyw28001, vyw29001, bgd) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, beh, bfa) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dbc)) -> new_esEs7(vyw300, vyw4000, dbc) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_lt17(vyw28001, vyw29001, bge, bgf) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bdc), bbf) -> new_esEs7(vyw300, vyw4000, bdc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw300, vyw4000, dac, dad, dae) new_ltEs6(Right(vyw28000), Left(vyw29000), fg, ef) -> False new_compare211(Nothing, Just(vyw2900), False, dea) -> LT new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, ef) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bbf) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_esEs7(vyw28001, vyw29001, bgg) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs30(vyw18, vyw13, app(app(ty_@2, df), dg)) -> new_esEs6(vyw18, vyw13, df, dg) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, app(ty_[], bba)) -> new_esEs10(vyw30, vyw400, bba) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dbb)) -> new_esEs15(vyw300, vyw4000, dbb) new_esEs5(Left(vyw300), Right(vyw4000), bbe, bbf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bbe, bbf) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_esEs6(vyw28001, vyw29001, bge, bgf) new_esEs27(vyw300, vyw4000, app(ty_[], dab)) -> new_esEs10(vyw300, vyw4000, dab) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bcb), bbf) -> new_esEs10(vyw300, vyw4000, bcb) new_esEs29(vyw30, vyw400, app(ty_Ratio, bca)) -> new_esEs15(vyw30, vyw400, bca) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cab)) -> new_ltEs12(vyw28002, vyw29002, cab) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, ddb), ddc)) -> new_compare16(vyw28000, vyw29000, ddb, ddc) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs7(vyw28000, vyw29000, fh, ga, gb) new_esEs30(vyw18, vyw13, app(app(ty_Either, dd), de)) -> new_esEs5(vyw18, vyw13, dd, de) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(ty_[], cg)) -> new_esEs10(vyw18, vyw13, cg) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs13(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, ef) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_@2, bbg), bbh)) -> new_esEs6(vyw30, vyw400, bbg, bbh) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, ef) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs4(vyw302, vyw4002, cfg, cfh, cga) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dea) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], bba) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_lt15(vyw28000, vyw29000, cde, cdf) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, dbd) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bae)) -> new_ltEs12(vyw28000, vyw29000, bae) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs30(vyw18, vyw13, app(ty_Maybe, ea)) -> new_esEs7(vyw18, vyw13, ea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bfe, bff) -> new_esEs17(new_compare27(vyw28000, vyw29000, bfe, bff), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, hc) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], bef) -> GT new_ltEs11(Nothing, Nothing, hc) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bbf) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bca) -> new_asAs(new_esEs19(vyw300, vyw4000, bca), new_esEs18(vyw301, vyw4001, bca)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bfe, bff) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs8(vyw18, vyw13) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bfe, bff) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bfe, bff), bfe, bff) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dce)) -> new_esEs15(vyw300, vyw4000, dce) new_esEs28(vyw300, vyw4000, app(ty_[], dbe)) -> new_esEs10(vyw300, vyw4000, dbe) new_esEs29(vyw30, vyw400, app(ty_Maybe, bd)) -> new_esEs7(vyw30, vyw400, bd) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), fg, ef) -> True new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs8(vyw30, vyw400) new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, True, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(LT, LT) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare211(x0, x1, True, x2) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs8(False, True) new_esEs8(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Double) new_esEs8(True, True) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare3([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare3([], [], x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, False, x2, x3, x4) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_lt17(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, x2) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False) new_compare211(Nothing, Nothing, False, x0) new_compare3(:(x0, x1), :(x2, x3), x4) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, GT) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_ltEs18(x0, x1, ty_Char) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare26(x0, x1, True, x2, x3) new_compare211(Just(x0), Nothing, False, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_asAs(True, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Char(x0), Char(x1)) new_ltEs11(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Integer) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_compare111(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(@0, @0) new_primCompAux0(x0, x1, x2, x3) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs12(x0, x1, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(False, False) new_ltEs4(EQ, EQ) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(EQ, EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs10([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare19(x0, x1, True) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare211(Just(x0), Just(x1), False, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs27(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs10([], [], x0) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_compare210(x0, x1, False) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare211(Nothing, Just(x0), False, x1) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs8(False, False) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs13(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4) new_ltEs15(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_lt7(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs11(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (32) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. ---------------------------------------- (33) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs17(new_compare211(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, LT), h, ba) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), GT), h, ba) new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw44, Just(vyw30), h, ba) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(vyw28002, vyw29002, bhg, bhh) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcc), bcd), bce), bbf) -> new_esEs4(vyw300, vyw4000, bcc, bcd, bce) new_lt13(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_lt15(vyw28001, vyw29001, bgb, bgc) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(vyw300, vyw4000, bf, bg, bh) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bfe, bff) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_esEs6(vyw28000, vyw29000, bfe, bff) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, cf)) -> new_esEs7(vyw300, vyw4000, cf) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, dde), ddf)) -> new_compare27(vyw28000, vyw29000, dde, ddf) new_compare211(vyw280, vyw290, True, dea) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dcf)) -> new_esEs7(vyw300, vyw4000, dcf) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bbb, bbc, bbd) -> new_asAs(new_esEs27(vyw300, vyw4000, bbb), new_asAs(new_esEs26(vyw301, vyw4001, bbc), new_esEs25(vyw302, vyw4002, bbd))) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbf, dbg, dbh) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_primCompAux0(vyw28000, vyw29000, vyw89, bef) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, bef)) new_compare3([], [], bef) -> EQ new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs11(vyw18, vyw13) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bbf) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, beh, bfa) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, hd), he), hf)) -> new_ltEs7(vyw28000, vyw29000, hd, he, hf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bch), bda), bbf) -> new_esEs6(vyw300, vyw4000, bch, bda) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_lt17(vyw28000, vyw29000, bfe, bff) new_compare27(vyw28000, vyw29000, bfe, bff) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bfe, bff), bfe, bff) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, ce)) -> new_esEs15(vyw300, vyw4000, ce) new_lt13(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_lt6(vyw28001, vyw29001, bgh) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs12(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, ef) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bbf) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs11(vyw30, vyw400) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, cch), cda)) -> new_ltEs10(vyw2800, vyw2900, cch, cda) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, beh, bfa) -> GT new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs7(vyw28001, vyw29001, ced, cee, cef) new_compare211(Just(vyw2800), Nothing, False, dea) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dea) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dea), dea) new_esEs30(vyw18, vyw13, app(ty_Ratio, dh)) -> new_esEs15(vyw18, vyw13, dh) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), bba) -> new_asAs(new_esEs28(vyw300, vyw4000, bba), new_esEs10(vyw301, vyw4001, bba)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, bhd), bhe)) -> new_ltEs6(vyw28002, vyw29002, bhd, bhe) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, eg), eh), ef) -> new_ltEs6(vyw28000, vyw29000, eg, eh) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, ef) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bbf) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs9(vyw18, vyw13) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw28000, vyw29000, cdb, cdc, cdd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(vyw300, vyw4000, cbf, cbg, cbh) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw18, vyw13, da, db, dc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_esEs15(vyw28001, vyw29001, bgh) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bfe, bff) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bef) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, bef), bef) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt7(vyw28000, vyw29000, hb) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt14(vyw28000, vyw29000, cdb, cdc, cdd) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, ec), ed), ee), ef) -> new_ltEs7(vyw28000, vyw29000, ec, ed, ee) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs7(vyw2800, vyw2900, bfb, bfc, bfd) new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(vyw30, vyw400, bbb, bbc, bbd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, ddg)) -> new_compare15(vyw28000, vyw29000, ddg) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], baa)) -> new_ltEs9(vyw28000, vyw29000, baa) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fb), fc), ef) -> new_ltEs10(vyw28000, vyw29000, fb, fc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Maybe, bee)) -> new_esEs7(vyw300, vyw4000, bee) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), bef) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bd) -> False new_esEs7(Just(vyw300), Nothing, bd) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, cba), cbb)) -> new_esEs6(vyw301, vyw4001, cba, cbb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vyw28001, vyw29001, bfg, bfh, bga) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Ratio, bed)) -> new_esEs15(vyw300, vyw4000, bed) new_compare25(vyw28000, vyw29000, True, beh, bfa) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, ca), cb)) -> new_esEs5(vyw300, vyw4000, ca, cb) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(vyw28001, vyw29001, cfb, cfc) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs17(vyw18, vyw13) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bd) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], bhf)) -> new_ltEs9(vyw28002, vyw29002, bhf) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_esEs6(vyw28000, vyw29000, cdh, cea) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_lt15(vyw28000, vyw29000, beh, bfa) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, hb) -> new_esEs17(new_compare3(vyw28000, vyw29000, hb), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, ef) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, dcg), dch), dda)) -> new_compare13(vyw28000, vyw29000, dcg, dch, dda) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], bgd)) -> new_lt7(vyw28001, vyw29001, bgd) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbg, bbh) -> new_asAs(new_esEs23(vyw300, vyw4000, bbg), new_esEs22(vyw301, vyw4001, bbh)) new_esEs22(vyw301, vyw4001, app(ty_[], cac)) -> new_esEs10(vyw301, vyw4001, cac) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_esEs5(vyw28000, vyw29000, cde, cdf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bbf) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cgg)) -> new_esEs7(vyw302, vyw4002, cgg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, chf), chg)) -> new_esEs6(vyw301, vyw4001, chf, chg) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs4(vyw300, vyw4000, bde, bdf, bdg) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs7(vyw28002, vyw29002, bha, bhb, bhc) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_Either, gc), gd)) -> new_ltEs6(vyw28000, vyw29000, gc, gd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs7(vyw301, vyw4001, cbd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, ccf)) -> new_esEs7(vyw300, vyw4000, ccf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcf), bcg), bbf) -> new_esEs5(vyw300, vyw4000, bcf, bcg) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], ddd)) -> new_compare3(vyw28000, vyw29000, ddd) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw28000, vyw29000, beh, bfa) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs17(vyw30, vyw400) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, beh, bfa) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], cdg)) -> new_esEs10(vyw28000, vyw29000, cdg) new_compare24(vyw28000, vyw29000, False, baf, bag, bah) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, cbc)) -> new_esEs15(vyw301, vyw4001, cbc) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vyw28001, vyw29001, bfg, bfh, bga) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], be)) -> new_esEs10(vyw300, vyw4000, be) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, cc), cd)) -> new_esEs6(vyw300, vyw4000, cc, cd) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs14(vyw18, vyw13) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cch, cda) -> new_pePe(new_lt20(vyw28000, vyw29000, cch), new_asAs(new_esEs24(vyw28000, vyw29000, cch), new_ltEs19(vyw28001, vyw29001, cda))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cce)) -> new_esEs15(vyw300, vyw4000, cce) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_esEs7(vyw28000, vyw29000, ceb) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, bad)) -> new_ltEs11(vyw28000, vyw29000, bad) new_compare12(vyw28000, vyw29000, False, baf, bag, bah) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_lt11(vyw28000, vyw29000, ceb) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs14(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bbf) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_[], bdd)) -> new_esEs10(vyw300, vyw4000, bdd) new_lt15(vyw28000, vyw29000, beh, bfa) -> new_esEs17(new_compare16(vyw28000, vyw29000, beh, bfa), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_@2, beb), bec)) -> new_esEs6(vyw300, vyw4000, beb, bec) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cgd), cge)) -> new_esEs6(vyw302, vyw4002, cgd, cge) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cbe)) -> new_esEs10(vyw300, vyw4000, cbe) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, ddh)) -> new_compare9(vyw28000, vyw29000, ddh) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, fd), ef) -> new_ltEs11(vyw28000, vyw29000, fd) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vyw301, vyw4001, cha, chb, chc) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, ef) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, ccc), ccd)) -> new_esEs6(vyw300, vyw4000, ccc, ccd) new_ltEs19(vyw28001, vyw29001, app(ty_[], cfa)) -> new_ltEs9(vyw28001, vyw29001, cfa) new_lt6(vyw28000, vyw29000, eb) -> new_esEs17(new_compare9(vyw28000, vyw29000, eb), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, ef) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, hc)) -> new_ltEs11(vyw2800, vyw2900, hc) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chh)) -> new_esEs15(vyw301, vyw4001, chh) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs10(vyw28000, vyw29000, hb) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw28000, vyw29000, gf, gg) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, baf, bag, bah) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], cdg)) -> new_lt7(vyw28000, vyw29000, cdg) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bab), bac)) -> new_ltEs10(vyw28000, vyw29000, bab, bac) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_lt17(vyw28000, vyw29000, cdh, cea) new_lt13(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_lt11(vyw28001, vyw29001, bgg) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ccg) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ccg), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, baf, bag, bah) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, ff), ef) -> new_ltEs12(vyw28000, vyw29000, ff) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, beg) -> new_esEs17(new_compare15(vyw28000, vyw29000, beg), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_esEs15(vyw28000, vyw29000, eb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Maybe, gh)) -> new_ltEs11(vyw28000, vyw29000, gh) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs4(vyw301, vyw4001, cad, cae, caf) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, baf, bag, bah) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, beg) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, beg), beg) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], bba) -> False new_esEs10([], :(vyw4000, vyw4001), bba) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyw30, vyw400, bbe, bbf) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, hg), hh)) -> new_ltEs6(vyw28000, vyw29000, hg, hh) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dah), dba)) -> new_esEs6(vyw300, vyw4000, dah, dba) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bbf) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, bef) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, bef), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, caa)) -> new_ltEs11(vyw28002, vyw29002, caa) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Ratio, ha)) -> new_ltEs12(vyw28000, vyw29000, ha) new_ltEs11(Nothing, Just(vyw29000), hc) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw28001, vyw29001, bgb, bgc) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgh)) -> new_esEs10(vyw301, vyw4001, cgh) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), bfb, bfc, bfd) -> new_pePe(new_lt12(vyw28000, vyw29000, bfb), new_asAs(new_esEs21(vyw28000, vyw29000, bfb), new_pePe(new_lt13(vyw28001, vyw29001, bfc), new_asAs(new_esEs20(vyw28001, vyw29001, bfc), new_ltEs18(vyw28002, vyw29002, bfd))))) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_Either, bdh), bea)) -> new_esEs5(vyw300, vyw4000, bdh, bea) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], cff)) -> new_esEs10(vyw302, vyw4002, cff) new_ltEs20(vyw2800, vyw2900, app(ty_[], bef)) -> new_ltEs9(vyw2800, vyw2900, bef) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(vyw300, vyw4000, dcc, dcd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_[], ge)) -> new_ltEs9(vyw28000, vyw29000, ge) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, cfd)) -> new_ltEs11(vyw28001, vyw29001, cfd) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_lt6(vyw28000, vyw29000, eb) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ccg)) -> new_ltEs12(vyw2800, vyw2900, ccg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_lt11(vyw28000, vyw29000, beg) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_esEs7(vyw28000, vyw29000, beg) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, fg), ef)) -> new_ltEs6(vyw2800, vyw2900, fg, ef) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], fa), ef) -> new_ltEs9(vyw28000, vyw29000, fa) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw302, vyw4002, cgb, cgc) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_lt14(vyw28000, vyw29000, baf, bag, bah) -> new_esEs17(new_compare13(vyw28000, vyw29000, baf, bag, bah), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cgf)) -> new_esEs15(vyw302, vyw4002, cgf) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, cfe)) -> new_ltEs12(vyw28001, vyw29001, cfe) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, ceg), ceh)) -> new_ltEs6(vyw28001, vyw29001, ceg, ceh) new_esEs26(vyw301, vyw4001, app(ty_Maybe, daa)) -> new_esEs7(vyw301, vyw4001, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bdb), bbf) -> new_esEs15(vyw300, vyw4000, bdb) new_compare111(vyw73, vyw74, False, dbd) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], bgd)) -> new_esEs10(vyw28001, vyw29001, bgd) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, beh, bfa) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dbc)) -> new_esEs7(vyw300, vyw4000, dbc) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_lt17(vyw28001, vyw29001, bge, bgf) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bdc), bbf) -> new_esEs7(vyw300, vyw4000, bdc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw300, vyw4000, dac, dad, dae) new_ltEs6(Right(vyw28000), Left(vyw29000), fg, ef) -> False new_compare211(Nothing, Just(vyw2900), False, dea) -> LT new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, ef) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bbf) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_esEs7(vyw28001, vyw29001, bgg) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs30(vyw18, vyw13, app(app(ty_@2, df), dg)) -> new_esEs6(vyw18, vyw13, df, dg) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, app(ty_[], bba)) -> new_esEs10(vyw30, vyw400, bba) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dbb)) -> new_esEs15(vyw300, vyw4000, dbb) new_esEs5(Left(vyw300), Right(vyw4000), bbe, bbf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bbe, bbf) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_esEs6(vyw28001, vyw29001, bge, bgf) new_esEs27(vyw300, vyw4000, app(ty_[], dab)) -> new_esEs10(vyw300, vyw4000, dab) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bcb), bbf) -> new_esEs10(vyw300, vyw4000, bcb) new_esEs29(vyw30, vyw400, app(ty_Ratio, bca)) -> new_esEs15(vyw30, vyw400, bca) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cab)) -> new_ltEs12(vyw28002, vyw29002, cab) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, ddb), ddc)) -> new_compare16(vyw28000, vyw29000, ddb, ddc) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs7(vyw28000, vyw29000, fh, ga, gb) new_esEs30(vyw18, vyw13, app(app(ty_Either, dd), de)) -> new_esEs5(vyw18, vyw13, dd, de) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(ty_[], cg)) -> new_esEs10(vyw18, vyw13, cg) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs13(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, ef) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_@2, bbg), bbh)) -> new_esEs6(vyw30, vyw400, bbg, bbh) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, ef) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs4(vyw302, vyw4002, cfg, cfh, cga) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dea) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], bba) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_lt15(vyw28000, vyw29000, cde, cdf) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, dbd) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bae)) -> new_ltEs12(vyw28000, vyw29000, bae) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs30(vyw18, vyw13, app(ty_Maybe, ea)) -> new_esEs7(vyw18, vyw13, ea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bfe, bff) -> new_esEs17(new_compare27(vyw28000, vyw29000, bfe, bff), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, hc) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], bef) -> GT new_ltEs11(Nothing, Nothing, hc) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bbf) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bca) -> new_asAs(new_esEs19(vyw300, vyw4000, bca), new_esEs18(vyw301, vyw4001, bca)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bfe, bff) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs8(vyw18, vyw13) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bfe, bff) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bfe, bff), bfe, bff) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dce)) -> new_esEs15(vyw300, vyw4000, dce) new_esEs28(vyw300, vyw4000, app(ty_[], dbe)) -> new_esEs10(vyw300, vyw4000, dbe) new_esEs29(vyw30, vyw400, app(ty_Maybe, bd)) -> new_esEs7(vyw30, vyw400, bd) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), fg, ef) -> True new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs8(vyw30, vyw400) new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, True, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(LT, LT) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare211(x0, x1, True, x2) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs8(False, True) new_esEs8(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Double) new_esEs8(True, True) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare3([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare3([], [], x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, False, x2, x3, x4) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_lt17(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, x2) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False) new_compare211(Nothing, Nothing, False, x0) new_compare3(:(x0, x1), :(x2, x3), x4) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, GT) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_ltEs18(x0, x1, ty_Char) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare26(x0, x1, True, x2, x3) new_compare211(Just(x0), Nothing, False, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_asAs(True, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Char(x0), Char(x1)) new_ltEs11(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Integer) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_compare111(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(@0, @0) new_primCompAux0(x0, x1, x2, x3) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs12(x0, x1, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(False, False) new_ltEs4(EQ, EQ) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(EQ, EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs10([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare19(x0, x1, True) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare211(Just(x0), Just(x1), False, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs27(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs10([], [], x0) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_compare210(x0, x1, False) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare211(Nothing, Just(x0), False, x1) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs8(False, False) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs13(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4) new_ltEs15(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_lt7(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs11(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (34) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, LT), h, ba) at position [5] we obtained the following new rules [LPAR04]: (new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba),new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba)) ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs17(new_compare211(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), GT), h, ba) new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw44, Just(vyw30), h, ba) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(vyw28002, vyw29002, bhg, bhh) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcc), bcd), bce), bbf) -> new_esEs4(vyw300, vyw4000, bcc, bcd, bce) new_lt13(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_lt15(vyw28001, vyw29001, bgb, bgc) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(vyw300, vyw4000, bf, bg, bh) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bfe, bff) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_esEs6(vyw28000, vyw29000, bfe, bff) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, cf)) -> new_esEs7(vyw300, vyw4000, cf) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, dde), ddf)) -> new_compare27(vyw28000, vyw29000, dde, ddf) new_compare211(vyw280, vyw290, True, dea) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dcf)) -> new_esEs7(vyw300, vyw4000, dcf) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bbb, bbc, bbd) -> new_asAs(new_esEs27(vyw300, vyw4000, bbb), new_asAs(new_esEs26(vyw301, vyw4001, bbc), new_esEs25(vyw302, vyw4002, bbd))) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbf, dbg, dbh) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_primCompAux0(vyw28000, vyw29000, vyw89, bef) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, bef)) new_compare3([], [], bef) -> EQ new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs11(vyw18, vyw13) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bbf) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, beh, bfa) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, hd), he), hf)) -> new_ltEs7(vyw28000, vyw29000, hd, he, hf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bch), bda), bbf) -> new_esEs6(vyw300, vyw4000, bch, bda) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_lt17(vyw28000, vyw29000, bfe, bff) new_compare27(vyw28000, vyw29000, bfe, bff) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bfe, bff), bfe, bff) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, ce)) -> new_esEs15(vyw300, vyw4000, ce) new_lt13(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_lt6(vyw28001, vyw29001, bgh) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs12(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, ef) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bbf) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs11(vyw30, vyw400) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, cch), cda)) -> new_ltEs10(vyw2800, vyw2900, cch, cda) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, beh, bfa) -> GT new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs7(vyw28001, vyw29001, ced, cee, cef) new_compare211(Just(vyw2800), Nothing, False, dea) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dea) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dea), dea) new_esEs30(vyw18, vyw13, app(ty_Ratio, dh)) -> new_esEs15(vyw18, vyw13, dh) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), bba) -> new_asAs(new_esEs28(vyw300, vyw4000, bba), new_esEs10(vyw301, vyw4001, bba)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, bhd), bhe)) -> new_ltEs6(vyw28002, vyw29002, bhd, bhe) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, eg), eh), ef) -> new_ltEs6(vyw28000, vyw29000, eg, eh) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, ef) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bbf) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs9(vyw18, vyw13) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw28000, vyw29000, cdb, cdc, cdd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(vyw300, vyw4000, cbf, cbg, cbh) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw18, vyw13, da, db, dc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_esEs15(vyw28001, vyw29001, bgh) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bfe, bff) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bef) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, bef), bef) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt7(vyw28000, vyw29000, hb) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt14(vyw28000, vyw29000, cdb, cdc, cdd) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, ec), ed), ee), ef) -> new_ltEs7(vyw28000, vyw29000, ec, ed, ee) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs7(vyw2800, vyw2900, bfb, bfc, bfd) new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(vyw30, vyw400, bbb, bbc, bbd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, ddg)) -> new_compare15(vyw28000, vyw29000, ddg) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], baa)) -> new_ltEs9(vyw28000, vyw29000, baa) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fb), fc), ef) -> new_ltEs10(vyw28000, vyw29000, fb, fc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Maybe, bee)) -> new_esEs7(vyw300, vyw4000, bee) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), bef) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bd) -> False new_esEs7(Just(vyw300), Nothing, bd) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, cba), cbb)) -> new_esEs6(vyw301, vyw4001, cba, cbb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vyw28001, vyw29001, bfg, bfh, bga) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Ratio, bed)) -> new_esEs15(vyw300, vyw4000, bed) new_compare25(vyw28000, vyw29000, True, beh, bfa) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, ca), cb)) -> new_esEs5(vyw300, vyw4000, ca, cb) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(vyw28001, vyw29001, cfb, cfc) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs17(vyw18, vyw13) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bd) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], bhf)) -> new_ltEs9(vyw28002, vyw29002, bhf) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_esEs6(vyw28000, vyw29000, cdh, cea) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_lt15(vyw28000, vyw29000, beh, bfa) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, hb) -> new_esEs17(new_compare3(vyw28000, vyw29000, hb), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, ef) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, dcg), dch), dda)) -> new_compare13(vyw28000, vyw29000, dcg, dch, dda) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], bgd)) -> new_lt7(vyw28001, vyw29001, bgd) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbg, bbh) -> new_asAs(new_esEs23(vyw300, vyw4000, bbg), new_esEs22(vyw301, vyw4001, bbh)) new_esEs22(vyw301, vyw4001, app(ty_[], cac)) -> new_esEs10(vyw301, vyw4001, cac) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_esEs5(vyw28000, vyw29000, cde, cdf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bbf) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cgg)) -> new_esEs7(vyw302, vyw4002, cgg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, chf), chg)) -> new_esEs6(vyw301, vyw4001, chf, chg) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs4(vyw300, vyw4000, bde, bdf, bdg) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs7(vyw28002, vyw29002, bha, bhb, bhc) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_Either, gc), gd)) -> new_ltEs6(vyw28000, vyw29000, gc, gd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs7(vyw301, vyw4001, cbd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, ccf)) -> new_esEs7(vyw300, vyw4000, ccf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcf), bcg), bbf) -> new_esEs5(vyw300, vyw4000, bcf, bcg) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], ddd)) -> new_compare3(vyw28000, vyw29000, ddd) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw28000, vyw29000, beh, bfa) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs17(vyw30, vyw400) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, beh, bfa) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], cdg)) -> new_esEs10(vyw28000, vyw29000, cdg) new_compare24(vyw28000, vyw29000, False, baf, bag, bah) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, cbc)) -> new_esEs15(vyw301, vyw4001, cbc) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vyw28001, vyw29001, bfg, bfh, bga) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], be)) -> new_esEs10(vyw300, vyw4000, be) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, cc), cd)) -> new_esEs6(vyw300, vyw4000, cc, cd) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs14(vyw18, vyw13) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cch, cda) -> new_pePe(new_lt20(vyw28000, vyw29000, cch), new_asAs(new_esEs24(vyw28000, vyw29000, cch), new_ltEs19(vyw28001, vyw29001, cda))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cce)) -> new_esEs15(vyw300, vyw4000, cce) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_esEs7(vyw28000, vyw29000, ceb) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, bad)) -> new_ltEs11(vyw28000, vyw29000, bad) new_compare12(vyw28000, vyw29000, False, baf, bag, bah) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_lt11(vyw28000, vyw29000, ceb) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs14(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bbf) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_[], bdd)) -> new_esEs10(vyw300, vyw4000, bdd) new_lt15(vyw28000, vyw29000, beh, bfa) -> new_esEs17(new_compare16(vyw28000, vyw29000, beh, bfa), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_@2, beb), bec)) -> new_esEs6(vyw300, vyw4000, beb, bec) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cgd), cge)) -> new_esEs6(vyw302, vyw4002, cgd, cge) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cbe)) -> new_esEs10(vyw300, vyw4000, cbe) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, ddh)) -> new_compare9(vyw28000, vyw29000, ddh) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, fd), ef) -> new_ltEs11(vyw28000, vyw29000, fd) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vyw301, vyw4001, cha, chb, chc) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, ef) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, ccc), ccd)) -> new_esEs6(vyw300, vyw4000, ccc, ccd) new_ltEs19(vyw28001, vyw29001, app(ty_[], cfa)) -> new_ltEs9(vyw28001, vyw29001, cfa) new_lt6(vyw28000, vyw29000, eb) -> new_esEs17(new_compare9(vyw28000, vyw29000, eb), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, ef) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, hc)) -> new_ltEs11(vyw2800, vyw2900, hc) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chh)) -> new_esEs15(vyw301, vyw4001, chh) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs10(vyw28000, vyw29000, hb) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw28000, vyw29000, gf, gg) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, baf, bag, bah) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], cdg)) -> new_lt7(vyw28000, vyw29000, cdg) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bab), bac)) -> new_ltEs10(vyw28000, vyw29000, bab, bac) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_lt17(vyw28000, vyw29000, cdh, cea) new_lt13(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_lt11(vyw28001, vyw29001, bgg) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ccg) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ccg), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, baf, bag, bah) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, ff), ef) -> new_ltEs12(vyw28000, vyw29000, ff) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, beg) -> new_esEs17(new_compare15(vyw28000, vyw29000, beg), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_esEs15(vyw28000, vyw29000, eb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Maybe, gh)) -> new_ltEs11(vyw28000, vyw29000, gh) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs4(vyw301, vyw4001, cad, cae, caf) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, baf, bag, bah) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, beg) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, beg), beg) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], bba) -> False new_esEs10([], :(vyw4000, vyw4001), bba) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyw30, vyw400, bbe, bbf) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, hg), hh)) -> new_ltEs6(vyw28000, vyw29000, hg, hh) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dah), dba)) -> new_esEs6(vyw300, vyw4000, dah, dba) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bbf) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, bef) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, bef), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, caa)) -> new_ltEs11(vyw28002, vyw29002, caa) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Ratio, ha)) -> new_ltEs12(vyw28000, vyw29000, ha) new_ltEs11(Nothing, Just(vyw29000), hc) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw28001, vyw29001, bgb, bgc) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgh)) -> new_esEs10(vyw301, vyw4001, cgh) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), bfb, bfc, bfd) -> new_pePe(new_lt12(vyw28000, vyw29000, bfb), new_asAs(new_esEs21(vyw28000, vyw29000, bfb), new_pePe(new_lt13(vyw28001, vyw29001, bfc), new_asAs(new_esEs20(vyw28001, vyw29001, bfc), new_ltEs18(vyw28002, vyw29002, bfd))))) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_Either, bdh), bea)) -> new_esEs5(vyw300, vyw4000, bdh, bea) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], cff)) -> new_esEs10(vyw302, vyw4002, cff) new_ltEs20(vyw2800, vyw2900, app(ty_[], bef)) -> new_ltEs9(vyw2800, vyw2900, bef) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(vyw300, vyw4000, dcc, dcd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_[], ge)) -> new_ltEs9(vyw28000, vyw29000, ge) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, cfd)) -> new_ltEs11(vyw28001, vyw29001, cfd) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_lt6(vyw28000, vyw29000, eb) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ccg)) -> new_ltEs12(vyw2800, vyw2900, ccg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_lt11(vyw28000, vyw29000, beg) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_esEs7(vyw28000, vyw29000, beg) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, fg), ef)) -> new_ltEs6(vyw2800, vyw2900, fg, ef) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], fa), ef) -> new_ltEs9(vyw28000, vyw29000, fa) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw302, vyw4002, cgb, cgc) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_lt14(vyw28000, vyw29000, baf, bag, bah) -> new_esEs17(new_compare13(vyw28000, vyw29000, baf, bag, bah), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cgf)) -> new_esEs15(vyw302, vyw4002, cgf) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, cfe)) -> new_ltEs12(vyw28001, vyw29001, cfe) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, ceg), ceh)) -> new_ltEs6(vyw28001, vyw29001, ceg, ceh) new_esEs26(vyw301, vyw4001, app(ty_Maybe, daa)) -> new_esEs7(vyw301, vyw4001, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bdb), bbf) -> new_esEs15(vyw300, vyw4000, bdb) new_compare111(vyw73, vyw74, False, dbd) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], bgd)) -> new_esEs10(vyw28001, vyw29001, bgd) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, beh, bfa) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dbc)) -> new_esEs7(vyw300, vyw4000, dbc) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_lt17(vyw28001, vyw29001, bge, bgf) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bdc), bbf) -> new_esEs7(vyw300, vyw4000, bdc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw300, vyw4000, dac, dad, dae) new_ltEs6(Right(vyw28000), Left(vyw29000), fg, ef) -> False new_compare211(Nothing, Just(vyw2900), False, dea) -> LT new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, ef) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bbf) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_esEs7(vyw28001, vyw29001, bgg) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs30(vyw18, vyw13, app(app(ty_@2, df), dg)) -> new_esEs6(vyw18, vyw13, df, dg) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, app(ty_[], bba)) -> new_esEs10(vyw30, vyw400, bba) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dbb)) -> new_esEs15(vyw300, vyw4000, dbb) new_esEs5(Left(vyw300), Right(vyw4000), bbe, bbf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bbe, bbf) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_esEs6(vyw28001, vyw29001, bge, bgf) new_esEs27(vyw300, vyw4000, app(ty_[], dab)) -> new_esEs10(vyw300, vyw4000, dab) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bcb), bbf) -> new_esEs10(vyw300, vyw4000, bcb) new_esEs29(vyw30, vyw400, app(ty_Ratio, bca)) -> new_esEs15(vyw30, vyw400, bca) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cab)) -> new_ltEs12(vyw28002, vyw29002, cab) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, ddb), ddc)) -> new_compare16(vyw28000, vyw29000, ddb, ddc) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs7(vyw28000, vyw29000, fh, ga, gb) new_esEs30(vyw18, vyw13, app(app(ty_Either, dd), de)) -> new_esEs5(vyw18, vyw13, dd, de) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(ty_[], cg)) -> new_esEs10(vyw18, vyw13, cg) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs13(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, ef) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_@2, bbg), bbh)) -> new_esEs6(vyw30, vyw400, bbg, bbh) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, ef) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs4(vyw302, vyw4002, cfg, cfh, cga) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dea) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], bba) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_lt15(vyw28000, vyw29000, cde, cdf) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, dbd) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bae)) -> new_ltEs12(vyw28000, vyw29000, bae) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs30(vyw18, vyw13, app(ty_Maybe, ea)) -> new_esEs7(vyw18, vyw13, ea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bfe, bff) -> new_esEs17(new_compare27(vyw28000, vyw29000, bfe, bff), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, hc) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], bef) -> GT new_ltEs11(Nothing, Nothing, hc) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bbf) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bca) -> new_asAs(new_esEs19(vyw300, vyw4000, bca), new_esEs18(vyw301, vyw4001, bca)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bfe, bff) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs8(vyw18, vyw13) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bfe, bff) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bfe, bff), bfe, bff) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dce)) -> new_esEs15(vyw300, vyw4000, dce) new_esEs28(vyw300, vyw4000, app(ty_[], dbe)) -> new_esEs10(vyw300, vyw4000, dbe) new_esEs29(vyw30, vyw400, app(ty_Maybe, bd)) -> new_esEs7(vyw30, vyw400, bd) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), fg, ef) -> True new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs8(vyw30, vyw400) new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, True, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(LT, LT) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare211(x0, x1, True, x2) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs8(False, True) new_esEs8(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Double) new_esEs8(True, True) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare3([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare3([], [], x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, False, x2, x3, x4) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_lt17(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, x2) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False) new_compare211(Nothing, Nothing, False, x0) new_compare3(:(x0, x1), :(x2, x3), x4) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, GT) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_ltEs18(x0, x1, ty_Char) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare26(x0, x1, True, x2, x3) new_compare211(Just(x0), Nothing, False, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_asAs(True, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Char(x0), Char(x1)) new_ltEs11(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Integer) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_compare111(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(@0, @0) new_primCompAux0(x0, x1, x2, x3) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs12(x0, x1, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(False, False) new_ltEs4(EQ, EQ) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(EQ, EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs10([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare19(x0, x1, True) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare211(Just(x0), Just(x1), False, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs27(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs10([], [], x0) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_compare210(x0, x1, False) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare211(Nothing, Just(x0), False, x1) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs8(False, False) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs13(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4) new_ltEs15(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_lt7(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs11(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Nothing, False, ba), GT), h, ba) at position [5,0] we obtained the following new rules [LPAR04]: (new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, GT), h, ba),new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, GT), h, ba)) ---------------------------------------- (37) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs17(new_compare211(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw44, Just(vyw30), h, ba) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, GT), h, ba) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(vyw28002, vyw29002, bhg, bhh) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcc), bcd), bce), bbf) -> new_esEs4(vyw300, vyw4000, bcc, bcd, bce) new_lt13(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_lt15(vyw28001, vyw29001, bgb, bgc) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(vyw300, vyw4000, bf, bg, bh) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bfe, bff) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_esEs6(vyw28000, vyw29000, bfe, bff) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, cf)) -> new_esEs7(vyw300, vyw4000, cf) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, dde), ddf)) -> new_compare27(vyw28000, vyw29000, dde, ddf) new_compare211(vyw280, vyw290, True, dea) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dcf)) -> new_esEs7(vyw300, vyw4000, dcf) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bbb, bbc, bbd) -> new_asAs(new_esEs27(vyw300, vyw4000, bbb), new_asAs(new_esEs26(vyw301, vyw4001, bbc), new_esEs25(vyw302, vyw4002, bbd))) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbf, dbg, dbh) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_primCompAux0(vyw28000, vyw29000, vyw89, bef) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, bef)) new_compare3([], [], bef) -> EQ new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs11(vyw18, vyw13) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bbf) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, beh, bfa) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, hd), he), hf)) -> new_ltEs7(vyw28000, vyw29000, hd, he, hf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bch), bda), bbf) -> new_esEs6(vyw300, vyw4000, bch, bda) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_lt17(vyw28000, vyw29000, bfe, bff) new_compare27(vyw28000, vyw29000, bfe, bff) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bfe, bff), bfe, bff) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, ce)) -> new_esEs15(vyw300, vyw4000, ce) new_lt13(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_lt6(vyw28001, vyw29001, bgh) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs12(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, ef) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bbf) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs11(vyw30, vyw400) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, cch), cda)) -> new_ltEs10(vyw2800, vyw2900, cch, cda) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, beh, bfa) -> GT new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs7(vyw28001, vyw29001, ced, cee, cef) new_compare211(Just(vyw2800), Nothing, False, dea) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dea) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dea), dea) new_esEs30(vyw18, vyw13, app(ty_Ratio, dh)) -> new_esEs15(vyw18, vyw13, dh) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), bba) -> new_asAs(new_esEs28(vyw300, vyw4000, bba), new_esEs10(vyw301, vyw4001, bba)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, bhd), bhe)) -> new_ltEs6(vyw28002, vyw29002, bhd, bhe) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, eg), eh), ef) -> new_ltEs6(vyw28000, vyw29000, eg, eh) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, ef) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bbf) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs9(vyw18, vyw13) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw28000, vyw29000, cdb, cdc, cdd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(vyw300, vyw4000, cbf, cbg, cbh) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw18, vyw13, da, db, dc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_esEs15(vyw28001, vyw29001, bgh) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bfe, bff) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bef) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, bef), bef) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt7(vyw28000, vyw29000, hb) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt14(vyw28000, vyw29000, cdb, cdc, cdd) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, ec), ed), ee), ef) -> new_ltEs7(vyw28000, vyw29000, ec, ed, ee) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs7(vyw2800, vyw2900, bfb, bfc, bfd) new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(vyw30, vyw400, bbb, bbc, bbd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, ddg)) -> new_compare15(vyw28000, vyw29000, ddg) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], baa)) -> new_ltEs9(vyw28000, vyw29000, baa) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fb), fc), ef) -> new_ltEs10(vyw28000, vyw29000, fb, fc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Maybe, bee)) -> new_esEs7(vyw300, vyw4000, bee) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), bef) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bd) -> False new_esEs7(Just(vyw300), Nothing, bd) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, cba), cbb)) -> new_esEs6(vyw301, vyw4001, cba, cbb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vyw28001, vyw29001, bfg, bfh, bga) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Ratio, bed)) -> new_esEs15(vyw300, vyw4000, bed) new_compare25(vyw28000, vyw29000, True, beh, bfa) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, ca), cb)) -> new_esEs5(vyw300, vyw4000, ca, cb) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(vyw28001, vyw29001, cfb, cfc) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs17(vyw18, vyw13) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bd) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], bhf)) -> new_ltEs9(vyw28002, vyw29002, bhf) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_esEs6(vyw28000, vyw29000, cdh, cea) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_lt15(vyw28000, vyw29000, beh, bfa) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, hb) -> new_esEs17(new_compare3(vyw28000, vyw29000, hb), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, ef) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, dcg), dch), dda)) -> new_compare13(vyw28000, vyw29000, dcg, dch, dda) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], bgd)) -> new_lt7(vyw28001, vyw29001, bgd) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbg, bbh) -> new_asAs(new_esEs23(vyw300, vyw4000, bbg), new_esEs22(vyw301, vyw4001, bbh)) new_esEs22(vyw301, vyw4001, app(ty_[], cac)) -> new_esEs10(vyw301, vyw4001, cac) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_esEs5(vyw28000, vyw29000, cde, cdf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bbf) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cgg)) -> new_esEs7(vyw302, vyw4002, cgg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, chf), chg)) -> new_esEs6(vyw301, vyw4001, chf, chg) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs4(vyw300, vyw4000, bde, bdf, bdg) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs7(vyw28002, vyw29002, bha, bhb, bhc) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_Either, gc), gd)) -> new_ltEs6(vyw28000, vyw29000, gc, gd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs7(vyw301, vyw4001, cbd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, ccf)) -> new_esEs7(vyw300, vyw4000, ccf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcf), bcg), bbf) -> new_esEs5(vyw300, vyw4000, bcf, bcg) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], ddd)) -> new_compare3(vyw28000, vyw29000, ddd) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw28000, vyw29000, beh, bfa) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs17(vyw30, vyw400) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, beh, bfa) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], cdg)) -> new_esEs10(vyw28000, vyw29000, cdg) new_compare24(vyw28000, vyw29000, False, baf, bag, bah) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, cbc)) -> new_esEs15(vyw301, vyw4001, cbc) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vyw28001, vyw29001, bfg, bfh, bga) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], be)) -> new_esEs10(vyw300, vyw4000, be) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, cc), cd)) -> new_esEs6(vyw300, vyw4000, cc, cd) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs14(vyw18, vyw13) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cch, cda) -> new_pePe(new_lt20(vyw28000, vyw29000, cch), new_asAs(new_esEs24(vyw28000, vyw29000, cch), new_ltEs19(vyw28001, vyw29001, cda))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cce)) -> new_esEs15(vyw300, vyw4000, cce) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_esEs7(vyw28000, vyw29000, ceb) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, bad)) -> new_ltEs11(vyw28000, vyw29000, bad) new_compare12(vyw28000, vyw29000, False, baf, bag, bah) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_lt11(vyw28000, vyw29000, ceb) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs14(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bbf) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_[], bdd)) -> new_esEs10(vyw300, vyw4000, bdd) new_lt15(vyw28000, vyw29000, beh, bfa) -> new_esEs17(new_compare16(vyw28000, vyw29000, beh, bfa), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_@2, beb), bec)) -> new_esEs6(vyw300, vyw4000, beb, bec) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cgd), cge)) -> new_esEs6(vyw302, vyw4002, cgd, cge) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cbe)) -> new_esEs10(vyw300, vyw4000, cbe) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, ddh)) -> new_compare9(vyw28000, vyw29000, ddh) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, fd), ef) -> new_ltEs11(vyw28000, vyw29000, fd) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vyw301, vyw4001, cha, chb, chc) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, ef) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, ccc), ccd)) -> new_esEs6(vyw300, vyw4000, ccc, ccd) new_ltEs19(vyw28001, vyw29001, app(ty_[], cfa)) -> new_ltEs9(vyw28001, vyw29001, cfa) new_lt6(vyw28000, vyw29000, eb) -> new_esEs17(new_compare9(vyw28000, vyw29000, eb), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, ef) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, hc)) -> new_ltEs11(vyw2800, vyw2900, hc) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chh)) -> new_esEs15(vyw301, vyw4001, chh) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs10(vyw28000, vyw29000, hb) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw28000, vyw29000, gf, gg) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, baf, bag, bah) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], cdg)) -> new_lt7(vyw28000, vyw29000, cdg) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bab), bac)) -> new_ltEs10(vyw28000, vyw29000, bab, bac) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_lt17(vyw28000, vyw29000, cdh, cea) new_lt13(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_lt11(vyw28001, vyw29001, bgg) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ccg) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ccg), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, baf, bag, bah) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, ff), ef) -> new_ltEs12(vyw28000, vyw29000, ff) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, beg) -> new_esEs17(new_compare15(vyw28000, vyw29000, beg), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_esEs15(vyw28000, vyw29000, eb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Maybe, gh)) -> new_ltEs11(vyw28000, vyw29000, gh) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs4(vyw301, vyw4001, cad, cae, caf) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, baf, bag, bah) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, beg) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, beg), beg) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], bba) -> False new_esEs10([], :(vyw4000, vyw4001), bba) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyw30, vyw400, bbe, bbf) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, hg), hh)) -> new_ltEs6(vyw28000, vyw29000, hg, hh) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dah), dba)) -> new_esEs6(vyw300, vyw4000, dah, dba) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bbf) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, bef) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, bef), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, caa)) -> new_ltEs11(vyw28002, vyw29002, caa) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Ratio, ha)) -> new_ltEs12(vyw28000, vyw29000, ha) new_ltEs11(Nothing, Just(vyw29000), hc) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw28001, vyw29001, bgb, bgc) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgh)) -> new_esEs10(vyw301, vyw4001, cgh) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), bfb, bfc, bfd) -> new_pePe(new_lt12(vyw28000, vyw29000, bfb), new_asAs(new_esEs21(vyw28000, vyw29000, bfb), new_pePe(new_lt13(vyw28001, vyw29001, bfc), new_asAs(new_esEs20(vyw28001, vyw29001, bfc), new_ltEs18(vyw28002, vyw29002, bfd))))) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_Either, bdh), bea)) -> new_esEs5(vyw300, vyw4000, bdh, bea) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], cff)) -> new_esEs10(vyw302, vyw4002, cff) new_ltEs20(vyw2800, vyw2900, app(ty_[], bef)) -> new_ltEs9(vyw2800, vyw2900, bef) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(vyw300, vyw4000, dcc, dcd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_[], ge)) -> new_ltEs9(vyw28000, vyw29000, ge) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, cfd)) -> new_ltEs11(vyw28001, vyw29001, cfd) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_lt6(vyw28000, vyw29000, eb) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ccg)) -> new_ltEs12(vyw2800, vyw2900, ccg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_lt11(vyw28000, vyw29000, beg) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_esEs7(vyw28000, vyw29000, beg) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, fg), ef)) -> new_ltEs6(vyw2800, vyw2900, fg, ef) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], fa), ef) -> new_ltEs9(vyw28000, vyw29000, fa) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw302, vyw4002, cgb, cgc) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_lt14(vyw28000, vyw29000, baf, bag, bah) -> new_esEs17(new_compare13(vyw28000, vyw29000, baf, bag, bah), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cgf)) -> new_esEs15(vyw302, vyw4002, cgf) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, cfe)) -> new_ltEs12(vyw28001, vyw29001, cfe) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, ceg), ceh)) -> new_ltEs6(vyw28001, vyw29001, ceg, ceh) new_esEs26(vyw301, vyw4001, app(ty_Maybe, daa)) -> new_esEs7(vyw301, vyw4001, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bdb), bbf) -> new_esEs15(vyw300, vyw4000, bdb) new_compare111(vyw73, vyw74, False, dbd) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], bgd)) -> new_esEs10(vyw28001, vyw29001, bgd) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, beh, bfa) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dbc)) -> new_esEs7(vyw300, vyw4000, dbc) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_lt17(vyw28001, vyw29001, bge, bgf) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bdc), bbf) -> new_esEs7(vyw300, vyw4000, bdc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw300, vyw4000, dac, dad, dae) new_ltEs6(Right(vyw28000), Left(vyw29000), fg, ef) -> False new_compare211(Nothing, Just(vyw2900), False, dea) -> LT new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, ef) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bbf) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_esEs7(vyw28001, vyw29001, bgg) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs30(vyw18, vyw13, app(app(ty_@2, df), dg)) -> new_esEs6(vyw18, vyw13, df, dg) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, app(ty_[], bba)) -> new_esEs10(vyw30, vyw400, bba) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dbb)) -> new_esEs15(vyw300, vyw4000, dbb) new_esEs5(Left(vyw300), Right(vyw4000), bbe, bbf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bbe, bbf) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_esEs6(vyw28001, vyw29001, bge, bgf) new_esEs27(vyw300, vyw4000, app(ty_[], dab)) -> new_esEs10(vyw300, vyw4000, dab) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bcb), bbf) -> new_esEs10(vyw300, vyw4000, bcb) new_esEs29(vyw30, vyw400, app(ty_Ratio, bca)) -> new_esEs15(vyw30, vyw400, bca) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cab)) -> new_ltEs12(vyw28002, vyw29002, cab) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, ddb), ddc)) -> new_compare16(vyw28000, vyw29000, ddb, ddc) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs7(vyw28000, vyw29000, fh, ga, gb) new_esEs30(vyw18, vyw13, app(app(ty_Either, dd), de)) -> new_esEs5(vyw18, vyw13, dd, de) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(ty_[], cg)) -> new_esEs10(vyw18, vyw13, cg) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs13(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, ef) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_@2, bbg), bbh)) -> new_esEs6(vyw30, vyw400, bbg, bbh) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, ef) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs4(vyw302, vyw4002, cfg, cfh, cga) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dea) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], bba) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_lt15(vyw28000, vyw29000, cde, cdf) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, dbd) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bae)) -> new_ltEs12(vyw28000, vyw29000, bae) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs30(vyw18, vyw13, app(ty_Maybe, ea)) -> new_esEs7(vyw18, vyw13, ea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bfe, bff) -> new_esEs17(new_compare27(vyw28000, vyw29000, bfe, bff), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, hc) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], bef) -> GT new_ltEs11(Nothing, Nothing, hc) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bbf) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bca) -> new_asAs(new_esEs19(vyw300, vyw4000, bca), new_esEs18(vyw301, vyw4001, bca)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bfe, bff) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs8(vyw18, vyw13) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bfe, bff) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bfe, bff), bfe, bff) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dce)) -> new_esEs15(vyw300, vyw4000, dce) new_esEs28(vyw300, vyw4000, app(ty_[], dbe)) -> new_esEs10(vyw300, vyw4000, dbe) new_esEs29(vyw30, vyw400, app(ty_Maybe, bd)) -> new_esEs7(vyw30, vyw400, bd) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), fg, ef) -> True new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs8(vyw30, vyw400) new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, True, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(LT, LT) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare211(x0, x1, True, x2) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs8(False, True) new_esEs8(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Double) new_esEs8(True, True) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare3([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare3([], [], x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, False, x2, x3, x4) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_lt17(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, x2) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False) new_compare211(Nothing, Nothing, False, x0) new_compare3(:(x0, x1), :(x2, x3), x4) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, GT) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_ltEs18(x0, x1, ty_Char) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare26(x0, x1, True, x2, x3) new_compare211(Just(x0), Nothing, False, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_asAs(True, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Char(x0), Char(x1)) new_ltEs11(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Integer) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_compare111(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(@0, @0) new_primCompAux0(x0, x1, x2, x3) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs12(x0, x1, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(False, False) new_ltEs4(EQ, EQ) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(EQ, EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs10([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare19(x0, x1, True) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare211(Just(x0), Just(x1), False, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs27(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs10([], [], x0) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_compare210(x0, x1, False) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare211(Nothing, Just(x0), False, x1) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs8(False, False) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs13(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4) new_ltEs15(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_lt7(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs11(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (38) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(GT, GT), h, ba) at position [5] we obtained the following new rules [LPAR04]: (new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba),new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba)) ---------------------------------------- (39) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs17(new_compare211(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw44, Just(vyw30), h, ba) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, bhg), bhh)) -> new_ltEs10(vyw28002, vyw29002, bhg, bhh) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcc), bcd), bce), bbf) -> new_esEs4(vyw300, vyw4000, bcc, bcd, bce) new_lt13(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_lt15(vyw28001, vyw29001, bgb, bgc) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(vyw300, vyw4000, bf, bg, bh) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bfe, bff) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_esEs6(vyw28000, vyw29000, bfe, bff) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, cf)) -> new_esEs7(vyw300, vyw4000, cf) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, dde), ddf)) -> new_compare27(vyw28000, vyw29000, dde, ddf) new_compare211(vyw280, vyw290, True, dea) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dcf)) -> new_esEs7(vyw300, vyw4000, dcf) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bbb, bbc, bbd) -> new_asAs(new_esEs27(vyw300, vyw4000, bbb), new_asAs(new_esEs26(vyw301, vyw4001, bbc), new_esEs25(vyw302, vyw4002, bbd))) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbf, dbg, dbh) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_primCompAux0(vyw28000, vyw29000, vyw89, bef) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, bef)) new_compare3([], [], bef) -> EQ new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs11(vyw18, vyw13) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bbf) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, beh, bfa) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, hd), he), hf)) -> new_ltEs7(vyw28000, vyw29000, hd, he, hf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bch), bda), bbf) -> new_esEs6(vyw300, vyw4000, bch, bda) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bfe), bff)) -> new_lt17(vyw28000, vyw29000, bfe, bff) new_compare27(vyw28000, vyw29000, bfe, bff) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bfe, bff), bfe, bff) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, ce)) -> new_esEs15(vyw300, vyw4000, ce) new_lt13(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_lt6(vyw28001, vyw29001, bgh) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs12(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, ef) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bbf) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs11(vyw30, vyw400) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, cch), cda)) -> new_ltEs10(vyw2800, vyw2900, cch, cda) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, beh, bfa) -> GT new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs7(vyw28001, vyw29001, ced, cee, cef) new_compare211(Just(vyw2800), Nothing, False, dea) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dea) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dea), dea) new_esEs30(vyw18, vyw13, app(ty_Ratio, dh)) -> new_esEs15(vyw18, vyw13, dh) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), bba) -> new_asAs(new_esEs28(vyw300, vyw4000, bba), new_esEs10(vyw301, vyw4001, bba)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, bhd), bhe)) -> new_ltEs6(vyw28002, vyw29002, bhd, bhe) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, eg), eh), ef) -> new_ltEs6(vyw28000, vyw29000, eg, eh) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, ef) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bbf) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs9(vyw18, vyw13) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw28000, vyw29000, cdb, cdc, cdd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs4(vyw300, vyw4000, cbf, cbg, cbh) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw18, vyw13, da, db, dc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, bgh)) -> new_esEs15(vyw28001, vyw29001, bgh) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bfe, bff) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bef) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, bef), bef) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt7(vyw28000, vyw29000, hb) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt14(vyw28000, vyw29000, cdb, cdc, cdd) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, ec), ed), ee), ef) -> new_ltEs7(vyw28000, vyw29000, ec, ed, ee) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs7(vyw2800, vyw2900, bfb, bfc, bfd) new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs4(vyw30, vyw400, bbb, bbc, bbd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, ddg)) -> new_compare15(vyw28000, vyw29000, ddg) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], baa)) -> new_ltEs9(vyw28000, vyw29000, baa) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fb), fc), ef) -> new_ltEs10(vyw28000, vyw29000, fb, fc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Maybe, bee)) -> new_esEs7(vyw300, vyw4000, bee) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), bef) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bd) -> False new_esEs7(Just(vyw300), Nothing, bd) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, cba), cbb)) -> new_esEs6(vyw301, vyw4001, cba, cbb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vyw28001, vyw29001, bfg, bfh, bga) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_Ratio, bed)) -> new_esEs15(vyw300, vyw4000, bed) new_compare25(vyw28000, vyw29000, True, beh, bfa) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, ca), cb)) -> new_esEs5(vyw300, vyw4000, ca, cb) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, cfb), cfc)) -> new_ltEs10(vyw28001, vyw29001, cfb, cfc) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs17(vyw18, vyw13) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bd) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], bhf)) -> new_ltEs9(vyw28002, vyw29002, bhf) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_esEs6(vyw28000, vyw29000, cdh, cea) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_lt15(vyw28000, vyw29000, beh, bfa) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, hb) -> new_esEs17(new_compare3(vyw28000, vyw29000, hb), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, ef) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, dcg), dch), dda)) -> new_compare13(vyw28000, vyw29000, dcg, dch, dda) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], bgd)) -> new_lt7(vyw28001, vyw29001, bgd) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbg, bbh) -> new_asAs(new_esEs23(vyw300, vyw4000, bbg), new_esEs22(vyw301, vyw4001, bbh)) new_esEs22(vyw301, vyw4001, app(ty_[], cac)) -> new_esEs10(vyw301, vyw4001, cac) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_esEs5(vyw28000, vyw29000, cde, cdf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bbf) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cgg)) -> new_esEs7(vyw302, vyw4002, cgg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, chf), chg)) -> new_esEs6(vyw301, vyw4001, chf, chg) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs4(vyw300, vyw4000, bde, bdf, bdg) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs7(vyw28002, vyw29002, bha, bhb, bhc) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_Either, gc), gd)) -> new_ltEs6(vyw28000, vyw29000, gc, gd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs7(vyw301, vyw4001, cbd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, ccf)) -> new_esEs7(vyw300, vyw4000, ccf) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcf), bcg), bbf) -> new_esEs5(vyw300, vyw4000, bcf, bcg) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], ddd)) -> new_compare3(vyw28000, vyw29000, ddd) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw28000, vyw29000, beh, bfa) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs17(vyw30, vyw400) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, beh, bfa) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], cdg)) -> new_esEs10(vyw28000, vyw29000, cdg) new_compare24(vyw28000, vyw29000, False, baf, bag, bah) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, cbc)) -> new_esEs15(vyw301, vyw4001, cbc) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vyw28001, vyw29001, bfg, bfh, bga) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], be)) -> new_esEs10(vyw300, vyw4000, be) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, cc), cd)) -> new_esEs6(vyw300, vyw4000, cc, cd) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs14(vyw18, vyw13) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cch, cda) -> new_pePe(new_lt20(vyw28000, vyw29000, cch), new_asAs(new_esEs24(vyw28000, vyw29000, cch), new_ltEs19(vyw28001, vyw29001, cda))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cce)) -> new_esEs15(vyw300, vyw4000, cce) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_esEs7(vyw28000, vyw29000, ceb) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, bad)) -> new_ltEs11(vyw28000, vyw29000, bad) new_compare12(vyw28000, vyw29000, False, baf, bag, bah) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, ceb)) -> new_lt11(vyw28000, vyw29000, ceb) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs14(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bbf) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(ty_[], bdd)) -> new_esEs10(vyw300, vyw4000, bdd) new_lt15(vyw28000, vyw29000, beh, bfa) -> new_esEs17(new_compare16(vyw28000, vyw29000, beh, bfa), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_@2, beb), bec)) -> new_esEs6(vyw300, vyw4000, beb, bec) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cgd), cge)) -> new_esEs6(vyw302, vyw4002, cgd, cge) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cbe)) -> new_esEs10(vyw300, vyw4000, cbe) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, ddh)) -> new_compare9(vyw28000, vyw29000, ddh) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, fd), ef) -> new_ltEs11(vyw28000, vyw29000, fd) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vyw301, vyw4001, cha, chb, chc) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, ef) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, ccc), ccd)) -> new_esEs6(vyw300, vyw4000, ccc, ccd) new_ltEs19(vyw28001, vyw29001, app(ty_[], cfa)) -> new_ltEs9(vyw28001, vyw29001, cfa) new_lt6(vyw28000, vyw29000, eb) -> new_esEs17(new_compare9(vyw28000, vyw29000, eb), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, ef) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, hc)) -> new_ltEs11(vyw2800, vyw2900, hc) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chh)) -> new_esEs15(vyw301, vyw4001, chh) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs10(vyw28000, vyw29000, hb) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw28000, vyw29000, gf, gg) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, baf, bag, bah) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], cdg)) -> new_lt7(vyw28000, vyw29000, cdg) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bab), bac)) -> new_ltEs10(vyw28000, vyw29000, bab, bac) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, cdh), cea)) -> new_lt17(vyw28000, vyw29000, cdh, cea) new_lt13(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_lt11(vyw28001, vyw29001, bgg) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ccg) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ccg), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, baf, bag, bah) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, ff), ef) -> new_ltEs12(vyw28000, vyw29000, ff) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, beg) -> new_esEs17(new_compare15(vyw28000, vyw29000, beg), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_esEs15(vyw28000, vyw29000, eb) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Maybe, gh)) -> new_ltEs11(vyw28000, vyw29000, gh) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs4(vyw301, vyw4001, cad, cae, caf) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, baf, bag, bah) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, baf, bag, bah), baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, beg) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, beg), beg) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], bba) -> False new_esEs10([], :(vyw4000, vyw4001), bba) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyw30, vyw400, bbe, bbf) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, hg), hh)) -> new_ltEs6(vyw28000, vyw29000, hg, hh) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dah), dba)) -> new_esEs6(vyw300, vyw4000, dah, dba) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bbf) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, bef) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, bef), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, caa)) -> new_ltEs11(vyw28002, vyw29002, caa) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_Ratio, ha)) -> new_ltEs12(vyw28000, vyw29000, ha) new_ltEs11(Nothing, Just(vyw29000), hc) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw28001, vyw29001, bgb, bgc) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgh)) -> new_esEs10(vyw301, vyw4001, cgh) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), bfb, bfc, bfd) -> new_pePe(new_lt12(vyw28000, vyw29000, bfb), new_asAs(new_esEs21(vyw28000, vyw29000, bfb), new_pePe(new_lt13(vyw28001, vyw29001, bfc), new_asAs(new_esEs20(vyw28001, vyw29001, bfc), new_ltEs18(vyw28002, vyw29002, bfd))))) new_esEs5(Right(vyw300), Right(vyw4000), bbe, app(app(ty_Either, bdh), bea)) -> new_esEs5(vyw300, vyw4000, bdh, bea) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], cff)) -> new_esEs10(vyw302, vyw4002, cff) new_ltEs20(vyw2800, vyw2900, app(ty_[], bef)) -> new_ltEs9(vyw2800, vyw2900, bef) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(vyw300, vyw4000, dcc, dcd) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(ty_[], ge)) -> new_ltEs9(vyw28000, vyw29000, ge) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, cfd)) -> new_ltEs11(vyw28001, vyw29001, cfd) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, eb)) -> new_lt6(vyw28000, vyw29000, eb) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ccg)) -> new_ltEs12(vyw2800, vyw2900, ccg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_lt11(vyw28000, vyw29000, beg) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, beg)) -> new_esEs7(vyw28000, vyw29000, beg) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, fg), ef)) -> new_ltEs6(vyw2800, vyw2900, fg, ef) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], fa), ef) -> new_ltEs9(vyw28000, vyw29000, fa) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw302, vyw4002, cgb, cgc) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_lt14(vyw28000, vyw29000, baf, bag, bah) -> new_esEs17(new_compare13(vyw28000, vyw29000, baf, bag, bah), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cgf)) -> new_esEs15(vyw302, vyw4002, cgf) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, cfe)) -> new_ltEs12(vyw28001, vyw29001, cfe) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, ceg), ceh)) -> new_ltEs6(vyw28001, vyw29001, ceg, ceh) new_esEs26(vyw301, vyw4001, app(ty_Maybe, daa)) -> new_esEs7(vyw301, vyw4001, daa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bdb), bbf) -> new_esEs15(vyw300, vyw4000, bdb) new_compare111(vyw73, vyw74, False, dbd) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], bgd)) -> new_esEs10(vyw28001, vyw29001, bgd) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, beh, bfa) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, beh, bfa), beh, bfa) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dbc)) -> new_esEs7(vyw300, vyw4000, dbc) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_lt17(vyw28001, vyw29001, bge, bgf) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bdc), bbf) -> new_esEs7(vyw300, vyw4000, bdc) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw300, vyw4000, dac, dad, dae) new_ltEs6(Right(vyw28000), Left(vyw29000), fg, ef) -> False new_compare211(Nothing, Just(vyw2900), False, dea) -> LT new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, ef) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bbf) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, bgg)) -> new_esEs7(vyw28001, vyw29001, bgg) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs30(vyw18, vyw13, app(app(ty_@2, df), dg)) -> new_esEs6(vyw18, vyw13, df, dg) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, app(ty_[], bba)) -> new_esEs10(vyw30, vyw400, bba) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dbb)) -> new_esEs15(vyw300, vyw4000, dbb) new_esEs5(Left(vyw300), Right(vyw4000), bbe, bbf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bbe, bbf) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, bge), bgf)) -> new_esEs6(vyw28001, vyw29001, bge, bgf) new_esEs27(vyw300, vyw4000, app(ty_[], dab)) -> new_esEs10(vyw300, vyw4000, dab) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bcb), bbf) -> new_esEs10(vyw300, vyw4000, bcb) new_esEs29(vyw30, vyw400, app(ty_Ratio, bca)) -> new_esEs15(vyw30, vyw400, bca) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cab)) -> new_ltEs12(vyw28002, vyw29002, cab) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, ddb), ddc)) -> new_compare16(vyw28000, vyw29000, ddb, ddc) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs7(vyw28000, vyw29000, fh, ga, gb) new_esEs30(vyw18, vyw13, app(app(ty_Either, dd), de)) -> new_esEs5(vyw18, vyw13, dd, de) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(ty_[], cg)) -> new_esEs10(vyw18, vyw13, cg) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs13(vyw18, vyw13) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, ef) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, app(app(ty_@2, bbg), bbh)) -> new_esEs6(vyw30, vyw400, bbg, bbh) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, ef) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs4(vyw302, vyw4002, cfg, cfh, cga) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dea) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], bba) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, cde), cdf)) -> new_lt15(vyw28000, vyw29000, cde, cdf) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, dbd) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bae)) -> new_ltEs12(vyw28000, vyw29000, bae) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs30(vyw18, vyw13, app(ty_Maybe, ea)) -> new_esEs7(vyw18, vyw13, ea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bfe, bff) -> new_esEs17(new_compare27(vyw28000, vyw29000, bfe, bff), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), fg, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, hc) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bbe, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], bef) -> GT new_ltEs11(Nothing, Nothing, hc) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bbf) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bca) -> new_asAs(new_esEs19(vyw300, vyw4000, bca), new_esEs18(vyw301, vyw4001, bca)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bfe, bff) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs8(vyw18, vyw13) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bfe, bff) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bfe, bff), bfe, bff) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dce)) -> new_esEs15(vyw300, vyw4000, dce) new_esEs28(vyw300, vyw4000, app(ty_[], dbe)) -> new_esEs10(vyw300, vyw4000, dbe) new_esEs29(vyw30, vyw400, app(ty_Maybe, bd)) -> new_esEs7(vyw30, vyw400, bd) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), fg, ef) -> True new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs8(vyw30, vyw400) new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, True, x2, x3) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(LT, LT) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_lt13(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Ordering) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare211(x0, x1, True, x2) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs30(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs8(False, True) new_esEs8(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Double) new_esEs8(True, True) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare3([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare3([], [], x0) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare12(x0, x1, False, x2, x3, x4) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_lt17(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, x2) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_compare10(x0, x1, False) new_compare211(Nothing, Nothing, False, x0) new_compare3(:(x0, x1), :(x2, x3), x4) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, GT) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs18(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_ltEs18(x0, x1, ty_Char) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare26(x0, x1, True, x2, x3) new_compare211(Just(x0), Nothing, False, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_lt6(x0, x1, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare12(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Nothing, Nothing, x0) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_asAs(True, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Char(x0), Char(x1)) new_ltEs11(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Integer) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_compare30(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False, x2, x3) new_compare111(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(@0, @0) new_primCompAux0(x0, x1, x2, x3) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs12(x0, x1, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(False, False) new_ltEs4(EQ, EQ) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs17(EQ, EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs10([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare19(x0, x1, True) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare211(Just(x0), Just(x1), False, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs27(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs10([], [], x0) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_compare210(x0, x1, False) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_compare30(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare211(Nothing, Just(x0), False, x1) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs8(False, False) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs13(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4) new_ltEs15(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_lt7(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs11(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (40) 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_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs17(new_compare211(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9 *new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 7, 4 >= 8 *new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4 *new_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs17(new_compare211(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 *new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4 *new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, True, h, ba) -> new_elemFM00(vyw44, Just(vyw30), h, ba) The graph contains the following edges 4 >= 1, 7 >= 3, 8 >= 4 ---------------------------------------- (41) YES ---------------------------------------- (42) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(vyw28000, vyw29000, vyw89, app(ty_[], bab)) -> new_compare0(vyw28000, vyw29000, bab) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) new_compare21(vyw28000, vyw29000, False, bh, ca) -> new_ltEs2(vyw28000, vyw29000, bh, ca) new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_Maybe, ga)), fb)) -> new_ltEs3(vyw28000, vyw29000, ga) new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(app(ty_@3, eg), eh), fa)), fb)) -> new_ltEs(vyw28000, vyw29000, eg, eh, fa) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_Maybe, cb), bc, bd) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) new_lt3(vyw28000, vyw29000, cb) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) new_ltEs3(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bdh), bea)) -> new_ltEs2(vyw28000, vyw29000, bdh, bea) new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs(vyw28000, vyw29000, bdb, bdc, bdd) new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(ty_[], gh))) -> new_ltEs1(vyw28000, vyw29000, gh) new_compare4(vyw28000, vyw29000, bh, ca) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(ty_[], bcf))) -> new_ltEs1(vyw28001, vyw29001, bcf) new_compare(vyw28000, vyw29000, h, ba, bb) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(ty_[], db)), bd)) -> new_lt1(vyw28001, vyw29001, db) new_compare22(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], hd)) -> new_primCompAux(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, hd), hd) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_[], bg), bc, bd) -> new_compare0(vyw28000, vyw29000, bg) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(ty_[], bcf)) -> new_ltEs1(vyw28001, vyw29001, bcf) new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs(vyw28000, vyw29000, gc, gd, ge) new_ltEs3(Just(vyw28000), Just(vyw29000), app(app(ty_Either, bde), bdf)) -> new_ltEs0(vyw28000, vyw29000, bde, bdf) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_[], bg)), bc), bd)) -> new_compare0(vyw28000, vyw29000, bg) new_ltEs1(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_compare0(vyw28001, vyw29001, hd) new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_[], ff)), fb)) -> new_ltEs1(vyw28000, vyw29000, ff) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_Maybe, bbg)), bba)) -> new_lt3(vyw28000, vyw29000, bbg) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(ty_Maybe, bda)) -> new_ltEs3(vyw28001, vyw29001, bda) new_primCompAux(vyw28000, vyw29000, vyw89, app(app(ty_Either, hh), baa)) -> new_compare1(vyw28000, vyw29000, hh, baa) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_Either, bbb), bbc)), bba)) -> new_lt0(vyw28000, vyw29000, bbb, bbc) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_@2, bh), ca), bc, bd) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(app(ty_Either, bcd), bce)) -> new_ltEs0(vyw28001, vyw29001, bcd, bce) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs(vyw28002, vyw29002, df, dg, dh) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_[], bbd)), bba)) -> new_lt1(vyw28000, vyw29000, bbd) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_Maybe, bbg), bba) -> new_lt3(vyw28000, vyw29000, bbg) new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_Maybe, beb))) -> new_ltEs3(vyw28000, vyw29000, beb) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(ty_Maybe, bda))) -> new_ltEs3(vyw28001, vyw29001, bda) new_ltEs3(Just(vyw28000), Just(vyw29000), app(ty_[], bdg)) -> new_ltEs1(vyw28000, vyw29000, bdg) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_compare0(vyw28001, vyw29001, hd) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(app(ty_Either, cg), da)), bd)) -> new_lt0(vyw28001, vyw29001, cg, da) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(app(ty_Either, bcd), bce))) -> new_ltEs0(vyw28001, vyw29001, bcd, bce) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(app(ty_@2, dc), dd), bd) -> new_lt2(vyw28001, vyw29001, dc, dd) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_[], bbd), bba) -> new_lt1(vyw28000, vyw29000, bbd) new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_@2, bdh), bea))) -> new_ltEs2(vyw28000, vyw29000, bdh, bea) new_compare20(vyw28000, vyw29000, False, be, bf) -> new_ltEs0(vyw28000, vyw29000, be, bf) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(ty_[], ec))) -> new_ltEs1(vyw28002, vyw29002, ec) new_compare1(vyw28000, vyw29000, be, bf) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) new_ltEs3(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs(vyw28000, vyw29000, bdb, bdc, bdd) new_primCompAux(vyw28000, vyw29000, vyw89, app(ty_Maybe, bae)) -> new_compare5(vyw28000, vyw29000, bae) new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(app(ty_@2, ha), hb))) -> new_ltEs2(vyw28000, vyw29000, ha, hb) new_ltEs0(Left(vyw28000), Left(vyw29000), app(ty_Maybe, ga), fb) -> new_ltEs3(vyw28000, vyw29000, ga) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_Either, bbb), bbc), bba) -> new_lt0(vyw28000, vyw29000, bbb, bbc) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(ty_Maybe, de)), bd)) -> new_lt3(vyw28001, vyw29001, de) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(ty_Maybe, de), bd) -> new_lt3(vyw28001, vyw29001, de) new_lt1(vyw28000, vyw29000, bg) -> new_compare0(vyw28000, vyw29000, bg) new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(ty_Maybe, hc))) -> new_ltEs3(vyw28000, vyw29000, hc) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_Either, be), bf), bc, bd) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) new_ltEs3(Just(vyw28000), Just(vyw29000), app(ty_Maybe, beb)) -> new_ltEs3(vyw28000, vyw29000, beb) new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_[], bdg))) -> new_ltEs1(vyw28000, vyw29000, bdg) new_ltEs0(Left(vyw28000), Left(vyw29000), app(ty_[], ff), fb) -> new_ltEs1(vyw28000, vyw29000, ff) new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(app(ty_Either, gf), gg))) -> new_ltEs0(vyw28000, vyw29000, gf, gg) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(ty_[], db), bd) -> new_lt1(vyw28001, vyw29001, db) new_ltEs0(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fg), fh), fb) -> new_ltEs2(vyw28000, vyw29000, fg, fh) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(app(app(ty_@3, df), dg), dh))) -> new_ltEs(vyw28002, vyw29002, df, dg, dh) new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs0(vyw28000, vyw29000, gf, gg) new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_Either, bde), bdf))) -> new_ltEs0(vyw28000, vyw29000, bde, bdf) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(ty_Maybe, ef)) -> new_ltEs3(vyw28002, vyw29002, ef) new_primCompAux(vyw28000, vyw29000, vyw89, app(app(app(ty_@3, he), hf), hg)) -> new_compare(vyw28000, vyw29000, he, hf, hg) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, h), ba), bb)), bc), bd)) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_Either, be), bf)), bc), bd)) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) new_compare22(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], hd)) -> new_compare0(vyw28001, vyw29001, hd) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs(vyw28001, vyw29001, bca, bcb, bcc) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(app(ty_@2, ed), ee))) -> new_ltEs2(vyw28002, vyw29002, ed, ee) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(ty_[], ec)) -> new_ltEs1(vyw28002, vyw29002, ec) new_ltEs0(Left(vyw28000), Left(vyw29000), app(app(ty_Either, fc), fd), fb) -> new_ltEs0(vyw28000, vyw29000, fc, fd) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(app(ty_@2, dc), dd)), bd)) -> new_lt2(vyw28001, vyw29001, dc, dd) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(app(ty_Either, ea), eb))) -> new_ltEs0(vyw28002, vyw29002, ea, eb) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(ty_Maybe, ef))) -> new_ltEs3(vyw28002, vyw29002, ef) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_@2, bbe), bbf), bba) -> new_lt2(vyw28000, vyw29000, bbe, bbf) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(app(ty_Either, cg), da), bd) -> new_lt0(vyw28001, vyw29001, cg, da) new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_@2, fg), fh)), fb)) -> new_ltEs2(vyw28000, vyw29000, fg, fh) new_compare2(vyw28000, vyw29000, False, h, ba, bb) -> new_ltEs(vyw28000, vyw29000, h, ba, bb) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(app(ty_@2, bcg), bch)) -> new_ltEs2(vyw28001, vyw29001, bcg, bch) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(app(ty_Either, ea), eb)) -> new_ltEs0(vyw28002, vyw29002, ea, eb) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(app(ty_@3, baf), bag), bah)), bba)) -> new_lt(vyw28000, vyw29000, baf, bag, bah) new_lt(vyw28000, vyw29000, h, ba, bb) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) new_ltEs1(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_primCompAux(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, hd), hd) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(vyw28001, vyw29001, bca, bcb, bcc) new_ltEs0(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, eg), eh), fa), fb) -> new_ltEs(vyw28000, vyw29000, eg, eh, fa) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_primCompAux(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, hd), hd) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_lt(vyw28001, vyw29001, cd, ce, cf) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(app(ty_@2, bcg), bch))) -> new_ltEs2(vyw28001, vyw29001, bcg, bch) new_primCompAux(vyw28000, vyw29000, vyw89, app(app(ty_@2, bac), bad)) -> new_compare4(vyw28000, vyw29000, bac, bad) new_lt2(vyw28000, vyw29000, bh, ca) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(ty_Maybe, hc)) -> new_ltEs3(vyw28000, vyw29000, hc) new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(app(ty_@3, baf), bag), bah), bba) -> new_lt(vyw28000, vyw29000, baf, bag, bah) new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(app(ty_@2, ha), hb)) -> new_ltEs2(vyw28000, vyw29000, ha, hb) new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_@2, bbe), bbf)), bba)) -> new_lt2(vyw28000, vyw29000, bbe, bbf) new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(ty_[], gh)) -> new_ltEs1(vyw28000, vyw29000, gh) new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(app(ty_@2, ed), ee)) -> new_ltEs2(vyw28002, vyw29002, ed, ee) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_Maybe, cb)), bc), bd)) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_Either, fc), fd)), fb)) -> new_ltEs0(vyw28000, vyw29000, fc, fd) new_compare5(vyw28000, vyw29000, cb) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_@2, bh), ca)), bc), bd)) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) new_lt0(vyw28000, vyw29000, be, bf) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(app(app(ty_@3, gc), gd), ge))) -> new_ltEs(vyw28000, vyw29000, gc, gd, ge) new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(app(app(ty_@3, cd), ce), cf)), bd)) -> new_lt(vyw28001, vyw29001, cd, ce, cf) The TRS R consists of the following rules: new_compare30(vyw28000, vyw29000, ty_Bool) -> new_compare29(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_ltEs18(vyw28002, vyw29002, app(app(ty_@2, ed), ee)) -> new_ltEs10(vyw28002, vyw29002, ed, ee) new_pePe(True, vyw88) -> True new_esEs25(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs21(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bge), bgf), bgg), bgc) -> new_esEs4(vyw300, vyw4000, bge, bgf, bgg) new_lt13(vyw28001, vyw29001, app(app(ty_Either, cg), da)) -> new_lt15(vyw28001, vyw29001, cg, da) new_ltEs18(vyw28002, vyw29002, ty_Bool) -> new_ltEs5(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bee), bef), beg)) -> new_esEs4(vyw300, vyw4000, bee, bef, beg) new_esEs25(vyw302, vyw4002, ty_Ordering) -> new_esEs17(vyw302, vyw4002) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw300, vyw4000, app(app(ty_Either, chh), daa)) -> new_esEs5(vyw300, vyw4000, chh, daa) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_compare26(vyw28000, vyw29000, True, bh, ca) -> EQ new_ltEs20(vyw2800, vyw2900, ty_Float) -> new_ltEs13(vyw2800, vyw2900) new_esEs21(vyw28000, vyw29000, app(app(ty_@2, bh), ca)) -> new_esEs6(vyw28000, vyw29000, bh, ca) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Maybe, bfe)) -> new_esEs7(vyw300, vyw4000, bfe) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare30(vyw28000, vyw29000, app(app(ty_@2, bac), bad)) -> new_compare27(vyw28000, vyw29000, bac, bad) new_compare211(vyw280, vyw290, True, dcc) -> EQ new_esEs28(vyw300, vyw4000, app(ty_Maybe, dca)) -> new_esEs7(vyw300, vyw4000, dca) new_esEs4(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cee, cef, ceg) -> new_asAs(new_esEs27(vyw300, vyw4000, cee), new_asAs(new_esEs26(vyw301, vyw4001, cef), new_esEs25(vyw302, vyw4002, ceg))) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs4(vyw300, vyw4000, dba, dbb, dbc) new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cdd), cde)) -> new_esEs5(vyw300, vyw4000, cdd, cde) new_primCompAux0(vyw28000, vyw29000, vyw89, hd) -> new_primCompAux00(vyw89, new_compare30(vyw28000, vyw29000, hd)) new_compare3([], [], hd) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bgc) -> new_esEs11(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare23(vyw28000, vyw29000, False) -> new_compare10(vyw28000, vyw29000, new_ltEs4(vyw28000, vyw29000)) new_lt13(vyw28001, vyw29001, ty_Integer) -> new_lt10(vyw28001, vyw29001) new_esEs24(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs17(LT, LT) -> True new_ltEs4(GT, EQ) -> False new_compare16(vyw28000, vyw29000, be, bf) -> new_compare25(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) new_esEs24(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_esEs15(vyw28000, vyw29000, cec) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs7(vyw28000, vyw29000, bdb, bdc, bdd) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, bhb), bhc), bgc) -> new_esEs6(vyw300, vyw4000, bhb, bhc) new_esEs21(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_@0) -> new_ltEs17(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(ty_@2, bh), ca)) -> new_lt17(vyw28000, vyw29000, bh, ca) new_compare27(vyw28000, vyw29000, bh, ca) -> new_compare26(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) new_ltEs14(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare11(vyw2800, vyw2900), GT)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_Ratio, bfd)) -> new_esEs15(vyw300, vyw4000, bfd) new_lt13(vyw28001, vyw29001, app(ty_Ratio, cbb)) -> new_lt6(vyw28001, vyw29001, cbb) new_lt18(vyw28000, vyw29000) -> new_esEs17(new_compare18(vyw28000, vyw29000), LT) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Ordering, fb) -> new_ltEs4(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bgc) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_@0) -> new_lt19(vyw28001, vyw29001) new_esEs5(Right(vyw300), Right(vyw4000), bhf, ty_@0) -> new_esEs14(vyw300, vyw4000) new_not(True) -> False new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_ltEs20(vyw2800, vyw2900, app(app(ty_@2, bbh), bba)) -> new_ltEs10(vyw2800, vyw2900, bbh, bba) new_esEs25(vyw302, vyw4002, ty_Bool) -> new_esEs8(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, ty_Int) -> new_esEs13(vyw28001, vyw29001) new_primCompAux00(vyw99, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyw28000, vyw29000, False, be, bf) -> GT new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs7(vyw28001, vyw29001, bca, bcb, bcc) new_compare211(Just(vyw2800), Nothing, False, dcc) -> GT new_compare211(Just(vyw2800), Just(vyw2900), False, dcc) -> new_compare111(vyw2800, vyw2900, new_ltEs20(vyw2800, vyw2900, dcc), dcc) new_esEs20(vyw28001, vyw29001, ty_Ordering) -> new_esEs17(vyw28001, vyw29001) new_esEs10(:(vyw300, vyw301), :(vyw4000, vyw4001), dag) -> new_asAs(new_esEs28(vyw300, vyw4000, dag), new_esEs10(vyw301, vyw4001, dag)) new_ltEs18(vyw28002, vyw29002, app(app(ty_Either, ea), eb)) -> new_ltEs6(vyw28002, vyw29002, ea, eb) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_Either, fc), fd), fb) -> new_ltEs6(vyw28000, vyw29000, fc, fd) new_esEs21(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs14(@0, @0) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Char, fb) -> new_ltEs14(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Float) -> new_ltEs13(vyw28002, vyw29002) new_esEs21(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_primCompAux00(vyw99, GT) -> GT new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs13(vyw28001, vyw29001) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs25(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bgc) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs4(vyw28000, vyw29000, baf, bag, bah) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs4(vyw300, vyw4000, cda, cdb, cdc) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt13(vyw28001, vyw29001, ty_Char) -> new_lt8(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_esEs20(vyw28001, vyw29001, app(ty_Ratio, cbb)) -> new_esEs15(vyw28001, vyw29001, cbb) new_ltEs5(False, True) -> True new_compare110(vyw28000, vyw29000, True, bh, ca) -> LT new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_compare3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_primCompAux0(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, hd), hd) new_esEs24(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_compare19(vyw28000, vyw29000, True) -> LT new_primPlusNat1(Succ(vyw9000), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat1(vyw9000, vyw4001000))) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_[], bg)) -> new_lt7(vyw28000, vyw29000, bg) new_esEs26(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs26(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), bhf, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, baf), bag), bah)) -> new_lt14(vyw28000, vyw29000, baf, bag, bah) new_ltEs20(vyw2800, vyw2900, ty_@0) -> new_ltEs17(vyw2800, vyw2900) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, eg), eh), fa), fb) -> new_ltEs7(vyw28000, vyw29000, eg, eh, fa) new_ltEs20(vyw2800, vyw2900, app(app(app(ty_@3, cc), bc), bd)) -> new_ltEs7(vyw2800, vyw2900, cc, bc, bd) new_compare30(vyw28000, vyw29000, app(ty_Maybe, bae)) -> new_compare15(vyw28000, vyw29000, bae) new_compare210(vyw28000, vyw29000, True) -> EQ new_esEs7(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_[], bdg)) -> new_ltEs9(vyw28000, vyw29000, bdg) new_ltEs6(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fg), fh), fb) -> new_ltEs10(vyw28000, vyw29000, fg, fh) new_esEs5(Right(vyw300), Right(vyw4000), bhf, app(ty_Maybe, cah)) -> new_esEs7(vyw300, vyw4000, cah) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_compare3([], :(vyw29000, vyw29001), hd) -> LT new_pePe(False, vyw88) -> vyw88 new_esEs27(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_esEs7(Nothing, Just(vyw4000), bec) -> False new_esEs7(Just(vyw300), Nothing, bec) -> False new_esEs22(vyw301, vyw4001, app(app(ty_@2, ccd), cce)) -> new_esEs6(vyw301, vyw4001, ccd, cce) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000) -> new_esEs17(new_compare7(vyw28000, vyw29000), LT) new_lt13(vyw28001, vyw29001, app(app(app(ty_@3, cd), ce), cf)) -> new_lt14(vyw28001, vyw29001, cd, ce, cf) new_esEs5(Right(vyw300), Right(vyw4000), bhf, app(ty_Ratio, cag)) -> new_esEs15(vyw300, vyw4000, cag) new_compare25(vyw28000, vyw29000, True, be, bf) -> EQ new_ltEs18(vyw28002, vyw29002, ty_Int) -> new_ltEs16(vyw28002, vyw29002) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw300, vyw4000, beh, bfa) new_lt12(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs18(vyw28002, vyw29002, ty_Double) -> new_ltEs8(vyw28002, vyw29002) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, bcg), bch)) -> new_ltEs10(vyw28001, vyw29001, bcg, bch) new_ltEs8(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare6(vyw2800, vyw2900), GT)) new_compare11(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, ty_Int) -> new_esEs13(vyw28000, vyw29000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_compare18(vyw28000, vyw29000) -> new_compare23(vyw28000, vyw29000, new_esEs17(vyw28000, vyw29000)) new_esEs7(Nothing, Nothing, bec) -> True new_ltEs18(vyw28002, vyw29002, app(ty_[], ec)) -> new_ltEs9(vyw28002, vyw29002, ec) new_esEs24(vyw28000, vyw29000, app(app(ty_@2, bbe), bbf)) -> new_esEs6(vyw28000, vyw29000, bbe, bbf) new_lt16(vyw28000, vyw29000) -> new_esEs17(new_compare29(vyw28000, vyw29000), LT) new_lt12(vyw28000, vyw29000, app(app(ty_Either, be), bf)) -> new_lt15(vyw28000, vyw29000, be, bf) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw28000, vyw29000, bg) -> new_esEs17(new_compare3(vyw28000, vyw29000, bg), LT) new_ltEs4(LT, GT) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Int, fb) -> new_ltEs16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(app(app(ty_@3, he), hf), hg)) -> new_compare13(vyw28000, vyw29000, he, hf, hg) new_esEs7(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(EQ, EQ) -> True new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare8(vyw2800, vyw2900), GT)) new_lt13(vyw28001, vyw29001, app(ty_[], db)) -> new_lt7(vyw28001, vyw29001, db) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), cbd, cbe) -> new_asAs(new_esEs23(vyw300, vyw4000, cbd), new_esEs22(vyw301, vyw4001, cbe)) new_esEs22(vyw301, vyw4001, app(ty_[], cbf)) -> new_esEs10(vyw301, vyw4001, cbf) new_esEs24(vyw28000, vyw29000, app(app(ty_Either, bbb), bbc)) -> new_esEs5(vyw28000, vyw29000, bbb, bbc) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_ltEs4(EQ, LT) -> False new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs14(vyw28001, vyw29001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bgc) -> new_esEs13(vyw300, vyw4000) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_Maybe, cga)) -> new_esEs7(vyw302, vyw4002, cga) new_esEs7(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs8(False, False) -> True new_esEs26(vyw301, vyw4001, app(app(ty_@2, cgh), cha)) -> new_esEs6(vyw301, vyw4001, cgh, cha) new_esEs5(Right(vyw300), Right(vyw4000), bhf, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs4(vyw300, vyw4000, bhh, caa, cab) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_primPlusNat0(Zero, vyw400100) -> Succ(vyw400100) new_ltEs18(vyw28002, vyw29002, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs7(vyw28002, vyw29002, df, dg, dh) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs6(vyw28000, vyw29000, gf, gg) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs8(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bhf, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_ltEs18(vyw28002, vyw29002, ty_Integer) -> new_ltEs15(vyw28002, vyw29002) new_esEs22(vyw301, vyw4001, app(ty_Maybe, ccg)) -> new_esEs7(vyw301, vyw4001, ccg) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_ltEs5(True, False) -> False new_esEs26(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_compare30(vyw28000, vyw29000, ty_@0) -> new_compare28(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cea)) -> new_esEs7(vyw300, vyw4000, cea) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, bgh), bha), bgc) -> new_esEs5(vyw300, vyw4000, bgh, bha) new_lt12(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_compare30(vyw28000, vyw29000, app(ty_[], bab)) -> new_compare3(vyw28000, vyw29000, bab) new_compare30(vyw28000, vyw29000, ty_Int) -> new_compare7(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, app(app(ty_Either, be), bf)) -> new_esEs5(vyw28000, vyw29000, be, bf) new_esEs21(vyw28000, vyw29000, app(app(app(ty_@3, h), ba), bb)) -> new_esEs4(vyw28000, vyw29000, h, ba, bb) new_esEs28(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare17(vyw28000, vyw29000, True, be, bf) -> LT new_esEs24(vyw28000, vyw29000, app(ty_[], bbd)) -> new_esEs10(vyw28000, vyw29000, bbd) new_compare24(vyw28000, vyw29000, False, h, ba, bb) -> new_compare12(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, h, ba, bb), h, ba, bb) new_compare7(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_esEs7(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Double) -> new_ltEs8(vyw2800, vyw2900) new_compare19(vyw28000, vyw29000, False) -> GT new_esEs22(vyw301, vyw4001, app(ty_Ratio, ccf)) -> new_esEs15(vyw301, vyw4001, ccf) new_esEs24(vyw28000, vyw29000, ty_Bool) -> new_esEs8(vyw28000, vyw29000) new_esEs20(vyw28001, vyw29001, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs4(vyw28001, vyw29001, cd, ce, cf) new_lt13(vyw28001, vyw29001, ty_Bool) -> new_lt16(vyw28001, vyw29001) new_compare30(vyw28000, vyw29000, ty_Char) -> new_compare11(vyw28000, vyw29000) new_esEs7(Just(vyw300), Just(vyw4000), app(ty_[], bed)) -> new_esEs10(vyw300, vyw4000, bed) new_esEs7(Just(vyw300), Just(vyw4000), app(app(ty_@2, bfb), bfc)) -> new_esEs6(vyw300, vyw4000, bfb, bfc) new_primPlusNat1(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat1(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_lt20(vyw28000, vyw29000, app(ty_Ratio, cec)) -> new_lt6(vyw28000, vyw29000, cec) new_esEs26(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_ltEs10(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, bba) -> new_pePe(new_lt20(vyw28000, vyw29000, bbh), new_asAs(new_esEs24(vyw28000, vyw29000, bbh), new_ltEs19(vyw28001, vyw29001, bba))) new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare7(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cdh)) -> new_esEs15(vyw300, vyw4000, cdh) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare7(vyw2800, vyw2900), GT)) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw28000, vyw29000, app(ty_Maybe, bbg)) -> new_esEs7(vyw28000, vyw29000, bbg) new_lt13(vyw28001, vyw29001, ty_Ordering) -> new_lt18(vyw28001, vyw29001) new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Maybe, beb)) -> new_ltEs11(vyw28000, vyw29000, beb) new_compare12(vyw28000, vyw29000, False, h, ba, bb) -> GT new_lt20(vyw28000, vyw29000, app(ty_Maybe, bbg)) -> new_lt11(vyw28000, vyw29000, bbg) new_ltEs4(LT, EQ) -> True new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bgc) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_esEs5(Right(vyw300), Right(vyw4000), bhf, app(ty_[], bhg)) -> new_esEs10(vyw300, vyw4000, bhg) new_lt15(vyw28000, vyw29000, be, bf) -> new_esEs17(new_compare16(vyw28000, vyw29000, be, bf), LT) new_esEs25(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) new_esEs5(Right(vyw300), Right(vyw4000), bhf, app(app(ty_@2, cae), caf)) -> new_esEs6(vyw300, vyw4000, cae, caf) new_esEs25(vyw302, vyw4002, app(app(ty_@2, cff), cfg)) -> new_esEs6(vyw302, vyw4002, cff, cfg) new_ltEs4(EQ, EQ) -> True new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt10(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(ty_Either, ccb), ccc)) -> new_esEs5(vyw301, vyw4001, ccb, ccc) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs8(vyw28001, vyw29001) new_ltEs18(vyw28002, vyw29002, ty_Char) -> new_ltEs14(vyw28002, vyw29002) new_esEs23(vyw300, vyw4000, app(ty_[], cch)) -> new_esEs10(vyw300, vyw4000, cch) new_ltEs20(vyw2800, vyw2900, ty_Integer) -> new_ltEs15(vyw2800, vyw2900) new_compare30(vyw28000, vyw29000, app(ty_Ratio, dcb)) -> new_compare9(vyw28000, vyw29000, dcb) new_esEs25(vyw302, vyw4002, ty_Integer) -> new_esEs11(vyw302, vyw4002) new_lt13(vyw28001, vyw29001, ty_Int) -> new_lt9(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Maybe, ga), fb) -> new_ltEs11(vyw28000, vyw29000, ga) new_esEs26(vyw301, vyw4001, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs4(vyw301, vyw4001, cgc, cgd, cge) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_@0, fb) -> new_ltEs17(vyw28000, vyw29000) new_primMulInt(Pos(vyw3000), Neg(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_primMulInt(Neg(vyw3000), Pos(vyw40010)) -> Neg(new_primMulNat0(vyw3000, vyw40010)) new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare6(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare6(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cdf), cdg)) -> new_esEs6(vyw300, vyw4000, cdf, cdg) new_ltEs19(vyw28001, vyw29001, app(ty_[], bcf)) -> new_ltEs9(vyw28001, vyw29001, bcf) new_lt6(vyw28000, vyw29000, bff) -> new_esEs17(new_compare9(vyw28000, vyw29000, bff), LT) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs15(vyw28001, vyw29001) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Bool, fb) -> new_ltEs5(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, app(ty_Maybe, bga)) -> new_ltEs11(vyw2800, vyw2900, bga) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs17(vyw28000, vyw29000) new_esEs26(vyw301, vyw4001, app(ty_Ratio, chb)) -> new_esEs15(vyw301, vyw4001, chb) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_esEs27(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs21(vyw28000, vyw29000, app(ty_[], bg)) -> new_esEs10(vyw28000, vyw29000, bg) new_compare30(vyw28000, vyw29000, ty_Float) -> new_compare8(vyw28000, vyw29000) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, app(app(ty_@2, ha), hb)) -> new_ltEs10(vyw28000, vyw29000, ha, hb) new_ltEs5(False, False) -> True new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_compare24(vyw28000, vyw29000, True, h, ba, bb) -> EQ new_lt20(vyw28000, vyw29000, app(ty_[], bbd)) -> new_lt7(vyw28000, vyw29000, bbd) new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs16(vyw28001, vyw29001) new_esEs7(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs5(vyw28000, vyw29000) new_esEs28(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bdh), bea)) -> new_ltEs10(vyw28000, vyw29000, bdh, bea) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_ltEs18(vyw28002, vyw29002, ty_Ordering) -> new_ltEs4(vyw28002, vyw29002) new_lt12(vyw28000, vyw29000, app(app(app(ty_@3, h), ba), bb)) -> new_lt14(vyw28000, vyw29000, h, ba, bb) new_esEs7(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bbe), bbf)) -> new_lt17(vyw28000, vyw29000, bbe, bbf) new_lt13(vyw28001, vyw29001, app(ty_Maybe, de)) -> new_lt11(vyw28001, vyw29001, de) new_asAs(True, vyw80) -> vyw80 new_ltEs12(vyw2800, vyw2900, ceb) -> new_not(new_esEs17(new_compare9(vyw2800, vyw2900, ceb), GT)) new_esEs28(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw28000, vyw29000, True, h, ba, bb) -> LT new_compare9(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare14(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfg), fb) -> new_ltEs12(vyw28000, vyw29000, bfg) new_esEs24(vyw28000, vyw29000, ty_@0) -> new_esEs14(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, cb) -> new_esEs17(new_compare15(vyw28000, vyw29000, cb), LT) new_esEs21(vyw28000, vyw29000, app(ty_Ratio, bff)) -> new_esEs15(vyw28000, vyw29000, bff) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, app(ty_Maybe, hc)) -> new_ltEs11(vyw28000, vyw29000, hc) new_compare30(vyw28000, vyw29000, ty_Ordering) -> new_compare18(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs4(vyw301, vyw4001, cbg, cbh, cca) new_esEs27(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare13(vyw28000, vyw29000, h, ba, bb) -> new_compare24(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) new_ltEs20(vyw2800, vyw2900, ty_Char) -> new_ltEs14(vyw2800, vyw2900) new_compare15(vyw28000, vyw29000, cb) -> new_compare211(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt5(vyw28000, vyw29000) new_esEs10(:(vyw300, vyw301), [], dag) -> False new_esEs10([], :(vyw4000, vyw4001), dag) -> False new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), app(app(ty_Either, bde), bdf)) -> new_ltEs6(vyw28000, vyw29000, bde, bdf) new_primCompAux00(vyw99, EQ) -> vyw99 new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, ty_Ordering) -> new_ltEs4(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, app(app(ty_@2, dab), dac)) -> new_esEs6(vyw300, vyw4000, dab, dac) new_compare23(vyw28000, vyw29000, True) -> EQ new_ltEs6(Right(vyw28000), Right(vyw29000), gb, ty_Char) -> new_ltEs14(vyw28000, vyw29000) new_lt5(vyw28000, vyw29000) -> new_esEs17(new_compare6(vyw28000, vyw29000), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bgc) -> new_esEs16(vyw300, vyw4000) new_ltEs17(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare28(vyw2800, vyw2900), GT)) new_lt8(vyw28000, vyw29000) -> new_esEs17(new_compare11(vyw28000, vyw29000), LT) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_compare10(vyw28000, vyw29000, False) -> GT new_ltEs9(vyw2800, vyw2900, hd) -> new_not(new_esEs17(new_compare3(vyw2800, vyw2900, hd), GT)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, ty_Integer) -> new_compare14(vyw28000, vyw29000) new_ltEs20(vyw2800, vyw2900, ty_Int) -> new_ltEs16(vyw2800, vyw2900) new_ltEs18(vyw28002, vyw29002, app(ty_Maybe, ef)) -> new_ltEs11(vyw28002, vyw29002, ef) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, app(ty_Ratio, bfh)) -> new_ltEs12(vyw28000, vyw29000, bfh) new_ltEs11(Nothing, Just(vyw29000), bga) -> True new_esEs20(vyw28001, vyw29001, app(app(ty_Either, cg), da)) -> new_esEs5(vyw28001, vyw29001, cg, da) new_esEs27(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_esEs26(vyw301, vyw4001, app(ty_[], cgb)) -> new_esEs10(vyw301, vyw4001, cgb) new_ltEs7(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, bd) -> new_pePe(new_lt12(vyw28000, vyw29000, cc), new_asAs(new_esEs21(vyw28000, vyw29000, cc), new_pePe(new_lt13(vyw28001, vyw29001, bc), new_asAs(new_esEs20(vyw28001, vyw29001, bc), new_ltEs18(vyw28002, vyw29002, bd))))) new_esEs5(Right(vyw300), Right(vyw4000), bhf, app(app(ty_Either, cac), cad)) -> new_esEs5(vyw300, vyw4000, cac, cad) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) new_esEs24(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_esEs25(vyw302, vyw4002, app(ty_[], ceh)) -> new_esEs10(vyw302, vyw4002, ceh) new_ltEs20(vyw2800, vyw2900, app(ty_[], hd)) -> new_ltEs9(vyw2800, vyw2900, hd) new_esEs28(vyw300, vyw4000, app(app(ty_@2, dbf), dbg)) -> new_esEs6(vyw300, vyw4000, dbf, dbg) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, app(ty_[], gh)) -> new_ltEs9(vyw28000, vyw29000, gh) new_esEs5(Right(vyw300), Right(vyw4000), bhf, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_ltEs11(vyw28001, vyw29001, bda) new_compare29(vyw28000, vyw29000) -> new_compare210(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_compare210(vyw28000, vyw29000, False) -> new_compare19(vyw28000, vyw29000, new_ltEs5(vyw28000, vyw29000)) new_lt12(vyw28000, vyw29000, app(ty_Ratio, bff)) -> new_lt6(vyw28000, vyw29000, bff) new_lt10(vyw28000, vyw29000) -> new_esEs17(new_compare14(vyw28000, vyw29000), LT) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_esEs17(GT, GT) -> True new_ltEs20(vyw2800, vyw2900, app(ty_Ratio, ceb)) -> new_ltEs12(vyw2800, vyw2900, ceb) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_lt13(vyw28001, vyw29001, ty_Double) -> new_lt5(vyw28001, vyw29001) new_esEs11(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_lt11(vyw28000, vyw29000, cb) new_esEs20(vyw28001, vyw29001, ty_@0) -> new_esEs14(vyw28001, vyw29001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs21(vyw28000, vyw29000, app(ty_Maybe, cb)) -> new_esEs7(vyw28000, vyw29000, cb) new_ltEs20(vyw2800, vyw2900, app(app(ty_Either, gb), fb)) -> new_ltEs6(vyw2800, vyw2900, gb, fb) new_ltEs6(Left(vyw28000), Left(vyw29000), app(ty_[], ff), fb) -> new_ltEs9(vyw28000, vyw29000, ff) new_esEs25(vyw302, vyw4002, app(app(ty_Either, cfd), cfe)) -> new_esEs5(vyw302, vyw4002, cfd, cfe) new_lt14(vyw28000, vyw29000, h, ba, bb) -> new_esEs17(new_compare13(vyw28000, vyw29000, h, ba, bb), LT) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs25(vyw302, vyw4002, app(ty_Ratio, cfh)) -> new_esEs15(vyw302, vyw4002, cfh) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ced)) -> new_ltEs12(vyw28001, vyw29001, ced) new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, bcd), bce)) -> new_ltEs6(vyw28001, vyw29001, bcd, bce) new_esEs26(vyw301, vyw4001, app(ty_Maybe, chc)) -> new_esEs7(vyw301, vyw4001, chc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, bhd), bgc) -> new_esEs15(vyw300, vyw4000, bhd) new_compare111(vyw73, vyw74, False, daf) -> GT new_ltEs15(vyw2800, vyw2900) -> new_not(new_esEs17(new_compare14(vyw2800, vyw2900), GT)) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs5(vyw28001, vyw29001) new_esEs26(vyw301, vyw4001, app(app(ty_Either, cgf), cgg)) -> new_esEs5(vyw301, vyw4001, cgf, cgg) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw28000, vyw29000, ty_Ordering) -> new_esEs17(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs17(vyw28001, vyw29001) new_esEs20(vyw28001, vyw29001, app(ty_[], db)) -> new_esEs10(vyw28001, vyw29001, db) new_compare8(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare7(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare8(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare7(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_compare25(vyw28000, vyw29000, False, be, bf) -> new_compare17(vyw28000, vyw29000, new_ltEs6(vyw28000, vyw29000, be, bf), be, bf) new_esEs27(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(ty_Maybe, dae)) -> new_esEs7(vyw300, vyw4000, dae) new_esEs20(vyw28001, vyw29001, ty_Double) -> new_esEs9(vyw28001, vyw29001) new_lt13(vyw28001, vyw29001, app(app(ty_@2, dc), dd)) -> new_lt17(vyw28001, vyw29001, dc, dd) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, bhe), bgc) -> new_esEs7(vyw300, vyw4000, bhe) new_esEs5(Right(vyw300), Right(vyw4000), bhf, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs27(vyw300, vyw4000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs4(vyw300, vyw4000, che, chf, chg) new_ltEs6(Right(vyw28000), Left(vyw29000), gb, fb) -> False new_compare211(Nothing, Just(vyw2900), False, dcc) -> LT new_not(False) -> True new_lt12(vyw28000, vyw29000, ty_@0) -> new_lt19(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Integer, fb) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bgc) -> new_esEs17(vyw300, vyw4000) new_esEs25(vyw302, vyw4002, ty_@0) -> new_esEs14(vyw302, vyw4002) new_esEs20(vyw28001, vyw29001, app(ty_Maybe, de)) -> new_esEs7(vyw28001, vyw29001, de) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs20(vyw28001, vyw29001, ty_Bool) -> new_esEs8(vyw28001, vyw29001) new_esEs27(vyw300, vyw4000, app(ty_Ratio, dad)) -> new_esEs15(vyw300, vyw4000, dad) new_esEs5(Left(vyw300), Right(vyw4000), bhf, bgc) -> False new_esEs5(Right(vyw300), Left(vyw4000), bhf, bgc) -> False new_esEs20(vyw28001, vyw29001, app(app(ty_@2, dc), dd)) -> new_esEs6(vyw28001, vyw29001, dc, dd) new_esEs27(vyw300, vyw4000, app(ty_[], chd)) -> new_esEs10(vyw300, vyw4000, chd) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], bgd), bgc) -> new_esEs10(vyw300, vyw4000, bgd) new_ltEs18(vyw28002, vyw29002, app(ty_Ratio, cbc)) -> new_ltEs12(vyw28002, vyw29002, cbc) new_esEs7(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare30(vyw28000, vyw29000, app(app(ty_Either, hh), baa)) -> new_compare16(vyw28000, vyw29000, hh, baa) new_ltEs4(GT, LT) -> False new_compare30(vyw28000, vyw29000, ty_Double) -> new_compare6(vyw28000, vyw29000) new_esEs21(vyw28000, vyw29000, ty_Char) -> new_esEs12(vyw28000, vyw29000) new_esEs27(vyw300, vyw4000, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs7(vyw28000, vyw29000, gc, gd, ge) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt9(vyw28000, vyw29000) new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Float, fb) -> new_ltEs13(vyw28000, vyw29000) new_primPlusNat0(Succ(vyw900), vyw400100) -> Succ(Succ(new_primPlusNat1(vyw900, vyw400100))) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs17(vyw301, vyw4001) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs15(vyw28000, vyw29000) new_ltEs11(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs8(vyw28000, vyw29000) new_esEs8(True, True) -> True new_ltEs6(Left(vyw28000), Left(vyw29000), ty_Double, fb) -> new_ltEs8(vyw28000, vyw29000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw28000, vyw29000, True) -> LT new_esEs25(vyw302, vyw4002, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs4(vyw302, vyw4002, cfa, cfb, cfc) new_esEs26(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare211(Nothing, Nothing, False, dcc) -> LT new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt16(vyw28000, vyw29000) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(True, True) -> True new_esEs10([], [], dag) -> True new_lt20(vyw28000, vyw29000, app(app(ty_Either, bbb), bbc)) -> new_lt15(vyw28000, vyw29000, bbb, bbc) new_lt12(vyw28000, vyw29000, ty_Char) -> new_lt8(vyw28000, vyw29000) new_lt13(vyw28001, vyw29001, ty_Float) -> new_lt4(vyw28001, vyw29001) new_compare111(vyw73, vyw74, True, daf) -> LT new_ltEs11(Just(vyw28000), Just(vyw29000), app(ty_Ratio, bgb)) -> new_ltEs12(vyw28000, vyw29000, bgb) new_esEs21(vyw28000, vyw29000, ty_Integer) -> new_esEs11(vyw28000, vyw29000) new_compare28(@0, @0) -> EQ new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs14(vyw301, vyw4001) new_lt17(vyw28000, vyw29000, bh, ca) -> new_esEs17(new_compare27(vyw28000, vyw29000, bh, ca), LT) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_ltEs6(Right(vyw28000), Right(vyw29000), gb, ty_Int) -> new_ltEs16(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bhf, ty_Bool) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt18(vyw28000, vyw29000) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs11(vyw301, vyw4001) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_lt4(vyw28000, vyw29000) -> new_esEs17(new_compare8(vyw28000, vyw29000), LT) new_esEs5(Right(vyw300), Right(vyw4000), bhf, ty_Char) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs20(vyw2800, vyw2900, ty_Ordering) -> new_ltEs4(vyw2800, vyw2900) new_ltEs11(Just(vyw28000), Nothing, bga) -> False new_lt12(vyw28000, vyw29000, ty_Float) -> new_lt4(vyw28000, vyw29000) new_esEs5(Right(vyw300), Right(vyw4000), bhf, ty_Integer) -> new_esEs11(vyw300, vyw4000) new_compare3(:(vyw28000, vyw28001), [], hd) -> GT new_ltEs11(Nothing, Nothing, bga) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bgc) -> new_esEs14(vyw300, vyw4000) new_esEs15(:%(vyw300, vyw301), :%(vyw4000, vyw4001), cba) -> new_asAs(new_esEs19(vyw300, vyw4000, cba), new_esEs18(vyw301, vyw4001, cba)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vyw28000, vyw29000, False, bh, ca) -> GT new_esEs27(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs4(vyw28001, vyw29001) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw300, vyw4000, app(app(ty_Either, dbd), dbe)) -> new_esEs5(vyw300, vyw4000, dbd, dbe) new_ltEs4(GT, GT) -> True new_asAs(False, vyw80) -> False new_compare26(vyw28000, vyw29000, False, bh, ca) -> new_compare110(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000, bh, ca), bh, ca) new_esEs20(vyw28001, vyw29001, ty_Integer) -> new_esEs11(vyw28001, vyw29001) new_ltEs20(vyw2800, vyw2900, ty_Bool) -> new_ltEs5(vyw2800, vyw2900) new_esEs20(vyw28001, vyw29001, ty_Char) -> new_esEs12(vyw28001, vyw29001) new_esEs28(vyw300, vyw4000, app(ty_Ratio, dbh)) -> new_esEs15(vyw300, vyw4000, dbh) new_esEs28(vyw300, vyw4000, app(ty_[], dah)) -> new_esEs10(vyw300, vyw4000, dah) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs14(vyw300, vyw4000) new_ltEs6(Left(vyw28000), Right(vyw29000), gb, fb) -> True new_lt19(vyw28000, vyw29000) -> new_esEs17(new_compare28(vyw28000, vyw29000), LT) new_esEs21(vyw28000, vyw29000, ty_Double) -> new_esEs9(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs17(vyw300, vyw4000) new_compare14(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs11(vyw300, vyw4000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(Nothing, Just(x0), x1) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_lt13(x0, x1, ty_Int) new_ltEs17(x0, x1) new_ltEs4(LT, LT) new_primPlusNat1(Zero, Zero) new_esEs7(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Int) new_lt13(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_compare10(x0, x1, True) new_lt12(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt13(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_compare26(x0, x1, True, x2, x3) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(False, True) new_ltEs5(True, False) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(x0, x1, ty_@0) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt14(x0, x1, x2, x3, x4) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(x0, x1, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_compare111(x0, x1, True, x2) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Char) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs21(x0, x1, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs12(x0, x1, x2) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Ordering) new_compare17(x0, x1, True, x2, x3) new_esEs8(False, True) new_esEs8(True, False) new_esEs22(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(True, True) new_ltEs11(Just(x0), Nothing, x1) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare25(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare27(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt7(x0, x1, x2) new_lt15(x0, x1, x2, x3) new_ltEs4(GT, EQ) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, GT) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_lt12(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Nothing, Just(x0), x1) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_lt13(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_primEqNat0(Succ(x0), Zero) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs17(LT, GT) new_esEs17(GT, LT) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_compare10(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs4(GT, GT) new_esEs24(x0, x1, ty_Double) new_lt13(x0, x1, ty_Bool) new_compare211(Nothing, Nothing, False, x0) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_compare26(x0, x1, False, x2, x3) new_lt9(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_lt13(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_lt12(x0, x1, ty_@0) new_lt4(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_compare3([], [], x0) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_primCompAux00(x0, GT) new_primMulInt(Pos(x0), Pos(x1)) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs11(Integer(x0), Integer(x1)) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt13(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs26(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs11(Nothing, Nothing, x0) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Integer) new_compare3(:(x0, x1), :(x2, x3), x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_Double) new_compare24(x0, x1, True, x2, x3, x4) new_lt20(x0, x1, ty_@0) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, ty_@0) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Double) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare211(Just(x0), Nothing, False, x1) new_ltEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs5(True, True) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_compare23(x0, x1, False) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_compare210(x0, x1, True) new_sr0(Integer(x0), Integer(x1)) new_esEs10([], [], x0) new_esEs20(x0, x1, ty_Ordering) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs18(x0, x1, ty_Bool) new_pePe(False, x0) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), ty_Int) new_ltEs20(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Int) new_esEs10(:(x0, x1), [], x2) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, x2) new_compare12(x0, x1, False, x2, x3, x4) new_esEs26(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, True) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(:(x0, x1), :(x2, x3), x4) new_asAs(True, x0) new_esEs7(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs16(x0, x1) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs23(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_compare11(Char(x0), Char(x1)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs22(x0, x1, ty_Bool) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, ty_Integer) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_not(True) new_esEs24(x0, x1, ty_Int) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, ty_Bool) new_lt19(x0, x1) new_esEs24(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_compare110(x0, x1, False, x2, x3) new_compare30(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs18(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_compare28(@0, @0) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs17(GT, GT) new_ltEs8(x0, x1) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_ltEs14(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs5(False, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare211(Just(x0), Just(x1), False, x2) new_ltEs4(EQ, EQ) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(EQ, EQ) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Zero) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Float) new_lt11(x0, x1, x2) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare19(x0, x1, True) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Integer) new_compare7(x0, x1) new_lt5(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_esEs14(@0, @0) new_esEs27(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare12(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Float) new_esEs12(Char(x0), Char(x1)) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_compare210(x0, x1, False) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare3([], :(x0, x1), x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10([], :(x0, x1), x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_compare30(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqNat0(Zero, Zero) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Char) new_primPlusNat1(Zero, Succ(x0)) new_not(False) new_compare13(x0, x1, x2, x3, x4) new_lt12(x0, x1, ty_Int) new_compare19(x0, x1, False) new_compare3(:(x0, x1), [], x2) new_compare15(x0, x1, x2) new_compare24(x0, x1, False, x2, x3, x4) new_esEs22(x0, x1, ty_Float) new_esEs17(LT, LT) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs8(False, False) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt18(x0, x1) new_esEs27(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Int) new_compare29(x0, x1) new_esEs26(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_compare25(x0, x1, False, x2, x3) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Float) new_compare30(x0, x1, ty_Int) new_ltEs15(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_asAs(False, x0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), ty_Double) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_Double) new_compare17(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Integer) new_primPlusNat0(Zero, x0) new_lt12(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_compare211(Nothing, Just(x0), False, x1) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare110(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare111(x0, x1, False, x2) new_lt20(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (43) 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_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_primCompAux(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, hd), hd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_compare0(vyw28001, vyw29001, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare2(vyw28000, vyw29000, False, h, ba, bb) -> new_ltEs(vyw28000, vyw29000, h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(vyw28001, vyw29001, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs(vyw28000, vyw29000, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs(vyw28002, vyw29002, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_@2, bh), ca), bc, bd) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_Maybe, cb), bc, bd) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare22(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], hd)) -> new_primCompAux(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, hd), hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs1(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_primCompAux(vyw28000, vyw29000, new_compare3(vyw28001, vyw29001, hd), hd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_@2, bh), ca)), bc), bd)) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_Maybe, cb)), bc), bd)) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_Maybe, bbg), bba) -> new_lt3(vyw28000, vyw29000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(ty_Maybe, de), bd) -> new_lt3(vyw28001, vyw29001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(ty_Maybe, bda)) -> new_ltEs3(vyw28001, vyw29001, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Just(vyw28000), Just(vyw29000), app(ty_Maybe, beb)) -> new_ltEs3(vyw28000, vyw29000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(ty_Maybe, ef)) -> new_ltEs3(vyw28002, vyw29002, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(:(vyw28000, vyw28001), :(vyw29000, vyw29001), hd) -> new_compare0(vyw28001, vyw29001, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare21(vyw28000, vyw29000, False, bh, ca) -> new_ltEs2(vyw28000, vyw29000, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(vyw28000, vyw29000, vyw89, app(app(ty_@2, bac), bad)) -> new_compare4(vyw28000, vyw29000, bac, bad) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw28000, vyw29000, vyw89, app(app(app(ty_@3, he), hf), hg)) -> new_compare(vyw28000, vyw29000, he, hf, hg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_lt1(vyw28000, vyw29000, bg) -> new_compare0(vyw28000, vyw29000, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(app(ty_@2, bcg), bch)) -> new_ltEs2(vyw28001, vyw29001, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Just(vyw28000), Just(vyw29000), app(app(ty_@2, bdh), bea)) -> new_ltEs2(vyw28000, vyw29000, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(app(ty_@2, ed), ee)) -> new_ltEs2(vyw28002, vyw29002, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(app(ty_Either, bcd), bce)) -> new_ltEs0(vyw28001, vyw29001, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Just(vyw28000), Just(vyw29000), app(app(ty_Either, bde), bdf)) -> new_ltEs0(vyw28000, vyw29000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Just(vyw28000), Just(vyw29000), app(ty_[], bdg)) -> new_ltEs1(vyw28000, vyw29000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(app(ty_Either, ea), eb)) -> new_ltEs0(vyw28002, vyw29002, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(vyw28000, vyw29000, False, be, bf) -> new_ltEs0(vyw28000, vyw29000, be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), bbh, app(ty_[], bcf)) -> new_ltEs1(vyw28001, vyw29001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, bc, app(ty_[], ec)) -> new_ltEs1(vyw28002, vyw29002, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_lt3(vyw28000, vyw29000, cb) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare5(vyw28000, vyw29000, cb) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, cb), cb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare1(vyw28000, vyw29000, be, bf) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt0(vyw28000, vyw29000, be, bf) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_[], bg), bc, bd) -> new_compare0(vyw28000, vyw29000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vyw28000, vyw29000, vyw89, app(ty_[], bab)) -> new_compare0(vyw28000, vyw29000, bab) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_lt2(vyw28000, vyw29000, bh, ca) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare4(vyw28000, vyw29000, bh, ca) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, bh, ca), bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_Either, be), bf), bc, bd) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_Either, be), bf)), bc), bd)) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, be, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(vyw28000, vyw29000, vyw89, app(app(ty_Either, hh), baa)) -> new_compare1(vyw28000, vyw29000, hh, baa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw28000, vyw29000, vyw89, app(ty_Maybe, bae)) -> new_compare5(vyw28000, vyw29000, bae) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_[], bbd), bba) -> new_lt1(vyw28000, vyw29000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(ty_[], db), bd) -> new_lt1(vyw28001, vyw29001, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare(vyw28000, vyw29000, h, ba, bb) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_lt(vyw28000, vyw29000, h, ba, bb) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, h), ba), bb)), bc), bd)) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, h, ba, bb), h, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(app(ty_@3, baf), bag), bah), bba) -> new_lt(vyw28000, vyw29000, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_lt(vyw28001, vyw29001, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_@2, bbe), bbf), bba) -> new_lt2(vyw28000, vyw29000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_Either, bbb), bbc), bba) -> new_lt0(vyw28000, vyw29000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(app(ty_@2, dc), dd), bd) -> new_lt2(vyw28001, vyw29001, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cc, app(app(ty_Either, cg), da), bd) -> new_lt0(vyw28001, vyw29001, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(app(ty_@3, eg), eh), fa)), fb)) -> new_ltEs(vyw28000, vyw29000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs(vyw28000, vyw29000, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(app(app(ty_@3, df), dg), dh))) -> new_ltEs(vyw28002, vyw29002, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs(vyw28001, vyw29001, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(app(app(ty_@3, gc), gd), ge))) -> new_ltEs(vyw28000, vyw29000, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs(vyw28000, vyw29000, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, eg), eh), fa), fb) -> new_ltEs(vyw28000, vyw29000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_Maybe, bbg)), bba)) -> new_lt3(vyw28000, vyw29000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(ty_Maybe, de)), bd)) -> new_lt3(vyw28001, vyw29001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_Maybe, ga)), fb)) -> new_ltEs3(vyw28000, vyw29000, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_Maybe, beb))) -> new_ltEs3(vyw28000, vyw29000, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(ty_Maybe, bda))) -> new_ltEs3(vyw28001, vyw29001, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(ty_Maybe, hc))) -> new_ltEs3(vyw28000, vyw29000, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(ty_Maybe, ef))) -> new_ltEs3(vyw28002, vyw29002, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_@2, bdh), bea))) -> new_ltEs2(vyw28000, vyw29000, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(app(ty_@2, ha), hb))) -> new_ltEs2(vyw28000, vyw29000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(app(ty_@2, ed), ee))) -> new_ltEs2(vyw28002, vyw29002, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_@2, fg), fh)), fb)) -> new_ltEs2(vyw28000, vyw29000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(app(ty_@2, bcg), bch))) -> new_ltEs2(vyw28001, vyw29001, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(app(ty_Either, bcd), bce))) -> new_ltEs0(vyw28001, vyw29001, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(app(ty_Either, gf), gg))) -> new_ltEs0(vyw28000, vyw29000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_Either, bde), bdf))) -> new_ltEs0(vyw28000, vyw29000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(app(ty_Either, ea), eb))) -> new_ltEs0(vyw28002, vyw29002, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_Either, fc), fd)), fb)) -> new_ltEs0(vyw28000, vyw29000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, gb), app(ty_[], gh))) -> new_ltEs1(vyw28000, vyw29000, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, bbh), app(ty_[], bcf))) -> new_ltEs1(vyw28001, vyw29001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_[], ff)), fb)) -> new_ltEs1(vyw28000, vyw29000, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), bc), app(ty_[], ec))) -> new_ltEs1(vyw28002, vyw29002, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_[], bdg))) -> new_ltEs1(vyw28000, vyw29000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_[], bg)), bc), bd)) -> new_compare0(vyw28000, vyw29000, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], hd)) -> new_compare0(vyw28001, vyw29001, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(ty_[], db)), bd)) -> new_lt1(vyw28001, vyw29001, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_[], bbd)), bba)) -> new_lt1(vyw28000, vyw29000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(app(ty_@3, baf), bag), bah)), bba)) -> new_lt(vyw28000, vyw29000, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(app(app(ty_@3, cd), ce), cf)), bd)) -> new_lt(vyw28001, vyw29001, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(app(ty_@2, dc), dd)), bd)) -> new_lt2(vyw28001, vyw29001, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_@2, bbe), bbf)), bba)) -> new_lt2(vyw28000, vyw29000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_Either, bbb), bbc)), bba)) -> new_lt0(vyw28000, vyw29000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, cc), app(app(ty_Either, cg), da)), bd)) -> new_lt0(vyw28001, vyw29001, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vyw28000), Left(vyw29000), app(ty_Maybe, ga), fb) -> new_ltEs3(vyw28000, vyw29000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(ty_Maybe, hc)) -> new_ltEs3(vyw28000, vyw29000, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(vyw28000), Left(vyw29000), app(app(ty_@2, fg), fh), fb) -> new_ltEs2(vyw28000, vyw29000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(app(ty_@2, ha), hb)) -> new_ltEs2(vyw28000, vyw29000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs0(vyw28000, vyw29000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vyw28000), Left(vyw29000), app(app(ty_Either, fc), fd), fb) -> new_ltEs0(vyw28000, vyw29000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Left(vyw28000), Left(vyw29000), app(ty_[], ff), fb) -> new_ltEs1(vyw28000, vyw29000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vyw28000), Right(vyw29000), gb, app(ty_[], gh)) -> new_ltEs1(vyw28000, vyw29000, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (44) YES ---------------------------------------- (45) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyw30000), Succ(vyw400100)) -> new_primMulNat(vyw30000, Succ(vyw400100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (46) 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(vyw30000), Succ(vyw400100)) -> new_primMulNat(vyw30000, Succ(vyw400100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (47) YES ---------------------------------------- (48) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyw9000), Succ(vyw4001000)) -> new_primPlusNat(vyw9000, vyw4001000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (49) 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(vyw9000), Succ(vyw4001000)) -> new_primPlusNat(vyw9000, vyw4001000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (50) YES ---------------------------------------- (51) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (52) 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(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (53) YES