/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 4 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 9 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) DependencyGraphProof [EQUIVALENT, 0 ms] (25) AND (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) TransformationProof [EQUIVALENT, 1805 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, 0 ms] (44) YES (45) QDP (46) QDPSizeChangeProof [EQUIVALENT, 88 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 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 = 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 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord 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 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord 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 "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; " "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vvy vvz = gcd3 vvy vvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } ; " "gcd1 True vvy vvz = error []; gcd1 vwu vwv vww = gcd0 vwv vww; " "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; gcd2 vwx vwy vwz = gcd0 vwy vwz; " "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; gcd3 vxu vxv = gcd0 vxu vxv; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "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); " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find|key_to_find < keylookupFM fm_l key_to_find|key_to_find > keylookupFM fm_r key_to_find|otherwiseJust elt; " is transformed to "lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; " "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 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 :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; 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' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " 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 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " "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; " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord 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"];3403[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 3403[label="",style="solid", color="burlywood", weight=9]; 3403 -> 6[label="",style="solid", color="burlywood", weight=3]; 3404[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 3404[label="",style="solid", color="burlywood", weight=9]; 3404 -> 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"];3405[label="vyw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];15 -> 3405[label="",style="solid", color="burlywood", weight=9]; 3405 -> 16[label="",style="solid", color="burlywood", weight=3]; 3406[label="vyw3/Just vyw30",fontsize=10,color="white",style="solid",shape="box"];15 -> 3406[label="",style="solid", color="burlywood", weight=9]; 3406 -> 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"];3407[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];16 -> 3407[label="",style="solid", color="burlywood", weight=9]; 3407 -> 18[label="",style="solid", color="burlywood", weight=3]; 3408[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];16 -> 3408[label="",style="solid", color="burlywood", weight=9]; 3408 -> 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"];3409[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];17 -> 3409[label="",style="solid", color="burlywood", weight=9]; 3409 -> 20[label="",style="solid", color="burlywood", weight=3]; 3410[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];17 -> 3410[label="",style="solid", color="burlywood", weight=9]; 3410 -> 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 -> 46[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"];3411[label="vyw20/False",fontsize=10,color="white",style="solid",shape="box"];82 -> 3411[label="",style="solid", color="burlywood", weight=9]; 3411 -> 89[label="",style="solid", color="burlywood", weight=3]; 3412[label="vyw20/True",fontsize=10,color="white",style="solid",shape="box"];82 -> 3412[label="",style="solid", color="burlywood", weight=9]; 3412 -> 90[label="",style="solid", color="burlywood", weight=3]; 92 -> 46[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"];3413[label="vyw21/False",fontsize=10,color="white",style="solid",shape="box"];91 -> 3413[label="",style="solid", color="burlywood", weight=9]; 3413 -> 98[label="",style="solid", color="burlywood", weight=3]; 3414[label="vyw21/True",fontsize=10,color="white",style="solid",shape="box"];91 -> 3414[label="",style="solid", color="burlywood", weight=9]; 3414 -> 99[label="",style="solid", color="burlywood", weight=3]; 139[label="vyw42",fontsize=16,color="green",shape="box"];140 -> 46[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"];3415[label="vyw22/False",fontsize=10,color="white",style="solid",shape="box"];138 -> 3415[label="",style="solid", color="burlywood", weight=9]; 3415 -> 151[label="",style="solid", color="burlywood", weight=3]; 3416[label="vyw22/True",fontsize=10,color="white",style="solid",shape="box"];138 -> 3416[label="",style="solid", color="burlywood", weight=9]; 3416 -> 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 -> 1687[label="",style="dashed", color="red", weight=0]; 87[label="compare2 Nothing (Just vyw400) False",fontsize=16,color="magenta"];87 -> 1688[label="",style="dashed", color="magenta", weight=3]; 87 -> 1689[label="",style="dashed", color="magenta", weight=3]; 87 -> 1690[label="",style="dashed", color="magenta", weight=3]; 88[label="LT",fontsize=16,color="green",shape="box"];46[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3417[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];46 -> 3417[label="",style="solid", color="burlywood", weight=9]; 3417 -> 67[label="",style="solid", color="burlywood", weight=3]; 3418[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];46 -> 3418[label="",style="solid", color="burlywood", weight=9]; 3418 -> 68[label="",style="solid", color="burlywood", weight=3]; 3419[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];46 -> 3419[label="",style="solid", color="burlywood", weight=9]; 3419 -> 69[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 -> 1687[label="",style="dashed", color="red", weight=0]; 96[label="compare2 (Just vyw30) Nothing False",fontsize=16,color="magenta"];96 -> 1691[label="",style="dashed", color="magenta", weight=3]; 96 -> 1692[label="",style="dashed", color="magenta", weight=3]; 96 -> 1693[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 -> 1687[label="",style="dashed", color="red", weight=0]; 149[label="compare2 (Just vyw30) (Just vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];149 -> 1694[label="",style="dashed", color="magenta", weight=3]; 149 -> 1695[label="",style="dashed", color="magenta", weight=3]; 149 -> 1696[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]; 1688[label="Just vyw400",fontsize=16,color="green",shape="box"];1689[label="False",fontsize=16,color="green",shape="box"];1690[label="Nothing",fontsize=16,color="green",shape="box"];1687[label="compare2 vyw280 vyw290 vyw69",fontsize=16,color="burlywood",shape="triangle"];3420[label="vyw69/False",fontsize=10,color="white",style="solid",shape="box"];1687 -> 3420[label="",style="solid", color="burlywood", weight=9]; 3420 -> 1722[label="",style="solid", color="burlywood", weight=3]; 3421[label="vyw69/True",fontsize=10,color="white",style="solid",shape="box"];1687 -> 3421[label="",style="solid", color="burlywood", weight=9]; 3421 -> 1723[label="",style="solid", color="burlywood", weight=3]; 67[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];3422[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];67 -> 3422[label="",style="solid", color="burlywood", weight=9]; 3422 -> 103[label="",style="solid", color="burlywood", weight=3]; 3423[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];67 -> 3423[label="",style="solid", color="burlywood", weight=9]; 3423 -> 104[label="",style="solid", color="burlywood", weight=3]; 3424[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];67 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 105[label="",style="solid", color="burlywood", weight=3]; 68[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];3425[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];68 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 106[label="",style="solid", color="burlywood", weight=3]; 3426[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];68 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 107[label="",style="solid", color="burlywood", weight=3]; 3427[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];68 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 108[label="",style="solid", color="burlywood", weight=3]; 69[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];3428[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];69 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 109[label="",style="solid", color="burlywood", weight=3]; 3429[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];69 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 110[label="",style="solid", color="burlywood", weight=3]; 3430[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];69 -> 3430[label="",style="solid", color="burlywood", weight=9]; 3430 -> 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]; 1691[label="Nothing",fontsize=16,color="green",shape="box"];1692[label="False",fontsize=16,color="green",shape="box"];1693[label="Just vyw30",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]; 1694[label="Just vyw400",fontsize=16,color="green",shape="box"];1695[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3431[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 1724[label="",style="solid", color="blue", weight=3]; 3432[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 1725[label="",style="solid", color="blue", weight=3]; 3433[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 1726[label="",style="solid", color="blue", weight=3]; 3434[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 1727[label="",style="solid", color="blue", weight=3]; 3435[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 1728[label="",style="solid", color="blue", weight=3]; 3436[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 1729[label="",style="solid", color="blue", weight=3]; 3437[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 1730[label="",style="solid", color="blue", weight=3]; 3438[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 1731[label="",style="solid", color="blue", weight=3]; 3439[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 1732[label="",style="solid", color="blue", weight=3]; 3440[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 1733[label="",style="solid", color="blue", weight=3]; 3441[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 1734[label="",style="solid", color="blue", weight=3]; 3442[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 1735[label="",style="solid", color="blue", weight=3]; 3443[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 1736[label="",style="solid", color="blue", weight=3]; 3444[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 1737[label="",style="solid", color="blue", weight=3]; 1696[label="Just vyw30",fontsize=16,color="green",shape="box"];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"];3445[label="vyw23/False",fontsize=10,color="white",style="solid",shape="box"];160 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 190[label="",style="solid", color="burlywood", weight=3]; 3446[label="vyw23/True",fontsize=10,color="white",style="solid",shape="box"];160 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 191[label="",style="solid", color="burlywood", weight=3]; 1722[label="compare2 vyw280 vyw290 False",fontsize=16,color="black",shape="box"];1722 -> 1742[label="",style="solid", color="black", weight=3]; 1723[label="compare2 vyw280 vyw290 True",fontsize=16,color="black",shape="box"];1723 -> 1743[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"];3447[label="vyw31/False",fontsize=10,color="white",style="solid",shape="box"];202 -> 3447[label="",style="solid", color="burlywood", weight=9]; 3447 -> 209[label="",style="solid", color="burlywood", weight=3]; 3448[label="vyw31/True",fontsize=10,color="white",style="solid",shape="box"];202 -> 3448[label="",style="solid", color="burlywood", weight=9]; 3448 -> 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"];3449[label="vyw32/False",fontsize=10,color="white",style="solid",shape="box"];212 -> 3449[label="",style="solid", color="burlywood", weight=9]; 3449 -> 216[label="",style="solid", color="burlywood", weight=3]; 3450[label="vyw32/True",fontsize=10,color="white",style="solid",shape="box"];212 -> 3450[label="",style="solid", color="burlywood", weight=9]; 3450 -> 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"];1724[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3451[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3451[label="",style="solid", color="burlywood", weight=9]; 3451 -> 1744[label="",style="solid", color="burlywood", weight=3]; 1725[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3452[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3452[label="",style="solid", color="burlywood", weight=9]; 3452 -> 1745[label="",style="solid", color="burlywood", weight=3]; 3453[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3453[label="",style="solid", color="burlywood", weight=9]; 3453 -> 1746[label="",style="solid", color="burlywood", weight=3]; 1726[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3454[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3454[label="",style="solid", color="burlywood", weight=9]; 3454 -> 1747[label="",style="solid", color="burlywood", weight=3]; 3455[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3455[label="",style="solid", color="burlywood", weight=9]; 3455 -> 1748[label="",style="solid", color="burlywood", weight=3]; 1727[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1727 -> 1749[label="",style="solid", color="black", weight=3]; 1728[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3456[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];1728 -> 3456[label="",style="solid", color="burlywood", weight=9]; 3456 -> 1750[label="",style="solid", color="burlywood", weight=3]; 1729[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3457[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];1729 -> 3457[label="",style="solid", color="burlywood", weight=9]; 3457 -> 1751[label="",style="solid", color="burlywood", weight=3]; 1730 -> 46[label="",style="dashed", color="red", weight=0]; 1730[label="vyw30 == vyw400",fontsize=16,color="magenta"];1731[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3458[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1731 -> 3458[label="",style="solid", color="burlywood", weight=9]; 3458 -> 1752[label="",style="solid", color="burlywood", weight=3]; 3459[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];1731 -> 3459[label="",style="solid", color="burlywood", weight=9]; 3459 -> 1753[label="",style="solid", color="burlywood", weight=3]; 1732[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3460[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3460[label="",style="solid", color="burlywood", weight=9]; 3460 -> 1754[label="",style="solid", color="burlywood", weight=3]; 3461[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3461[label="",style="solid", color="burlywood", weight=9]; 3461 -> 1755[label="",style="solid", color="burlywood", weight=3]; 1733[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3462[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3462[label="",style="solid", color="burlywood", weight=9]; 3462 -> 1756[label="",style="solid", color="burlywood", weight=3]; 1734[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3463[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];1734 -> 3463[label="",style="solid", color="burlywood", weight=9]; 3463 -> 1757[label="",style="solid", color="burlywood", weight=3]; 1735[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1735 -> 1758[label="",style="solid", color="black", weight=3]; 1736[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1736 -> 1759[label="",style="solid", color="black", weight=3]; 1737[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1737 -> 1760[label="",style="solid", color="black", weight=3]; 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"];3464[label="vyw33/False",fontsize=10,color="white",style="solid",shape="box"];237 -> 3464[label="",style="solid", color="burlywood", weight=9]; 3464 -> 241[label="",style="solid", color="burlywood", weight=3]; 3465[label="vyw33/True",fontsize=10,color="white",style="solid",shape="box"];237 -> 3465[label="",style="solid", color="burlywood", weight=9]; 3465 -> 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 -> 46[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]; 1742[label="compare1 vyw280 vyw290 (vyw280 <= vyw290)",fontsize=16,color="burlywood",shape="box"];3466[label="vyw280/Nothing",fontsize=10,color="white",style="solid",shape="box"];1742 -> 3466[label="",style="solid", color="burlywood", weight=9]; 3466 -> 1775[label="",style="solid", color="burlywood", weight=3]; 3467[label="vyw280/Just vyw2800",fontsize=10,color="white",style="solid",shape="box"];1742 -> 3467[label="",style="solid", color="burlywood", weight=9]; 3467 -> 1776[label="",style="solid", color="burlywood", weight=3]; 1743[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 -> 46[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 -> 46[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]; 1744[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3468[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3468[label="",style="solid", color="burlywood", weight=9]; 3468 -> 1777[label="",style="solid", color="burlywood", weight=3]; 1745[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3469[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3469[label="",style="solid", color="burlywood", weight=9]; 3469 -> 1778[label="",style="solid", color="burlywood", weight=3]; 3470[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3470[label="",style="solid", color="burlywood", weight=9]; 3470 -> 1779[label="",style="solid", color="burlywood", weight=3]; 1746[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3471[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];1746 -> 3471[label="",style="solid", color="burlywood", weight=9]; 3471 -> 1780[label="",style="solid", color="burlywood", weight=3]; 3472[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];1746 -> 3472[label="",style="solid", color="burlywood", weight=9]; 3472 -> 1781[label="",style="solid", color="burlywood", weight=3]; 1747[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];3473[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3473[label="",style="solid", color="burlywood", weight=9]; 3473 -> 1782[label="",style="solid", color="burlywood", weight=3]; 3474[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3474[label="",style="solid", color="burlywood", weight=9]; 3474 -> 1783[label="",style="solid", color="burlywood", weight=3]; 1748[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];3475[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];1748 -> 3475[label="",style="solid", color="burlywood", weight=9]; 3475 -> 1784[label="",style="solid", color="burlywood", weight=3]; 3476[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];1748 -> 3476[label="",style="solid", color="burlywood", weight=9]; 3476 -> 1785[label="",style="solid", color="burlywood", weight=3]; 1749[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3477[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3477[label="",style="solid", color="burlywood", weight=9]; 3477 -> 1786[label="",style="solid", color="burlywood", weight=3]; 1750[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];3478[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3478[label="",style="solid", color="burlywood", weight=9]; 3478 -> 1787[label="",style="solid", color="burlywood", weight=3]; 1751[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3479[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];1751 -> 3479[label="",style="solid", color="burlywood", weight=9]; 3479 -> 1788[label="",style="solid", color="burlywood", weight=3]; 1752[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];3480[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1752 -> 3480[label="",style="solid", color="burlywood", weight=9]; 3480 -> 1789[label="",style="solid", color="burlywood", weight=3]; 3481[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];1752 -> 3481[label="",style="solid", color="burlywood", weight=9]; 3481 -> 1790[label="",style="solid", color="burlywood", weight=3]; 1753[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3482[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3482[label="",style="solid", color="burlywood", weight=9]; 3482 -> 1791[label="",style="solid", color="burlywood", weight=3]; 3483[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3483[label="",style="solid", color="burlywood", weight=9]; 3483 -> 1792[label="",style="solid", color="burlywood", weight=3]; 1754[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3484[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];1754 -> 3484[label="",style="solid", color="burlywood", weight=9]; 3484 -> 1793[label="",style="solid", color="burlywood", weight=3]; 3485[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];1754 -> 3485[label="",style="solid", color="burlywood", weight=9]; 3485 -> 1794[label="",style="solid", color="burlywood", weight=3]; 1755[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];3486[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];1755 -> 3486[label="",style="solid", color="burlywood", weight=9]; 3486 -> 1795[label="",style="solid", color="burlywood", weight=3]; 3487[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];1755 -> 3487[label="",style="solid", color="burlywood", weight=9]; 3487 -> 1796[label="",style="solid", color="burlywood", weight=3]; 1756[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];3488[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];1756 -> 3488[label="",style="solid", color="burlywood", weight=9]; 3488 -> 1797[label="",style="solid", color="burlywood", weight=3]; 1757[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];3489[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];1757 -> 3489[label="",style="solid", color="burlywood", weight=9]; 3489 -> 1798[label="",style="solid", color="burlywood", weight=3]; 1758[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3490[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];1758 -> 3490[label="",style="solid", color="burlywood", weight=9]; 3490 -> 1799[label="",style="solid", color="burlywood", weight=3]; 3491[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];1758 -> 3491[label="",style="solid", color="burlywood", weight=9]; 3491 -> 1800[label="",style="solid", color="burlywood", weight=3]; 1759[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3492[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];1759 -> 3492[label="",style="solid", color="burlywood", weight=9]; 3492 -> 1801[label="",style="solid", color="burlywood", weight=3]; 1760[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3493[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3493[label="",style="solid", color="burlywood", weight=9]; 3493 -> 1802[label="",style="solid", color="burlywood", weight=3]; 240 -> 46[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]; 1775[label="compare1 Nothing vyw290 (Nothing <= vyw290)",fontsize=16,color="burlywood",shape="box"];3494[label="vyw290/Nothing",fontsize=10,color="white",style="solid",shape="box"];1775 -> 3494[label="",style="solid", color="burlywood", weight=9]; 3494 -> 1831[label="",style="solid", color="burlywood", weight=3]; 3495[label="vyw290/Just vyw2900",fontsize=10,color="white",style="solid",shape="box"];1775 -> 3495[label="",style="solid", color="burlywood", weight=9]; 3495 -> 1832[label="",style="solid", color="burlywood", weight=3]; 1776[label="compare1 (Just vyw2800) vyw290 (Just vyw2800 <= vyw290)",fontsize=16,color="burlywood",shape="box"];3496[label="vyw290/Nothing",fontsize=10,color="white",style="solid",shape="box"];1776 -> 3496[label="",style="solid", color="burlywood", weight=9]; 3496 -> 1833[label="",style="solid", color="burlywood", weight=3]; 3497[label="vyw290/Just vyw2900",fontsize=10,color="white",style="solid",shape="box"];1776 -> 3497[label="",style="solid", color="burlywood", weight=9]; 3497 -> 1834[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]; 1777[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];1777 -> 1835[label="",style="solid", color="black", weight=3]; 1778[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];1778 -> 1836[label="",style="solid", color="black", weight=3]; 1779[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];1779 -> 1837[label="",style="solid", color="black", weight=3]; 1780[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];1780 -> 1838[label="",style="solid", color="black", weight=3]; 1781[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];1781 -> 1839[label="",style="solid", color="black", weight=3]; 1782[label="False == False",fontsize=16,color="black",shape="box"];1782 -> 1840[label="",style="solid", color="black", weight=3]; 1783[label="False == True",fontsize=16,color="black",shape="box"];1783 -> 1841[label="",style="solid", color="black", weight=3]; 1784[label="True == False",fontsize=16,color="black",shape="box"];1784 -> 1842[label="",style="solid", color="black", weight=3]; 1785[label="True == True",fontsize=16,color="black",shape="box"];1785 -> 1843[label="",style="solid", color="black", weight=3]; 1786[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3498[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3498[label="",style="solid", color="burlywood", weight=9]; 3498 -> 1844[label="",style="solid", color="burlywood", weight=3]; 1787[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];1787 -> 1845[label="",style="solid", color="black", weight=3]; 1788[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];1788 -> 1846[label="",style="solid", color="black", weight=3]; 1789[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1789 -> 1847[label="",style="solid", color="black", weight=3]; 1790[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];1790 -> 1848[label="",style="solid", color="black", weight=3]; 1791[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];1791 -> 1849[label="",style="solid", color="black", weight=3]; 1792[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];1792 -> 1850[label="",style="solid", color="black", weight=3]; 1793[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];1793 -> 1851[label="",style="solid", color="black", weight=3]; 1794[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];1794 -> 1852[label="",style="solid", color="black", weight=3]; 1795[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];1795 -> 1853[label="",style="solid", color="black", weight=3]; 1796[label="[] == []",fontsize=16,color="black",shape="box"];1796 -> 1854[label="",style="solid", color="black", weight=3]; 1797[label="() == ()",fontsize=16,color="black",shape="box"];1797 -> 1855[label="",style="solid", color="black", weight=3]; 1798[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];1798 -> 1856[label="",style="solid", color="black", weight=3]; 1799[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3499[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1799 -> 3499[label="",style="solid", color="burlywood", weight=9]; 3499 -> 1857[label="",style="solid", color="burlywood", weight=3]; 3500[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1799 -> 3500[label="",style="solid", color="burlywood", weight=9]; 3500 -> 1858[label="",style="solid", color="burlywood", weight=3]; 1800[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3501[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1800 -> 3501[label="",style="solid", color="burlywood", weight=9]; 3501 -> 1859[label="",style="solid", color="burlywood", weight=3]; 3502[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1800 -> 3502[label="",style="solid", color="burlywood", weight=9]; 3502 -> 1860[label="",style="solid", color="burlywood", weight=3]; 1801[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3503[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];1801 -> 3503[label="",style="solid", color="burlywood", weight=9]; 3503 -> 1861[label="",style="solid", color="burlywood", weight=3]; 1802[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3504[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];1802 -> 3504[label="",style="solid", color="burlywood", weight=9]; 3504 -> 1862[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"];1831[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];1831 -> 1863[label="",style="solid", color="black", weight=3]; 1832[label="compare1 Nothing (Just vyw2900) (Nothing <= Just vyw2900)",fontsize=16,color="black",shape="box"];1832 -> 1864[label="",style="solid", color="black", weight=3]; 1833[label="compare1 (Just vyw2800) Nothing (Just vyw2800 <= Nothing)",fontsize=16,color="black",shape="box"];1833 -> 1865[label="",style="solid", color="black", weight=3]; 1834[label="compare1 (Just vyw2800) (Just vyw2900) (Just vyw2800 <= Just vyw2900)",fontsize=16,color="black",shape="box"];1834 -> 1866[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"];1835 -> 1952[label="",style="dashed", color="red", weight=0]; 1835[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1835 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1836[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3505[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1877[label="",style="solid", color="blue", weight=3]; 3506[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 1878[label="",style="solid", color="blue", weight=3]; 3507[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 1879[label="",style="solid", color="blue", weight=3]; 3508[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 1880[label="",style="solid", color="blue", weight=3]; 3509[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 1881[label="",style="solid", color="blue", weight=3]; 3510[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 1882[label="",style="solid", color="blue", weight=3]; 3511[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 1883[label="",style="solid", color="blue", weight=3]; 3512[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 1884[label="",style="solid", color="blue", weight=3]; 3513[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 1885[label="",style="solid", color="blue", weight=3]; 3514[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 1886[label="",style="solid", color="blue", weight=3]; 3515[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 1887[label="",style="solid", color="blue", weight=3]; 3516[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 1888[label="",style="solid", color="blue", weight=3]; 3517[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 1889[label="",style="solid", color="blue", weight=3]; 3518[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1836 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 1890[label="",style="solid", color="blue", weight=3]; 1837[label="False",fontsize=16,color="green",shape="box"];1838[label="False",fontsize=16,color="green",shape="box"];1839[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3519[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 1891[label="",style="solid", color="blue", weight=3]; 3520[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 1892[label="",style="solid", color="blue", weight=3]; 3521[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 1893[label="",style="solid", color="blue", weight=3]; 3522[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 1894[label="",style="solid", color="blue", weight=3]; 3523[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 1895[label="",style="solid", color="blue", weight=3]; 3524[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 1896[label="",style="solid", color="blue", weight=3]; 3525[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 1897[label="",style="solid", color="blue", weight=3]; 3526[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 1898[label="",style="solid", color="blue", weight=3]; 3527[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 1899[label="",style="solid", color="blue", weight=3]; 3528[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 1900[label="",style="solid", color="blue", weight=3]; 3529[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 1901[label="",style="solid", color="blue", weight=3]; 3530[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 1902[label="",style="solid", color="blue", weight=3]; 3531[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 1903[label="",style="solid", color="blue", weight=3]; 3532[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 1904[label="",style="solid", color="blue", weight=3]; 1840[label="True",fontsize=16,color="green",shape="box"];1841[label="False",fontsize=16,color="green",shape="box"];1842[label="False",fontsize=16,color="green",shape="box"];1843[label="True",fontsize=16,color="green",shape="box"];1844[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];1844 -> 1905[label="",style="solid", color="black", weight=3]; 1845 -> 1952[label="",style="dashed", color="red", weight=0]; 1845[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1845 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1845 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1846 -> 1758[label="",style="dashed", color="red", weight=0]; 1846[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];1846 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1846 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1847[label="True",fontsize=16,color="green",shape="box"];1848[label="False",fontsize=16,color="green",shape="box"];1849[label="False",fontsize=16,color="green",shape="box"];1850[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3533[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 1908[label="",style="solid", color="blue", weight=3]; 3534[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 1909[label="",style="solid", color="blue", weight=3]; 3535[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 1910[label="",style="solid", color="blue", weight=3]; 3536[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 1911[label="",style="solid", color="blue", weight=3]; 3537[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 1912[label="",style="solid", color="blue", weight=3]; 3538[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 1913[label="",style="solid", color="blue", weight=3]; 3539[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 1914[label="",style="solid", color="blue", weight=3]; 3540[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 1915[label="",style="solid", color="blue", weight=3]; 3541[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 1916[label="",style="solid", color="blue", weight=3]; 3542[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 1917[label="",style="solid", color="blue", weight=3]; 3543[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 1918[label="",style="solid", color="blue", weight=3]; 3544[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 1919[label="",style="solid", color="blue", weight=3]; 3545[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 1920[label="",style="solid", color="blue", weight=3]; 3546[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 1921[label="",style="solid", color="blue", weight=3]; 1851 -> 1952[label="",style="dashed", color="red", weight=0]; 1851[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1851 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1851 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1852[label="False",fontsize=16,color="green",shape="box"];1853[label="False",fontsize=16,color="green",shape="box"];1854[label="True",fontsize=16,color="green",shape="box"];1855[label="True",fontsize=16,color="green",shape="box"];1856 -> 1952[label="",style="dashed", color="red", weight=0]; 1856[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];1856 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1856 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1857[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3547[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3547[label="",style="solid", color="burlywood", weight=9]; 3547 -> 1933[label="",style="solid", color="burlywood", weight=3]; 3548[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3548[label="",style="solid", color="burlywood", weight=9]; 3548 -> 1934[label="",style="solid", color="burlywood", weight=3]; 1858[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3549[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1858 -> 3549[label="",style="solid", color="burlywood", weight=9]; 3549 -> 1935[label="",style="solid", color="burlywood", weight=3]; 3550[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1858 -> 3550[label="",style="solid", color="burlywood", weight=9]; 3550 -> 1936[label="",style="solid", color="burlywood", weight=3]; 1859[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3551[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3551[label="",style="solid", color="burlywood", weight=9]; 3551 -> 1937[label="",style="solid", color="burlywood", weight=3]; 3552[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1859 -> 3552[label="",style="solid", color="burlywood", weight=9]; 3552 -> 1938[label="",style="solid", color="burlywood", weight=3]; 1860[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3553[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1860 -> 3553[label="",style="solid", color="burlywood", weight=9]; 3553 -> 1939[label="",style="solid", color="burlywood", weight=3]; 3554[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1860 -> 3554[label="",style="solid", color="burlywood", weight=9]; 3554 -> 1940[label="",style="solid", color="burlywood", weight=3]; 1861[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];1861 -> 1941[label="",style="solid", color="black", weight=3]; 1862[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];1862 -> 1942[label="",style="solid", color="black", weight=3]; 338[label="compare3 (Just vyw18) (Just vyw13)",fontsize=16,color="black",shape="box"];338 -> 440[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 -> 441[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 -> 1687[label="",style="dashed", color="red", weight=0]; 342[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];342 -> 1706[label="",style="dashed", color="magenta", weight=3]; 342 -> 1707[label="",style="dashed", color="magenta", weight=3]; 342 -> 1708[label="",style="dashed", color="magenta", weight=3]; 343[label="FiniteMap.elemFM0 (Just vyw41)",fontsize=16,color="black",shape="triangle"];343 -> 444[label="",style="solid", color="black", weight=3]; 1863[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];1863 -> 1943[label="",style="solid", color="black", weight=3]; 1864[label="compare1 Nothing (Just vyw2900) True",fontsize=16,color="black",shape="box"];1864 -> 1944[label="",style="solid", color="black", weight=3]; 1865[label="compare1 (Just vyw2800) Nothing False",fontsize=16,color="black",shape="box"];1865 -> 1945[label="",style="solid", color="black", weight=3]; 1866 -> 1946[label="",style="dashed", color="red", weight=0]; 1866[label="compare1 (Just vyw2800) (Just vyw2900) (vyw2800 <= vyw2900)",fontsize=16,color="magenta"];1866 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1866 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1866 -> 1949[label="",style="dashed", color="magenta", weight=3]; 344 -> 1687[label="",style="dashed", color="red", weight=0]; 344[label="compare2 Nothing (Just vyw400) (Nothing == Just vyw400)",fontsize=16,color="magenta"];344 -> 1709[label="",style="dashed", color="magenta", weight=3]; 344 -> 1710[label="",style="dashed", color="magenta", weight=3]; 344 -> 1711[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 -> 1687[label="",style="dashed", color="red", weight=0]; 346[label="compare2 (Just vyw30) Nothing (Just vyw30 == Nothing)",fontsize=16,color="magenta"];346 -> 1712[label="",style="dashed", color="magenta", weight=3]; 346 -> 1713[label="",style="dashed", color="magenta", weight=3]; 346 -> 1714[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"];1953[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3555[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 1965[label="",style="solid", color="blue", weight=3]; 3556[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1953 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 1966[label="",style="solid", color="blue", weight=3]; 1954[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3557[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 1967[label="",style="solid", color="blue", weight=3]; 3558[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1954 -> 3558[label="",style="solid", color="blue", weight=9]; 3558 -> 1968[label="",style="solid", color="blue", weight=3]; 1952[label="vyw88 && vyw89",fontsize=16,color="burlywood",shape="triangle"];3559[label="vyw88/False",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3559[label="",style="solid", color="burlywood", weight=9]; 3559 -> 1969[label="",style="solid", color="burlywood", weight=3]; 3560[label="vyw88/True",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3560[label="",style="solid", color="burlywood", weight=9]; 3560 -> 1970[label="",style="solid", color="burlywood", weight=3]; 1877 -> 1724[label="",style="dashed", color="red", weight=0]; 1877[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1877 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1725[label="",style="dashed", color="red", weight=0]; 1878[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1878 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1726[label="",style="dashed", color="red", weight=0]; 1879[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1879 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1727[label="",style="dashed", color="red", weight=0]; 1880[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1880 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1728[label="",style="dashed", color="red", weight=0]; 1881[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1881 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1729[label="",style="dashed", color="red", weight=0]; 1882[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1882 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1883 -> 46[label="",style="dashed", color="red", weight=0]; 1883[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1883 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1883 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1884 -> 1731[label="",style="dashed", color="red", weight=0]; 1884[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1884 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1884 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1885 -> 1732[label="",style="dashed", color="red", weight=0]; 1885[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1885 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1885 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1886 -> 1733[label="",style="dashed", color="red", weight=0]; 1886[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1886 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1886 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1887 -> 1734[label="",style="dashed", color="red", weight=0]; 1887[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1887 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1887 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1888 -> 1735[label="",style="dashed", color="red", weight=0]; 1888[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1888 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1888 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1889 -> 1736[label="",style="dashed", color="red", weight=0]; 1889[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1889 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1889 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1890 -> 1737[label="",style="dashed", color="red", weight=0]; 1890[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1890 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1890 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1891 -> 1724[label="",style="dashed", color="red", weight=0]; 1891[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1891 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1892 -> 1725[label="",style="dashed", color="red", weight=0]; 1892[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1892 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1893 -> 1726[label="",style="dashed", color="red", weight=0]; 1893[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1893 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1894 -> 1727[label="",style="dashed", color="red", weight=0]; 1894[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1894 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1895 -> 1728[label="",style="dashed", color="red", weight=0]; 1895[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1895 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1896 -> 1729[label="",style="dashed", color="red", weight=0]; 1896[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1896 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1897 -> 46[label="",style="dashed", color="red", weight=0]; 1897[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1897 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1898 -> 1731[label="",style="dashed", color="red", weight=0]; 1898[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1898 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1899 -> 1732[label="",style="dashed", color="red", weight=0]; 1899[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1899 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1900 -> 1733[label="",style="dashed", color="red", weight=0]; 1900[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1900 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1901 -> 1734[label="",style="dashed", color="red", weight=0]; 1901[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1901 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1735[label="",style="dashed", color="red", weight=0]; 1902[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1902 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1736[label="",style="dashed", color="red", weight=0]; 1903[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1903 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1737[label="",style="dashed", color="red", weight=0]; 1904[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1904 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1905[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];3561[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3561[label="",style="solid", color="burlywood", weight=9]; 3561 -> 2027[label="",style="solid", color="burlywood", weight=3]; 3562[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3562[label="",style="solid", color="burlywood", weight=9]; 3562 -> 2028[label="",style="solid", color="burlywood", weight=3]; 1955[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3563[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3563[label="",style="solid", color="blue", weight=9]; 3563 -> 2029[label="",style="solid", color="blue", weight=3]; 3564[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3564[label="",style="solid", color="blue", weight=9]; 3564 -> 2030[label="",style="solid", color="blue", weight=3]; 3565[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3565[label="",style="solid", color="blue", weight=9]; 3565 -> 2031[label="",style="solid", color="blue", weight=3]; 3566[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3566[label="",style="solid", color="blue", weight=9]; 3566 -> 2032[label="",style="solid", color="blue", weight=3]; 3567[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3567[label="",style="solid", color="blue", weight=9]; 3567 -> 2033[label="",style="solid", color="blue", weight=3]; 3568[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3568[label="",style="solid", color="blue", weight=9]; 3568 -> 2034[label="",style="solid", color="blue", weight=3]; 3569[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3569[label="",style="solid", color="blue", weight=9]; 3569 -> 2035[label="",style="solid", color="blue", weight=3]; 3570[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3570[label="",style="solid", color="blue", weight=9]; 3570 -> 2036[label="",style="solid", color="blue", weight=3]; 3571[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 2037[label="",style="solid", color="blue", weight=3]; 3572[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 2038[label="",style="solid", color="blue", weight=3]; 3573[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 2039[label="",style="solid", color="blue", weight=3]; 3574[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 2040[label="",style="solid", color="blue", weight=3]; 3575[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 2041[label="",style="solid", color="blue", weight=3]; 3576[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 2042[label="",style="solid", color="blue", weight=3]; 1956[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3577[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 2043[label="",style="solid", color="blue", weight=3]; 3578[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 2044[label="",style="solid", color="blue", weight=3]; 3579[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 2045[label="",style="solid", color="blue", weight=3]; 3580[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 2046[label="",style="solid", color="blue", weight=3]; 3581[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 2047[label="",style="solid", color="blue", weight=3]; 3582[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 2048[label="",style="solid", color="blue", weight=3]; 3583[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 2049[label="",style="solid", color="blue", weight=3]; 3584[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 2050[label="",style="solid", color="blue", weight=3]; 3585[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 2051[label="",style="solid", color="blue", weight=3]; 3586[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2052[label="",style="solid", color="blue", weight=3]; 3587[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2053[label="",style="solid", color="blue", weight=3]; 3588[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2054[label="",style="solid", color="blue", weight=3]; 3589[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 2055[label="",style="solid", color="blue", weight=3]; 3590[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 2056[label="",style="solid", color="blue", weight=3]; 1906[label="vyw300",fontsize=16,color="green",shape="box"];1907[label="vyw4000",fontsize=16,color="green",shape="box"];1908 -> 1724[label="",style="dashed", color="red", weight=0]; 1908[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1908 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1725[label="",style="dashed", color="red", weight=0]; 1909[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1909 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1726[label="",style="dashed", color="red", weight=0]; 1910[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1910 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1911 -> 1727[label="",style="dashed", color="red", weight=0]; 1911[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1911 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1912 -> 1728[label="",style="dashed", color="red", weight=0]; 1912[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1912 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1913 -> 1729[label="",style="dashed", color="red", weight=0]; 1913[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1913 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1914 -> 46[label="",style="dashed", color="red", weight=0]; 1914[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1914 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1915 -> 1731[label="",style="dashed", color="red", weight=0]; 1915[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1915 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1916 -> 1732[label="",style="dashed", color="red", weight=0]; 1916[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1916 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1917 -> 1733[label="",style="dashed", color="red", weight=0]; 1917[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1917 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1918 -> 1734[label="",style="dashed", color="red", weight=0]; 1918[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1918 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1919 -> 1735[label="",style="dashed", color="red", weight=0]; 1919[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1919 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1920 -> 1736[label="",style="dashed", color="red", weight=0]; 1920[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1920 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1921 -> 1737[label="",style="dashed", color="red", weight=0]; 1921[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1921 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1957 -> 1732[label="",style="dashed", color="red", weight=0]; 1957[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1957 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1958[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3591[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 2087[label="",style="solid", color="blue", weight=3]; 3592[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 2088[label="",style="solid", color="blue", weight=3]; 3593[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 2089[label="",style="solid", color="blue", weight=3]; 3594[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 2090[label="",style="solid", color="blue", weight=3]; 3595[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2091[label="",style="solid", color="blue", weight=3]; 3596[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2092[label="",style="solid", color="blue", weight=3]; 3597[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2093[label="",style="solid", color="blue", weight=3]; 3598[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2094[label="",style="solid", color="blue", weight=3]; 3599[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2095[label="",style="solid", color="blue", weight=3]; 3600[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2096[label="",style="solid", color="blue", weight=3]; 3601[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2097[label="",style="solid", color="blue", weight=3]; 3602[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2098[label="",style="solid", color="blue", weight=3]; 3603[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 2099[label="",style="solid", color="blue", weight=3]; 3604[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 2100[label="",style="solid", color="blue", weight=3]; 1959 -> 1952[label="",style="dashed", color="red", weight=0]; 1959[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];1959 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1960[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3605[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2103[label="",style="solid", color="blue", weight=3]; 3606[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2104[label="",style="solid", color="blue", weight=3]; 3607[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2105[label="",style="solid", color="blue", weight=3]; 3608[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2106[label="",style="solid", color="blue", weight=3]; 3609[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2107[label="",style="solid", color="blue", weight=3]; 3610[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2108[label="",style="solid", color="blue", weight=3]; 3611[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2109[label="",style="solid", color="blue", weight=3]; 3612[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2110[label="",style="solid", color="blue", weight=3]; 3613[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2111[label="",style="solid", color="blue", weight=3]; 3614[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 2112[label="",style="solid", color="blue", weight=3]; 3615[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 2113[label="",style="solid", color="blue", weight=3]; 3616[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 2114[label="",style="solid", color="blue", weight=3]; 3617[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 2115[label="",style="solid", color="blue", weight=3]; 3618[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2116[label="",style="solid", color="blue", weight=3]; 1933[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3619[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3619[label="",style="solid", color="burlywood", weight=9]; 3619 -> 2117[label="",style="solid", color="burlywood", weight=3]; 3620[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3620[label="",style="solid", color="burlywood", weight=9]; 3620 -> 2118[label="",style="solid", color="burlywood", weight=3]; 1934[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];1934 -> 2119[label="",style="solid", color="black", weight=3]; 1935[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3621[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3621[label="",style="solid", color="burlywood", weight=9]; 3621 -> 2120[label="",style="solid", color="burlywood", weight=3]; 3622[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3622[label="",style="solid", color="burlywood", weight=9]; 3622 -> 2121[label="",style="solid", color="burlywood", weight=3]; 1936[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3623[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3623[label="",style="solid", color="burlywood", weight=9]; 3623 -> 2122[label="",style="solid", color="burlywood", weight=3]; 3624[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3624[label="",style="solid", color="burlywood", weight=9]; 3624 -> 2123[label="",style="solid", color="burlywood", weight=3]; 1937[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];1937 -> 2124[label="",style="solid", color="black", weight=3]; 1938[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3625[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3625[label="",style="solid", color="burlywood", weight=9]; 3625 -> 2125[label="",style="solid", color="burlywood", weight=3]; 3626[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3626[label="",style="solid", color="burlywood", weight=9]; 3626 -> 2126[label="",style="solid", color="burlywood", weight=3]; 1939[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3627[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1939 -> 3627[label="",style="solid", color="burlywood", weight=9]; 3627 -> 2127[label="",style="solid", color="burlywood", weight=3]; 3628[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1939 -> 3628[label="",style="solid", color="burlywood", weight=9]; 3628 -> 2128[label="",style="solid", color="burlywood", weight=3]; 1940[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3629[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1940 -> 3629[label="",style="solid", color="burlywood", weight=9]; 3629 -> 2129[label="",style="solid", color="burlywood", weight=3]; 3630[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1940 -> 3630[label="",style="solid", color="burlywood", weight=9]; 3630 -> 2130[label="",style="solid", color="burlywood", weight=3]; 1941 -> 1735[label="",style="dashed", color="red", weight=0]; 1941[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1941 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1942 -> 1735[label="",style="dashed", color="red", weight=0]; 1942[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1942 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2134[label="",style="dashed", color="magenta", weight=3]; 440 -> 1687[label="",style="dashed", color="red", weight=0]; 440[label="compare2 (Just vyw18) (Just vyw13) (Just vyw18 == Just vyw13)",fontsize=16,color="magenta"];440 -> 1715[label="",style="dashed", color="magenta", weight=3]; 440 -> 1716[label="",style="dashed", color="magenta", weight=3]; 440 -> 1717[label="",style="dashed", color="magenta", weight=3]; 441 -> 343[label="",style="dashed", color="red", weight=0]; 441[label="FiniteMap.elemFM0 (Just vyw14)",fontsize=16,color="magenta"];441 -> 668[label="",style="dashed", color="magenta", weight=3]; 1706[label="Nothing",fontsize=16,color="green",shape="box"];1707[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1707 -> 1738[label="",style="solid", color="black", weight=3]; 1708[label="Nothing",fontsize=16,color="green",shape="box"];444[label="True",fontsize=16,color="green",shape="box"];1943[label="LT",fontsize=16,color="green",shape="box"];1944[label="LT",fontsize=16,color="green",shape="box"];1945[label="compare0 (Just vyw2800) Nothing otherwise",fontsize=16,color="black",shape="box"];1945 -> 2135[label="",style="solid", color="black", weight=3]; 1947[label="vyw2900",fontsize=16,color="green",shape="box"];1948[label="vyw2800",fontsize=16,color="green",shape="box"];1949[label="vyw2800 <= vyw2900",fontsize=16,color="blue",shape="box"];3631[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 2136[label="",style="solid", color="blue", weight=3]; 3632[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 2137[label="",style="solid", color="blue", weight=3]; 3633[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 2138[label="",style="solid", color="blue", weight=3]; 3634[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 2139[label="",style="solid", color="blue", weight=3]; 3635[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 2140[label="",style="solid", color="blue", weight=3]; 3636[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 2141[label="",style="solid", color="blue", weight=3]; 3637[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 2142[label="",style="solid", color="blue", weight=3]; 3638[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 2143[label="",style="solid", color="blue", weight=3]; 3639[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 2144[label="",style="solid", color="blue", weight=3]; 3640[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 2145[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"];1949 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 2146[label="",style="solid", color="blue", weight=3]; 3642[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 2147[label="",style="solid", color="blue", weight=3]; 3643[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 2148[label="",style="solid", color="blue", weight=3]; 3644[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1949 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 2149[label="",style="solid", color="blue", weight=3]; 1946[label="compare1 (Just vyw82) (Just vyw83) vyw84",fontsize=16,color="burlywood",shape="triangle"];3645[label="vyw84/False",fontsize=10,color="white",style="solid",shape="box"];1946 -> 3645[label="",style="solid", color="burlywood", weight=9]; 3645 -> 2150[label="",style="solid", color="burlywood", weight=3]; 3646[label="vyw84/True",fontsize=10,color="white",style="solid",shape="box"];1946 -> 3646[label="",style="solid", color="burlywood", weight=9]; 3646 -> 2151[label="",style="solid", color="burlywood", weight=3]; 1709[label="Just vyw400",fontsize=16,color="green",shape="box"];1710[label="Nothing == Just vyw400",fontsize=16,color="black",shape="box"];1710 -> 1739[label="",style="solid", color="black", weight=3]; 1711[label="Nothing",fontsize=16,color="green",shape="box"];1712[label="Nothing",fontsize=16,color="green",shape="box"];1713[label="Just vyw30 == Nothing",fontsize=16,color="black",shape="box"];1713 -> 1740[label="",style="solid", color="black", weight=3]; 1714[label="Just vyw30",fontsize=16,color="green",shape="box"];1965 -> 1729[label="",style="dashed", color="red", weight=0]; 1965[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1965 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1966 -> 1735[label="",style="dashed", color="red", weight=0]; 1966[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1966 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1967 -> 1729[label="",style="dashed", color="red", weight=0]; 1967[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1967 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1968 -> 1735[label="",style="dashed", color="red", weight=0]; 1968[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1968 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1969[label="False && vyw89",fontsize=16,color="black",shape="box"];1969 -> 2160[label="",style="solid", color="black", weight=3]; 1970[label="True && vyw89",fontsize=16,color="black",shape="box"];1970 -> 2161[label="",style="solid", color="black", weight=3]; 1971[label="vyw300",fontsize=16,color="green",shape="box"];1972[label="vyw4000",fontsize=16,color="green",shape="box"];1973[label="vyw300",fontsize=16,color="green",shape="box"];1974[label="vyw4000",fontsize=16,color="green",shape="box"];1975[label="vyw300",fontsize=16,color="green",shape="box"];1976[label="vyw4000",fontsize=16,color="green",shape="box"];1977[label="vyw300",fontsize=16,color="green",shape="box"];1978[label="vyw4000",fontsize=16,color="green",shape="box"];1979[label="vyw300",fontsize=16,color="green",shape="box"];1980[label="vyw4000",fontsize=16,color="green",shape="box"];1981[label="vyw300",fontsize=16,color="green",shape="box"];1982[label="vyw4000",fontsize=16,color="green",shape="box"];1983[label="vyw300",fontsize=16,color="green",shape="box"];1984[label="vyw4000",fontsize=16,color="green",shape="box"];1985[label="vyw300",fontsize=16,color="green",shape="box"];1986[label="vyw4000",fontsize=16,color="green",shape="box"];1987[label="vyw300",fontsize=16,color="green",shape="box"];1988[label="vyw4000",fontsize=16,color="green",shape="box"];1989[label="vyw300",fontsize=16,color="green",shape="box"];1990[label="vyw4000",fontsize=16,color="green",shape="box"];1991[label="vyw300",fontsize=16,color="green",shape="box"];1992[label="vyw4000",fontsize=16,color="green",shape="box"];1993[label="vyw300",fontsize=16,color="green",shape="box"];1994[label="vyw4000",fontsize=16,color="green",shape="box"];1995[label="vyw300",fontsize=16,color="green",shape="box"];1996[label="vyw4000",fontsize=16,color="green",shape="box"];1997[label="vyw300",fontsize=16,color="green",shape="box"];1998[label="vyw4000",fontsize=16,color="green",shape="box"];1999[label="vyw300",fontsize=16,color="green",shape="box"];2000[label="vyw4000",fontsize=16,color="green",shape="box"];2001[label="vyw300",fontsize=16,color="green",shape="box"];2002[label="vyw4000",fontsize=16,color="green",shape="box"];2003[label="vyw300",fontsize=16,color="green",shape="box"];2004[label="vyw4000",fontsize=16,color="green",shape="box"];2005[label="vyw300",fontsize=16,color="green",shape="box"];2006[label="vyw4000",fontsize=16,color="green",shape="box"];2007[label="vyw300",fontsize=16,color="green",shape="box"];2008[label="vyw4000",fontsize=16,color="green",shape="box"];2009[label="vyw300",fontsize=16,color="green",shape="box"];2010[label="vyw4000",fontsize=16,color="green",shape="box"];2011[label="vyw300",fontsize=16,color="green",shape="box"];2012[label="vyw4000",fontsize=16,color="green",shape="box"];2013[label="vyw300",fontsize=16,color="green",shape="box"];2014[label="vyw4000",fontsize=16,color="green",shape="box"];2015[label="vyw300",fontsize=16,color="green",shape="box"];2016[label="vyw4000",fontsize=16,color="green",shape="box"];2017[label="vyw300",fontsize=16,color="green",shape="box"];2018[label="vyw4000",fontsize=16,color="green",shape="box"];2019[label="vyw300",fontsize=16,color="green",shape="box"];2020[label="vyw4000",fontsize=16,color="green",shape="box"];2021[label="vyw300",fontsize=16,color="green",shape="box"];2022[label="vyw4000",fontsize=16,color="green",shape="box"];2023[label="vyw300",fontsize=16,color="green",shape="box"];2024[label="vyw4000",fontsize=16,color="green",shape="box"];2025[label="vyw300",fontsize=16,color="green",shape="box"];2026[label="vyw4000",fontsize=16,color="green",shape="box"];2027[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];3647[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2027 -> 3647[label="",style="solid", color="burlywood", weight=9]; 3647 -> 2162[label="",style="solid", color="burlywood", weight=3]; 3648[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2027 -> 3648[label="",style="solid", color="burlywood", weight=9]; 3648 -> 2163[label="",style="solid", color="burlywood", weight=3]; 2028[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];3649[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2028 -> 3649[label="",style="solid", color="burlywood", weight=9]; 3649 -> 2164[label="",style="solid", color="burlywood", weight=3]; 3650[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2028 -> 3650[label="",style="solid", color="burlywood", weight=9]; 3650 -> 2165[label="",style="solid", color="burlywood", weight=3]; 2029 -> 1724[label="",style="dashed", color="red", weight=0]; 2029[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2029 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2030 -> 1725[label="",style="dashed", color="red", weight=0]; 2030[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2030 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2031 -> 1726[label="",style="dashed", color="red", weight=0]; 2031[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2031 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2031 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2032 -> 1727[label="",style="dashed", color="red", weight=0]; 2032[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2032 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2032 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2033 -> 1728[label="",style="dashed", color="red", weight=0]; 2033[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2033 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2033 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2034 -> 1729[label="",style="dashed", color="red", weight=0]; 2034[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2034 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2034 -> 2177[label="",style="dashed", color="magenta", weight=3]; 2035 -> 46[label="",style="dashed", color="red", weight=0]; 2035[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2035 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2036 -> 1731[label="",style="dashed", color="red", weight=0]; 2036[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2036 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2036 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2037 -> 1732[label="",style="dashed", color="red", weight=0]; 2037[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2037 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2037 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2038 -> 1733[label="",style="dashed", color="red", weight=0]; 2038[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2038 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2038 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2039 -> 1734[label="",style="dashed", color="red", weight=0]; 2039[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2039 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2039 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2040 -> 1735[label="",style="dashed", color="red", weight=0]; 2040[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2040 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2040 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2041 -> 1736[label="",style="dashed", color="red", weight=0]; 2041[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2041 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2041 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2042 -> 1737[label="",style="dashed", color="red", weight=0]; 2042[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2042 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2042 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2043 -> 1724[label="",style="dashed", color="red", weight=0]; 2043[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2043 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2044 -> 1725[label="",style="dashed", color="red", weight=0]; 2044[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2044 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2044 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2045 -> 1726[label="",style="dashed", color="red", weight=0]; 2045[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2045 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2045 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2046 -> 1727[label="",style="dashed", color="red", weight=0]; 2046[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2046 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2047 -> 1728[label="",style="dashed", color="red", weight=0]; 2047[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2047 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2048 -> 1729[label="",style="dashed", color="red", weight=0]; 2048[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2048 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2048 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2049 -> 46[label="",style="dashed", color="red", weight=0]; 2049[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2049 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2050 -> 1731[label="",style="dashed", color="red", weight=0]; 2050[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2050 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2051 -> 1732[label="",style="dashed", color="red", weight=0]; 2051[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2051 -> 2210[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2052 -> 1733[label="",style="dashed", color="red", weight=0]; 2052[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2052 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2053 -> 1734[label="",style="dashed", color="red", weight=0]; 2053[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2053 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2054 -> 1735[label="",style="dashed", color="red", weight=0]; 2054[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2054 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2055 -> 1736[label="",style="dashed", color="red", weight=0]; 2055[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2055 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2056 -> 1737[label="",style="dashed", color="red", weight=0]; 2056[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2056 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2057[label="vyw300",fontsize=16,color="green",shape="box"];2058[label="vyw4000",fontsize=16,color="green",shape="box"];2059[label="vyw300",fontsize=16,color="green",shape="box"];2060[label="vyw4000",fontsize=16,color="green",shape="box"];2061[label="vyw300",fontsize=16,color="green",shape="box"];2062[label="vyw4000",fontsize=16,color="green",shape="box"];2063[label="vyw300",fontsize=16,color="green",shape="box"];2064[label="vyw4000",fontsize=16,color="green",shape="box"];2065[label="vyw300",fontsize=16,color="green",shape="box"];2066[label="vyw4000",fontsize=16,color="green",shape="box"];2067[label="vyw300",fontsize=16,color="green",shape="box"];2068[label="vyw4000",fontsize=16,color="green",shape="box"];2069[label="vyw300",fontsize=16,color="green",shape="box"];2070[label="vyw4000",fontsize=16,color="green",shape="box"];2071[label="vyw300",fontsize=16,color="green",shape="box"];2072[label="vyw4000",fontsize=16,color="green",shape="box"];2073[label="vyw300",fontsize=16,color="green",shape="box"];2074[label="vyw4000",fontsize=16,color="green",shape="box"];2075[label="vyw300",fontsize=16,color="green",shape="box"];2076[label="vyw4000",fontsize=16,color="green",shape="box"];2077[label="vyw300",fontsize=16,color="green",shape="box"];2078[label="vyw4000",fontsize=16,color="green",shape="box"];2079[label="vyw300",fontsize=16,color="green",shape="box"];2080[label="vyw4000",fontsize=16,color="green",shape="box"];2081[label="vyw300",fontsize=16,color="green",shape="box"];2082[label="vyw4000",fontsize=16,color="green",shape="box"];2083[label="vyw300",fontsize=16,color="green",shape="box"];2084[label="vyw4000",fontsize=16,color="green",shape="box"];2085[label="vyw301",fontsize=16,color="green",shape="box"];2086[label="vyw4001",fontsize=16,color="green",shape="box"];2087 -> 1724[label="",style="dashed", color="red", weight=0]; 2087[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2087 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2088 -> 1725[label="",style="dashed", color="red", weight=0]; 2088[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2088 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2089 -> 1726[label="",style="dashed", color="red", weight=0]; 2089[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2089 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2090 -> 1727[label="",style="dashed", color="red", weight=0]; 2090[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2090 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2091 -> 1728[label="",style="dashed", color="red", weight=0]; 2091[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2091 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2092 -> 1729[label="",style="dashed", color="red", weight=0]; 2092[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2092 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2093 -> 46[label="",style="dashed", color="red", weight=0]; 2093[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2093 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2094 -> 1731[label="",style="dashed", color="red", weight=0]; 2094[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2094 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2095 -> 1732[label="",style="dashed", color="red", weight=0]; 2095[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2095 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2096 -> 1733[label="",style="dashed", color="red", weight=0]; 2096[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2096 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2097 -> 1734[label="",style="dashed", color="red", weight=0]; 2097[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2097 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2098 -> 1735[label="",style="dashed", color="red", weight=0]; 2098[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2098 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2099 -> 1736[label="",style="dashed", color="red", weight=0]; 2099[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2099 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2100 -> 1737[label="",style="dashed", color="red", weight=0]; 2100[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2100 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2101[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];3651[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 2250[label="",style="solid", color="blue", weight=3]; 3652[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3652[label="",style="solid", color="blue", weight=9]; 3652 -> 2251[label="",style="solid", color="blue", weight=3]; 3653[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3653[label="",style="solid", color="blue", weight=9]; 3653 -> 2252[label="",style="solid", color="blue", weight=3]; 3654[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3654[label="",style="solid", color="blue", weight=9]; 3654 -> 2253[label="",style="solid", color="blue", weight=3]; 3655[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3655[label="",style="solid", color="blue", weight=9]; 3655 -> 2254[label="",style="solid", color="blue", weight=3]; 3656[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3656[label="",style="solid", color="blue", weight=9]; 3656 -> 2255[label="",style="solid", color="blue", weight=3]; 3657[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3657[label="",style="solid", color="blue", weight=9]; 3657 -> 2256[label="",style="solid", color="blue", weight=3]; 3658[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3658[label="",style="solid", color="blue", weight=9]; 3658 -> 2257[label="",style="solid", color="blue", weight=3]; 3659[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3659[label="",style="solid", color="blue", weight=9]; 3659 -> 2258[label="",style="solid", color="blue", weight=3]; 3660[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3660[label="",style="solid", color="blue", weight=9]; 3660 -> 2259[label="",style="solid", color="blue", weight=3]; 3661[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3661[label="",style="solid", color="blue", weight=9]; 3661 -> 2260[label="",style="solid", color="blue", weight=3]; 3662[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3662[label="",style="solid", color="blue", weight=9]; 3662 -> 2261[label="",style="solid", color="blue", weight=3]; 3663[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3663[label="",style="solid", color="blue", weight=9]; 3663 -> 2262[label="",style="solid", color="blue", weight=3]; 3664[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 2263[label="",style="solid", color="blue", weight=3]; 2102[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3665[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 2264[label="",style="solid", color="blue", weight=3]; 3666[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 2265[label="",style="solid", color="blue", weight=3]; 3667[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 2266[label="",style="solid", color="blue", weight=3]; 3668[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 2267[label="",style="solid", color="blue", weight=3]; 3669[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 2268[label="",style="solid", color="blue", weight=3]; 3670[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 2269[label="",style="solid", color="blue", weight=3]; 3671[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 2270[label="",style="solid", color="blue", weight=3]; 3672[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 2271[label="",style="solid", color="blue", weight=3]; 3673[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 2272[label="",style="solid", color="blue", weight=3]; 3674[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 2273[label="",style="solid", color="blue", weight=3]; 3675[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 2274[label="",style="solid", color="blue", weight=3]; 3676[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3676[label="",style="solid", color="blue", weight=9]; 3676 -> 2275[label="",style="solid", color="blue", weight=3]; 3677[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 2276[label="",style="solid", color="blue", weight=3]; 3678[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 2277[label="",style="solid", color="blue", weight=3]; 2103 -> 1724[label="",style="dashed", color="red", weight=0]; 2103[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2103 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2104 -> 1725[label="",style="dashed", color="red", weight=0]; 2104[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2104 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2105 -> 1726[label="",style="dashed", color="red", weight=0]; 2105[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2105 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2106 -> 1727[label="",style="dashed", color="red", weight=0]; 2106[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2106 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2107 -> 1728[label="",style="dashed", color="red", weight=0]; 2107[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2107 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2108 -> 1729[label="",style="dashed", color="red", weight=0]; 2108[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2108 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2109 -> 46[label="",style="dashed", color="red", weight=0]; 2109[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2109 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2110 -> 1731[label="",style="dashed", color="red", weight=0]; 2110[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2110 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2111 -> 1732[label="",style="dashed", color="red", weight=0]; 2111[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2111 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2112 -> 1733[label="",style="dashed", color="red", weight=0]; 2112[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2112 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2113 -> 1734[label="",style="dashed", color="red", weight=0]; 2113[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2113 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2114 -> 1735[label="",style="dashed", color="red", weight=0]; 2114[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2114 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2115 -> 1736[label="",style="dashed", color="red", weight=0]; 2115[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2115 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2116 -> 1737[label="",style="dashed", color="red", weight=0]; 2116[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2116 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2117[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2117 -> 2306[label="",style="solid", color="black", weight=3]; 2118[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2118 -> 2307[label="",style="solid", color="black", weight=3]; 2119[label="False",fontsize=16,color="green",shape="box"];2120[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2120 -> 2308[label="",style="solid", color="black", weight=3]; 2121[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2121 -> 2309[label="",style="solid", color="black", weight=3]; 2122[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2122 -> 2310[label="",style="solid", color="black", weight=3]; 2123[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2123 -> 2311[label="",style="solid", color="black", weight=3]; 2124[label="False",fontsize=16,color="green",shape="box"];2125[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2125 -> 2312[label="",style="solid", color="black", weight=3]; 2126[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2126 -> 2313[label="",style="solid", color="black", weight=3]; 2127[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2127 -> 2314[label="",style="solid", color="black", weight=3]; 2128[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2128 -> 2315[label="",style="solid", color="black", weight=3]; 2129[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2129 -> 2316[label="",style="solid", color="black", weight=3]; 2130[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2130 -> 2317[label="",style="solid", color="black", weight=3]; 2131[label="vyw300 * vyw4001",fontsize=16,color="black",shape="triangle"];2131 -> 2318[label="",style="solid", color="black", weight=3]; 2132 -> 2131[label="",style="dashed", color="red", weight=0]; 2132[label="vyw301 * vyw4000",fontsize=16,color="magenta"];2132 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2131[label="",style="dashed", color="red", weight=0]; 2133[label="vyw300 * vyw4001",fontsize=16,color="magenta"];2133 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2131[label="",style="dashed", color="red", weight=0]; 2134[label="vyw301 * vyw4000",fontsize=16,color="magenta"];2134 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2324[label="",style="dashed", color="magenta", weight=3]; 1715[label="Just vyw13",fontsize=16,color="green",shape="box"];1716[label="Just vyw18 == Just vyw13",fontsize=16,color="black",shape="box"];1716 -> 1741[label="",style="solid", color="black", weight=3]; 1717[label="Just vyw18",fontsize=16,color="green",shape="box"];668[label="vyw14",fontsize=16,color="green",shape="box"];1738[label="True",fontsize=16,color="green",shape="box"];2135[label="compare0 (Just vyw2800) Nothing True",fontsize=16,color="black",shape="box"];2135 -> 2325[label="",style="solid", color="black", weight=3]; 2136[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2136 -> 2326[label="",style="solid", color="black", weight=3]; 2137[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2137 -> 2327[label="",style="solid", color="black", weight=3]; 2138[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3679[label="vyw2800/Left vyw28000",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3679[label="",style="solid", color="burlywood", weight=9]; 3679 -> 2328[label="",style="solid", color="burlywood", weight=3]; 3680[label="vyw2800/Right vyw28000",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3680[label="",style="solid", color="burlywood", weight=9]; 3680 -> 2329[label="",style="solid", color="burlywood", weight=3]; 2139[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3681[label="vyw2800/Nothing",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3681[label="",style="solid", color="burlywood", weight=9]; 3681 -> 2330[label="",style="solid", color="burlywood", weight=3]; 3682[label="vyw2800/Just vyw28000",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3682[label="",style="solid", color="burlywood", weight=9]; 3682 -> 2331[label="",style="solid", color="burlywood", weight=3]; 2140[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3683[label="vyw2800/LT",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3683[label="",style="solid", color="burlywood", weight=9]; 3683 -> 2332[label="",style="solid", color="burlywood", weight=3]; 3684[label="vyw2800/EQ",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3684[label="",style="solid", color="burlywood", weight=9]; 3684 -> 2333[label="",style="solid", color="burlywood", weight=3]; 3685[label="vyw2800/GT",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3685[label="",style="solid", color="burlywood", weight=9]; 3685 -> 2334[label="",style="solid", color="burlywood", weight=3]; 2141[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3686[label="vyw2800/False",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3686[label="",style="solid", color="burlywood", weight=9]; 3686 -> 2335[label="",style="solid", color="burlywood", weight=3]; 3687[label="vyw2800/True",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3687[label="",style="solid", color="burlywood", weight=9]; 3687 -> 2336[label="",style="solid", color="burlywood", weight=3]; 2142[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2142 -> 2337[label="",style="solid", color="black", weight=3]; 2143[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2143 -> 2338[label="",style="solid", color="black", weight=3]; 2144[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2144 -> 2339[label="",style="solid", color="black", weight=3]; 2145[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3688[label="vyw2800/(vyw28000,vyw28001)",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3688[label="",style="solid", color="burlywood", weight=9]; 3688 -> 2340[label="",style="solid", color="burlywood", weight=3]; 2146[label="vyw2800 <= vyw2900",fontsize=16,color="burlywood",shape="triangle"];3689[label="vyw2800/(vyw28000,vyw28001,vyw28002)",fontsize=10,color="white",style="solid",shape="box"];2146 -> 3689[label="",style="solid", color="burlywood", weight=9]; 3689 -> 2341[label="",style="solid", color="burlywood", weight=3]; 2147[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2147 -> 2342[label="",style="solid", color="black", weight=3]; 2148[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2148 -> 2343[label="",style="solid", color="black", weight=3]; 2149[label="vyw2800 <= vyw2900",fontsize=16,color="black",shape="triangle"];2149 -> 2344[label="",style="solid", color="black", weight=3]; 2150[label="compare1 (Just vyw82) (Just vyw83) False",fontsize=16,color="black",shape="box"];2150 -> 2345[label="",style="solid", color="black", weight=3]; 2151[label="compare1 (Just vyw82) (Just vyw83) True",fontsize=16,color="black",shape="box"];2151 -> 2346[label="",style="solid", color="black", weight=3]; 1739[label="False",fontsize=16,color="green",shape="box"];1740[label="False",fontsize=16,color="green",shape="box"];2152[label="vyw301",fontsize=16,color="green",shape="box"];2153[label="vyw4001",fontsize=16,color="green",shape="box"];2154[label="vyw301",fontsize=16,color="green",shape="box"];2155[label="vyw4001",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="vyw300",fontsize=16,color="green",shape="box"];2159[label="vyw4000",fontsize=16,color="green",shape="box"];2160[label="False",fontsize=16,color="green",shape="box"];2161[label="vyw89",fontsize=16,color="green",shape="box"];2162[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];2162 -> 2347[label="",style="solid", color="black", weight=3]; 2163[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];2163 -> 2348[label="",style="solid", color="black", weight=3]; 2164[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];2164 -> 2349[label="",style="solid", color="black", weight=3]; 2165[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2165 -> 2350[label="",style="solid", color="black", weight=3]; 2166[label="vyw301",fontsize=16,color="green",shape="box"];2167[label="vyw4001",fontsize=16,color="green",shape="box"];2168[label="vyw301",fontsize=16,color="green",shape="box"];2169[label="vyw4001",fontsize=16,color="green",shape="box"];2170[label="vyw301",fontsize=16,color="green",shape="box"];2171[label="vyw4001",fontsize=16,color="green",shape="box"];2172[label="vyw301",fontsize=16,color="green",shape="box"];2173[label="vyw4001",fontsize=16,color="green",shape="box"];2174[label="vyw301",fontsize=16,color="green",shape="box"];2175[label="vyw4001",fontsize=16,color="green",shape="box"];2176[label="vyw301",fontsize=16,color="green",shape="box"];2177[label="vyw4001",fontsize=16,color="green",shape="box"];2178[label="vyw301",fontsize=16,color="green",shape="box"];2179[label="vyw4001",fontsize=16,color="green",shape="box"];2180[label="vyw301",fontsize=16,color="green",shape="box"];2181[label="vyw4001",fontsize=16,color="green",shape="box"];2182[label="vyw301",fontsize=16,color="green",shape="box"];2183[label="vyw4001",fontsize=16,color="green",shape="box"];2184[label="vyw301",fontsize=16,color="green",shape="box"];2185[label="vyw4001",fontsize=16,color="green",shape="box"];2186[label="vyw301",fontsize=16,color="green",shape="box"];2187[label="vyw4001",fontsize=16,color="green",shape="box"];2188[label="vyw301",fontsize=16,color="green",shape="box"];2189[label="vyw4001",fontsize=16,color="green",shape="box"];2190[label="vyw301",fontsize=16,color="green",shape="box"];2191[label="vyw4001",fontsize=16,color="green",shape="box"];2192[label="vyw301",fontsize=16,color="green",shape="box"];2193[label="vyw4001",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="vyw300",fontsize=16,color="green",shape="box"];2217[label="vyw4000",fontsize=16,color="green",shape="box"];2218[label="vyw300",fontsize=16,color="green",shape="box"];2219[label="vyw4000",fontsize=16,color="green",shape="box"];2220[label="vyw300",fontsize=16,color="green",shape="box"];2221[label="vyw4000",fontsize=16,color="green",shape="box"];2222[label="vyw300",fontsize=16,color="green",shape="box"];2223[label="vyw4000",fontsize=16,color="green",shape="box"];2224[label="vyw300",fontsize=16,color="green",shape="box"];2225[label="vyw4000",fontsize=16,color="green",shape="box"];2226[label="vyw300",fontsize=16,color="green",shape="box"];2227[label="vyw4000",fontsize=16,color="green",shape="box"];2228[label="vyw300",fontsize=16,color="green",shape="box"];2229[label="vyw4000",fontsize=16,color="green",shape="box"];2230[label="vyw300",fontsize=16,color="green",shape="box"];2231[label="vyw4000",fontsize=16,color="green",shape="box"];2232[label="vyw300",fontsize=16,color="green",shape="box"];2233[label="vyw4000",fontsize=16,color="green",shape="box"];2234[label="vyw300",fontsize=16,color="green",shape="box"];2235[label="vyw4000",fontsize=16,color="green",shape="box"];2236[label="vyw300",fontsize=16,color="green",shape="box"];2237[label="vyw4000",fontsize=16,color="green",shape="box"];2238[label="vyw300",fontsize=16,color="green",shape="box"];2239[label="vyw4000",fontsize=16,color="green",shape="box"];2240[label="vyw300",fontsize=16,color="green",shape="box"];2241[label="vyw4000",fontsize=16,color="green",shape="box"];2242[label="vyw300",fontsize=16,color="green",shape="box"];2243[label="vyw4000",fontsize=16,color="green",shape="box"];2244[label="vyw300",fontsize=16,color="green",shape="box"];2245[label="vyw4000",fontsize=16,color="green",shape="box"];2246[label="vyw300",fontsize=16,color="green",shape="box"];2247[label="vyw4000",fontsize=16,color="green",shape="box"];2248[label="vyw300",fontsize=16,color="green",shape="box"];2249[label="vyw4000",fontsize=16,color="green",shape="box"];2250 -> 1724[label="",style="dashed", color="red", weight=0]; 2250[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2250 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2250 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2251 -> 1725[label="",style="dashed", color="red", weight=0]; 2251[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2251 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2251 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2252 -> 1726[label="",style="dashed", color="red", weight=0]; 2252[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2252 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2252 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2253 -> 1727[label="",style="dashed", color="red", weight=0]; 2253[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2253 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2253 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2254 -> 1728[label="",style="dashed", color="red", weight=0]; 2254[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2254 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2254 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2255 -> 1729[label="",style="dashed", color="red", weight=0]; 2255[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2255 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2255 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2256 -> 46[label="",style="dashed", color="red", weight=0]; 2256[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2256 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2256 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2257 -> 1731[label="",style="dashed", color="red", weight=0]; 2257[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2257 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2258 -> 1732[label="",style="dashed", color="red", weight=0]; 2258[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2258 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2258 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2259 -> 1733[label="",style="dashed", color="red", weight=0]; 2259[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2259 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2260 -> 1734[label="",style="dashed", color="red", weight=0]; 2260[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2260 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2261 -> 1735[label="",style="dashed", color="red", weight=0]; 2261[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2261 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2262 -> 1736[label="",style="dashed", color="red", weight=0]; 2262[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2262 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2263 -> 1737[label="",style="dashed", color="red", weight=0]; 2263[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2263 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2264 -> 1724[label="",style="dashed", color="red", weight=0]; 2264[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2264 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2265 -> 1725[label="",style="dashed", color="red", weight=0]; 2265[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2265 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2266 -> 1726[label="",style="dashed", color="red", weight=0]; 2266[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2266 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2267 -> 1727[label="",style="dashed", color="red", weight=0]; 2267[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2267 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1728[label="",style="dashed", color="red", weight=0]; 2268[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2268 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1729[label="",style="dashed", color="red", weight=0]; 2269[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2269 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2270 -> 46[label="",style="dashed", color="red", weight=0]; 2270[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2270 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2271 -> 1731[label="",style="dashed", color="red", weight=0]; 2271[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2271 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2272 -> 1732[label="",style="dashed", color="red", weight=0]; 2272[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2272 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2273 -> 1733[label="",style="dashed", color="red", weight=0]; 2273[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2273 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2274 -> 1734[label="",style="dashed", color="red", weight=0]; 2274[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2274 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2275 -> 1735[label="",style="dashed", color="red", weight=0]; 2275[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2275 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2276 -> 1736[label="",style="dashed", color="red", weight=0]; 2276[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2276 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2277 -> 1737[label="",style="dashed", color="red", weight=0]; 2277[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2277 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2406[label="",style="dashed", color="magenta", weight=3]; 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="vyw300",fontsize=16,color="green",shape="box"];2289[label="vyw4000",fontsize=16,color="green",shape="box"];2290[label="vyw300",fontsize=16,color="green",shape="box"];2291[label="vyw4000",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="vyw4000",fontsize=16,color="green",shape="box"];2298[label="vyw300",fontsize=16,color="green",shape="box"];2299[label="vyw4000",fontsize=16,color="green",shape="box"];2300[label="vyw300",fontsize=16,color="green",shape="box"];2301[label="vyw4000",fontsize=16,color="green",shape="box"];2302[label="vyw300",fontsize=16,color="green",shape="box"];2303[label="vyw4000",fontsize=16,color="green",shape="box"];2304[label="vyw300",fontsize=16,color="green",shape="box"];2305[label="vyw4000",fontsize=16,color="green",shape="box"];2306 -> 1905[label="",style="dashed", color="red", weight=0]; 2306[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2306 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2307[label="False",fontsize=16,color="green",shape="box"];2308[label="False",fontsize=16,color="green",shape="box"];2309[label="True",fontsize=16,color="green",shape="box"];2310[label="False",fontsize=16,color="green",shape="box"];2311[label="True",fontsize=16,color="green",shape="box"];2312 -> 1905[label="",style="dashed", color="red", weight=0]; 2312[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2312 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2313[label="False",fontsize=16,color="green",shape="box"];2314[label="False",fontsize=16,color="green",shape="box"];2315[label="True",fontsize=16,color="green",shape="box"];2316[label="False",fontsize=16,color="green",shape="box"];2317[label="True",fontsize=16,color="green",shape="box"];2318[label="primMulInt vyw300 vyw4001",fontsize=16,color="burlywood",shape="triangle"];3690[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2318 -> 3690[label="",style="solid", color="burlywood", weight=9]; 3690 -> 2411[label="",style="solid", color="burlywood", weight=3]; 3691[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2318 -> 3691[label="",style="solid", color="burlywood", weight=9]; 3691 -> 2412[label="",style="solid", color="burlywood", weight=3]; 2319[label="vyw301",fontsize=16,color="green",shape="box"];2320[label="vyw4000",fontsize=16,color="green",shape="box"];2321[label="vyw300",fontsize=16,color="green",shape="box"];2322[label="vyw4001",fontsize=16,color="green",shape="box"];2323[label="vyw301",fontsize=16,color="green",shape="box"];2324[label="vyw4000",fontsize=16,color="green",shape="box"];1741[label="vyw18 == vyw13",fontsize=16,color="blue",shape="box"];3692[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3692[label="",style="solid", color="blue", weight=9]; 3692 -> 1761[label="",style="solid", color="blue", weight=3]; 3693[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3693[label="",style="solid", color="blue", weight=9]; 3693 -> 1762[label="",style="solid", color="blue", weight=3]; 3694[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 1763[label="",style="solid", color="blue", weight=3]; 3695[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 1764[label="",style="solid", color="blue", weight=3]; 3696[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 1765[label="",style="solid", color="blue", weight=3]; 3697[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 1766[label="",style="solid", color="blue", weight=3]; 3698[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 1767[label="",style="solid", color="blue", weight=3]; 3699[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 1768[label="",style="solid", color="blue", weight=3]; 3700[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 1769[label="",style="solid", color="blue", weight=3]; 3701[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 1770[label="",style="solid", color="blue", weight=3]; 3702[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 1771[label="",style="solid", color="blue", weight=3]; 3703[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 1772[label="",style="solid", color="blue", weight=3]; 3704[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 1773[label="",style="solid", color="blue", weight=3]; 3705[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 1774[label="",style="solid", color="blue", weight=3]; 2325[label="GT",fontsize=16,color="green",shape="box"];2326[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2326 -> 2413[label="",style="solid", color="black", weight=3]; 2327[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2327 -> 2414[label="",style="solid", color="black", weight=3]; 2328[label="Left vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3706[label="vyw2900/Left vyw29000",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3706[label="",style="solid", color="burlywood", weight=9]; 3706 -> 2415[label="",style="solid", color="burlywood", weight=3]; 3707[label="vyw2900/Right vyw29000",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3707[label="",style="solid", color="burlywood", weight=9]; 3707 -> 2416[label="",style="solid", color="burlywood", weight=3]; 2329[label="Right vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3708[label="vyw2900/Left vyw29000",fontsize=10,color="white",style="solid",shape="box"];2329 -> 3708[label="",style="solid", color="burlywood", weight=9]; 3708 -> 2417[label="",style="solid", color="burlywood", weight=3]; 3709[label="vyw2900/Right vyw29000",fontsize=10,color="white",style="solid",shape="box"];2329 -> 3709[label="",style="solid", color="burlywood", weight=9]; 3709 -> 2418[label="",style="solid", color="burlywood", weight=3]; 2330[label="Nothing <= vyw2900",fontsize=16,color="burlywood",shape="box"];3710[label="vyw2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3710[label="",style="solid", color="burlywood", weight=9]; 3710 -> 2419[label="",style="solid", color="burlywood", weight=3]; 3711[label="vyw2900/Just vyw29000",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3711[label="",style="solid", color="burlywood", weight=9]; 3711 -> 2420[label="",style="solid", color="burlywood", weight=3]; 2331[label="Just vyw28000 <= vyw2900",fontsize=16,color="burlywood",shape="box"];3712[label="vyw2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3712[label="",style="solid", color="burlywood", weight=9]; 3712 -> 2421[label="",style="solid", color="burlywood", weight=3]; 3713[label="vyw2900/Just vyw29000",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3713[label="",style="solid", color="burlywood", weight=9]; 3713 -> 2422[label="",style="solid", color="burlywood", weight=3]; 2332[label="LT <= vyw2900",fontsize=16,color="burlywood",shape="box"];3714[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3714[label="",style="solid", color="burlywood", weight=9]; 3714 -> 2423[label="",style="solid", color="burlywood", weight=3]; 3715[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3715[label="",style="solid", color="burlywood", weight=9]; 3715 -> 2424[label="",style="solid", color="burlywood", weight=3]; 3716[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3716[label="",style="solid", color="burlywood", weight=9]; 3716 -> 2425[label="",style="solid", color="burlywood", weight=3]; 2333[label="EQ <= vyw2900",fontsize=16,color="burlywood",shape="box"];3717[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2333 -> 3717[label="",style="solid", color="burlywood", weight=9]; 3717 -> 2426[label="",style="solid", color="burlywood", weight=3]; 3718[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2333 -> 3718[label="",style="solid", color="burlywood", weight=9]; 3718 -> 2427[label="",style="solid", color="burlywood", weight=3]; 3719[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2333 -> 3719[label="",style="solid", color="burlywood", weight=9]; 3719 -> 2428[label="",style="solid", color="burlywood", weight=3]; 2334[label="GT <= vyw2900",fontsize=16,color="burlywood",shape="box"];3720[label="vyw2900/LT",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3720[label="",style="solid", color="burlywood", weight=9]; 3720 -> 2429[label="",style="solid", color="burlywood", weight=3]; 3721[label="vyw2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3721[label="",style="solid", color="burlywood", weight=9]; 3721 -> 2430[label="",style="solid", color="burlywood", weight=3]; 3722[label="vyw2900/GT",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3722[label="",style="solid", color="burlywood", weight=9]; 3722 -> 2431[label="",style="solid", color="burlywood", weight=3]; 2335[label="False <= vyw2900",fontsize=16,color="burlywood",shape="box"];3723[label="vyw2900/False",fontsize=10,color="white",style="solid",shape="box"];2335 -> 3723[label="",style="solid", color="burlywood", weight=9]; 3723 -> 2432[label="",style="solid", color="burlywood", weight=3]; 3724[label="vyw2900/True",fontsize=10,color="white",style="solid",shape="box"];2335 -> 3724[label="",style="solid", color="burlywood", weight=9]; 3724 -> 2433[label="",style="solid", color="burlywood", weight=3]; 2336[label="True <= vyw2900",fontsize=16,color="burlywood",shape="box"];3725[label="vyw2900/False",fontsize=10,color="white",style="solid",shape="box"];2336 -> 3725[label="",style="solid", color="burlywood", weight=9]; 3725 -> 2434[label="",style="solid", color="burlywood", weight=3]; 3726[label="vyw2900/True",fontsize=10,color="white",style="solid",shape="box"];2336 -> 3726[label="",style="solid", color="burlywood", weight=9]; 3726 -> 2435[label="",style="solid", color="burlywood", weight=3]; 2337[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2337 -> 2436[label="",style="solid", color="black", weight=3]; 2338[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2338 -> 2437[label="",style="solid", color="black", weight=3]; 2339[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2339 -> 2438[label="",style="solid", color="black", weight=3]; 2340[label="(vyw28000,vyw28001) <= vyw2900",fontsize=16,color="burlywood",shape="box"];3727[label="vyw2900/(vyw29000,vyw29001)",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3727[label="",style="solid", color="burlywood", weight=9]; 3727 -> 2439[label="",style="solid", color="burlywood", weight=3]; 2341[label="(vyw28000,vyw28001,vyw28002) <= vyw2900",fontsize=16,color="burlywood",shape="box"];3728[label="vyw2900/(vyw29000,vyw29001,vyw29002)",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3728[label="",style="solid", color="burlywood", weight=9]; 3728 -> 2440[label="",style="solid", color="burlywood", weight=3]; 2342[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2342 -> 2441[label="",style="solid", color="black", weight=3]; 2343[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2343 -> 2442[label="",style="solid", color="black", weight=3]; 2344[label="compare vyw2800 vyw2900 /= GT",fontsize=16,color="black",shape="box"];2344 -> 2443[label="",style="solid", color="black", weight=3]; 2345[label="compare0 (Just vyw82) (Just vyw83) otherwise",fontsize=16,color="black",shape="box"];2345 -> 2444[label="",style="solid", color="black", weight=3]; 2346[label="LT",fontsize=16,color="green",shape="box"];2347 -> 1905[label="",style="dashed", color="red", weight=0]; 2347[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2347 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2348[label="False",fontsize=16,color="green",shape="box"];2349[label="False",fontsize=16,color="green",shape="box"];2350[label="True",fontsize=16,color="green",shape="box"];2351[label="vyw302",fontsize=16,color="green",shape="box"];2352[label="vyw4002",fontsize=16,color="green",shape="box"];2353[label="vyw302",fontsize=16,color="green",shape="box"];2354[label="vyw4002",fontsize=16,color="green",shape="box"];2355[label="vyw302",fontsize=16,color="green",shape="box"];2356[label="vyw4002",fontsize=16,color="green",shape="box"];2357[label="vyw302",fontsize=16,color="green",shape="box"];2358[label="vyw4002",fontsize=16,color="green",shape="box"];2359[label="vyw302",fontsize=16,color="green",shape="box"];2360[label="vyw4002",fontsize=16,color="green",shape="box"];2361[label="vyw302",fontsize=16,color="green",shape="box"];2362[label="vyw4002",fontsize=16,color="green",shape="box"];2363[label="vyw302",fontsize=16,color="green",shape="box"];2364[label="vyw4002",fontsize=16,color="green",shape="box"];2365[label="vyw302",fontsize=16,color="green",shape="box"];2366[label="vyw4002",fontsize=16,color="green",shape="box"];2367[label="vyw302",fontsize=16,color="green",shape="box"];2368[label="vyw4002",fontsize=16,color="green",shape="box"];2369[label="vyw302",fontsize=16,color="green",shape="box"];2370[label="vyw4002",fontsize=16,color="green",shape="box"];2371[label="vyw302",fontsize=16,color="green",shape="box"];2372[label="vyw4002",fontsize=16,color="green",shape="box"];2373[label="vyw302",fontsize=16,color="green",shape="box"];2374[label="vyw4002",fontsize=16,color="green",shape="box"];2375[label="vyw302",fontsize=16,color="green",shape="box"];2376[label="vyw4002",fontsize=16,color="green",shape="box"];2377[label="vyw302",fontsize=16,color="green",shape="box"];2378[label="vyw4002",fontsize=16,color="green",shape="box"];2379[label="vyw301",fontsize=16,color="green",shape="box"];2380[label="vyw4001",fontsize=16,color="green",shape="box"];2381[label="vyw301",fontsize=16,color="green",shape="box"];2382[label="vyw4001",fontsize=16,color="green",shape="box"];2383[label="vyw301",fontsize=16,color="green",shape="box"];2384[label="vyw4001",fontsize=16,color="green",shape="box"];2385[label="vyw301",fontsize=16,color="green",shape="box"];2386[label="vyw4001",fontsize=16,color="green",shape="box"];2387[label="vyw301",fontsize=16,color="green",shape="box"];2388[label="vyw4001",fontsize=16,color="green",shape="box"];2389[label="vyw301",fontsize=16,color="green",shape="box"];2390[label="vyw4001",fontsize=16,color="green",shape="box"];2391[label="vyw301",fontsize=16,color="green",shape="box"];2392[label="vyw4001",fontsize=16,color="green",shape="box"];2393[label="vyw301",fontsize=16,color="green",shape="box"];2394[label="vyw4001",fontsize=16,color="green",shape="box"];2395[label="vyw301",fontsize=16,color="green",shape="box"];2396[label="vyw4001",fontsize=16,color="green",shape="box"];2397[label="vyw301",fontsize=16,color="green",shape="box"];2398[label="vyw4001",fontsize=16,color="green",shape="box"];2399[label="vyw301",fontsize=16,color="green",shape="box"];2400[label="vyw4001",fontsize=16,color="green",shape="box"];2401[label="vyw301",fontsize=16,color="green",shape="box"];2402[label="vyw4001",fontsize=16,color="green",shape="box"];2403[label="vyw301",fontsize=16,color="green",shape="box"];2404[label="vyw4001",fontsize=16,color="green",shape="box"];2405[label="vyw301",fontsize=16,color="green",shape="box"];2406[label="vyw4001",fontsize=16,color="green",shape="box"];2407[label="vyw40000",fontsize=16,color="green",shape="box"];2408[label="vyw3000",fontsize=16,color="green",shape="box"];2409[label="vyw40000",fontsize=16,color="green",shape="box"];2410[label="vyw3000",fontsize=16,color="green",shape="box"];2411[label="primMulInt (Pos vyw3000) vyw4001",fontsize=16,color="burlywood",shape="box"];3729[label="vyw4001/Pos vyw40010",fontsize=10,color="white",style="solid",shape="box"];2411 -> 3729[label="",style="solid", color="burlywood", weight=9]; 3729 -> 2447[label="",style="solid", color="burlywood", weight=3]; 3730[label="vyw4001/Neg vyw40010",fontsize=10,color="white",style="solid",shape="box"];2411 -> 3730[label="",style="solid", color="burlywood", weight=9]; 3730 -> 2448[label="",style="solid", color="burlywood", weight=3]; 2412[label="primMulInt (Neg vyw3000) vyw4001",fontsize=16,color="burlywood",shape="box"];3731[label="vyw4001/Pos vyw40010",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3731[label="",style="solid", color="burlywood", weight=9]; 3731 -> 2449[label="",style="solid", color="burlywood", weight=3]; 3732[label="vyw4001/Neg vyw40010",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3732[label="",style="solid", color="burlywood", weight=9]; 3732 -> 2450[label="",style="solid", color="burlywood", weight=3]; 1761 -> 1724[label="",style="dashed", color="red", weight=0]; 1761[label="vyw18 == vyw13",fontsize=16,color="magenta"];1761 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1725[label="",style="dashed", color="red", weight=0]; 1762[label="vyw18 == vyw13",fontsize=16,color="magenta"];1762 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1726[label="",style="dashed", color="red", weight=0]; 1763[label="vyw18 == vyw13",fontsize=16,color="magenta"];1763 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1727[label="",style="dashed", color="red", weight=0]; 1764[label="vyw18 == vyw13",fontsize=16,color="magenta"];1764 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1728[label="",style="dashed", color="red", weight=0]; 1765[label="vyw18 == vyw13",fontsize=16,color="magenta"];1765 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1729[label="",style="dashed", color="red", weight=0]; 1766[label="vyw18 == vyw13",fontsize=16,color="magenta"];1766 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1767 -> 46[label="",style="dashed", color="red", weight=0]; 1767[label="vyw18 == vyw13",fontsize=16,color="magenta"];1767 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1731[label="",style="dashed", color="red", weight=0]; 1768[label="vyw18 == vyw13",fontsize=16,color="magenta"];1768 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1732[label="",style="dashed", color="red", weight=0]; 1769[label="vyw18 == vyw13",fontsize=16,color="magenta"];1769 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1769 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1733[label="",style="dashed", color="red", weight=0]; 1770[label="vyw18 == vyw13",fontsize=16,color="magenta"];1770 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1771 -> 1734[label="",style="dashed", color="red", weight=0]; 1771[label="vyw18 == vyw13",fontsize=16,color="magenta"];1771 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1771 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1735[label="",style="dashed", color="red", weight=0]; 1772[label="vyw18 == vyw13",fontsize=16,color="magenta"];1772 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1736[label="",style="dashed", color="red", weight=0]; 1773[label="vyw18 == vyw13",fontsize=16,color="magenta"];1773 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1737[label="",style="dashed", color="red", weight=0]; 1774[label="vyw18 == vyw13",fontsize=16,color="magenta"];1774 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1830[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2451[label="",style="dashed", color="red", weight=0]; 2413[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2413 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2451[label="",style="dashed", color="red", weight=0]; 2414[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2414 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2415[label="Left vyw28000 <= Left vyw29000",fontsize=16,color="black",shape="box"];2415 -> 2460[label="",style="solid", color="black", weight=3]; 2416[label="Left vyw28000 <= Right vyw29000",fontsize=16,color="black",shape="box"];2416 -> 2461[label="",style="solid", color="black", weight=3]; 2417[label="Right vyw28000 <= Left vyw29000",fontsize=16,color="black",shape="box"];2417 -> 2462[label="",style="solid", color="black", weight=3]; 2418[label="Right vyw28000 <= Right vyw29000",fontsize=16,color="black",shape="box"];2418 -> 2463[label="",style="solid", color="black", weight=3]; 2419[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2419 -> 2464[label="",style="solid", color="black", weight=3]; 2420[label="Nothing <= Just vyw29000",fontsize=16,color="black",shape="box"];2420 -> 2465[label="",style="solid", color="black", weight=3]; 2421[label="Just vyw28000 <= Nothing",fontsize=16,color="black",shape="box"];2421 -> 2466[label="",style="solid", color="black", weight=3]; 2422[label="Just vyw28000 <= Just vyw29000",fontsize=16,color="black",shape="box"];2422 -> 2467[label="",style="solid", color="black", weight=3]; 2423[label="LT <= LT",fontsize=16,color="black",shape="box"];2423 -> 2468[label="",style="solid", color="black", weight=3]; 2424[label="LT <= EQ",fontsize=16,color="black",shape="box"];2424 -> 2469[label="",style="solid", color="black", weight=3]; 2425[label="LT <= GT",fontsize=16,color="black",shape="box"];2425 -> 2470[label="",style="solid", color="black", weight=3]; 2426[label="EQ <= LT",fontsize=16,color="black",shape="box"];2426 -> 2471[label="",style="solid", color="black", weight=3]; 2427[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2427 -> 2472[label="",style="solid", color="black", weight=3]; 2428[label="EQ <= GT",fontsize=16,color="black",shape="box"];2428 -> 2473[label="",style="solid", color="black", weight=3]; 2429[label="GT <= LT",fontsize=16,color="black",shape="box"];2429 -> 2474[label="",style="solid", color="black", weight=3]; 2430[label="GT <= EQ",fontsize=16,color="black",shape="box"];2430 -> 2475[label="",style="solid", color="black", weight=3]; 2431[label="GT <= GT",fontsize=16,color="black",shape="box"];2431 -> 2476[label="",style="solid", color="black", weight=3]; 2432[label="False <= False",fontsize=16,color="black",shape="box"];2432 -> 2477[label="",style="solid", color="black", weight=3]; 2433[label="False <= True",fontsize=16,color="black",shape="box"];2433 -> 2478[label="",style="solid", color="black", weight=3]; 2434[label="True <= False",fontsize=16,color="black",shape="box"];2434 -> 2479[label="",style="solid", color="black", weight=3]; 2435[label="True <= True",fontsize=16,color="black",shape="box"];2435 -> 2480[label="",style="solid", color="black", weight=3]; 2436 -> 2451[label="",style="dashed", color="red", weight=0]; 2436[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2436 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2451[label="",style="dashed", color="red", weight=0]; 2437[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2437 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2451[label="",style="dashed", color="red", weight=0]; 2438[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2438 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2439[label="(vyw28000,vyw28001) <= (vyw29000,vyw29001)",fontsize=16,color="black",shape="box"];2439 -> 2481[label="",style="solid", color="black", weight=3]; 2440[label="(vyw28000,vyw28001,vyw28002) <= (vyw29000,vyw29001,vyw29002)",fontsize=16,color="black",shape="box"];2440 -> 2482[label="",style="solid", color="black", weight=3]; 2441 -> 2451[label="",style="dashed", color="red", weight=0]; 2441[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2441 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2451[label="",style="dashed", color="red", weight=0]; 2442[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2442 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2451[label="",style="dashed", color="red", weight=0]; 2443[label="not (compare vyw2800 vyw2900 == GT)",fontsize=16,color="magenta"];2443 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2444[label="compare0 (Just vyw82) (Just vyw83) True",fontsize=16,color="black",shape="box"];2444 -> 2483[label="",style="solid", color="black", weight=3]; 2445[label="vyw40000",fontsize=16,color="green",shape="box"];2446[label="vyw3000",fontsize=16,color="green",shape="box"];2447[label="primMulInt (Pos vyw3000) (Pos vyw40010)",fontsize=16,color="black",shape="box"];2447 -> 2484[label="",style="solid", color="black", weight=3]; 2448[label="primMulInt (Pos vyw3000) (Neg vyw40010)",fontsize=16,color="black",shape="box"];2448 -> 2485[label="",style="solid", color="black", weight=3]; 2449[label="primMulInt (Neg vyw3000) (Pos vyw40010)",fontsize=16,color="black",shape="box"];2449 -> 2486[label="",style="solid", color="black", weight=3]; 2450[label="primMulInt (Neg vyw3000) (Neg vyw40010)",fontsize=16,color="black",shape="box"];2450 -> 2487[label="",style="solid", color="black", weight=3]; 1803[label="vyw18",fontsize=16,color="green",shape="box"];1804[label="vyw13",fontsize=16,color="green",shape="box"];1805[label="vyw18",fontsize=16,color="green",shape="box"];1806[label="vyw13",fontsize=16,color="green",shape="box"];1807[label="vyw18",fontsize=16,color="green",shape="box"];1808[label="vyw13",fontsize=16,color="green",shape="box"];1809[label="vyw18",fontsize=16,color="green",shape="box"];1810[label="vyw13",fontsize=16,color="green",shape="box"];1811[label="vyw18",fontsize=16,color="green",shape="box"];1812[label="vyw13",fontsize=16,color="green",shape="box"];1813[label="vyw18",fontsize=16,color="green",shape="box"];1814[label="vyw13",fontsize=16,color="green",shape="box"];1815[label="vyw18",fontsize=16,color="green",shape="box"];1816[label="vyw13",fontsize=16,color="green",shape="box"];1817[label="vyw18",fontsize=16,color="green",shape="box"];1818[label="vyw13",fontsize=16,color="green",shape="box"];1819[label="vyw18",fontsize=16,color="green",shape="box"];1820[label="vyw13",fontsize=16,color="green",shape="box"];1821[label="vyw18",fontsize=16,color="green",shape="box"];1822[label="vyw13",fontsize=16,color="green",shape="box"];1823[label="vyw18",fontsize=16,color="green",shape="box"];1824[label="vyw13",fontsize=16,color="green",shape="box"];1825[label="vyw18",fontsize=16,color="green",shape="box"];1826[label="vyw13",fontsize=16,color="green",shape="box"];1827[label="vyw18",fontsize=16,color="green",shape="box"];1828[label="vyw13",fontsize=16,color="green",shape="box"];1829[label="vyw18",fontsize=16,color="green",shape="box"];1830[label="vyw13",fontsize=16,color="green",shape="box"];2452 -> 46[label="",style="dashed", color="red", weight=0]; 2452[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2452 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2451[label="not vyw90",fontsize=16,color="burlywood",shape="triangle"];3733[label="vyw90/False",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3733[label="",style="solid", color="burlywood", weight=9]; 3733 -> 2490[label="",style="solid", color="burlywood", weight=3]; 3734[label="vyw90/True",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3734[label="",style="solid", color="burlywood", weight=9]; 3734 -> 2491[label="",style="solid", color="burlywood", weight=3]; 2453 -> 46[label="",style="dashed", color="red", weight=0]; 2453[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2453 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2460[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3735[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 2506[label="",style="solid", color="blue", weight=3]; 3736[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 2507[label="",style="solid", color="blue", weight=3]; 3737[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 2508[label="",style="solid", color="blue", weight=3]; 3738[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 2509[label="",style="solid", color="blue", weight=3]; 3739[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 2510[label="",style="solid", color="blue", weight=3]; 3740[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 2511[label="",style="solid", color="blue", weight=3]; 3741[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 2512[label="",style="solid", color="blue", weight=3]; 3742[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 2513[label="",style="solid", color="blue", weight=3]; 3743[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 2514[label="",style="solid", color="blue", weight=3]; 3744[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 2515[label="",style="solid", color="blue", weight=3]; 3745[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 2516[label="",style="solid", color="blue", weight=3]; 3746[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 2517[label="",style="solid", color="blue", weight=3]; 3747[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 2518[label="",style="solid", color="blue", weight=3]; 3748[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 2519[label="",style="solid", color="blue", weight=3]; 2461[label="True",fontsize=16,color="green",shape="box"];2462[label="False",fontsize=16,color="green",shape="box"];2463[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3749[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 2520[label="",style="solid", color="blue", weight=3]; 3750[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 2521[label="",style="solid", color="blue", weight=3]; 3751[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 2522[label="",style="solid", color="blue", weight=3]; 3752[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 2523[label="",style="solid", color="blue", weight=3]; 3753[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 2524[label="",style="solid", color="blue", weight=3]; 3754[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 2525[label="",style="solid", color="blue", weight=3]; 3755[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 2526[label="",style="solid", color="blue", weight=3]; 3756[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 2527[label="",style="solid", color="blue", weight=3]; 3757[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3757[label="",style="solid", color="blue", weight=9]; 3757 -> 2528[label="",style="solid", color="blue", weight=3]; 3758[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3758[label="",style="solid", color="blue", weight=9]; 3758 -> 2529[label="",style="solid", color="blue", weight=3]; 3759[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3759[label="",style="solid", color="blue", weight=9]; 3759 -> 2530[label="",style="solid", color="blue", weight=3]; 3760[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3760[label="",style="solid", color="blue", weight=9]; 3760 -> 2531[label="",style="solid", color="blue", weight=3]; 3761[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3761[label="",style="solid", color="blue", weight=9]; 3761 -> 2532[label="",style="solid", color="blue", weight=3]; 3762[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2463 -> 3762[label="",style="solid", color="blue", weight=9]; 3762 -> 2533[label="",style="solid", color="blue", weight=3]; 2464[label="True",fontsize=16,color="green",shape="box"];2465[label="True",fontsize=16,color="green",shape="box"];2466[label="False",fontsize=16,color="green",shape="box"];2467[label="vyw28000 <= vyw29000",fontsize=16,color="blue",shape="box"];3763[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3763[label="",style="solid", color="blue", weight=9]; 3763 -> 2534[label="",style="solid", color="blue", weight=3]; 3764[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3764[label="",style="solid", color="blue", weight=9]; 3764 -> 2535[label="",style="solid", color="blue", weight=3]; 3765[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3765[label="",style="solid", color="blue", weight=9]; 3765 -> 2536[label="",style="solid", color="blue", weight=3]; 3766[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3766[label="",style="solid", color="blue", weight=9]; 3766 -> 2537[label="",style="solid", color="blue", weight=3]; 3767[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3767[label="",style="solid", color="blue", weight=9]; 3767 -> 2538[label="",style="solid", color="blue", weight=3]; 3768[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3768[label="",style="solid", color="blue", weight=9]; 3768 -> 2539[label="",style="solid", color="blue", weight=3]; 3769[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3769[label="",style="solid", color="blue", weight=9]; 3769 -> 2540[label="",style="solid", color="blue", weight=3]; 3770[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3770[label="",style="solid", color="blue", weight=9]; 3770 -> 2541[label="",style="solid", color="blue", weight=3]; 3771[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3771[label="",style="solid", color="blue", weight=9]; 3771 -> 2542[label="",style="solid", color="blue", weight=3]; 3772[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 2543[label="",style="solid", color="blue", weight=3]; 3773[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 2544[label="",style="solid", color="blue", weight=3]; 3774[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 2545[label="",style="solid", color="blue", weight=3]; 3775[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 2546[label="",style="solid", color="blue", weight=3]; 3776[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2467 -> 3776[label="",style="solid", color="blue", weight=9]; 3776 -> 2547[label="",style="solid", color="blue", weight=3]; 2468[label="True",fontsize=16,color="green",shape="box"];2469[label="True",fontsize=16,color="green",shape="box"];2470[label="True",fontsize=16,color="green",shape="box"];2471[label="False",fontsize=16,color="green",shape="box"];2472[label="True",fontsize=16,color="green",shape="box"];2473[label="True",fontsize=16,color="green",shape="box"];2474[label="False",fontsize=16,color="green",shape="box"];2475[label="False",fontsize=16,color="green",shape="box"];2476[label="True",fontsize=16,color="green",shape="box"];2477[label="True",fontsize=16,color="green",shape="box"];2478[label="True",fontsize=16,color="green",shape="box"];2479[label="False",fontsize=16,color="green",shape="box"];2480[label="True",fontsize=16,color="green",shape="box"];2454 -> 46[label="",style="dashed", color="red", weight=0]; 2454[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2454 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2455 -> 46[label="",style="dashed", color="red", weight=0]; 2455[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2455 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2456 -> 46[label="",style="dashed", color="red", weight=0]; 2456[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2456 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2650[label="",style="dashed", color="red", weight=0]; 2481[label="vyw28000 < vyw29000 || vyw28000 == vyw29000 && vyw28001 <= vyw29001",fontsize=16,color="magenta"];2481 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2650[label="",style="dashed", color="red", weight=0]; 2482[label="vyw28000 < vyw29000 || vyw28000 == vyw29000 && (vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002)",fontsize=16,color="magenta"];2482 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2457 -> 46[label="",style="dashed", color="red", weight=0]; 2457[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2457 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2458 -> 46[label="",style="dashed", color="red", weight=0]; 2458[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2458 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2459 -> 46[label="",style="dashed", color="red", weight=0]; 2459[label="compare vyw2800 vyw2900 == GT",fontsize=16,color="magenta"];2459 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2483[label="GT",fontsize=16,color="green",shape="box"];2484[label="Pos (primMulNat vyw3000 vyw40010)",fontsize=16,color="green",shape="box"];2484 -> 2553[label="",style="dashed", color="green", weight=3]; 2485[label="Neg (primMulNat vyw3000 vyw40010)",fontsize=16,color="green",shape="box"];2485 -> 2554[label="",style="dashed", color="green", weight=3]; 2486[label="Neg (primMulNat vyw3000 vyw40010)",fontsize=16,color="green",shape="box"];2486 -> 2555[label="",style="dashed", color="green", weight=3]; 2487[label="Pos (primMulNat vyw3000 vyw40010)",fontsize=16,color="green",shape="box"];2487 -> 2556[label="",style="dashed", color="green", weight=3]; 2488[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3777[label="vyw2800/vyw28000 :% vyw28001",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3777[label="",style="solid", color="burlywood", weight=9]; 3777 -> 2557[label="",style="solid", color="burlywood", weight=3]; 2489[label="GT",fontsize=16,color="green",shape="box"];2490[label="not False",fontsize=16,color="black",shape="box"];2490 -> 2558[label="",style="solid", color="black", weight=3]; 2491[label="not True",fontsize=16,color="black",shape="box"];2491 -> 2559[label="",style="solid", color="black", weight=3]; 2492[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3778[label="vyw2800/()",fontsize=10,color="white",style="solid",shape="box"];2492 -> 3778[label="",style="solid", color="burlywood", weight=9]; 3778 -> 2560[label="",style="solid", color="burlywood", weight=3]; 2493[label="GT",fontsize=16,color="green",shape="box"];2506 -> 2136[label="",style="dashed", color="red", weight=0]; 2506[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2506 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2506 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2137[label="",style="dashed", color="red", weight=0]; 2507[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2507 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2138[label="",style="dashed", color="red", weight=0]; 2508[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2508 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2139[label="",style="dashed", color="red", weight=0]; 2509[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2509 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2140[label="",style="dashed", color="red", weight=0]; 2510[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2510 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2141[label="",style="dashed", color="red", weight=0]; 2511[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2511 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2142[label="",style="dashed", color="red", weight=0]; 2512[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2512 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2143[label="",style="dashed", color="red", weight=0]; 2513[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2513 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2144[label="",style="dashed", color="red", weight=0]; 2514[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2514 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2145[label="",style="dashed", color="red", weight=0]; 2515[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2515 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2146[label="",style="dashed", color="red", weight=0]; 2516[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2516 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2147[label="",style="dashed", color="red", weight=0]; 2517[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2517 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2148[label="",style="dashed", color="red", weight=0]; 2518[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2518 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2149[label="",style="dashed", color="red", weight=0]; 2519[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2519 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2136[label="",style="dashed", color="red", weight=0]; 2520[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2520 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2137[label="",style="dashed", color="red", weight=0]; 2521[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2521 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2138[label="",style="dashed", color="red", weight=0]; 2522[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2522 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2139[label="",style="dashed", color="red", weight=0]; 2523[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2523 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2140[label="",style="dashed", color="red", weight=0]; 2524[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2524 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2141[label="",style="dashed", color="red", weight=0]; 2525[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2525 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2142[label="",style="dashed", color="red", weight=0]; 2526[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2526 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2143[label="",style="dashed", color="red", weight=0]; 2527[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2527 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2144[label="",style="dashed", color="red", weight=0]; 2528[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2528 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2145[label="",style="dashed", color="red", weight=0]; 2529[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2529 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2146[label="",style="dashed", color="red", weight=0]; 2530[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2530 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2147[label="",style="dashed", color="red", weight=0]; 2531[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2531 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2148[label="",style="dashed", color="red", weight=0]; 2532[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2532 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2149[label="",style="dashed", color="red", weight=0]; 2533[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2533 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2136[label="",style="dashed", color="red", weight=0]; 2534[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2534 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2137[label="",style="dashed", color="red", weight=0]; 2535[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2535 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2138[label="",style="dashed", color="red", weight=0]; 2536[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2536 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2139[label="",style="dashed", color="red", weight=0]; 2537[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2537 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2140[label="",style="dashed", color="red", weight=0]; 2538[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2538 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2141[label="",style="dashed", color="red", weight=0]; 2539[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2539 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2142[label="",style="dashed", color="red", weight=0]; 2540[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2540 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2143[label="",style="dashed", color="red", weight=0]; 2541[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2541 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2144[label="",style="dashed", color="red", weight=0]; 2542[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2542 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2145[label="",style="dashed", color="red", weight=0]; 2543[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2543 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2146[label="",style="dashed", color="red", weight=0]; 2544[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2544 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2147[label="",style="dashed", color="red", weight=0]; 2545[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2545 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2148[label="",style="dashed", color="red", weight=0]; 2546[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2546 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2149[label="",style="dashed", color="red", weight=0]; 2547[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];2547 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2494[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2494 -> 2645[label="",style="solid", color="black", weight=3]; 2495[label="GT",fontsize=16,color="green",shape="box"];2496[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2496 -> 2646[label="",style="solid", color="black", weight=3]; 2497[label="GT",fontsize=16,color="green",shape="box"];2498[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3779[label="vyw2800/Integer vyw28000",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 2647[label="",style="solid", color="burlywood", weight=3]; 2499[label="GT",fontsize=16,color="green",shape="box"];2651 -> 1952[label="",style="dashed", color="red", weight=0]; 2651[label="vyw28000 == vyw29000 && vyw28001 <= vyw29001",fontsize=16,color="magenta"];2651 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2652[label="vyw28000 < vyw29000",fontsize=16,color="blue",shape="box"];3780[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 2659[label="",style="solid", color="blue", weight=3]; 3781[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 2660[label="",style="solid", color="blue", weight=3]; 3782[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 2661[label="",style="solid", color="blue", weight=3]; 3783[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 2662[label="",style="solid", color="blue", weight=3]; 3784[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 2663[label="",style="solid", color="blue", weight=3]; 3785[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 2664[label="",style="solid", color="blue", weight=3]; 3786[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 2665[label="",style="solid", color="blue", weight=3]; 3787[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3787[label="",style="solid", color="blue", weight=9]; 3787 -> 2666[label="",style="solid", color="blue", weight=3]; 3788[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3788[label="",style="solid", color="blue", weight=9]; 3788 -> 2667[label="",style="solid", color="blue", weight=3]; 3789[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3789[label="",style="solid", color="blue", weight=9]; 3789 -> 2668[label="",style="solid", color="blue", weight=3]; 3790[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 2669[label="",style="solid", color="blue", weight=3]; 3791[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 2670[label="",style="solid", color="blue", weight=3]; 3792[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 2671[label="",style="solid", color="blue", weight=3]; 3793[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2652 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 2672[label="",style="solid", color="blue", weight=3]; 2650[label="vyw95 || vyw96",fontsize=16,color="burlywood",shape="triangle"];3794[label="vyw95/False",fontsize=10,color="white",style="solid",shape="box"];2650 -> 3794[label="",style="solid", color="burlywood", weight=9]; 3794 -> 2673[label="",style="solid", color="burlywood", weight=3]; 3795[label="vyw95/True",fontsize=10,color="white",style="solid",shape="box"];2650 -> 3795[label="",style="solid", color="burlywood", weight=9]; 3795 -> 2674[label="",style="solid", color="burlywood", weight=3]; 2653 -> 1952[label="",style="dashed", color="red", weight=0]; 2653[label="vyw28000 == vyw29000 && (vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002)",fontsize=16,color="magenta"];2653 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2654[label="vyw28000 < vyw29000",fontsize=16,color="blue",shape="box"];3796[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 2677[label="",style="solid", color="blue", weight=3]; 3797[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3797[label="",style="solid", color="blue", weight=9]; 3797 -> 2678[label="",style="solid", color="blue", weight=3]; 3798[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3798[label="",style="solid", color="blue", weight=9]; 3798 -> 2679[label="",style="solid", color="blue", weight=3]; 3799[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3799[label="",style="solid", color="blue", weight=9]; 3799 -> 2680[label="",style="solid", color="blue", weight=3]; 3800[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3800[label="",style="solid", color="blue", weight=9]; 3800 -> 2681[label="",style="solid", color="blue", weight=3]; 3801[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 2682[label="",style="solid", color="blue", weight=3]; 3802[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 2683[label="",style="solid", color="blue", weight=3]; 3803[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 2684[label="",style="solid", color="blue", weight=3]; 3804[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3804[label="",style="solid", color="blue", weight=9]; 3804 -> 2685[label="",style="solid", color="blue", weight=3]; 3805[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3805[label="",style="solid", color="blue", weight=9]; 3805 -> 2686[label="",style="solid", color="blue", weight=3]; 3806[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3806[label="",style="solid", color="blue", weight=9]; 3806 -> 2687[label="",style="solid", color="blue", weight=3]; 3807[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3807[label="",style="solid", color="blue", weight=9]; 3807 -> 2688[label="",style="solid", color="blue", weight=3]; 3808[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3808[label="",style="solid", color="blue", weight=9]; 3808 -> 2689[label="",style="solid", color="blue", weight=3]; 3809[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 3809[label="",style="solid", color="blue", weight=9]; 3809 -> 2690[label="",style="solid", color="blue", weight=3]; 2500[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2500 -> 2691[label="",style="solid", color="black", weight=3]; 2501[label="GT",fontsize=16,color="green",shape="box"];2502[label="compare vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3810[label="vyw2800/vyw28000 : vyw28001",fontsize=10,color="white",style="solid",shape="box"];2502 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 2692[label="",style="solid", color="burlywood", weight=3]; 3811[label="vyw2800/[]",fontsize=10,color="white",style="solid",shape="box"];2502 -> 3811[label="",style="solid", color="burlywood", weight=9]; 3811 -> 2693[label="",style="solid", color="burlywood", weight=3]; 2503[label="GT",fontsize=16,color="green",shape="box"];2504[label="compare vyw2800 vyw2900",fontsize=16,color="black",shape="triangle"];2504 -> 2694[label="",style="solid", color="black", weight=3]; 2505[label="GT",fontsize=16,color="green",shape="box"];2553[label="primMulNat vyw3000 vyw40010",fontsize=16,color="burlywood",shape="triangle"];3812[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2553 -> 3812[label="",style="solid", color="burlywood", weight=9]; 3812 -> 2695[label="",style="solid", color="burlywood", weight=3]; 3813[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2553 -> 3813[label="",style="solid", color="burlywood", weight=9]; 3813 -> 2696[label="",style="solid", color="burlywood", weight=3]; 2554 -> 2553[label="",style="dashed", color="red", weight=0]; 2554[label="primMulNat vyw3000 vyw40010",fontsize=16,color="magenta"];2554 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2553[label="",style="dashed", color="red", weight=0]; 2555[label="primMulNat vyw3000 vyw40010",fontsize=16,color="magenta"];2555 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2553[label="",style="dashed", color="red", weight=0]; 2556[label="primMulNat vyw3000 vyw40010",fontsize=16,color="magenta"];2556 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2557[label="compare (vyw28000 :% vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3814[label="vyw2900/vyw29000 :% vyw29001",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3814[label="",style="solid", color="burlywood", weight=9]; 3814 -> 2701[label="",style="solid", color="burlywood", weight=3]; 2558[label="True",fontsize=16,color="green",shape="box"];2559[label="False",fontsize=16,color="green",shape="box"];2560[label="compare () vyw2900",fontsize=16,color="burlywood",shape="box"];3815[label="vyw2900/()",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3815[label="",style="solid", color="burlywood", weight=9]; 3815 -> 2702[label="",style="solid", color="burlywood", weight=3]; 2561[label="vyw28000",fontsize=16,color="green",shape="box"];2562[label="vyw29000",fontsize=16,color="green",shape="box"];2563[label="vyw28000",fontsize=16,color="green",shape="box"];2564[label="vyw29000",fontsize=16,color="green",shape="box"];2565[label="vyw28000",fontsize=16,color="green",shape="box"];2566[label="vyw29000",fontsize=16,color="green",shape="box"];2567[label="vyw28000",fontsize=16,color="green",shape="box"];2568[label="vyw29000",fontsize=16,color="green",shape="box"];2569[label="vyw28000",fontsize=16,color="green",shape="box"];2570[label="vyw29000",fontsize=16,color="green",shape="box"];2571[label="vyw28000",fontsize=16,color="green",shape="box"];2572[label="vyw29000",fontsize=16,color="green",shape="box"];2573[label="vyw28000",fontsize=16,color="green",shape="box"];2574[label="vyw29000",fontsize=16,color="green",shape="box"];2575[label="vyw28000",fontsize=16,color="green",shape="box"];2576[label="vyw29000",fontsize=16,color="green",shape="box"];2577[label="vyw28000",fontsize=16,color="green",shape="box"];2578[label="vyw29000",fontsize=16,color="green",shape="box"];2579[label="vyw28000",fontsize=16,color="green",shape="box"];2580[label="vyw29000",fontsize=16,color="green",shape="box"];2581[label="vyw28000",fontsize=16,color="green",shape="box"];2582[label="vyw29000",fontsize=16,color="green",shape="box"];2583[label="vyw28000",fontsize=16,color="green",shape="box"];2584[label="vyw29000",fontsize=16,color="green",shape="box"];2585[label="vyw28000",fontsize=16,color="green",shape="box"];2586[label="vyw29000",fontsize=16,color="green",shape="box"];2587[label="vyw28000",fontsize=16,color="green",shape="box"];2588[label="vyw29000",fontsize=16,color="green",shape="box"];2589[label="vyw28000",fontsize=16,color="green",shape="box"];2590[label="vyw29000",fontsize=16,color="green",shape="box"];2591[label="vyw28000",fontsize=16,color="green",shape="box"];2592[label="vyw29000",fontsize=16,color="green",shape="box"];2593[label="vyw28000",fontsize=16,color="green",shape="box"];2594[label="vyw29000",fontsize=16,color="green",shape="box"];2595[label="vyw28000",fontsize=16,color="green",shape="box"];2596[label="vyw29000",fontsize=16,color="green",shape="box"];2597[label="vyw28000",fontsize=16,color="green",shape="box"];2598[label="vyw29000",fontsize=16,color="green",shape="box"];2599[label="vyw28000",fontsize=16,color="green",shape="box"];2600[label="vyw29000",fontsize=16,color="green",shape="box"];2601[label="vyw28000",fontsize=16,color="green",shape="box"];2602[label="vyw29000",fontsize=16,color="green",shape="box"];2603[label="vyw28000",fontsize=16,color="green",shape="box"];2604[label="vyw29000",fontsize=16,color="green",shape="box"];2605[label="vyw28000",fontsize=16,color="green",shape="box"];2606[label="vyw29000",fontsize=16,color="green",shape="box"];2607[label="vyw28000",fontsize=16,color="green",shape="box"];2608[label="vyw29000",fontsize=16,color="green",shape="box"];2609[label="vyw28000",fontsize=16,color="green",shape="box"];2610[label="vyw29000",fontsize=16,color="green",shape="box"];2611[label="vyw28000",fontsize=16,color="green",shape="box"];2612[label="vyw29000",fontsize=16,color="green",shape="box"];2613[label="vyw28000",fontsize=16,color="green",shape="box"];2614[label="vyw29000",fontsize=16,color="green",shape="box"];2615[label="vyw28000",fontsize=16,color="green",shape="box"];2616[label="vyw29000",fontsize=16,color="green",shape="box"];2617[label="vyw28000",fontsize=16,color="green",shape="box"];2618[label="vyw29000",fontsize=16,color="green",shape="box"];2619[label="vyw28000",fontsize=16,color="green",shape="box"];2620[label="vyw29000",fontsize=16,color="green",shape="box"];2621[label="vyw28000",fontsize=16,color="green",shape="box"];2622[label="vyw29000",fontsize=16,color="green",shape="box"];2623[label="vyw28000",fontsize=16,color="green",shape="box"];2624[label="vyw29000",fontsize=16,color="green",shape="box"];2625[label="vyw28000",fontsize=16,color="green",shape="box"];2626[label="vyw29000",fontsize=16,color="green",shape="box"];2627[label="vyw28000",fontsize=16,color="green",shape="box"];2628[label="vyw29000",fontsize=16,color="green",shape="box"];2629[label="vyw28000",fontsize=16,color="green",shape="box"];2630[label="vyw29000",fontsize=16,color="green",shape="box"];2631[label="vyw28000",fontsize=16,color="green",shape="box"];2632[label="vyw29000",fontsize=16,color="green",shape="box"];2633[label="vyw28000",fontsize=16,color="green",shape="box"];2634[label="vyw29000",fontsize=16,color="green",shape="box"];2635[label="vyw28000",fontsize=16,color="green",shape="box"];2636[label="vyw29000",fontsize=16,color="green",shape="box"];2637[label="vyw28000",fontsize=16,color="green",shape="box"];2638[label="vyw29000",fontsize=16,color="green",shape="box"];2639[label="vyw28000",fontsize=16,color="green",shape="box"];2640[label="vyw29000",fontsize=16,color="green",shape="box"];2641[label="vyw28000",fontsize=16,color="green",shape="box"];2642[label="vyw29000",fontsize=16,color="green",shape="box"];2643[label="vyw28000",fontsize=16,color="green",shape="box"];2644[label="vyw29000",fontsize=16,color="green",shape="box"];2645[label="primCmpDouble vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3816[label="vyw2800/Double vyw28000 vyw28001",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3816[label="",style="solid", color="burlywood", weight=9]; 3816 -> 2703[label="",style="solid", color="burlywood", weight=3]; 2646[label="primCmpChar vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3817[label="vyw2800/Char vyw28000",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3817[label="",style="solid", color="burlywood", weight=9]; 3817 -> 2704[label="",style="solid", color="burlywood", weight=3]; 2647[label="compare (Integer vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3818[label="vyw2900/Integer vyw29000",fontsize=10,color="white",style="solid",shape="box"];2647 -> 3818[label="",style="solid", color="burlywood", weight=9]; 3818 -> 2705[label="",style="solid", color="burlywood", weight=3]; 2657[label="vyw28001 <= vyw29001",fontsize=16,color="blue",shape="box"];3819[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3819[label="",style="solid", color="blue", weight=9]; 3819 -> 2706[label="",style="solid", color="blue", weight=3]; 3820[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3820[label="",style="solid", color="blue", weight=9]; 3820 -> 2707[label="",style="solid", color="blue", weight=3]; 3821[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 2708[label="",style="solid", color="blue", weight=3]; 3822[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 2709[label="",style="solid", color="blue", weight=3]; 3823[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3823[label="",style="solid", color="blue", weight=9]; 3823 -> 2710[label="",style="solid", color="blue", weight=3]; 3824[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3824[label="",style="solid", color="blue", weight=9]; 3824 -> 2711[label="",style="solid", color="blue", weight=3]; 3825[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3825[label="",style="solid", color="blue", weight=9]; 3825 -> 2712[label="",style="solid", color="blue", weight=3]; 3826[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3826[label="",style="solid", color="blue", weight=9]; 3826 -> 2713[label="",style="solid", color="blue", weight=3]; 3827[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3827[label="",style="solid", color="blue", weight=9]; 3827 -> 2714[label="",style="solid", color="blue", weight=3]; 3828[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3828[label="",style="solid", color="blue", weight=9]; 3828 -> 2715[label="",style="solid", color="blue", weight=3]; 3829[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3829[label="",style="solid", color="blue", weight=9]; 3829 -> 2716[label="",style="solid", color="blue", weight=3]; 3830[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3830[label="",style="solid", color="blue", weight=9]; 3830 -> 2717[label="",style="solid", color="blue", weight=3]; 3831[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3831[label="",style="solid", color="blue", weight=9]; 3831 -> 2718[label="",style="solid", color="blue", weight=3]; 3832[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2657 -> 3832[label="",style="solid", color="blue", weight=9]; 3832 -> 2719[label="",style="solid", color="blue", weight=3]; 2658[label="vyw28000 == vyw29000",fontsize=16,color="blue",shape="box"];3833[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3833[label="",style="solid", color="blue", weight=9]; 3833 -> 2720[label="",style="solid", color="blue", weight=3]; 3834[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3834[label="",style="solid", color="blue", weight=9]; 3834 -> 2721[label="",style="solid", color="blue", weight=3]; 3835[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3835[label="",style="solid", color="blue", weight=9]; 3835 -> 2722[label="",style="solid", color="blue", weight=3]; 3836[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3836[label="",style="solid", color="blue", weight=9]; 3836 -> 2723[label="",style="solid", color="blue", weight=3]; 3837[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3837[label="",style="solid", color="blue", weight=9]; 3837 -> 2724[label="",style="solid", color="blue", weight=3]; 3838[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3838[label="",style="solid", color="blue", weight=9]; 3838 -> 2725[label="",style="solid", color="blue", weight=3]; 3839[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3839[label="",style="solid", color="blue", weight=9]; 3839 -> 2726[label="",style="solid", color="blue", weight=3]; 3840[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 2727[label="",style="solid", color="blue", weight=3]; 3841[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 2728[label="",style="solid", color="blue", weight=3]; 3842[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 2729[label="",style="solid", color="blue", weight=3]; 3843[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 2730[label="",style="solid", color="blue", weight=3]; 3844[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 2731[label="",style="solid", color="blue", weight=3]; 3845[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3845[label="",style="solid", color="blue", weight=9]; 3845 -> 2732[label="",style="solid", color="blue", weight=3]; 3846[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3846[label="",style="solid", color="blue", weight=9]; 3846 -> 2733[label="",style="solid", color="blue", weight=3]; 2659[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2659 -> 2734[label="",style="solid", color="black", weight=3]; 2660[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2660 -> 2735[label="",style="solid", color="black", weight=3]; 2661[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2661 -> 2736[label="",style="solid", color="black", weight=3]; 2662[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2662 -> 2737[label="",style="solid", color="black", weight=3]; 2663[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2663 -> 2738[label="",style="solid", color="black", weight=3]; 2664[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2664 -> 2739[label="",style="solid", color="black", weight=3]; 2665[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2665 -> 2740[label="",style="solid", color="black", weight=3]; 2666[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2666 -> 2741[label="",style="solid", color="black", weight=3]; 2667[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2667 -> 2742[label="",style="solid", color="black", weight=3]; 2668[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2668 -> 2743[label="",style="solid", color="black", weight=3]; 2669[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2669 -> 2744[label="",style="solid", color="black", weight=3]; 2670[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2670 -> 2745[label="",style="solid", color="black", weight=3]; 2671[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2671 -> 2746[label="",style="solid", color="black", weight=3]; 2672[label="vyw28000 < vyw29000",fontsize=16,color="black",shape="triangle"];2672 -> 2747[label="",style="solid", color="black", weight=3]; 2673[label="False || vyw96",fontsize=16,color="black",shape="box"];2673 -> 2748[label="",style="solid", color="black", weight=3]; 2674[label="True || vyw96",fontsize=16,color="black",shape="box"];2674 -> 2749[label="",style="solid", color="black", weight=3]; 2675 -> 2650[label="",style="dashed", color="red", weight=0]; 2675[label="vyw28001 < vyw29001 || vyw28001 == vyw29001 && vyw28002 <= vyw29002",fontsize=16,color="magenta"];2675 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2676[label="vyw28000 == vyw29000",fontsize=16,color="blue",shape="box"];3847[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3847[label="",style="solid", color="blue", weight=9]; 3847 -> 2752[label="",style="solid", color="blue", weight=3]; 3848[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3848[label="",style="solid", color="blue", weight=9]; 3848 -> 2753[label="",style="solid", color="blue", weight=3]; 3849[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 2754[label="",style="solid", color="blue", weight=3]; 3850[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 2755[label="",style="solid", color="blue", weight=3]; 3851[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 2756[label="",style="solid", color="blue", weight=3]; 3852[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 2757[label="",style="solid", color="blue", weight=3]; 3853[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3853[label="",style="solid", color="blue", weight=9]; 3853 -> 2758[label="",style="solid", color="blue", weight=3]; 3854[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3854[label="",style="solid", color="blue", weight=9]; 3854 -> 2759[label="",style="solid", color="blue", weight=3]; 3855[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3855[label="",style="solid", color="blue", weight=9]; 3855 -> 2760[label="",style="solid", color="blue", weight=3]; 3856[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3856[label="",style="solid", color="blue", weight=9]; 3856 -> 2761[label="",style="solid", color="blue", weight=3]; 3857[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3857[label="",style="solid", color="blue", weight=9]; 3857 -> 2762[label="",style="solid", color="blue", weight=3]; 3858[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3858[label="",style="solid", color="blue", weight=9]; 3858 -> 2763[label="",style="solid", color="blue", weight=3]; 3859[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3859[label="",style="solid", color="blue", weight=9]; 3859 -> 2764[label="",style="solid", color="blue", weight=3]; 3860[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3860[label="",style="solid", color="blue", weight=9]; 3860 -> 2765[label="",style="solid", color="blue", weight=3]; 2677 -> 2659[label="",style="dashed", color="red", weight=0]; 2677[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2677 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2660[label="",style="dashed", color="red", weight=0]; 2678[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2678 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2661[label="",style="dashed", color="red", weight=0]; 2679[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2679 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2662[label="",style="dashed", color="red", weight=0]; 2680[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2680 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2663[label="",style="dashed", color="red", weight=0]; 2681[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2681 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2664[label="",style="dashed", color="red", weight=0]; 2682[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2682 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2665[label="",style="dashed", color="red", weight=0]; 2683[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2683 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2666[label="",style="dashed", color="red", weight=0]; 2684[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2684 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2667[label="",style="dashed", color="red", weight=0]; 2685[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2685 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2668[label="",style="dashed", color="red", weight=0]; 2686[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2686 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2669[label="",style="dashed", color="red", weight=0]; 2687[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2687 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2670[label="",style="dashed", color="red", weight=0]; 2688[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2688 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2671[label="",style="dashed", color="red", weight=0]; 2689[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2689 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2672[label="",style="dashed", color="red", weight=0]; 2690[label="vyw28000 < vyw29000",fontsize=16,color="magenta"];2690 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2691[label="primCmpFloat vyw2800 vyw2900",fontsize=16,color="burlywood",shape="box"];3861[label="vyw2800/Float vyw28000 vyw28001",fontsize=10,color="white",style="solid",shape="box"];2691 -> 3861[label="",style="solid", color="burlywood", weight=9]; 3861 -> 2794[label="",style="solid", color="burlywood", weight=3]; 2692[label="compare (vyw28000 : vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3862[label="vyw2900/vyw29000 : vyw29001",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 2795[label="",style="solid", color="burlywood", weight=3]; 3863[label="vyw2900/[]",fontsize=10,color="white",style="solid",shape="box"];2692 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 2796[label="",style="solid", color="burlywood", weight=3]; 2693[label="compare [] vyw2900",fontsize=16,color="burlywood",shape="box"];3864[label="vyw2900/vyw29000 : vyw29001",fontsize=10,color="white",style="solid",shape="box"];2693 -> 3864[label="",style="solid", color="burlywood", weight=9]; 3864 -> 2797[label="",style="solid", color="burlywood", weight=3]; 3865[label="vyw2900/[]",fontsize=10,color="white",style="solid",shape="box"];2693 -> 3865[label="",style="solid", color="burlywood", weight=9]; 3865 -> 2798[label="",style="solid", color="burlywood", weight=3]; 2694[label="primCmpInt vyw2800 vyw2900",fontsize=16,color="burlywood",shape="triangle"];3866[label="vyw2800/Pos vyw28000",fontsize=10,color="white",style="solid",shape="box"];2694 -> 3866[label="",style="solid", color="burlywood", weight=9]; 3866 -> 2799[label="",style="solid", color="burlywood", weight=3]; 3867[label="vyw2800/Neg vyw28000",fontsize=10,color="white",style="solid",shape="box"];2694 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 2800[label="",style="solid", color="burlywood", weight=3]; 2695[label="primMulNat (Succ vyw30000) vyw40010",fontsize=16,color="burlywood",shape="box"];3868[label="vyw40010/Succ vyw400100",fontsize=10,color="white",style="solid",shape="box"];2695 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 2801[label="",style="solid", color="burlywood", weight=3]; 3869[label="vyw40010/Zero",fontsize=10,color="white",style="solid",shape="box"];2695 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 2802[label="",style="solid", color="burlywood", weight=3]; 2696[label="primMulNat Zero vyw40010",fontsize=16,color="burlywood",shape="box"];3870[label="vyw40010/Succ vyw400100",fontsize=10,color="white",style="solid",shape="box"];2696 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 2803[label="",style="solid", color="burlywood", weight=3]; 3871[label="vyw40010/Zero",fontsize=10,color="white",style="solid",shape="box"];2696 -> 3871[label="",style="solid", color="burlywood", weight=9]; 3871 -> 2804[label="",style="solid", color="burlywood", weight=3]; 2697[label="vyw40010",fontsize=16,color="green",shape="box"];2698[label="vyw3000",fontsize=16,color="green",shape="box"];2699[label="vyw40010",fontsize=16,color="green",shape="box"];2700[label="vyw3000",fontsize=16,color="green",shape="box"];2701[label="compare (vyw28000 :% vyw28001) (vyw29000 :% vyw29001)",fontsize=16,color="black",shape="box"];2701 -> 2805[label="",style="solid", color="black", weight=3]; 2702[label="compare () ()",fontsize=16,color="black",shape="box"];2702 -> 2806[label="",style="solid", color="black", weight=3]; 2703[label="primCmpDouble (Double vyw28000 vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3872[label="vyw28001/Pos vyw280010",fontsize=10,color="white",style="solid",shape="box"];2703 -> 3872[label="",style="solid", color="burlywood", weight=9]; 3872 -> 2807[label="",style="solid", color="burlywood", weight=3]; 3873[label="vyw28001/Neg vyw280010",fontsize=10,color="white",style="solid",shape="box"];2703 -> 3873[label="",style="solid", color="burlywood", weight=9]; 3873 -> 2808[label="",style="solid", color="burlywood", weight=3]; 2704[label="primCmpChar (Char vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3874[label="vyw2900/Char vyw29000",fontsize=10,color="white",style="solid",shape="box"];2704 -> 3874[label="",style="solid", color="burlywood", weight=9]; 3874 -> 2809[label="",style="solid", color="burlywood", weight=3]; 2705[label="compare (Integer vyw28000) (Integer vyw29000)",fontsize=16,color="black",shape="box"];2705 -> 2810[label="",style="solid", color="black", weight=3]; 2706 -> 2136[label="",style="dashed", color="red", weight=0]; 2706[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2706 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2137[label="",style="dashed", color="red", weight=0]; 2707[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2707 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2138[label="",style="dashed", color="red", weight=0]; 2708[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2708 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2139[label="",style="dashed", color="red", weight=0]; 2709[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2709 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2140[label="",style="dashed", color="red", weight=0]; 2710[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2710 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2141[label="",style="dashed", color="red", weight=0]; 2711[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2711 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2142[label="",style="dashed", color="red", weight=0]; 2712[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2712 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2143[label="",style="dashed", color="red", weight=0]; 2713[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2713 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2144[label="",style="dashed", color="red", weight=0]; 2714[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2714 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2145[label="",style="dashed", color="red", weight=0]; 2715[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2715 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2146[label="",style="dashed", color="red", weight=0]; 2716[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2716 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2147[label="",style="dashed", color="red", weight=0]; 2717[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2717 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2148[label="",style="dashed", color="red", weight=0]; 2718[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2718 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2149[label="",style="dashed", color="red", weight=0]; 2719[label="vyw28001 <= vyw29001",fontsize=16,color="magenta"];2719 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2720 -> 1724[label="",style="dashed", color="red", weight=0]; 2720[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2720 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2721 -> 1733[label="",style="dashed", color="red", weight=0]; 2721[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2721 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2722 -> 1725[label="",style="dashed", color="red", weight=0]; 2722[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2722 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2723 -> 1731[label="",style="dashed", color="red", weight=0]; 2723[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2723 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2724 -> 46[label="",style="dashed", color="red", weight=0]; 2724[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2724 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2725 -> 1726[label="",style="dashed", color="red", weight=0]; 2725[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2725 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2726 -> 1736[label="",style="dashed", color="red", weight=0]; 2726[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2726 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2727 -> 1727[label="",style="dashed", color="red", weight=0]; 2727[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2727 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2728 -> 1729[label="",style="dashed", color="red", weight=0]; 2728[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2728 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2729 -> 1728[label="",style="dashed", color="red", weight=0]; 2729[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2729 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2730 -> 1734[label="",style="dashed", color="red", weight=0]; 2730[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2730 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2731 -> 1737[label="",style="dashed", color="red", weight=0]; 2731[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2731 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2732 -> 1732[label="",style="dashed", color="red", weight=0]; 2732[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2732 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2733 -> 1735[label="",style="dashed", color="red", weight=0]; 2733[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2733 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2734 -> 46[label="",style="dashed", color="red", weight=0]; 2734[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2734 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2735 -> 46[label="",style="dashed", color="red", weight=0]; 2735[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2735 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2736 -> 46[label="",style="dashed", color="red", weight=0]; 2736[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2736 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2737 -> 46[label="",style="dashed", color="red", weight=0]; 2737[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2737 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2738 -> 46[label="",style="dashed", color="red", weight=0]; 2738[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2738 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2738 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2739 -> 46[label="",style="dashed", color="red", weight=0]; 2739[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2739 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2739 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2740 -> 46[label="",style="dashed", color="red", weight=0]; 2740[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2740 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2740 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2741 -> 46[label="",style="dashed", color="red", weight=0]; 2741[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2741 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2742 -> 46[label="",style="dashed", color="red", weight=0]; 2742[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2742 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2743 -> 46[label="",style="dashed", color="red", weight=0]; 2743[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2743 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2744 -> 46[label="",style="dashed", color="red", weight=0]; 2744[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2744 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2745 -> 46[label="",style="dashed", color="red", weight=0]; 2745[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2745 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2746 -> 46[label="",style="dashed", color="red", weight=0]; 2746[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2746 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2747 -> 46[label="",style="dashed", color="red", weight=0]; 2747[label="compare vyw28000 vyw29000 == LT",fontsize=16,color="magenta"];2747 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2748[label="vyw96",fontsize=16,color="green",shape="box"];2749[label="True",fontsize=16,color="green",shape="box"];2750 -> 1952[label="",style="dashed", color="red", weight=0]; 2750[label="vyw28001 == vyw29001 && vyw28002 <= vyw29002",fontsize=16,color="magenta"];2750 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2751[label="vyw28001 < vyw29001",fontsize=16,color="blue",shape="box"];3875[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 2897[label="",style="solid", color="blue", weight=3]; 3876[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 2898[label="",style="solid", color="blue", weight=3]; 3877[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 2899[label="",style="solid", color="blue", weight=3]; 3878[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3878[label="",style="solid", color="blue", weight=9]; 3878 -> 2900[label="",style="solid", color="blue", weight=3]; 3879[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 2901[label="",style="solid", color="blue", weight=3]; 3880[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 2902[label="",style="solid", color="blue", weight=3]; 3881[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 2903[label="",style="solid", color="blue", weight=3]; 3882[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 2904[label="",style="solid", color="blue", weight=3]; 3883[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 2905[label="",style="solid", color="blue", weight=3]; 3884[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 2906[label="",style="solid", color="blue", weight=3]; 3885[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 2907[label="",style="solid", color="blue", weight=3]; 3886[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 2908[label="",style="solid", color="blue", weight=3]; 3887[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 2909[label="",style="solid", color="blue", weight=3]; 3888[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2751 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 2910[label="",style="solid", color="blue", weight=3]; 2752 -> 1724[label="",style="dashed", color="red", weight=0]; 2752[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2752 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2753 -> 1733[label="",style="dashed", color="red", weight=0]; 2753[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2753 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2754 -> 1725[label="",style="dashed", color="red", weight=0]; 2754[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2754 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2755 -> 1731[label="",style="dashed", color="red", weight=0]; 2755[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2755 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2756 -> 46[label="",style="dashed", color="red", weight=0]; 2756[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2756 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2757 -> 1726[label="",style="dashed", color="red", weight=0]; 2757[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2757 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2758 -> 1736[label="",style="dashed", color="red", weight=0]; 2758[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2758 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2759 -> 1727[label="",style="dashed", color="red", weight=0]; 2759[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2759 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2760 -> 1729[label="",style="dashed", color="red", weight=0]; 2760[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2760 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2761 -> 1728[label="",style="dashed", color="red", weight=0]; 2761[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2761 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2762 -> 1734[label="",style="dashed", color="red", weight=0]; 2762[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2762 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2763 -> 1737[label="",style="dashed", color="red", weight=0]; 2763[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2763 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2764 -> 1732[label="",style="dashed", color="red", weight=0]; 2764[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2764 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2765 -> 1735[label="",style="dashed", color="red", weight=0]; 2765[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];2765 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2766[label="vyw29000",fontsize=16,color="green",shape="box"];2767[label="vyw28000",fontsize=16,color="green",shape="box"];2768[label="vyw29000",fontsize=16,color="green",shape="box"];2769[label="vyw28000",fontsize=16,color="green",shape="box"];2770[label="vyw29000",fontsize=16,color="green",shape="box"];2771[label="vyw28000",fontsize=16,color="green",shape="box"];2772[label="vyw29000",fontsize=16,color="green",shape="box"];2773[label="vyw28000",fontsize=16,color="green",shape="box"];2774[label="vyw29000",fontsize=16,color="green",shape="box"];2775[label="vyw28000",fontsize=16,color="green",shape="box"];2776[label="vyw29000",fontsize=16,color="green",shape="box"];2777[label="vyw28000",fontsize=16,color="green",shape="box"];2778[label="vyw29000",fontsize=16,color="green",shape="box"];2779[label="vyw28000",fontsize=16,color="green",shape="box"];2780[label="vyw29000",fontsize=16,color="green",shape="box"];2781[label="vyw28000",fontsize=16,color="green",shape="box"];2782[label="vyw29000",fontsize=16,color="green",shape="box"];2783[label="vyw28000",fontsize=16,color="green",shape="box"];2784[label="vyw29000",fontsize=16,color="green",shape="box"];2785[label="vyw28000",fontsize=16,color="green",shape="box"];2786[label="vyw29000",fontsize=16,color="green",shape="box"];2787[label="vyw28000",fontsize=16,color="green",shape="box"];2788[label="vyw29000",fontsize=16,color="green",shape="box"];2789[label="vyw28000",fontsize=16,color="green",shape="box"];2790[label="vyw29000",fontsize=16,color="green",shape="box"];2791[label="vyw28000",fontsize=16,color="green",shape="box"];2792[label="vyw29000",fontsize=16,color="green",shape="box"];2793[label="vyw28000",fontsize=16,color="green",shape="box"];2794[label="primCmpFloat (Float vyw28000 vyw28001) vyw2900",fontsize=16,color="burlywood",shape="box"];3889[label="vyw28001/Pos vyw280010",fontsize=10,color="white",style="solid",shape="box"];2794 -> 3889[label="",style="solid", color="burlywood", weight=9]; 3889 -> 2939[label="",style="solid", color="burlywood", weight=3]; 3890[label="vyw28001/Neg vyw280010",fontsize=10,color="white",style="solid",shape="box"];2794 -> 3890[label="",style="solid", color="burlywood", weight=9]; 3890 -> 2940[label="",style="solid", color="burlywood", weight=3]; 2795[label="compare (vyw28000 : vyw28001) (vyw29000 : vyw29001)",fontsize=16,color="black",shape="box"];2795 -> 2941[label="",style="solid", color="black", weight=3]; 2796[label="compare (vyw28000 : vyw28001) []",fontsize=16,color="black",shape="box"];2796 -> 2942[label="",style="solid", color="black", weight=3]; 2797[label="compare [] (vyw29000 : vyw29001)",fontsize=16,color="black",shape="box"];2797 -> 2943[label="",style="solid", color="black", weight=3]; 2798[label="compare [] []",fontsize=16,color="black",shape="box"];2798 -> 2944[label="",style="solid", color="black", weight=3]; 2799[label="primCmpInt (Pos vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3891[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];2799 -> 3891[label="",style="solid", color="burlywood", weight=9]; 3891 -> 2945[label="",style="solid", color="burlywood", weight=3]; 3892[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];2799 -> 3892[label="",style="solid", color="burlywood", weight=9]; 3892 -> 2946[label="",style="solid", color="burlywood", weight=3]; 2800[label="primCmpInt (Neg vyw28000) vyw2900",fontsize=16,color="burlywood",shape="box"];3893[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];2800 -> 3893[label="",style="solid", color="burlywood", weight=9]; 3893 -> 2947[label="",style="solid", color="burlywood", weight=3]; 3894[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];2800 -> 3894[label="",style="solid", color="burlywood", weight=9]; 3894 -> 2948[label="",style="solid", color="burlywood", weight=3]; 2801[label="primMulNat (Succ vyw30000) (Succ vyw400100)",fontsize=16,color="black",shape="box"];2801 -> 2949[label="",style="solid", color="black", weight=3]; 2802[label="primMulNat (Succ vyw30000) Zero",fontsize=16,color="black",shape="box"];2802 -> 2950[label="",style="solid", color="black", weight=3]; 2803[label="primMulNat Zero (Succ vyw400100)",fontsize=16,color="black",shape="box"];2803 -> 2951[label="",style="solid", color="black", weight=3]; 2804[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2804 -> 2952[label="",style="solid", color="black", weight=3]; 2805[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="blue",shape="box"];3895[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2805 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 2953[label="",style="solid", color="blue", weight=3]; 3896[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2805 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 2954[label="",style="solid", color="blue", weight=3]; 2806[label="EQ",fontsize=16,color="green",shape="box"];2807[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3897[label="vyw2900/Double vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2807 -> 3897[label="",style="solid", color="burlywood", weight=9]; 3897 -> 2955[label="",style="solid", color="burlywood", weight=3]; 2808[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3898[label="vyw2900/Double vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2808 -> 3898[label="",style="solid", color="burlywood", weight=9]; 3898 -> 2956[label="",style="solid", color="burlywood", weight=3]; 2809[label="primCmpChar (Char vyw28000) (Char vyw29000)",fontsize=16,color="black",shape="box"];2809 -> 2957[label="",style="solid", color="black", weight=3]; 2810 -> 2694[label="",style="dashed", color="red", weight=0]; 2810[label="primCmpInt vyw28000 vyw29000",fontsize=16,color="magenta"];2810 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2810 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2811[label="vyw28001",fontsize=16,color="green",shape="box"];2812[label="vyw29001",fontsize=16,color="green",shape="box"];2813[label="vyw28001",fontsize=16,color="green",shape="box"];2814[label="vyw29001",fontsize=16,color="green",shape="box"];2815[label="vyw28001",fontsize=16,color="green",shape="box"];2816[label="vyw29001",fontsize=16,color="green",shape="box"];2817[label="vyw28001",fontsize=16,color="green",shape="box"];2818[label="vyw29001",fontsize=16,color="green",shape="box"];2819[label="vyw28001",fontsize=16,color="green",shape="box"];2820[label="vyw29001",fontsize=16,color="green",shape="box"];2821[label="vyw28001",fontsize=16,color="green",shape="box"];2822[label="vyw29001",fontsize=16,color="green",shape="box"];2823[label="vyw28001",fontsize=16,color="green",shape="box"];2824[label="vyw29001",fontsize=16,color="green",shape="box"];2825[label="vyw28001",fontsize=16,color="green",shape="box"];2826[label="vyw29001",fontsize=16,color="green",shape="box"];2827[label="vyw28001",fontsize=16,color="green",shape="box"];2828[label="vyw29001",fontsize=16,color="green",shape="box"];2829[label="vyw28001",fontsize=16,color="green",shape="box"];2830[label="vyw29001",fontsize=16,color="green",shape="box"];2831[label="vyw28001",fontsize=16,color="green",shape="box"];2832[label="vyw29001",fontsize=16,color="green",shape="box"];2833[label="vyw28001",fontsize=16,color="green",shape="box"];2834[label="vyw29001",fontsize=16,color="green",shape="box"];2835[label="vyw28001",fontsize=16,color="green",shape="box"];2836[label="vyw29001",fontsize=16,color="green",shape="box"];2837[label="vyw28001",fontsize=16,color="green",shape="box"];2838[label="vyw29001",fontsize=16,color="green",shape="box"];2839[label="vyw28000",fontsize=16,color="green",shape="box"];2840[label="vyw29000",fontsize=16,color="green",shape="box"];2841[label="vyw28000",fontsize=16,color="green",shape="box"];2842[label="vyw29000",fontsize=16,color="green",shape="box"];2843[label="vyw28000",fontsize=16,color="green",shape="box"];2844[label="vyw29000",fontsize=16,color="green",shape="box"];2845[label="vyw28000",fontsize=16,color="green",shape="box"];2846[label="vyw29000",fontsize=16,color="green",shape="box"];2847[label="vyw28000",fontsize=16,color="green",shape="box"];2848[label="vyw29000",fontsize=16,color="green",shape="box"];2849[label="vyw28000",fontsize=16,color="green",shape="box"];2850[label="vyw29000",fontsize=16,color="green",shape="box"];2851[label="vyw28000",fontsize=16,color="green",shape="box"];2852[label="vyw29000",fontsize=16,color="green",shape="box"];2853[label="vyw28000",fontsize=16,color="green",shape="box"];2854[label="vyw29000",fontsize=16,color="green",shape="box"];2855[label="vyw28000",fontsize=16,color="green",shape="box"];2856[label="vyw29000",fontsize=16,color="green",shape="box"];2857[label="vyw28000",fontsize=16,color="green",shape="box"];2858[label="vyw29000",fontsize=16,color="green",shape="box"];2859[label="vyw28000",fontsize=16,color="green",shape="box"];2860[label="vyw29000",fontsize=16,color="green",shape="box"];2861[label="vyw28000",fontsize=16,color="green",shape="box"];2862[label="vyw29000",fontsize=16,color="green",shape="box"];2863[label="vyw28000",fontsize=16,color="green",shape="box"];2864[label="vyw29000",fontsize=16,color="green",shape="box"];2865[label="vyw28000",fontsize=16,color="green",shape="box"];2866[label="vyw29000",fontsize=16,color="green",shape="box"];2867 -> 2488[label="",style="dashed", color="red", weight=0]; 2867[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2867 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2868[label="LT",fontsize=16,color="green",shape="box"];2869 -> 2492[label="",style="dashed", color="red", weight=0]; 2869[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2869 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2870[label="LT",fontsize=16,color="green",shape="box"];2871[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2871 -> 2964[label="",style="solid", color="black", weight=3]; 2872[label="LT",fontsize=16,color="green",shape="box"];2873[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2873 -> 2965[label="",style="solid", color="black", weight=3]; 2874[label="LT",fontsize=16,color="green",shape="box"];2875[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2875 -> 2966[label="",style="solid", color="black", weight=3]; 2876[label="LT",fontsize=16,color="green",shape="box"];2877[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2877 -> 2967[label="",style="solid", color="black", weight=3]; 2878[label="LT",fontsize=16,color="green",shape="box"];2879 -> 2494[label="",style="dashed", color="red", weight=0]; 2879[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2879 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2879 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2880[label="LT",fontsize=16,color="green",shape="box"];2881 -> 2496[label="",style="dashed", color="red", weight=0]; 2881[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2881 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2881 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2882[label="LT",fontsize=16,color="green",shape="box"];2883 -> 2498[label="",style="dashed", color="red", weight=0]; 2883[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2883 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2883 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2884[label="LT",fontsize=16,color="green",shape="box"];2885[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2885 -> 2974[label="",style="solid", color="black", weight=3]; 2886[label="LT",fontsize=16,color="green",shape="box"];2887[label="compare vyw28000 vyw29000",fontsize=16,color="black",shape="triangle"];2887 -> 2975[label="",style="solid", color="black", weight=3]; 2888[label="LT",fontsize=16,color="green",shape="box"];2889 -> 2500[label="",style="dashed", color="red", weight=0]; 2889[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2889 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2889 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2890[label="LT",fontsize=16,color="green",shape="box"];2891 -> 2502[label="",style="dashed", color="red", weight=0]; 2891[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2891 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2891 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2892[label="LT",fontsize=16,color="green",shape="box"];2893 -> 2504[label="",style="dashed", color="red", weight=0]; 2893[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];2893 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2893 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2894[label="LT",fontsize=16,color="green",shape="box"];2895[label="vyw28002 <= vyw29002",fontsize=16,color="blue",shape="box"];3899[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 2982[label="",style="solid", color="blue", weight=3]; 3900[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 2983[label="",style="solid", color="blue", weight=3]; 3901[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 2984[label="",style="solid", color="blue", weight=3]; 3902[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 2985[label="",style="solid", color="blue", weight=3]; 3903[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 2986[label="",style="solid", color="blue", weight=3]; 3904[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3904[label="",style="solid", color="blue", weight=9]; 3904 -> 2987[label="",style="solid", color="blue", weight=3]; 3905[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 2988[label="",style="solid", color="blue", weight=3]; 3906[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 2989[label="",style="solid", color="blue", weight=3]; 3907[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 2990[label="",style="solid", color="blue", weight=3]; 3908[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 2991[label="",style="solid", color="blue", weight=3]; 3909[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 2992[label="",style="solid", color="blue", weight=3]; 3910[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 2993[label="",style="solid", color="blue", weight=3]; 3911[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 2994[label="",style="solid", color="blue", weight=3]; 3912[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 2995[label="",style="solid", color="blue", weight=3]; 2896[label="vyw28001 == vyw29001",fontsize=16,color="blue",shape="box"];3913[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 2996[label="",style="solid", color="blue", weight=3]; 3914[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 2997[label="",style="solid", color="blue", weight=3]; 3915[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 2998[label="",style="solid", color="blue", weight=3]; 3916[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 2999[label="",style="solid", color="blue", weight=3]; 3917[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 3000[label="",style="solid", color="blue", weight=3]; 3918[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 3001[label="",style="solid", color="blue", weight=3]; 3919[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 3002[label="",style="solid", color="blue", weight=3]; 3920[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 3003[label="",style="solid", color="blue", weight=3]; 3921[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 3004[label="",style="solid", color="blue", weight=3]; 3922[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 3005[label="",style="solid", color="blue", weight=3]; 3923[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 3006[label="",style="solid", color="blue", weight=3]; 3924[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 3007[label="",style="solid", color="blue", weight=3]; 3925[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 3008[label="",style="solid", color="blue", weight=3]; 3926[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 3009[label="",style="solid", color="blue", weight=3]; 2897 -> 2659[label="",style="dashed", color="red", weight=0]; 2897[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2897 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2897 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2898 -> 2660[label="",style="dashed", color="red", weight=0]; 2898[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2898 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2898 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2899 -> 2661[label="",style="dashed", color="red", weight=0]; 2899[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2899 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2899 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2900 -> 2662[label="",style="dashed", color="red", weight=0]; 2900[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2900 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2900 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2901 -> 2663[label="",style="dashed", color="red", weight=0]; 2901[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2901 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2901 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2902 -> 2664[label="",style="dashed", color="red", weight=0]; 2902[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2902 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2902 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2903 -> 2665[label="",style="dashed", color="red", weight=0]; 2903[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2903 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2903 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2904 -> 2666[label="",style="dashed", color="red", weight=0]; 2904[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2904 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2904 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2905 -> 2667[label="",style="dashed", color="red", weight=0]; 2905[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2905 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2905 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2906 -> 2668[label="",style="dashed", color="red", weight=0]; 2906[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2906 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2906 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2907 -> 2669[label="",style="dashed", color="red", weight=0]; 2907[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2907 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2907 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2908 -> 2670[label="",style="dashed", color="red", weight=0]; 2908[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2908 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2908 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2909 -> 2671[label="",style="dashed", color="red", weight=0]; 2909[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2909 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2909 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2910 -> 2672[label="",style="dashed", color="red", weight=0]; 2910[label="vyw28001 < vyw29001",fontsize=16,color="magenta"];2910 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2910 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2911[label="vyw28000",fontsize=16,color="green",shape="box"];2912[label="vyw29000",fontsize=16,color="green",shape="box"];2913[label="vyw28000",fontsize=16,color="green",shape="box"];2914[label="vyw29000",fontsize=16,color="green",shape="box"];2915[label="vyw28000",fontsize=16,color="green",shape="box"];2916[label="vyw29000",fontsize=16,color="green",shape="box"];2917[label="vyw28000",fontsize=16,color="green",shape="box"];2918[label="vyw29000",fontsize=16,color="green",shape="box"];2919[label="vyw28000",fontsize=16,color="green",shape="box"];2920[label="vyw29000",fontsize=16,color="green",shape="box"];2921[label="vyw28000",fontsize=16,color="green",shape="box"];2922[label="vyw29000",fontsize=16,color="green",shape="box"];2923[label="vyw28000",fontsize=16,color="green",shape="box"];2924[label="vyw29000",fontsize=16,color="green",shape="box"];2925[label="vyw28000",fontsize=16,color="green",shape="box"];2926[label="vyw29000",fontsize=16,color="green",shape="box"];2927[label="vyw28000",fontsize=16,color="green",shape="box"];2928[label="vyw29000",fontsize=16,color="green",shape="box"];2929[label="vyw28000",fontsize=16,color="green",shape="box"];2930[label="vyw29000",fontsize=16,color="green",shape="box"];2931[label="vyw28000",fontsize=16,color="green",shape="box"];2932[label="vyw29000",fontsize=16,color="green",shape="box"];2933[label="vyw28000",fontsize=16,color="green",shape="box"];2934[label="vyw29000",fontsize=16,color="green",shape="box"];2935[label="vyw28000",fontsize=16,color="green",shape="box"];2936[label="vyw29000",fontsize=16,color="green",shape="box"];2937[label="vyw28000",fontsize=16,color="green",shape="box"];2938[label="vyw29000",fontsize=16,color="green",shape="box"];2939[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3927[label="vyw2900/Float vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2939 -> 3927[label="",style="solid", color="burlywood", weight=9]; 3927 -> 3038[label="",style="solid", color="burlywood", weight=3]; 2940[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) vyw2900",fontsize=16,color="burlywood",shape="box"];3928[label="vyw2900/Float vyw29000 vyw29001",fontsize=10,color="white",style="solid",shape="box"];2940 -> 3928[label="",style="solid", color="burlywood", weight=9]; 3928 -> 3039[label="",style="solid", color="burlywood", weight=3]; 2941 -> 3040[label="",style="dashed", color="red", weight=0]; 2941[label="primCompAux vyw28000 vyw29000 (compare vyw28001 vyw29001)",fontsize=16,color="magenta"];2941 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2942[label="GT",fontsize=16,color="green",shape="box"];2943[label="LT",fontsize=16,color="green",shape="box"];2944[label="EQ",fontsize=16,color="green",shape="box"];2945[label="primCmpInt (Pos (Succ vyw280000)) vyw2900",fontsize=16,color="burlywood",shape="box"];3929[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2945 -> 3929[label="",style="solid", color="burlywood", weight=9]; 3929 -> 3042[label="",style="solid", color="burlywood", weight=3]; 3930[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2945 -> 3930[label="",style="solid", color="burlywood", weight=9]; 3930 -> 3043[label="",style="solid", color="burlywood", weight=3]; 2946[label="primCmpInt (Pos Zero) vyw2900",fontsize=16,color="burlywood",shape="box"];3931[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2946 -> 3931[label="",style="solid", color="burlywood", weight=9]; 3931 -> 3044[label="",style="solid", color="burlywood", weight=3]; 3932[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2946 -> 3932[label="",style="solid", color="burlywood", weight=9]; 3932 -> 3045[label="",style="solid", color="burlywood", weight=3]; 2947[label="primCmpInt (Neg (Succ vyw280000)) vyw2900",fontsize=16,color="burlywood",shape="box"];3933[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2947 -> 3933[label="",style="solid", color="burlywood", weight=9]; 3933 -> 3046[label="",style="solid", color="burlywood", weight=3]; 3934[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2947 -> 3934[label="",style="solid", color="burlywood", weight=9]; 3934 -> 3047[label="",style="solid", color="burlywood", weight=3]; 2948[label="primCmpInt (Neg Zero) vyw2900",fontsize=16,color="burlywood",shape="box"];3935[label="vyw2900/Pos vyw29000",fontsize=10,color="white",style="solid",shape="box"];2948 -> 3935[label="",style="solid", color="burlywood", weight=9]; 3935 -> 3048[label="",style="solid", color="burlywood", weight=3]; 3936[label="vyw2900/Neg vyw29000",fontsize=10,color="white",style="solid",shape="box"];2948 -> 3936[label="",style="solid", color="burlywood", weight=9]; 3936 -> 3049[label="",style="solid", color="burlywood", weight=3]; 2949 -> 3050[label="",style="dashed", color="red", weight=0]; 2949[label="primPlusNat (primMulNat vyw30000 (Succ vyw400100)) (Succ vyw400100)",fontsize=16,color="magenta"];2949 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2950[label="Zero",fontsize=16,color="green",shape="box"];2951[label="Zero",fontsize=16,color="green",shape="box"];2952[label="Zero",fontsize=16,color="green",shape="box"];2953 -> 2498[label="",style="dashed", color="red", weight=0]; 2953[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="magenta"];2953 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2954 -> 2504[label="",style="dashed", color="red", weight=0]; 2954[label="compare (vyw28000 * vyw29001) (vyw29000 * vyw28001)",fontsize=16,color="magenta"];2954 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2954 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2955[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3937[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];2955 -> 3937[label="",style="solid", color="burlywood", weight=9]; 3937 -> 3056[label="",style="solid", color="burlywood", weight=3]; 3938[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];2955 -> 3938[label="",style="solid", color="burlywood", weight=9]; 3938 -> 3057[label="",style="solid", color="burlywood", weight=3]; 2956[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3939[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];2956 -> 3939[label="",style="solid", color="burlywood", weight=9]; 3939 -> 3058[label="",style="solid", color="burlywood", weight=3]; 3940[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];2956 -> 3940[label="",style="solid", color="burlywood", weight=9]; 3940 -> 3059[label="",style="solid", color="burlywood", weight=3]; 2957[label="primCmpNat vyw28000 vyw29000",fontsize=16,color="burlywood",shape="triangle"];3941[label="vyw28000/Succ vyw280000",fontsize=10,color="white",style="solid",shape="box"];2957 -> 3941[label="",style="solid", color="burlywood", weight=9]; 3941 -> 3060[label="",style="solid", color="burlywood", weight=3]; 3942[label="vyw28000/Zero",fontsize=10,color="white",style="solid",shape="box"];2957 -> 3942[label="",style="solid", color="burlywood", weight=9]; 3942 -> 3061[label="",style="solid", color="burlywood", weight=3]; 2958[label="vyw28000",fontsize=16,color="green",shape="box"];2959[label="vyw29000",fontsize=16,color="green",shape="box"];2960[label="vyw28000",fontsize=16,color="green",shape="box"];2961[label="vyw29000",fontsize=16,color="green",shape="box"];2962[label="vyw28000",fontsize=16,color="green",shape="box"];2963[label="vyw29000",fontsize=16,color="green",shape="box"];2964[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2964 -> 3062[label="",style="solid", color="black", weight=3]; 2965[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2965 -> 3063[label="",style="solid", color="black", weight=3]; 2966[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2966 -> 3064[label="",style="solid", color="black", weight=3]; 2967[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2967 -> 3065[label="",style="solid", color="black", weight=3]; 2968[label="vyw28000",fontsize=16,color="green",shape="box"];2969[label="vyw29000",fontsize=16,color="green",shape="box"];2970[label="vyw28000",fontsize=16,color="green",shape="box"];2971[label="vyw29000",fontsize=16,color="green",shape="box"];2972[label="vyw28000",fontsize=16,color="green",shape="box"];2973[label="vyw29000",fontsize=16,color="green",shape="box"];2974[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2974 -> 3066[label="",style="solid", color="black", weight=3]; 2975[label="compare3 vyw28000 vyw29000",fontsize=16,color="black",shape="box"];2975 -> 3067[label="",style="solid", color="black", weight=3]; 2976[label="vyw28000",fontsize=16,color="green",shape="box"];2977[label="vyw29000",fontsize=16,color="green",shape="box"];2978[label="vyw28000",fontsize=16,color="green",shape="box"];2979[label="vyw29000",fontsize=16,color="green",shape="box"];2980[label="vyw28000",fontsize=16,color="green",shape="box"];2981[label="vyw29000",fontsize=16,color="green",shape="box"];2982 -> 2136[label="",style="dashed", color="red", weight=0]; 2982[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2982 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2982 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2983 -> 2137[label="",style="dashed", color="red", weight=0]; 2983[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2983 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2983 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2984 -> 2138[label="",style="dashed", color="red", weight=0]; 2984[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2984 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2984 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2985 -> 2139[label="",style="dashed", color="red", weight=0]; 2985[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2985 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2985 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2986 -> 2140[label="",style="dashed", color="red", weight=0]; 2986[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2986 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2986 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2987 -> 2141[label="",style="dashed", color="red", weight=0]; 2987[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2987 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2987 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2988 -> 2142[label="",style="dashed", color="red", weight=0]; 2988[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2988 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2988 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2989 -> 2143[label="",style="dashed", color="red", weight=0]; 2989[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2989 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2989 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2990 -> 2144[label="",style="dashed", color="red", weight=0]; 2990[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2990 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2990 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2991 -> 2145[label="",style="dashed", color="red", weight=0]; 2991[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2991 -> 3086[label="",style="dashed", color="magenta", weight=3]; 2991 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2992 -> 2146[label="",style="dashed", color="red", weight=0]; 2992[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2992 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2992 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2993 -> 2147[label="",style="dashed", color="red", weight=0]; 2993[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2993 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2993 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2994 -> 2148[label="",style="dashed", color="red", weight=0]; 2994[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2994 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2994 -> 3093[label="",style="dashed", color="magenta", weight=3]; 2995 -> 2149[label="",style="dashed", color="red", weight=0]; 2995[label="vyw28002 <= vyw29002",fontsize=16,color="magenta"];2995 -> 3094[label="",style="dashed", color="magenta", weight=3]; 2995 -> 3095[label="",style="dashed", color="magenta", weight=3]; 2996 -> 1724[label="",style="dashed", color="red", weight=0]; 2996[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2996 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2996 -> 3097[label="",style="dashed", color="magenta", weight=3]; 2997 -> 1733[label="",style="dashed", color="red", weight=0]; 2997[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2997 -> 3098[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3099[label="",style="dashed", color="magenta", weight=3]; 2998 -> 1725[label="",style="dashed", color="red", weight=0]; 2998[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2998 -> 3100[label="",style="dashed", color="magenta", weight=3]; 2998 -> 3101[label="",style="dashed", color="magenta", weight=3]; 2999 -> 1731[label="",style="dashed", color="red", weight=0]; 2999[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];2999 -> 3102[label="",style="dashed", color="magenta", weight=3]; 2999 -> 3103[label="",style="dashed", color="magenta", weight=3]; 3000 -> 46[label="",style="dashed", color="red", weight=0]; 3000[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3000 -> 3104[label="",style="dashed", color="magenta", weight=3]; 3000 -> 3105[label="",style="dashed", color="magenta", weight=3]; 3001 -> 1726[label="",style="dashed", color="red", weight=0]; 3001[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3001 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3001 -> 3107[label="",style="dashed", color="magenta", weight=3]; 3002 -> 1736[label="",style="dashed", color="red", weight=0]; 3002[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3002 -> 3108[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3109[label="",style="dashed", color="magenta", weight=3]; 3003 -> 1727[label="",style="dashed", color="red", weight=0]; 3003[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3003 -> 3110[label="",style="dashed", color="magenta", weight=3]; 3003 -> 3111[label="",style="dashed", color="magenta", weight=3]; 3004 -> 1729[label="",style="dashed", color="red", weight=0]; 3004[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3004 -> 3112[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3113[label="",style="dashed", color="magenta", weight=3]; 3005 -> 1728[label="",style="dashed", color="red", weight=0]; 3005[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3005 -> 3114[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3006 -> 1734[label="",style="dashed", color="red", weight=0]; 3006[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3006 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3006 -> 3117[label="",style="dashed", color="magenta", weight=3]; 3007 -> 1737[label="",style="dashed", color="red", weight=0]; 3007[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3007 -> 3118[label="",style="dashed", color="magenta", weight=3]; 3007 -> 3119[label="",style="dashed", color="magenta", weight=3]; 3008 -> 1732[label="",style="dashed", color="red", weight=0]; 3008[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3008 -> 3120[label="",style="dashed", color="magenta", weight=3]; 3008 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3009 -> 1735[label="",style="dashed", color="red", weight=0]; 3009[label="vyw28001 == vyw29001",fontsize=16,color="magenta"];3009 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3010[label="vyw29001",fontsize=16,color="green",shape="box"];3011[label="vyw28001",fontsize=16,color="green",shape="box"];3012[label="vyw29001",fontsize=16,color="green",shape="box"];3013[label="vyw28001",fontsize=16,color="green",shape="box"];3014[label="vyw29001",fontsize=16,color="green",shape="box"];3015[label="vyw28001",fontsize=16,color="green",shape="box"];3016[label="vyw29001",fontsize=16,color="green",shape="box"];3017[label="vyw28001",fontsize=16,color="green",shape="box"];3018[label="vyw29001",fontsize=16,color="green",shape="box"];3019[label="vyw28001",fontsize=16,color="green",shape="box"];3020[label="vyw29001",fontsize=16,color="green",shape="box"];3021[label="vyw28001",fontsize=16,color="green",shape="box"];3022[label="vyw29001",fontsize=16,color="green",shape="box"];3023[label="vyw28001",fontsize=16,color="green",shape="box"];3024[label="vyw29001",fontsize=16,color="green",shape="box"];3025[label="vyw28001",fontsize=16,color="green",shape="box"];3026[label="vyw29001",fontsize=16,color="green",shape="box"];3027[label="vyw28001",fontsize=16,color="green",shape="box"];3028[label="vyw29001",fontsize=16,color="green",shape="box"];3029[label="vyw28001",fontsize=16,color="green",shape="box"];3030[label="vyw29001",fontsize=16,color="green",shape="box"];3031[label="vyw28001",fontsize=16,color="green",shape="box"];3032[label="vyw29001",fontsize=16,color="green",shape="box"];3033[label="vyw28001",fontsize=16,color="green",shape="box"];3034[label="vyw29001",fontsize=16,color="green",shape="box"];3035[label="vyw28001",fontsize=16,color="green",shape="box"];3036[label="vyw29001",fontsize=16,color="green",shape="box"];3037[label="vyw28001",fontsize=16,color="green",shape="box"];3038[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3943[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];3038 -> 3943[label="",style="solid", color="burlywood", weight=9]; 3943 -> 3124[label="",style="solid", color="burlywood", weight=3]; 3944[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];3038 -> 3944[label="",style="solid", color="burlywood", weight=9]; 3944 -> 3125[label="",style="solid", color="burlywood", weight=3]; 3039[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 vyw29001)",fontsize=16,color="burlywood",shape="box"];3945[label="vyw29001/Pos vyw290010",fontsize=10,color="white",style="solid",shape="box"];3039 -> 3945[label="",style="solid", color="burlywood", weight=9]; 3945 -> 3126[label="",style="solid", color="burlywood", weight=3]; 3946[label="vyw29001/Neg vyw290010",fontsize=10,color="white",style="solid",shape="box"];3039 -> 3946[label="",style="solid", color="burlywood", weight=9]; 3946 -> 3127[label="",style="solid", color="burlywood", weight=3]; 3041 -> 2502[label="",style="dashed", color="red", weight=0]; 3041[label="compare vyw28001 vyw29001",fontsize=16,color="magenta"];3041 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3041 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3040[label="primCompAux vyw28000 vyw29000 vyw97",fontsize=16,color="black",shape="triangle"];3040 -> 3130[label="",style="solid", color="black", weight=3]; 3042[label="primCmpInt (Pos (Succ vyw280000)) (Pos vyw29000)",fontsize=16,color="black",shape="box"];3042 -> 3131[label="",style="solid", color="black", weight=3]; 3043[label="primCmpInt (Pos (Succ vyw280000)) (Neg vyw29000)",fontsize=16,color="black",shape="box"];3043 -> 3132[label="",style="solid", color="black", weight=3]; 3044[label="primCmpInt (Pos Zero) (Pos vyw29000)",fontsize=16,color="burlywood",shape="box"];3947[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3044 -> 3947[label="",style="solid", color="burlywood", weight=9]; 3947 -> 3133[label="",style="solid", color="burlywood", weight=3]; 3948[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3044 -> 3948[label="",style="solid", color="burlywood", weight=9]; 3948 -> 3134[label="",style="solid", color="burlywood", weight=3]; 3045[label="primCmpInt (Pos Zero) (Neg vyw29000)",fontsize=16,color="burlywood",shape="box"];3949[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3045 -> 3949[label="",style="solid", color="burlywood", weight=9]; 3949 -> 3135[label="",style="solid", color="burlywood", weight=3]; 3950[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3045 -> 3950[label="",style="solid", color="burlywood", weight=9]; 3950 -> 3136[label="",style="solid", color="burlywood", weight=3]; 3046[label="primCmpInt (Neg (Succ vyw280000)) (Pos vyw29000)",fontsize=16,color="black",shape="box"];3046 -> 3137[label="",style="solid", color="black", weight=3]; 3047[label="primCmpInt (Neg (Succ vyw280000)) (Neg vyw29000)",fontsize=16,color="black",shape="box"];3047 -> 3138[label="",style="solid", color="black", weight=3]; 3048[label="primCmpInt (Neg Zero) (Pos vyw29000)",fontsize=16,color="burlywood",shape="box"];3951[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3048 -> 3951[label="",style="solid", color="burlywood", weight=9]; 3951 -> 3139[label="",style="solid", color="burlywood", weight=3]; 3952[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3048 -> 3952[label="",style="solid", color="burlywood", weight=9]; 3952 -> 3140[label="",style="solid", color="burlywood", weight=3]; 3049[label="primCmpInt (Neg Zero) (Neg vyw29000)",fontsize=16,color="burlywood",shape="box"];3953[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3049 -> 3953[label="",style="solid", color="burlywood", weight=9]; 3953 -> 3141[label="",style="solid", color="burlywood", weight=3]; 3954[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3049 -> 3954[label="",style="solid", color="burlywood", weight=9]; 3954 -> 3142[label="",style="solid", color="burlywood", weight=3]; 3051 -> 2553[label="",style="dashed", color="red", weight=0]; 3051[label="primMulNat vyw30000 (Succ vyw400100)",fontsize=16,color="magenta"];3051 -> 3143[label="",style="dashed", color="magenta", weight=3]; 3051 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3050[label="primPlusNat vyw98 (Succ vyw400100)",fontsize=16,color="burlywood",shape="triangle"];3955[label="vyw98/Succ vyw980",fontsize=10,color="white",style="solid",shape="box"];3050 -> 3955[label="",style="solid", color="burlywood", weight=9]; 3955 -> 3145[label="",style="solid", color="burlywood", weight=3]; 3956[label="vyw98/Zero",fontsize=10,color="white",style="solid",shape="box"];3050 -> 3956[label="",style="solid", color="burlywood", weight=9]; 3956 -> 3146[label="",style="solid", color="burlywood", weight=3]; 3052[label="vyw28000 * vyw29001",fontsize=16,color="burlywood",shape="triangle"];3957[label="vyw28000/Integer vyw280000",fontsize=10,color="white",style="solid",shape="box"];3052 -> 3957[label="",style="solid", color="burlywood", weight=9]; 3957 -> 3147[label="",style="solid", color="burlywood", weight=3]; 3053 -> 3052[label="",style="dashed", color="red", weight=0]; 3053[label="vyw29000 * vyw28001",fontsize=16,color="magenta"];3053 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3053 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3054 -> 2131[label="",style="dashed", color="red", weight=0]; 3054[label="vyw28000 * vyw29001",fontsize=16,color="magenta"];3054 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3055 -> 2131[label="",style="dashed", color="red", weight=0]; 3055[label="vyw29000 * vyw28001",fontsize=16,color="magenta"];3055 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3056[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3056 -> 3154[label="",style="solid", color="black", weight=3]; 3057[label="primCmpDouble (Double vyw28000 (Pos vyw280010)) (Double vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3057 -> 3155[label="",style="solid", color="black", weight=3]; 3058[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3058 -> 3156[label="",style="solid", color="black", weight=3]; 3059[label="primCmpDouble (Double vyw28000 (Neg vyw280010)) (Double vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3059 -> 3157[label="",style="solid", color="black", weight=3]; 3060[label="primCmpNat (Succ vyw280000) vyw29000",fontsize=16,color="burlywood",shape="box"];3958[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3060 -> 3958[label="",style="solid", color="burlywood", weight=9]; 3958 -> 3158[label="",style="solid", color="burlywood", weight=3]; 3959[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3060 -> 3959[label="",style="solid", color="burlywood", weight=9]; 3959 -> 3159[label="",style="solid", color="burlywood", weight=3]; 3061[label="primCmpNat Zero vyw29000",fontsize=16,color="burlywood",shape="box"];3960[label="vyw29000/Succ vyw290000",fontsize=10,color="white",style="solid",shape="box"];3061 -> 3960[label="",style="solid", color="burlywood", weight=9]; 3960 -> 3160[label="",style="solid", color="burlywood", weight=3]; 3961[label="vyw29000/Zero",fontsize=10,color="white",style="solid",shape="box"];3061 -> 3961[label="",style="solid", color="burlywood", weight=9]; 3961 -> 3161[label="",style="solid", color="burlywood", weight=3]; 3062 -> 3162[label="",style="dashed", color="red", weight=0]; 3062[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3062 -> 3163[label="",style="dashed", color="magenta", weight=3]; 3063 -> 1687[label="",style="dashed", color="red", weight=0]; 3063[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3063 -> 3164[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3165[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3166[label="",style="dashed", color="magenta", weight=3]; 3064 -> 3167[label="",style="dashed", color="red", weight=0]; 3064[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3064 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3065 -> 3169[label="",style="dashed", color="red", weight=0]; 3065[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3065 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3066 -> 3171[label="",style="dashed", color="red", weight=0]; 3066[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3066 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3173[label="",style="dashed", color="red", weight=0]; 3067[label="compare2 vyw28000 vyw29000 (vyw28000 == vyw29000)",fontsize=16,color="magenta"];3067 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3068[label="vyw28002",fontsize=16,color="green",shape="box"];3069[label="vyw29002",fontsize=16,color="green",shape="box"];3070[label="vyw28002",fontsize=16,color="green",shape="box"];3071[label="vyw29002",fontsize=16,color="green",shape="box"];3072[label="vyw28002",fontsize=16,color="green",shape="box"];3073[label="vyw29002",fontsize=16,color="green",shape="box"];3074[label="vyw28002",fontsize=16,color="green",shape="box"];3075[label="vyw29002",fontsize=16,color="green",shape="box"];3076[label="vyw28002",fontsize=16,color="green",shape="box"];3077[label="vyw29002",fontsize=16,color="green",shape="box"];3078[label="vyw28002",fontsize=16,color="green",shape="box"];3079[label="vyw29002",fontsize=16,color="green",shape="box"];3080[label="vyw28002",fontsize=16,color="green",shape="box"];3081[label="vyw29002",fontsize=16,color="green",shape="box"];3082[label="vyw28002",fontsize=16,color="green",shape="box"];3083[label="vyw29002",fontsize=16,color="green",shape="box"];3084[label="vyw28002",fontsize=16,color="green",shape="box"];3085[label="vyw29002",fontsize=16,color="green",shape="box"];3086[label="vyw28002",fontsize=16,color="green",shape="box"];3087[label="vyw29002",fontsize=16,color="green",shape="box"];3088[label="vyw28002",fontsize=16,color="green",shape="box"];3089[label="vyw29002",fontsize=16,color="green",shape="box"];3090[label="vyw28002",fontsize=16,color="green",shape="box"];3091[label="vyw29002",fontsize=16,color="green",shape="box"];3092[label="vyw28002",fontsize=16,color="green",shape="box"];3093[label="vyw29002",fontsize=16,color="green",shape="box"];3094[label="vyw28002",fontsize=16,color="green",shape="box"];3095[label="vyw29002",fontsize=16,color="green",shape="box"];3096[label="vyw28001",fontsize=16,color="green",shape="box"];3097[label="vyw29001",fontsize=16,color="green",shape="box"];3098[label="vyw28001",fontsize=16,color="green",shape="box"];3099[label="vyw29001",fontsize=16,color="green",shape="box"];3100[label="vyw28001",fontsize=16,color="green",shape="box"];3101[label="vyw29001",fontsize=16,color="green",shape="box"];3102[label="vyw28001",fontsize=16,color="green",shape="box"];3103[label="vyw29001",fontsize=16,color="green",shape="box"];3104[label="vyw28001",fontsize=16,color="green",shape="box"];3105[label="vyw29001",fontsize=16,color="green",shape="box"];3106[label="vyw28001",fontsize=16,color="green",shape="box"];3107[label="vyw29001",fontsize=16,color="green",shape="box"];3108[label="vyw28001",fontsize=16,color="green",shape="box"];3109[label="vyw29001",fontsize=16,color="green",shape="box"];3110[label="vyw28001",fontsize=16,color="green",shape="box"];3111[label="vyw29001",fontsize=16,color="green",shape="box"];3112[label="vyw28001",fontsize=16,color="green",shape="box"];3113[label="vyw29001",fontsize=16,color="green",shape="box"];3114[label="vyw28001",fontsize=16,color="green",shape="box"];3115[label="vyw29001",fontsize=16,color="green",shape="box"];3116[label="vyw28001",fontsize=16,color="green",shape="box"];3117[label="vyw29001",fontsize=16,color="green",shape="box"];3118[label="vyw28001",fontsize=16,color="green",shape="box"];3119[label="vyw29001",fontsize=16,color="green",shape="box"];3120[label="vyw28001",fontsize=16,color="green",shape="box"];3121[label="vyw29001",fontsize=16,color="green",shape="box"];3122[label="vyw28001",fontsize=16,color="green",shape="box"];3123[label="vyw29001",fontsize=16,color="green",shape="box"];3124[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3124 -> 3175[label="",style="solid", color="black", weight=3]; 3125[label="primCmpFloat (Float vyw28000 (Pos vyw280010)) (Float vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3125 -> 3176[label="",style="solid", color="black", weight=3]; 3126[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 (Pos vyw290010))",fontsize=16,color="black",shape="box"];3126 -> 3177[label="",style="solid", color="black", weight=3]; 3127[label="primCmpFloat (Float vyw28000 (Neg vyw280010)) (Float vyw29000 (Neg vyw290010))",fontsize=16,color="black",shape="box"];3127 -> 3178[label="",style="solid", color="black", weight=3]; 3128[label="vyw28001",fontsize=16,color="green",shape="box"];3129[label="vyw29001",fontsize=16,color="green",shape="box"];3130 -> 3179[label="",style="dashed", color="red", weight=0]; 3130[label="primCompAux0 vyw97 (compare vyw28000 vyw29000)",fontsize=16,color="magenta"];3130 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3130 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3131 -> 2957[label="",style="dashed", color="red", weight=0]; 3131[label="primCmpNat (Succ vyw280000) vyw29000",fontsize=16,color="magenta"];3131 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3131 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3132[label="GT",fontsize=16,color="green",shape="box"];3133[label="primCmpInt (Pos Zero) (Pos (Succ vyw290000))",fontsize=16,color="black",shape="box"];3133 -> 3184[label="",style="solid", color="black", weight=3]; 3134[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3134 -> 3185[label="",style="solid", color="black", weight=3]; 3135[label="primCmpInt (Pos Zero) (Neg (Succ vyw290000))",fontsize=16,color="black",shape="box"];3135 -> 3186[label="",style="solid", color="black", weight=3]; 3136[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3136 -> 3187[label="",style="solid", color="black", weight=3]; 3137[label="LT",fontsize=16,color="green",shape="box"];3138 -> 2957[label="",style="dashed", color="red", weight=0]; 3138[label="primCmpNat vyw29000 (Succ vyw280000)",fontsize=16,color="magenta"];3138 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3139[label="primCmpInt (Neg Zero) (Pos (Succ vyw290000))",fontsize=16,color="black",shape="box"];3139 -> 3190[label="",style="solid", color="black", weight=3]; 3140[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3140 -> 3191[label="",style="solid", color="black", weight=3]; 3141[label="primCmpInt (Neg Zero) (Neg (Succ vyw290000))",fontsize=16,color="black",shape="box"];3141 -> 3192[label="",style="solid", color="black", weight=3]; 3142[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3142 -> 3193[label="",style="solid", color="black", weight=3]; 3143[label="Succ vyw400100",fontsize=16,color="green",shape="box"];3144[label="vyw30000",fontsize=16,color="green",shape="box"];3145[label="primPlusNat (Succ vyw980) (Succ vyw400100)",fontsize=16,color="black",shape="box"];3145 -> 3194[label="",style="solid", color="black", weight=3]; 3146[label="primPlusNat Zero (Succ vyw400100)",fontsize=16,color="black",shape="box"];3146 -> 3195[label="",style="solid", color="black", weight=3]; 3147[label="Integer vyw280000 * vyw29001",fontsize=16,color="burlywood",shape="box"];3962[label="vyw29001/Integer vyw290010",fontsize=10,color="white",style="solid",shape="box"];3147 -> 3962[label="",style="solid", color="burlywood", weight=9]; 3962 -> 3196[label="",style="solid", color="burlywood", weight=3]; 3148[label="vyw28001",fontsize=16,color="green",shape="box"];3149[label="vyw29000",fontsize=16,color="green",shape="box"];3150[label="vyw28000",fontsize=16,color="green",shape="box"];3151[label="vyw29001",fontsize=16,color="green",shape="box"];3152[label="vyw29000",fontsize=16,color="green",shape="box"];3153[label="vyw28001",fontsize=16,color="green",shape="box"];3154 -> 2504[label="",style="dashed", color="red", weight=0]; 3154[label="compare (vyw28000 * Pos vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3154 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3155 -> 2504[label="",style="dashed", color="red", weight=0]; 3155[label="compare (vyw28000 * Pos vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3155 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3156 -> 2504[label="",style="dashed", color="red", weight=0]; 3156[label="compare (vyw28000 * Neg vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3156 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3157 -> 2504[label="",style="dashed", color="red", weight=0]; 3157[label="compare (vyw28000 * Neg vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3157 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3158[label="primCmpNat (Succ vyw280000) (Succ vyw290000)",fontsize=16,color="black",shape="box"];3158 -> 3205[label="",style="solid", color="black", weight=3]; 3159[label="primCmpNat (Succ vyw280000) Zero",fontsize=16,color="black",shape="box"];3159 -> 3206[label="",style="solid", color="black", weight=3]; 3160[label="primCmpNat Zero (Succ vyw290000)",fontsize=16,color="black",shape="box"];3160 -> 3207[label="",style="solid", color="black", weight=3]; 3161[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3161 -> 3208[label="",style="solid", color="black", weight=3]; 3163 -> 1725[label="",style="dashed", color="red", weight=0]; 3163[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3163 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3163 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3162[label="compare2 vyw28000 vyw29000 vyw99",fontsize=16,color="burlywood",shape="triangle"];3963[label="vyw99/False",fontsize=10,color="white",style="solid",shape="box"];3162 -> 3963[label="",style="solid", color="burlywood", weight=9]; 3963 -> 3211[label="",style="solid", color="burlywood", weight=3]; 3964[label="vyw99/True",fontsize=10,color="white",style="solid",shape="box"];3162 -> 3964[label="",style="solid", color="burlywood", weight=9]; 3964 -> 3212[label="",style="solid", color="burlywood", weight=3]; 3164[label="vyw29000",fontsize=16,color="green",shape="box"];3165 -> 1731[label="",style="dashed", color="red", weight=0]; 3165[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3165 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3165 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3166[label="vyw28000",fontsize=16,color="green",shape="box"];3168 -> 46[label="",style="dashed", color="red", weight=0]; 3168[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3168 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3168 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3167[label="compare2 vyw28000 vyw29000 vyw100",fontsize=16,color="burlywood",shape="triangle"];3965[label="vyw100/False",fontsize=10,color="white",style="solid",shape="box"];3167 -> 3965[label="",style="solid", color="burlywood", weight=9]; 3965 -> 3217[label="",style="solid", color="burlywood", weight=3]; 3966[label="vyw100/True",fontsize=10,color="white",style="solid",shape="box"];3167 -> 3966[label="",style="solid", color="burlywood", weight=9]; 3966 -> 3218[label="",style="solid", color="burlywood", weight=3]; 3170 -> 1726[label="",style="dashed", color="red", weight=0]; 3170[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3170 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3170 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3169[label="compare2 vyw28000 vyw29000 vyw101",fontsize=16,color="burlywood",shape="triangle"];3967[label="vyw101/False",fontsize=10,color="white",style="solid",shape="box"];3169 -> 3967[label="",style="solid", color="burlywood", weight=9]; 3967 -> 3221[label="",style="solid", color="burlywood", weight=3]; 3968[label="vyw101/True",fontsize=10,color="white",style="solid",shape="box"];3169 -> 3968[label="",style="solid", color="burlywood", weight=9]; 3968 -> 3222[label="",style="solid", color="burlywood", weight=3]; 3172 -> 1728[label="",style="dashed", color="red", weight=0]; 3172[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3172 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3172 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3171[label="compare2 vyw28000 vyw29000 vyw102",fontsize=16,color="burlywood",shape="triangle"];3969[label="vyw102/False",fontsize=10,color="white",style="solid",shape="box"];3171 -> 3969[label="",style="solid", color="burlywood", weight=9]; 3969 -> 3225[label="",style="solid", color="burlywood", weight=3]; 3970[label="vyw102/True",fontsize=10,color="white",style="solid",shape="box"];3171 -> 3970[label="",style="solid", color="burlywood", weight=9]; 3970 -> 3226[label="",style="solid", color="burlywood", weight=3]; 3174 -> 1734[label="",style="dashed", color="red", weight=0]; 3174[label="vyw28000 == vyw29000",fontsize=16,color="magenta"];3174 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3174 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3173[label="compare2 vyw28000 vyw29000 vyw103",fontsize=16,color="burlywood",shape="triangle"];3971[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];3173 -> 3971[label="",style="solid", color="burlywood", weight=9]; 3971 -> 3229[label="",style="solid", color="burlywood", weight=3]; 3972[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];3173 -> 3972[label="",style="solid", color="burlywood", weight=9]; 3972 -> 3230[label="",style="solid", color="burlywood", weight=3]; 3175 -> 2504[label="",style="dashed", color="red", weight=0]; 3175[label="compare (vyw28000 * Pos vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3175 -> 3231[label="",style="dashed", color="magenta", weight=3]; 3175 -> 3232[label="",style="dashed", color="magenta", weight=3]; 3176 -> 2504[label="",style="dashed", color="red", weight=0]; 3176[label="compare (vyw28000 * Pos vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3176 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3176 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3177 -> 2504[label="",style="dashed", color="red", weight=0]; 3177[label="compare (vyw28000 * Neg vyw290010) (Pos vyw280010 * vyw29000)",fontsize=16,color="magenta"];3177 -> 3235[label="",style="dashed", color="magenta", weight=3]; 3177 -> 3236[label="",style="dashed", color="magenta", weight=3]; 3178 -> 2504[label="",style="dashed", color="red", weight=0]; 3178[label="compare (vyw28000 * Neg vyw290010) (Neg vyw280010 * vyw29000)",fontsize=16,color="magenta"];3178 -> 3237[label="",style="dashed", color="magenta", weight=3]; 3178 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3180[label="compare vyw28000 vyw29000",fontsize=16,color="blue",shape="box"];3973[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 3239[label="",style="solid", color="blue", weight=3]; 3974[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 3240[label="",style="solid", color="blue", weight=3]; 3975[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 3241[label="",style="solid", color="blue", weight=3]; 3976[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 3242[label="",style="solid", color="blue", weight=3]; 3977[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3977[label="",style="solid", color="blue", weight=9]; 3977 -> 3243[label="",style="solid", color="blue", weight=3]; 3978[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 3244[label="",style="solid", color="blue", weight=3]; 3979[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 3245[label="",style="solid", color="blue", weight=3]; 3980[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 3246[label="",style="solid", color="blue", weight=3]; 3981[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 3247[label="",style="solid", color="blue", weight=3]; 3982[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 3248[label="",style="solid", color="blue", weight=3]; 3983[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 3249[label="",style="solid", color="blue", weight=3]; 3984[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 3250[label="",style="solid", color="blue", weight=3]; 3985[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 3251[label="",style="solid", color="blue", weight=3]; 3986[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3180 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 3252[label="",style="solid", color="blue", weight=3]; 3181[label="vyw97",fontsize=16,color="green",shape="box"];3179[label="primCompAux0 vyw107 vyw108",fontsize=16,color="burlywood",shape="triangle"];3987[label="vyw108/LT",fontsize=10,color="white",style="solid",shape="box"];3179 -> 3987[label="",style="solid", color="burlywood", weight=9]; 3987 -> 3253[label="",style="solid", color="burlywood", weight=3]; 3988[label="vyw108/EQ",fontsize=10,color="white",style="solid",shape="box"];3179 -> 3988[label="",style="solid", color="burlywood", weight=9]; 3988 -> 3254[label="",style="solid", color="burlywood", weight=3]; 3989[label="vyw108/GT",fontsize=10,color="white",style="solid",shape="box"];3179 -> 3989[label="",style="solid", color="burlywood", weight=9]; 3989 -> 3255[label="",style="solid", color="burlywood", weight=3]; 3182[label="Succ vyw280000",fontsize=16,color="green",shape="box"];3183[label="vyw29000",fontsize=16,color="green",shape="box"];3184 -> 2957[label="",style="dashed", color="red", weight=0]; 3184[label="primCmpNat Zero (Succ vyw290000)",fontsize=16,color="magenta"];3184 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3184 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3185[label="EQ",fontsize=16,color="green",shape="box"];3186[label="GT",fontsize=16,color="green",shape="box"];3187[label="EQ",fontsize=16,color="green",shape="box"];3188[label="vyw29000",fontsize=16,color="green",shape="box"];3189[label="Succ vyw280000",fontsize=16,color="green",shape="box"];3190[label="LT",fontsize=16,color="green",shape="box"];3191[label="EQ",fontsize=16,color="green",shape="box"];3192 -> 2957[label="",style="dashed", color="red", weight=0]; 3192[label="primCmpNat (Succ vyw290000) Zero",fontsize=16,color="magenta"];3192 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3193[label="EQ",fontsize=16,color="green",shape="box"];3194[label="Succ (Succ (primPlusNat vyw980 vyw400100))",fontsize=16,color="green",shape="box"];3194 -> 3260[label="",style="dashed", color="green", weight=3]; 3195[label="Succ vyw400100",fontsize=16,color="green",shape="box"];3196[label="Integer vyw280000 * Integer vyw290010",fontsize=16,color="black",shape="box"];3196 -> 3261[label="",style="solid", color="black", weight=3]; 3197 -> 2131[label="",style="dashed", color="red", weight=0]; 3197[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3197 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3197 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3198 -> 2131[label="",style="dashed", color="red", weight=0]; 3198[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3198 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3199 -> 2131[label="",style="dashed", color="red", weight=0]; 3199[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3199 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3199 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3200 -> 2131[label="",style="dashed", color="red", weight=0]; 3200[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3200 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3200 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3201 -> 2131[label="",style="dashed", color="red", weight=0]; 3201[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3201 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3201 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3202 -> 2131[label="",style="dashed", color="red", weight=0]; 3202[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3202 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3202 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3203 -> 2131[label="",style="dashed", color="red", weight=0]; 3203[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3203 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3203 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3204 -> 2131[label="",style="dashed", color="red", weight=0]; 3204[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3204 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3204 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3205 -> 2957[label="",style="dashed", color="red", weight=0]; 3205[label="primCmpNat vyw280000 vyw290000",fontsize=16,color="magenta"];3205 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3205 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3206[label="GT",fontsize=16,color="green",shape="box"];3207[label="LT",fontsize=16,color="green",shape="box"];3208[label="EQ",fontsize=16,color="green",shape="box"];3209[label="vyw28000",fontsize=16,color="green",shape="box"];3210[label="vyw29000",fontsize=16,color="green",shape="box"];3211[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3211 -> 3280[label="",style="solid", color="black", weight=3]; 3212[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3212 -> 3281[label="",style="solid", color="black", weight=3]; 3213[label="vyw28000",fontsize=16,color="green",shape="box"];3214[label="vyw29000",fontsize=16,color="green",shape="box"];3215[label="vyw28000",fontsize=16,color="green",shape="box"];3216[label="vyw29000",fontsize=16,color="green",shape="box"];3217[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3217 -> 3282[label="",style="solid", color="black", weight=3]; 3218[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3218 -> 3283[label="",style="solid", color="black", weight=3]; 3219[label="vyw28000",fontsize=16,color="green",shape="box"];3220[label="vyw29000",fontsize=16,color="green",shape="box"];3221[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3221 -> 3284[label="",style="solid", color="black", weight=3]; 3222[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3222 -> 3285[label="",style="solid", color="black", weight=3]; 3223[label="vyw28000",fontsize=16,color="green",shape="box"];3224[label="vyw29000",fontsize=16,color="green",shape="box"];3225[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3225 -> 3286[label="",style="solid", color="black", weight=3]; 3226[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3226 -> 3287[label="",style="solid", color="black", weight=3]; 3227[label="vyw28000",fontsize=16,color="green",shape="box"];3228[label="vyw29000",fontsize=16,color="green",shape="box"];3229[label="compare2 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3229 -> 3288[label="",style="solid", color="black", weight=3]; 3230[label="compare2 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3230 -> 3289[label="",style="solid", color="black", weight=3]; 3231 -> 2131[label="",style="dashed", color="red", weight=0]; 3231[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3231 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3231 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3232 -> 2131[label="",style="dashed", color="red", weight=0]; 3232[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3232 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3232 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3233 -> 2131[label="",style="dashed", color="red", weight=0]; 3233[label="vyw28000 * Pos vyw290010",fontsize=16,color="magenta"];3233 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3233 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3234 -> 2131[label="",style="dashed", color="red", weight=0]; 3234[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3234 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3235 -> 2131[label="",style="dashed", color="red", weight=0]; 3235[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3235 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3235 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3236 -> 2131[label="",style="dashed", color="red", weight=0]; 3236[label="Pos vyw280010 * vyw29000",fontsize=16,color="magenta"];3236 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3237 -> 2131[label="",style="dashed", color="red", weight=0]; 3237[label="vyw28000 * Neg vyw290010",fontsize=16,color="magenta"];3237 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3237 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3238 -> 2131[label="",style="dashed", color="red", weight=0]; 3238[label="Neg vyw280010 * vyw29000",fontsize=16,color="magenta"];3238 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3238 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3239 -> 2488[label="",style="dashed", color="red", weight=0]; 3239[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3239 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3239 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3240 -> 2492[label="",style="dashed", color="red", weight=0]; 3240[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3240 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3240 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3241 -> 2871[label="",style="dashed", color="red", weight=0]; 3241[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3241 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3241 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3242 -> 2873[label="",style="dashed", color="red", weight=0]; 3242[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3242 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3242 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3243 -> 2875[label="",style="dashed", color="red", weight=0]; 3243[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3243 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3243 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3244 -> 2877[label="",style="dashed", color="red", weight=0]; 3244[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3244 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3244 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3245 -> 2494[label="",style="dashed", color="red", weight=0]; 3245[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3245 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3245 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3246 -> 2496[label="",style="dashed", color="red", weight=0]; 3246[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3246 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3246 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3247 -> 2498[label="",style="dashed", color="red", weight=0]; 3247[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3247 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3247 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3248 -> 2885[label="",style="dashed", color="red", weight=0]; 3248[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3248 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3248 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3249 -> 2887[label="",style="dashed", color="red", weight=0]; 3249[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3249 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3249 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3250 -> 2500[label="",style="dashed", color="red", weight=0]; 3250[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3250 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3250 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3251 -> 2502[label="",style="dashed", color="red", weight=0]; 3251[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3251 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3251 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3252 -> 2504[label="",style="dashed", color="red", weight=0]; 3252[label="compare vyw28000 vyw29000",fontsize=16,color="magenta"];3252 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3252 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3253[label="primCompAux0 vyw107 LT",fontsize=16,color="black",shape="box"];3253 -> 3334[label="",style="solid", color="black", weight=3]; 3254[label="primCompAux0 vyw107 EQ",fontsize=16,color="black",shape="box"];3254 -> 3335[label="",style="solid", color="black", weight=3]; 3255[label="primCompAux0 vyw107 GT",fontsize=16,color="black",shape="box"];3255 -> 3336[label="",style="solid", color="black", weight=3]; 3256[label="Zero",fontsize=16,color="green",shape="box"];3257[label="Succ vyw290000",fontsize=16,color="green",shape="box"];3258[label="Succ vyw290000",fontsize=16,color="green",shape="box"];3259[label="Zero",fontsize=16,color="green",shape="box"];3260[label="primPlusNat vyw980 vyw400100",fontsize=16,color="burlywood",shape="triangle"];3990[label="vyw980/Succ vyw9800",fontsize=10,color="white",style="solid",shape="box"];3260 -> 3990[label="",style="solid", color="burlywood", weight=9]; 3990 -> 3337[label="",style="solid", color="burlywood", weight=3]; 3991[label="vyw980/Zero",fontsize=10,color="white",style="solid",shape="box"];3260 -> 3991[label="",style="solid", color="burlywood", weight=9]; 3991 -> 3338[label="",style="solid", color="burlywood", weight=3]; 3261[label="Integer (primMulInt vyw280000 vyw290010)",fontsize=16,color="green",shape="box"];3261 -> 3339[label="",style="dashed", color="green", weight=3]; 3262[label="vyw28000",fontsize=16,color="green",shape="box"];3263[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3264[label="Pos vyw280010",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="Pos vyw290010",fontsize=16,color="green",shape="box"];3268[label="Neg vyw280010",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="Neg vyw290010",fontsize=16,color="green",shape="box"];3272[label="Pos vyw280010",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="Neg vyw290010",fontsize=16,color="green",shape="box"];3276[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3277[label="vyw29000",fontsize=16,color="green",shape="box"];3278[label="vyw280000",fontsize=16,color="green",shape="box"];3279[label="vyw290000",fontsize=16,color="green",shape="box"];3280 -> 3340[label="",style="dashed", color="red", weight=0]; 3280[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3280 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3281[label="EQ",fontsize=16,color="green",shape="box"];3282 -> 3342[label="",style="dashed", color="red", weight=0]; 3282[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3282 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3283[label="EQ",fontsize=16,color="green",shape="box"];3284 -> 3344[label="",style="dashed", color="red", weight=0]; 3284[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3284 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3285[label="EQ",fontsize=16,color="green",shape="box"];3286 -> 3346[label="",style="dashed", color="red", weight=0]; 3286[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3286 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3287[label="EQ",fontsize=16,color="green",shape="box"];3288 -> 3348[label="",style="dashed", color="red", weight=0]; 3288[label="compare1 vyw28000 vyw29000 (vyw28000 <= vyw29000)",fontsize=16,color="magenta"];3288 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3289[label="EQ",fontsize=16,color="green",shape="box"];3290[label="vyw28000",fontsize=16,color="green",shape="box"];3291[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3292[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3293[label="vyw29000",fontsize=16,color="green",shape="box"];3294[label="vyw28000",fontsize=16,color="green",shape="box"];3295[label="Pos vyw290010",fontsize=16,color="green",shape="box"];3296[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3297[label="vyw29000",fontsize=16,color="green",shape="box"];3298[label="vyw28000",fontsize=16,color="green",shape="box"];3299[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3300[label="Pos vyw280010",fontsize=16,color="green",shape="box"];3301[label="vyw29000",fontsize=16,color="green",shape="box"];3302[label="vyw28000",fontsize=16,color="green",shape="box"];3303[label="Neg vyw290010",fontsize=16,color="green",shape="box"];3304[label="Neg vyw280010",fontsize=16,color="green",shape="box"];3305[label="vyw29000",fontsize=16,color="green",shape="box"];3306[label="vyw28000",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="vyw29000",fontsize=16,color="green",shape="box"];3310[label="vyw29000",fontsize=16,color="green",shape="box"];3311[label="vyw28000",fontsize=16,color="green",shape="box"];3312[label="vyw29000",fontsize=16,color="green",shape="box"];3313[label="vyw28000",fontsize=16,color="green",shape="box"];3314[label="vyw29000",fontsize=16,color="green",shape="box"];3315[label="vyw28000",fontsize=16,color="green",shape="box"];3316[label="vyw29000",fontsize=16,color="green",shape="box"];3317[label="vyw28000",fontsize=16,color="green",shape="box"];3318[label="vyw28000",fontsize=16,color="green",shape="box"];3319[label="vyw29000",fontsize=16,color="green",shape="box"];3320[label="vyw28000",fontsize=16,color="green",shape="box"];3321[label="vyw29000",fontsize=16,color="green",shape="box"];3322[label="vyw28000",fontsize=16,color="green",shape="box"];3323[label="vyw29000",fontsize=16,color="green",shape="box"];3324[label="vyw29000",fontsize=16,color="green",shape="box"];3325[label="vyw28000",fontsize=16,color="green",shape="box"];3326[label="vyw29000",fontsize=16,color="green",shape="box"];3327[label="vyw28000",fontsize=16,color="green",shape="box"];3328[label="vyw28000",fontsize=16,color="green",shape="box"];3329[label="vyw29000",fontsize=16,color="green",shape="box"];3330[label="vyw28000",fontsize=16,color="green",shape="box"];3331[label="vyw29000",fontsize=16,color="green",shape="box"];3332[label="vyw28000",fontsize=16,color="green",shape="box"];3333[label="vyw29000",fontsize=16,color="green",shape="box"];3334[label="LT",fontsize=16,color="green",shape="box"];3335[label="vyw107",fontsize=16,color="green",shape="box"];3336[label="GT",fontsize=16,color="green",shape="box"];3337[label="primPlusNat (Succ vyw9800) vyw400100",fontsize=16,color="burlywood",shape="box"];3992[label="vyw400100/Succ vyw4001000",fontsize=10,color="white",style="solid",shape="box"];3337 -> 3992[label="",style="solid", color="burlywood", weight=9]; 3992 -> 3350[label="",style="solid", color="burlywood", weight=3]; 3993[label="vyw400100/Zero",fontsize=10,color="white",style="solid",shape="box"];3337 -> 3993[label="",style="solid", color="burlywood", weight=9]; 3993 -> 3351[label="",style="solid", color="burlywood", weight=3]; 3338[label="primPlusNat Zero vyw400100",fontsize=16,color="burlywood",shape="box"];3994[label="vyw400100/Succ vyw4001000",fontsize=10,color="white",style="solid",shape="box"];3338 -> 3994[label="",style="solid", color="burlywood", weight=9]; 3994 -> 3352[label="",style="solid", color="burlywood", weight=3]; 3995[label="vyw400100/Zero",fontsize=10,color="white",style="solid",shape="box"];3338 -> 3995[label="",style="solid", color="burlywood", weight=9]; 3995 -> 3353[label="",style="solid", color="burlywood", weight=3]; 3339 -> 2318[label="",style="dashed", color="red", weight=0]; 3339[label="primMulInt vyw280000 vyw290010",fontsize=16,color="magenta"];3339 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3339 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3341 -> 2138[label="",style="dashed", color="red", weight=0]; 3341[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3341 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3341 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3340[label="compare1 vyw28000 vyw29000 vyw109",fontsize=16,color="burlywood",shape="triangle"];3996[label="vyw109/False",fontsize=10,color="white",style="solid",shape="box"];3340 -> 3996[label="",style="solid", color="burlywood", weight=9]; 3996 -> 3358[label="",style="solid", color="burlywood", weight=3]; 3997[label="vyw109/True",fontsize=10,color="white",style="solid",shape="box"];3340 -> 3997[label="",style="solid", color="burlywood", weight=9]; 3997 -> 3359[label="",style="solid", color="burlywood", weight=3]; 3343 -> 2140[label="",style="dashed", color="red", weight=0]; 3343[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3343 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3343 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3342[label="compare1 vyw28000 vyw29000 vyw110",fontsize=16,color="burlywood",shape="triangle"];3998[label="vyw110/False",fontsize=10,color="white",style="solid",shape="box"];3342 -> 3998[label="",style="solid", color="burlywood", weight=9]; 3998 -> 3362[label="",style="solid", color="burlywood", weight=3]; 3999[label="vyw110/True",fontsize=10,color="white",style="solid",shape="box"];3342 -> 3999[label="",style="solid", color="burlywood", weight=9]; 3999 -> 3363[label="",style="solid", color="burlywood", weight=3]; 3345 -> 2141[label="",style="dashed", color="red", weight=0]; 3345[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3345 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3345 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3344[label="compare1 vyw28000 vyw29000 vyw111",fontsize=16,color="burlywood",shape="triangle"];4000[label="vyw111/False",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4000[label="",style="solid", color="burlywood", weight=9]; 4000 -> 3366[label="",style="solid", color="burlywood", weight=3]; 4001[label="vyw111/True",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4001[label="",style="solid", color="burlywood", weight=9]; 4001 -> 3367[label="",style="solid", color="burlywood", weight=3]; 3347 -> 2145[label="",style="dashed", color="red", weight=0]; 3347[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3347 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3347 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3346[label="compare1 vyw28000 vyw29000 vyw112",fontsize=16,color="burlywood",shape="triangle"];4002[label="vyw112/False",fontsize=10,color="white",style="solid",shape="box"];3346 -> 4002[label="",style="solid", color="burlywood", weight=9]; 4002 -> 3370[label="",style="solid", color="burlywood", weight=3]; 4003[label="vyw112/True",fontsize=10,color="white",style="solid",shape="box"];3346 -> 4003[label="",style="solid", color="burlywood", weight=9]; 4003 -> 3371[label="",style="solid", color="burlywood", weight=3]; 3349 -> 2146[label="",style="dashed", color="red", weight=0]; 3349[label="vyw28000 <= vyw29000",fontsize=16,color="magenta"];3349 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3349 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3348[label="compare1 vyw28000 vyw29000 vyw113",fontsize=16,color="burlywood",shape="triangle"];4004[label="vyw113/False",fontsize=10,color="white",style="solid",shape="box"];3348 -> 4004[label="",style="solid", color="burlywood", weight=9]; 4004 -> 3374[label="",style="solid", color="burlywood", weight=3]; 4005[label="vyw113/True",fontsize=10,color="white",style="solid",shape="box"];3348 -> 4005[label="",style="solid", color="burlywood", weight=9]; 4005 -> 3375[label="",style="solid", color="burlywood", weight=3]; 3350[label="primPlusNat (Succ vyw9800) (Succ vyw4001000)",fontsize=16,color="black",shape="box"];3350 -> 3376[label="",style="solid", color="black", weight=3]; 3351[label="primPlusNat (Succ vyw9800) Zero",fontsize=16,color="black",shape="box"];3351 -> 3377[label="",style="solid", color="black", weight=3]; 3352[label="primPlusNat Zero (Succ vyw4001000)",fontsize=16,color="black",shape="box"];3352 -> 3378[label="",style="solid", color="black", weight=3]; 3353[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3353 -> 3379[label="",style="solid", color="black", weight=3]; 3354[label="vyw280000",fontsize=16,color="green",shape="box"];3355[label="vyw290010",fontsize=16,color="green",shape="box"];3356[label="vyw28000",fontsize=16,color="green",shape="box"];3357[label="vyw29000",fontsize=16,color="green",shape="box"];3358[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3358 -> 3380[label="",style="solid", color="black", weight=3]; 3359[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3359 -> 3381[label="",style="solid", color="black", weight=3]; 3360[label="vyw28000",fontsize=16,color="green",shape="box"];3361[label="vyw29000",fontsize=16,color="green",shape="box"];3362[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3362 -> 3382[label="",style="solid", color="black", weight=3]; 3363[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3363 -> 3383[label="",style="solid", color="black", weight=3]; 3364[label="vyw28000",fontsize=16,color="green",shape="box"];3365[label="vyw29000",fontsize=16,color="green",shape="box"];3366[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3366 -> 3384[label="",style="solid", color="black", weight=3]; 3367[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3367 -> 3385[label="",style="solid", color="black", weight=3]; 3368[label="vyw28000",fontsize=16,color="green",shape="box"];3369[label="vyw29000",fontsize=16,color="green",shape="box"];3370[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3370 -> 3386[label="",style="solid", color="black", weight=3]; 3371[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3371 -> 3387[label="",style="solid", color="black", weight=3]; 3372[label="vyw28000",fontsize=16,color="green",shape="box"];3373[label="vyw29000",fontsize=16,color="green",shape="box"];3374[label="compare1 vyw28000 vyw29000 False",fontsize=16,color="black",shape="box"];3374 -> 3388[label="",style="solid", color="black", weight=3]; 3375[label="compare1 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3375 -> 3389[label="",style="solid", color="black", weight=3]; 3376[label="Succ (Succ (primPlusNat vyw9800 vyw4001000))",fontsize=16,color="green",shape="box"];3376 -> 3390[label="",style="dashed", color="green", weight=3]; 3377[label="Succ vyw9800",fontsize=16,color="green",shape="box"];3378[label="Succ vyw4001000",fontsize=16,color="green",shape="box"];3379[label="Zero",fontsize=16,color="green",shape="box"];3380[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3380 -> 3391[label="",style="solid", color="black", weight=3]; 3381[label="LT",fontsize=16,color="green",shape="box"];3382[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3382 -> 3392[label="",style="solid", color="black", weight=3]; 3383[label="LT",fontsize=16,color="green",shape="box"];3384[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3384 -> 3393[label="",style="solid", color="black", weight=3]; 3385[label="LT",fontsize=16,color="green",shape="box"];3386[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3386 -> 3394[label="",style="solid", color="black", weight=3]; 3387[label="LT",fontsize=16,color="green",shape="box"];3388[label="compare0 vyw28000 vyw29000 otherwise",fontsize=16,color="black",shape="box"];3388 -> 3395[label="",style="solid", color="black", weight=3]; 3389[label="LT",fontsize=16,color="green",shape="box"];3390 -> 3260[label="",style="dashed", color="red", weight=0]; 3390[label="primPlusNat vyw9800 vyw4001000",fontsize=16,color="magenta"];3390 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3390 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3391[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3391 -> 3398[label="",style="solid", color="black", weight=3]; 3392[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3392 -> 3399[label="",style="solid", color="black", weight=3]; 3393[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3393 -> 3400[label="",style="solid", color="black", weight=3]; 3394[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3394 -> 3401[label="",style="solid", color="black", weight=3]; 3395[label="compare0 vyw28000 vyw29000 True",fontsize=16,color="black",shape="box"];3395 -> 3402[label="",style="solid", color="black", weight=3]; 3396[label="vyw9800",fontsize=16,color="green",shape="box"];3397[label="vyw4001000",fontsize=16,color="green",shape="box"];3398[label="GT",fontsize=16,color="green",shape="box"];3399[label="GT",fontsize=16,color="green",shape="box"];3400[label="GT",fontsize=16,color="green",shape="box"];3401[label="GT",fontsize=16,color="green",shape="box"];3402[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_esEs(Right(vyw300), Right(vyw4000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vyw300, vyw4000, ce, cf) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, fd), fa) -> new_esEs1(vyw300, vyw4000, fd) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), hc) -> new_esEs2(vyw301, vyw4001, hc) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(ty_Maybe, eb)) -> new_esEs1(vyw301, vyw4001, eb) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, hf), hg)) -> new_esEs0(vyw300, vyw4000, hf, hg) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(ty_Either, df), dg)) -> new_esEs(vyw301, vyw4001, df, dg) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyw300, vyw4000, bdh, bea, beb) new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vyw300, vyw4000, db, dc, dd) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vyw302, vyw4002, bag, bah) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vyw301, vyw4001, dh, ea) new_esEs1(Just(vyw300), Just(vyw4000), app(app(ty_Either, gb), gc)) -> new_esEs(vyw300, vyw4000, gb, gc) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], bdg), baf, bcb) -> new_esEs2(vyw300, vyw4000, bdg) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, hd), he)) -> new_esEs(vyw300, vyw4000, hd, he) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyw302, vyw4002, bbe, bbf, bbg) new_esEs(Right(vyw300), Right(vyw4000), cb, app(ty_Maybe, cg)) -> new_esEs1(vyw300, vyw4000, cg) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(vyw300, vyw4000, fg, fh, ga) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vyw301, vyw4001, ed, ee, ef) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, eg), eh), fa) -> new_esEs(vyw300, vyw4000, eg, eh) new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw300, vyw4000, cc, cd) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(vyw301, vyw4001, bcc, bcd) new_esEs(Right(vyw300), Right(vyw4000), cb, app(ty_[], da)) -> new_esEs2(vyw300, vyw4000, da) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(ty_[], bcf), bcb) -> new_esEs2(vyw301, vyw4001, bcf) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(vyw300, vyw4000, bdd, bde) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], ff), fa) -> new_esEs2(vyw300, vyw4000, ff) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyw301, vyw4001, bcg, bch, bda) new_esEs1(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vyw300, vyw4000, gh, ha, hb) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(ty_[], bbd)) -> new_esEs2(vyw302, vyw4002, bbd) new_esEs(Left(vyw300), Left(vyw4000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw300, vyw4000, h, ba) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(ty_[], ec)) -> new_esEs2(vyw301, vyw4001, ec) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(vyw302, vyw4002, bba, bbb) new_esEs1(Just(vyw300), Just(vyw4000), app(ty_[], gg)) -> new_esEs2(vyw300, vyw4000, gg) new_esEs1(Just(vyw300), Just(vyw4000), app(app(ty_@2, gd), ge)) -> new_esEs0(vyw300, vyw4000, gd, ge) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(vyw300, vyw4000, bdf) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], baa)) -> new_esEs2(vyw300, vyw4000, baa) new_esEs(Left(vyw300), Left(vyw4000), app(ty_[], bf), bb) -> new_esEs2(vyw300, vyw4000, bf) new_esEs(Left(vyw300), Left(vyw4000), app(ty_Maybe, be), bb) -> new_esEs1(vyw300, vyw4000, be) new_esEs(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vyw300, vyw4000, bg, bh, ca) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(vyw301, vyw4001, bce) new_esEs(Left(vyw300), Left(vyw4000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vyw300, vyw4000, bc, bd) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vyw300, vyw4000, bdb, bdc) new_esEs1(Just(vyw300), Just(vyw4000), app(ty_Maybe, gf)) -> new_esEs1(vyw300, vyw4000, gf) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw300, vyw4000, bab, bac, bad) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(vyw302, vyw4002, bbc) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vyw300, vyw4000, fb, fc) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vyw301, vyw4001, bbh, bca) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, hh)) -> new_esEs1(vyw300, vyw4000, hh) 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_esEs1(Just(vyw300), Just(vyw4000), app(app(ty_Either, gb), gc)) -> new_esEs(vyw300, vyw4000, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw300), Just(vyw4000), app(app(ty_@2, gd), ge)) -> new_esEs0(vyw300, vyw4000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, hd), he)) -> new_esEs(vyw300, vyw4000, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw300), Just(vyw4000), app(ty_[], gg)) -> new_esEs2(vyw300, vyw4000, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, hf), hg)) -> new_esEs0(vyw300, vyw4000, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vyw300, vyw4000, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vyw300), Just(vyw4000), app(ty_Maybe, gf)) -> new_esEs1(vyw300, vyw4000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw300, vyw4000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, hh)) -> new_esEs1(vyw300, vyw4000, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(ty_Either, df), dg)) -> new_esEs(vyw301, vyw4001, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, eg), eh), fa) -> new_esEs(vyw300, vyw4000, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vyw301, vyw4001, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vyw300, vyw4000, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], ff), fa) -> new_esEs2(vyw300, vyw4000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(ty_[], ec)) -> new_esEs2(vyw301, vyw4001, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(vyw300, vyw4000, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vyw301, vyw4001, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, fd), fa) -> new_esEs1(vyw300, vyw4000, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(ty_Maybe, eb)) -> new_esEs1(vyw301, vyw4001, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw300, vyw4000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyw300), Left(vyw4000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw300, vyw4000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vyw302, vyw4002, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vyw300, vyw4000, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vyw301, vyw4001, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vyw300, vyw4000, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyw300), Left(vyw4000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vyw300, vyw4000, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(vyw301, vyw4001, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(vyw300, vyw4000, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(vyw302, vyw4002, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), hc) -> new_esEs2(vyw301, vyw4001, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], baa)) -> new_esEs2(vyw300, vyw4000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(ty_[], da)) -> new_esEs2(vyw300, vyw4000, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw300), Left(vyw4000), app(ty_[], bf), bb) -> new_esEs2(vyw300, vyw4000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], bdg), baf, bcb) -> new_esEs2(vyw300, vyw4000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(ty_[], bcf), bcb) -> new_esEs2(vyw301, vyw4001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(ty_[], bbd)) -> new_esEs2(vyw302, vyw4002, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vyw300, vyw4000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vyw300, vyw4000, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(ty_Maybe, cg)) -> new_esEs1(vyw300, vyw4000, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw300), Left(vyw4000), app(ty_Maybe, be), bb) -> new_esEs1(vyw300, vyw4000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyw300, vyw4000, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyw302, vyw4002, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyw301, vyw4001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(vyw300, vyw4000, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(vyw301, vyw4001, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(vyw302, vyw4002, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 ---------------------------------------- (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, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare23(Just(vyw18), Just(vyw13), new_esEs30(vyw18, vyw13, bc), bc), GT), bb, bc) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(Just(vyw30), Nothing, False, ba), LT), h, ba) 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_esEs8(new_compare23(Just(vyw30), Just(vyw400), new_esEs29(vyw30, vyw400, ba), ba), LT), h, ba) new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, False, h, ba) -> new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs8(new_compare23(Nothing, Just(vyw400), False, ba), GT), h, ba) new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw43, Nothing, h, ba) new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw17, Just(vyw18), bb, bc) new_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs8(new_compare23(Nothing, Just(vyw400), False, ba), LT), h, ba) new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw44, Nothing, h, ba) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(Just(vyw30), Nothing, False, ba), GT), h, ba) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM0(vyw41, vyw42, vyw43, vyw44, new_esEs8(new_compare23(Nothing, Nothing, True, ba), GT), 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_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_lt7(vyw28001, vyw29001, bcg, bch) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, bfc), bfd), bh) -> new_ltEs7(vyw28000, vyw29000, bfc, bfd) new_ltEs7(Right(vyw28000), Left(vyw29000), bg, bh) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cgf)) -> new_esEs17(vyw300, vyw4000, cgf) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_lt10(vyw28000, vyw29000, bdh) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_compare17(vyw28000, vyw29000, app(ty_[], baa)) -> new_compare0(vyw28000, vyw29000, baa) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs7(vyw300, vyw4000, cae, caf, cag) new_compare23(vyw280, vyw290, True, be) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), bac, bad) -> False new_esEs4(Right(vyw300), Left(vyw4000), bac, bad) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, ge, gf, gg) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_esEs21(vyw300, vyw4000, app(app(ty_@2, caa), cab)) -> new_esEs6(vyw300, vyw4000, caa, cab) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, ge, gf, gg) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, ceg), ceh)) -> new_esEs4(vyw301, vyw4001, ceg, ceh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, da, db) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, cah), bad) -> new_esEs11(vyw300, vyw4000, cah) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bfh), bga), bgb), bh) -> new_ltEs15(vyw28000, vyw29000, bfh, bga, bgb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bf) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bf), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, hc)) -> new_compare12(vyw28000, vyw29000, hc) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dbf)) -> new_esEs11(vyw300, vyw4000, dbf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs15(vyw2800, vyw2900, cd, ce, cf) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_lt4(vyw28001, vyw29001, bdg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gb) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gb), gb) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bf)) -> new_ltEs5(vyw2800, vyw2900, bf) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bh) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_esEs6(vyw28000, vyw29000, gc, gd) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_lt17(vyw28000, vyw29000, gc, gd) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bh) -> new_ltEs10(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bad) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbc, dbd, dbe) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(vyw28000, vyw29000, ge, gf, gg) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, bbe), bbf)) -> new_ltEs7(vyw28002, vyw29002, bbe, bbf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(vyw28001, vyw29001, bdd, bde, bdf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_lt4(vyw28000, vyw29000, bfa) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, bbg)) -> new_ltEs8(vyw28002, vyw29002, bbg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhf)) -> new_esEs11(vyw300, vyw4000, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bad) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bad) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_lt7(vyw28000, vyw29000, bea, beb) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, cb), cc)) -> new_ltEs14(vyw2800, vyw2900, cb, cc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, cbc), cbd), bad) -> new_esEs6(vyw300, vyw4000, cbc, cbd) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, gc, gd) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, gc, gd), gc, gd) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, gc, gd) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_esEs11(vyw28000, vyw29000, ga) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdd)) -> new_esEs11(vyw300, vyw4000, cdd) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cef)) -> new_esEs11(vyw301, vyw4001, cef) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, hf), hg), hh)) -> new_compare26(vyw28000, vyw29000, hf, hg, hh) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, ge, gf, gg) -> new_esEs8(new_compare26(vyw28000, vyw29000, ge, gf, gg), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs6(vyw300, vyw4000, cdg, cdh) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dce, dcf, dcg) new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, gh)) -> new_compare18(vyw28000, vyw29000, gh) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cfa), cfb)) -> new_esEs6(vyw301, vyw4001, cfa, cfb) new_lt17(vyw28000, vyw29000, gc, gd) -> new_esEs8(new_compare13(vyw28000, vyw29000, gc, gd), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bad) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Maybe, bgg)) -> new_ltEs8(vyw28000, vyw29000, bgg) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw300, vyw4000, bhg, bhh) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gb) -> new_esEs8(new_compare12(vyw28000, vyw29000, gb), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bah) -> True new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_esEs11(vyw28001, vyw29001, bcf) new_esEs29(vyw30, vyw400, app(ty_Ratio, bab)) -> new_esEs11(vyw30, vyw400, bab) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_compare10(vyw82, vyw83, False, dc) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfb), bh) -> new_ltEs5(vyw28000, vyw29000, bfb) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bh) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, che), chf)) -> new_esEs6(vyw302, vyw4002, che, chf) new_esEs30(vyw18, vyw13, app(ty_[], ddf)) -> new_esEs17(vyw18, vyw13, ddf) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, cac)) -> new_esEs5(vyw300, vyw4000, cac) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, be) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, be), be) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, bag) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bh) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, baf) -> new_asAs(new_esEs23(vyw300, vyw4000, bae), new_esEs22(vyw301, vyw4001, baf)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt18(vyw28000, vyw29000, ge, gf, gg) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), bag) -> False new_esEs5(Just(vyw300), Nothing, bag) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_esEs11(vyw28000, vyw29000, bdh) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_Either, bge), bgf)) -> new_ltEs7(vyw28000, vyw29000, bge, bgf) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cga), cgb)) -> new_esEs4(vyw300, vyw4000, cga, cgb) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vyw300, vyw4000, cec, ced, cee) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dca), dcb)) -> new_esEs6(vyw300, vyw4000, dca, dcb) new_ltEs17(vyw2800, vyw2900, cg) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, cg), GT)) new_compare10(vyw82, vyw83, True, dc) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vyw301, vyw4001, cfe, cff, cfg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bh) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cge)) -> new_esEs5(vyw300, vyw4000, cge) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_esEs30(vyw18, vyw13, app(ty_Ratio, dch)) -> new_esEs11(vyw18, vyw13, dch) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ef)) -> new_ltEs5(vyw28001, vyw29001, ef) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_esEs4(vyw28000, vyw29000, da, db) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs29(vyw30, vyw400, app(ty_[], bah)) -> new_esEs17(vyw30, vyw400, bah) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(vyw302, vyw4002, daa, dab, dac) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bh) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_lt11(vyw28001, vyw29001, bda) new_compare23(Just(vyw2800), Nothing, False, be) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, bbh), bca)) -> new_ltEs14(vyw28002, vyw29002, bbh, bca) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_lt10(vyw28000, vyw29000, ga) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], bd)) -> new_lt4(vyw28000, vyw29000, bd) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_lt11(vyw28000, vyw29000, bec) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs15(vyw28002, vyw29002, bcb, bcc, bcd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw300, vyw4000, cgg, cgh, cha) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cbf), bad) -> new_esEs17(vyw300, vyw4000, cbf) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, cde), cdf)) -> new_esEs4(vyw300, vyw4000, cde, cdf) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_esEs5(vyw28000, vyw29000, gb) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dag), dah)) -> new_esEs6(vyw301, vyw4001, dag, dah) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cfc)) -> new_esEs5(vyw301, vyw4001, cfc) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bce)) -> new_ltEs17(vyw28002, vyw29002, bce) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, cea)) -> new_esEs5(vyw300, vyw4000, cea) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, ca)) -> new_ltEs8(vyw2800, vyw2900, ca) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), bg, bh) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bh) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgc, cgd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, bg), bh)) -> new_ltEs7(vyw2800, vyw2900, bg, bh) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bbd)) -> new_ltEs5(vyw28002, vyw29002, bbd) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, cg) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, cg)) new_esEs29(vyw30, vyw400, app(ty_Maybe, bag)) -> new_esEs5(vyw30, vyw400, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bff), bfg), bh) -> new_ltEs14(vyw28000, vyw29000, bff, bfg) new_ltEs4(vyw2800, vyw2900, app(ty_[], cg)) -> new_ltEs17(vyw2800, vyw2900, cg) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_lt18(vyw28000, vyw29000, bef, beg, beh) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_esEs5(vyw28001, vyw29001, bda) new_compare13(vyw28000, vyw29000, gc, gd) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, gc, gd), gc, gd) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_lt17(vyw28000, vyw29000, bed, bee) new_compare8(vyw28000, vyw29000, da, db) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, da, db), da, db) new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), cg) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_esEs17(vyw28001, vyw29001, bdg) new_esEs25(vyw301, vyw4001, app(ty_[], dbb)) -> new_esEs17(vyw301, vyw4001, dbb) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt18(vyw28001, vyw29001, bdd, bde, bdf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], bd)) -> new_esEs17(vyw28000, vyw29000, bd) new_lt10(vyw28000, vyw29000, ga) -> new_esEs8(new_compare18(vyw28000, vyw29000, ga), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_esEs5(vyw28000, vyw29000, bec) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cbg), cbh), cca), bad) -> new_esEs7(vyw300, vyw4000, cbg, cbh, cca) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, cba), cbb), bad) -> new_esEs4(vyw300, vyw4000, cba, cbb) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bad) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bad) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, da, db) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, gc, gd) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bh) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], bgc), bh) -> new_ltEs17(vyw28000, vyw29000, bgc) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], cg) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_esEs4(vyw28000, vyw29000, bea, beb) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_esEs4(vyw28001, vyw29001, bcg, bch) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfh)) -> new_esEs11(vyw300, vyw4000, cfh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chg)) -> new_esEs5(vyw302, vyw4002, chg) new_esEs30(vyw18, vyw13, app(ty_Maybe, dde)) -> new_esEs5(vyw18, vyw13, dde) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_lt17(vyw28001, vyw29001, bdb, bdc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, dae), daf)) -> new_esEs4(vyw301, vyw4001, dae, daf) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_esEs17(vyw28000, vyw29000, bfa) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dba)) -> new_esEs5(vyw301, vyw4001, dba) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], cad)) -> new_esEs17(vyw300, vyw4000, cad) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_esEs29(vyw30, vyw400, app(app(ty_Either, bac), bad)) -> new_esEs4(vyw30, vyw400, bac, bad) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs9(vyw18, vyw13) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), ca) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dcd)) -> new_esEs17(vyw300, vyw4000, dcd) new_compare23(Nothing, Just(vyw2900), False, be) -> LT new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs9(vyw30, vyw400) new_esEs30(vyw18, vyw13, app(app(ty_Either, dda), ddb)) -> new_esEs4(vyw18, vyw13, dda, ddb) new_esEs24(vyw302, vyw4002, app(app(ty_Either, chc), chd)) -> new_esEs4(vyw302, vyw4002, chc, chd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, ge, gf, gg) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_compare28(vyw28000, vyw29000, False, da, db) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, da, db), da, db) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_lt7(vyw28000, vyw29000, da, db) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cb, cc) -> new_pePe(new_lt9(vyw28000, vyw29000, cb), new_asAs(new_esEs10(vyw28000, vyw29000, cb), new_ltEs19(vyw28001, vyw29001, cc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, be) -> LT new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs7(vyw30, vyw400, bba, bbb, bbc) new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chh)) -> new_esEs17(vyw302, vyw4002, chh) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(vyw28000, vyw29000, bef, beg, beh) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(ty_@2, ddc), ddd)) -> new_esEs6(vyw18, vyw13, ddc, ddd) new_compare0(:(vyw28000, vyw28001), [], cg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bfe), bh) -> new_ltEs8(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(vyw18, vyw13, ddg, ddh, dea) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_esEs6(vyw28000, vyw29000, bed, bee) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs12(vyw30, vyw400) new_compare16(vyw28000, vyw29000, False, ge, gf, gg) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dcc)) -> new_esEs5(vyw300, vyw4000, dcc) new_ltEs9(LT, EQ) -> True new_esEs29(vyw30, vyw400, app(app(ty_@2, bae), baf)) -> new_esEs6(vyw30, vyw400, bae, baf) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, cbe), bad) -> new_esEs5(vyw300, vyw4000, cbe) new_lt7(vyw28000, vyw29000, da, db) -> new_esEs8(new_compare8(vyw28000, vyw29000, da, db), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_lt11(vyw28000, vyw29000, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), cg) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, cg), cg) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], cfd)) -> new_esEs17(vyw301, vyw4001, cfd) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_@2, bgh), bha)) -> new_ltEs14(vyw28000, vyw29000, bgh, bha) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], ceb)) -> new_esEs17(vyw300, vyw4000, ceb) new_compare17(vyw28000, vyw29000, app(app(ty_@2, hd), he)) -> new_compare13(vyw28000, vyw29000, hd, he) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bba, bbb, bbc) -> new_asAs(new_esEs26(vyw300, vyw4000, bba), new_asAs(new_esEs25(vyw301, vyw4001, bbb), new_esEs24(vyw302, vyw4002, bbc))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cd, ce, cf) -> new_pePe(new_lt20(vyw28000, vyw29000, cd), new_asAs(new_esEs20(vyw28000, vyw29000, cd), new_pePe(new_lt19(vyw28001, vyw29001, ce), new_asAs(new_esEs19(vyw28001, vyw29001, ce), new_ltEs20(vyw28002, vyw29002, cf))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbg, dbh) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs12(vyw18, vyw13) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, bd) -> new_esEs8(new_compare0(vyw28000, vyw29000, bd), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, ge, gf, gg) -> LT new_ltEs8(Nothing, Nothing, ca) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, chb)) -> new_esEs11(vyw302, vyw4002, chb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, ca) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_esEs6(vyw28001, vyw29001, bdb, bdc) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_[], bhe)) -> new_ltEs17(vyw28000, vyw29000, bhe) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bab) -> new_asAs(new_esEs28(vyw300, vyw4000, bab), new_esEs27(vyw301, vyw4001, bab)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bad) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, ha), hb)) -> new_compare8(vyw28000, vyw29000, ha, hb) new_compare110(vyw28000, vyw29000, False, gc, gd) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(vyw28000, vyw29000, bhb, bhc, bhd) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, dad)) -> new_esEs11(vyw301, vyw4001, dad) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bah) -> False new_esEs17([], :(vyw4000, vyw4001), bah) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, dd)) -> new_ltEs5(vyw28000, vyw29000, dd) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_lt10(vyw28001, vyw29001, bcf) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bah) -> new_asAs(new_esEs21(vyw300, vyw4000, bah), new_esEs17(vyw301, vyw4001, bah)) new_compare28(vyw28000, vyw29000, True, da, db) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Ratio, bgd)) -> new_ltEs5(vyw28000, vyw29000, bgd) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bad) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs17([], :(x0, x1), x2) new_esEs17([], [], x0) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, x2) new_lt9(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare14(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(EQ, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, True, x2) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(False, False) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare16(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_compare23(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(@0, @0) new_compare28(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, x2, x3) new_compare110(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_ltEs8(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_compare210(x0, x1, False, x2, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_compare23(Nothing, Nothing, False, x0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_compare26(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_not(True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_compare112(x0, x1, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare23(Just(x0), Just(x1), False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Bool) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_compare17(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare17(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, ty_Char) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_lt17(x0, x1, x2, x3) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1, x2) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(True, True) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs8(new_compare23(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_esEs8(new_compare23(Nothing, Just(vyw400), False, ba), GT), h, ba) new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, True, h, ba) -> new_elemFM00(vyw43, Nothing, h, ba) new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM0(vyw41, vyw42, vyw43, vyw44, new_esEs8(new_compare23(Nothing, Nothing, True, ba), GT), 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_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_lt7(vyw28001, vyw29001, bcg, bch) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, bfc), bfd), bh) -> new_ltEs7(vyw28000, vyw29000, bfc, bfd) new_ltEs7(Right(vyw28000), Left(vyw29000), bg, bh) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cgf)) -> new_esEs17(vyw300, vyw4000, cgf) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_lt10(vyw28000, vyw29000, bdh) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_compare17(vyw28000, vyw29000, app(ty_[], baa)) -> new_compare0(vyw28000, vyw29000, baa) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs7(vyw300, vyw4000, cae, caf, cag) new_compare23(vyw280, vyw290, True, be) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), bac, bad) -> False new_esEs4(Right(vyw300), Left(vyw4000), bac, bad) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, ge, gf, gg) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_esEs21(vyw300, vyw4000, app(app(ty_@2, caa), cab)) -> new_esEs6(vyw300, vyw4000, caa, cab) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, ge, gf, gg) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, ceg), ceh)) -> new_esEs4(vyw301, vyw4001, ceg, ceh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, da, db) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, cah), bad) -> new_esEs11(vyw300, vyw4000, cah) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bfh), bga), bgb), bh) -> new_ltEs15(vyw28000, vyw29000, bfh, bga, bgb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bf) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bf), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, hc)) -> new_compare12(vyw28000, vyw29000, hc) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dbf)) -> new_esEs11(vyw300, vyw4000, dbf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs15(vyw2800, vyw2900, cd, ce, cf) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_lt4(vyw28001, vyw29001, bdg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gb) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gb), gb) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bf)) -> new_ltEs5(vyw2800, vyw2900, bf) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bh) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_esEs6(vyw28000, vyw29000, gc, gd) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_lt17(vyw28000, vyw29000, gc, gd) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bh) -> new_ltEs10(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bad) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbc, dbd, dbe) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(vyw28000, vyw29000, ge, gf, gg) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, bbe), bbf)) -> new_ltEs7(vyw28002, vyw29002, bbe, bbf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(vyw28001, vyw29001, bdd, bde, bdf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_lt4(vyw28000, vyw29000, bfa) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, bbg)) -> new_ltEs8(vyw28002, vyw29002, bbg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhf)) -> new_esEs11(vyw300, vyw4000, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bad) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bad) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_lt7(vyw28000, vyw29000, bea, beb) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, cb), cc)) -> new_ltEs14(vyw2800, vyw2900, cb, cc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, cbc), cbd), bad) -> new_esEs6(vyw300, vyw4000, cbc, cbd) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, gc, gd) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, gc, gd), gc, gd) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, gc, gd) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_esEs11(vyw28000, vyw29000, ga) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdd)) -> new_esEs11(vyw300, vyw4000, cdd) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cef)) -> new_esEs11(vyw301, vyw4001, cef) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, hf), hg), hh)) -> new_compare26(vyw28000, vyw29000, hf, hg, hh) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, ge, gf, gg) -> new_esEs8(new_compare26(vyw28000, vyw29000, ge, gf, gg), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs6(vyw300, vyw4000, cdg, cdh) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dce, dcf, dcg) new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, gh)) -> new_compare18(vyw28000, vyw29000, gh) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cfa), cfb)) -> new_esEs6(vyw301, vyw4001, cfa, cfb) new_lt17(vyw28000, vyw29000, gc, gd) -> new_esEs8(new_compare13(vyw28000, vyw29000, gc, gd), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bad) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Maybe, bgg)) -> new_ltEs8(vyw28000, vyw29000, bgg) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw300, vyw4000, bhg, bhh) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gb) -> new_esEs8(new_compare12(vyw28000, vyw29000, gb), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bah) -> True new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_esEs11(vyw28001, vyw29001, bcf) new_esEs29(vyw30, vyw400, app(ty_Ratio, bab)) -> new_esEs11(vyw30, vyw400, bab) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_compare10(vyw82, vyw83, False, dc) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfb), bh) -> new_ltEs5(vyw28000, vyw29000, bfb) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bh) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, che), chf)) -> new_esEs6(vyw302, vyw4002, che, chf) new_esEs30(vyw18, vyw13, app(ty_[], ddf)) -> new_esEs17(vyw18, vyw13, ddf) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, cac)) -> new_esEs5(vyw300, vyw4000, cac) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, be) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, be), be) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, bag) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bh) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, baf) -> new_asAs(new_esEs23(vyw300, vyw4000, bae), new_esEs22(vyw301, vyw4001, baf)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt18(vyw28000, vyw29000, ge, gf, gg) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), bag) -> False new_esEs5(Just(vyw300), Nothing, bag) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_esEs11(vyw28000, vyw29000, bdh) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_Either, bge), bgf)) -> new_ltEs7(vyw28000, vyw29000, bge, bgf) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cga), cgb)) -> new_esEs4(vyw300, vyw4000, cga, cgb) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vyw300, vyw4000, cec, ced, cee) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dca), dcb)) -> new_esEs6(vyw300, vyw4000, dca, dcb) new_ltEs17(vyw2800, vyw2900, cg) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, cg), GT)) new_compare10(vyw82, vyw83, True, dc) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vyw301, vyw4001, cfe, cff, cfg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bh) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cge)) -> new_esEs5(vyw300, vyw4000, cge) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_esEs30(vyw18, vyw13, app(ty_Ratio, dch)) -> new_esEs11(vyw18, vyw13, dch) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ef)) -> new_ltEs5(vyw28001, vyw29001, ef) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_esEs4(vyw28000, vyw29000, da, db) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs29(vyw30, vyw400, app(ty_[], bah)) -> new_esEs17(vyw30, vyw400, bah) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(vyw302, vyw4002, daa, dab, dac) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bh) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_lt11(vyw28001, vyw29001, bda) new_compare23(Just(vyw2800), Nothing, False, be) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, bbh), bca)) -> new_ltEs14(vyw28002, vyw29002, bbh, bca) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_lt10(vyw28000, vyw29000, ga) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], bd)) -> new_lt4(vyw28000, vyw29000, bd) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_lt11(vyw28000, vyw29000, bec) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs15(vyw28002, vyw29002, bcb, bcc, bcd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw300, vyw4000, cgg, cgh, cha) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cbf), bad) -> new_esEs17(vyw300, vyw4000, cbf) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, cde), cdf)) -> new_esEs4(vyw300, vyw4000, cde, cdf) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_esEs5(vyw28000, vyw29000, gb) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dag), dah)) -> new_esEs6(vyw301, vyw4001, dag, dah) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cfc)) -> new_esEs5(vyw301, vyw4001, cfc) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bce)) -> new_ltEs17(vyw28002, vyw29002, bce) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, cea)) -> new_esEs5(vyw300, vyw4000, cea) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, ca)) -> new_ltEs8(vyw2800, vyw2900, ca) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), bg, bh) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bh) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgc, cgd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, bg), bh)) -> new_ltEs7(vyw2800, vyw2900, bg, bh) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bbd)) -> new_ltEs5(vyw28002, vyw29002, bbd) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, cg) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, cg)) new_esEs29(vyw30, vyw400, app(ty_Maybe, bag)) -> new_esEs5(vyw30, vyw400, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bff), bfg), bh) -> new_ltEs14(vyw28000, vyw29000, bff, bfg) new_ltEs4(vyw2800, vyw2900, app(ty_[], cg)) -> new_ltEs17(vyw2800, vyw2900, cg) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_lt18(vyw28000, vyw29000, bef, beg, beh) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_esEs5(vyw28001, vyw29001, bda) new_compare13(vyw28000, vyw29000, gc, gd) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, gc, gd), gc, gd) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_lt17(vyw28000, vyw29000, bed, bee) new_compare8(vyw28000, vyw29000, da, db) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, da, db), da, db) new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), cg) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_esEs17(vyw28001, vyw29001, bdg) new_esEs25(vyw301, vyw4001, app(ty_[], dbb)) -> new_esEs17(vyw301, vyw4001, dbb) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt18(vyw28001, vyw29001, bdd, bde, bdf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], bd)) -> new_esEs17(vyw28000, vyw29000, bd) new_lt10(vyw28000, vyw29000, ga) -> new_esEs8(new_compare18(vyw28000, vyw29000, ga), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_esEs5(vyw28000, vyw29000, bec) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cbg), cbh), cca), bad) -> new_esEs7(vyw300, vyw4000, cbg, cbh, cca) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, cba), cbb), bad) -> new_esEs4(vyw300, vyw4000, cba, cbb) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bad) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bad) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, da, db) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, gc, gd) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bh) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], bgc), bh) -> new_ltEs17(vyw28000, vyw29000, bgc) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], cg) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_esEs4(vyw28000, vyw29000, bea, beb) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_esEs4(vyw28001, vyw29001, bcg, bch) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfh)) -> new_esEs11(vyw300, vyw4000, cfh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chg)) -> new_esEs5(vyw302, vyw4002, chg) new_esEs30(vyw18, vyw13, app(ty_Maybe, dde)) -> new_esEs5(vyw18, vyw13, dde) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_lt17(vyw28001, vyw29001, bdb, bdc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, dae), daf)) -> new_esEs4(vyw301, vyw4001, dae, daf) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_esEs17(vyw28000, vyw29000, bfa) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dba)) -> new_esEs5(vyw301, vyw4001, dba) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], cad)) -> new_esEs17(vyw300, vyw4000, cad) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_esEs29(vyw30, vyw400, app(app(ty_Either, bac), bad)) -> new_esEs4(vyw30, vyw400, bac, bad) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs9(vyw18, vyw13) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), ca) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dcd)) -> new_esEs17(vyw300, vyw4000, dcd) new_compare23(Nothing, Just(vyw2900), False, be) -> LT new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs9(vyw30, vyw400) new_esEs30(vyw18, vyw13, app(app(ty_Either, dda), ddb)) -> new_esEs4(vyw18, vyw13, dda, ddb) new_esEs24(vyw302, vyw4002, app(app(ty_Either, chc), chd)) -> new_esEs4(vyw302, vyw4002, chc, chd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, ge, gf, gg) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_compare28(vyw28000, vyw29000, False, da, db) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, da, db), da, db) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_lt7(vyw28000, vyw29000, da, db) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cb, cc) -> new_pePe(new_lt9(vyw28000, vyw29000, cb), new_asAs(new_esEs10(vyw28000, vyw29000, cb), new_ltEs19(vyw28001, vyw29001, cc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, be) -> LT new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs7(vyw30, vyw400, bba, bbb, bbc) new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chh)) -> new_esEs17(vyw302, vyw4002, chh) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(vyw28000, vyw29000, bef, beg, beh) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(ty_@2, ddc), ddd)) -> new_esEs6(vyw18, vyw13, ddc, ddd) new_compare0(:(vyw28000, vyw28001), [], cg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bfe), bh) -> new_ltEs8(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(vyw18, vyw13, ddg, ddh, dea) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_esEs6(vyw28000, vyw29000, bed, bee) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs12(vyw30, vyw400) new_compare16(vyw28000, vyw29000, False, ge, gf, gg) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dcc)) -> new_esEs5(vyw300, vyw4000, dcc) new_ltEs9(LT, EQ) -> True new_esEs29(vyw30, vyw400, app(app(ty_@2, bae), baf)) -> new_esEs6(vyw30, vyw400, bae, baf) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, cbe), bad) -> new_esEs5(vyw300, vyw4000, cbe) new_lt7(vyw28000, vyw29000, da, db) -> new_esEs8(new_compare8(vyw28000, vyw29000, da, db), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_lt11(vyw28000, vyw29000, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), cg) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, cg), cg) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], cfd)) -> new_esEs17(vyw301, vyw4001, cfd) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_@2, bgh), bha)) -> new_ltEs14(vyw28000, vyw29000, bgh, bha) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], ceb)) -> new_esEs17(vyw300, vyw4000, ceb) new_compare17(vyw28000, vyw29000, app(app(ty_@2, hd), he)) -> new_compare13(vyw28000, vyw29000, hd, he) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bba, bbb, bbc) -> new_asAs(new_esEs26(vyw300, vyw4000, bba), new_asAs(new_esEs25(vyw301, vyw4001, bbb), new_esEs24(vyw302, vyw4002, bbc))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cd, ce, cf) -> new_pePe(new_lt20(vyw28000, vyw29000, cd), new_asAs(new_esEs20(vyw28000, vyw29000, cd), new_pePe(new_lt19(vyw28001, vyw29001, ce), new_asAs(new_esEs19(vyw28001, vyw29001, ce), new_ltEs20(vyw28002, vyw29002, cf))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbg, dbh) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs12(vyw18, vyw13) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, bd) -> new_esEs8(new_compare0(vyw28000, vyw29000, bd), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, ge, gf, gg) -> LT new_ltEs8(Nothing, Nothing, ca) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, chb)) -> new_esEs11(vyw302, vyw4002, chb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, ca) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_esEs6(vyw28001, vyw29001, bdb, bdc) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_[], bhe)) -> new_ltEs17(vyw28000, vyw29000, bhe) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bab) -> new_asAs(new_esEs28(vyw300, vyw4000, bab), new_esEs27(vyw301, vyw4001, bab)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bad) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, ha), hb)) -> new_compare8(vyw28000, vyw29000, ha, hb) new_compare110(vyw28000, vyw29000, False, gc, gd) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(vyw28000, vyw29000, bhb, bhc, bhd) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, dad)) -> new_esEs11(vyw301, vyw4001, dad) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bah) -> False new_esEs17([], :(vyw4000, vyw4001), bah) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, dd)) -> new_ltEs5(vyw28000, vyw29000, dd) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_lt10(vyw28001, vyw29001, bcf) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bah) -> new_asAs(new_esEs21(vyw300, vyw4000, bah), new_esEs17(vyw301, vyw4001, bah)) new_compare28(vyw28000, vyw29000, True, da, db) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Ratio, bgd)) -> new_ltEs5(vyw28000, vyw29000, bgd) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bad) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs17([], :(x0, x1), x2) new_esEs17([], [], x0) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, x2) new_lt9(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare14(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(EQ, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, True, x2) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(False, False) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare16(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_compare23(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(@0, @0) new_compare28(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, x2, x3) new_compare110(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_ltEs8(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_compare210(x0, x1, False, x2, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_compare23(Nothing, Nothing, False, x0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_compare26(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_not(True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_compare112(x0, x1, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare23(Just(x0), Just(x1), False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Bool) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_compare17(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare17(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, ty_Char) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_lt17(x0, x1, x2, x3) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1, x2) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(True, True) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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_esEs8(new_compare23(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_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_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM01(vyw400, vyw41, vyw42, vyw43, vyw44, new_esEs8(new_compare23(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_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Nothing, h, ba) -> new_elemFM0(vyw41, vyw42, vyw43, vyw44, new_esEs8(new_compare23(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_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 *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 ---------------------------------------- (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_esEs8(new_compare23(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_esEs8(new_compare23(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_esEs8(new_compare23(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_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_lt7(vyw28001, vyw29001, bcg, bch) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, bfc), bfd), bh) -> new_ltEs7(vyw28000, vyw29000, bfc, bfd) new_ltEs7(Right(vyw28000), Left(vyw29000), bg, bh) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cgf)) -> new_esEs17(vyw300, vyw4000, cgf) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_lt10(vyw28000, vyw29000, bdh) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_compare17(vyw28000, vyw29000, app(ty_[], baa)) -> new_compare0(vyw28000, vyw29000, baa) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs7(vyw300, vyw4000, cae, caf, cag) new_compare23(vyw280, vyw290, True, be) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), bac, bad) -> False new_esEs4(Right(vyw300), Left(vyw4000), bac, bad) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, ge, gf, gg) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_esEs21(vyw300, vyw4000, app(app(ty_@2, caa), cab)) -> new_esEs6(vyw300, vyw4000, caa, cab) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, ge, gf, gg) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, ceg), ceh)) -> new_esEs4(vyw301, vyw4001, ceg, ceh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, da, db) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, cah), bad) -> new_esEs11(vyw300, vyw4000, cah) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bfh), bga), bgb), bh) -> new_ltEs15(vyw28000, vyw29000, bfh, bga, bgb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bf) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bf), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, hc)) -> new_compare12(vyw28000, vyw29000, hc) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dbf)) -> new_esEs11(vyw300, vyw4000, dbf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs15(vyw2800, vyw2900, cd, ce, cf) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_lt4(vyw28001, vyw29001, bdg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gb) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gb), gb) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bf)) -> new_ltEs5(vyw2800, vyw2900, bf) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bh) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_esEs6(vyw28000, vyw29000, gc, gd) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_lt17(vyw28000, vyw29000, gc, gd) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bh) -> new_ltEs10(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bad) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbc, dbd, dbe) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(vyw28000, vyw29000, ge, gf, gg) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, bbe), bbf)) -> new_ltEs7(vyw28002, vyw29002, bbe, bbf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(vyw28001, vyw29001, bdd, bde, bdf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_lt4(vyw28000, vyw29000, bfa) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, bbg)) -> new_ltEs8(vyw28002, vyw29002, bbg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhf)) -> new_esEs11(vyw300, vyw4000, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bad) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bad) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_lt7(vyw28000, vyw29000, bea, beb) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, cb), cc)) -> new_ltEs14(vyw2800, vyw2900, cb, cc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, cbc), cbd), bad) -> new_esEs6(vyw300, vyw4000, cbc, cbd) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, gc, gd) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, gc, gd), gc, gd) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, gc, gd) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_esEs11(vyw28000, vyw29000, ga) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdd)) -> new_esEs11(vyw300, vyw4000, cdd) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cef)) -> new_esEs11(vyw301, vyw4001, cef) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, hf), hg), hh)) -> new_compare26(vyw28000, vyw29000, hf, hg, hh) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, ge, gf, gg) -> new_esEs8(new_compare26(vyw28000, vyw29000, ge, gf, gg), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs6(vyw300, vyw4000, cdg, cdh) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dce, dcf, dcg) new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, gh)) -> new_compare18(vyw28000, vyw29000, gh) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cfa), cfb)) -> new_esEs6(vyw301, vyw4001, cfa, cfb) new_lt17(vyw28000, vyw29000, gc, gd) -> new_esEs8(new_compare13(vyw28000, vyw29000, gc, gd), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bad) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Maybe, bgg)) -> new_ltEs8(vyw28000, vyw29000, bgg) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw300, vyw4000, bhg, bhh) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gb) -> new_esEs8(new_compare12(vyw28000, vyw29000, gb), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bah) -> True new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_esEs11(vyw28001, vyw29001, bcf) new_esEs29(vyw30, vyw400, app(ty_Ratio, bab)) -> new_esEs11(vyw30, vyw400, bab) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_compare10(vyw82, vyw83, False, dc) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfb), bh) -> new_ltEs5(vyw28000, vyw29000, bfb) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bh) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, che), chf)) -> new_esEs6(vyw302, vyw4002, che, chf) new_esEs30(vyw18, vyw13, app(ty_[], ddf)) -> new_esEs17(vyw18, vyw13, ddf) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, cac)) -> new_esEs5(vyw300, vyw4000, cac) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, be) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, be), be) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, bag) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bh) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, baf) -> new_asAs(new_esEs23(vyw300, vyw4000, bae), new_esEs22(vyw301, vyw4001, baf)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt18(vyw28000, vyw29000, ge, gf, gg) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), bag) -> False new_esEs5(Just(vyw300), Nothing, bag) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_esEs11(vyw28000, vyw29000, bdh) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_Either, bge), bgf)) -> new_ltEs7(vyw28000, vyw29000, bge, bgf) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cga), cgb)) -> new_esEs4(vyw300, vyw4000, cga, cgb) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vyw300, vyw4000, cec, ced, cee) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dca), dcb)) -> new_esEs6(vyw300, vyw4000, dca, dcb) new_ltEs17(vyw2800, vyw2900, cg) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, cg), GT)) new_compare10(vyw82, vyw83, True, dc) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vyw301, vyw4001, cfe, cff, cfg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bh) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cge)) -> new_esEs5(vyw300, vyw4000, cge) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_esEs30(vyw18, vyw13, app(ty_Ratio, dch)) -> new_esEs11(vyw18, vyw13, dch) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ef)) -> new_ltEs5(vyw28001, vyw29001, ef) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_esEs4(vyw28000, vyw29000, da, db) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs29(vyw30, vyw400, app(ty_[], bah)) -> new_esEs17(vyw30, vyw400, bah) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(vyw302, vyw4002, daa, dab, dac) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bh) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_lt11(vyw28001, vyw29001, bda) new_compare23(Just(vyw2800), Nothing, False, be) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, bbh), bca)) -> new_ltEs14(vyw28002, vyw29002, bbh, bca) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_lt10(vyw28000, vyw29000, ga) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], bd)) -> new_lt4(vyw28000, vyw29000, bd) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_lt11(vyw28000, vyw29000, bec) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs15(vyw28002, vyw29002, bcb, bcc, bcd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw300, vyw4000, cgg, cgh, cha) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cbf), bad) -> new_esEs17(vyw300, vyw4000, cbf) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, cde), cdf)) -> new_esEs4(vyw300, vyw4000, cde, cdf) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_esEs5(vyw28000, vyw29000, gb) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dag), dah)) -> new_esEs6(vyw301, vyw4001, dag, dah) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cfc)) -> new_esEs5(vyw301, vyw4001, cfc) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bce)) -> new_ltEs17(vyw28002, vyw29002, bce) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, cea)) -> new_esEs5(vyw300, vyw4000, cea) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, ca)) -> new_ltEs8(vyw2800, vyw2900, ca) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), bg, bh) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bh) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgc, cgd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, bg), bh)) -> new_ltEs7(vyw2800, vyw2900, bg, bh) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bbd)) -> new_ltEs5(vyw28002, vyw29002, bbd) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, cg) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, cg)) new_esEs29(vyw30, vyw400, app(ty_Maybe, bag)) -> new_esEs5(vyw30, vyw400, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bff), bfg), bh) -> new_ltEs14(vyw28000, vyw29000, bff, bfg) new_ltEs4(vyw2800, vyw2900, app(ty_[], cg)) -> new_ltEs17(vyw2800, vyw2900, cg) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_lt18(vyw28000, vyw29000, bef, beg, beh) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_esEs5(vyw28001, vyw29001, bda) new_compare13(vyw28000, vyw29000, gc, gd) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, gc, gd), gc, gd) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_lt17(vyw28000, vyw29000, bed, bee) new_compare8(vyw28000, vyw29000, da, db) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, da, db), da, db) new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), cg) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_esEs17(vyw28001, vyw29001, bdg) new_esEs25(vyw301, vyw4001, app(ty_[], dbb)) -> new_esEs17(vyw301, vyw4001, dbb) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt18(vyw28001, vyw29001, bdd, bde, bdf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], bd)) -> new_esEs17(vyw28000, vyw29000, bd) new_lt10(vyw28000, vyw29000, ga) -> new_esEs8(new_compare18(vyw28000, vyw29000, ga), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_esEs5(vyw28000, vyw29000, bec) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cbg), cbh), cca), bad) -> new_esEs7(vyw300, vyw4000, cbg, cbh, cca) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, cba), cbb), bad) -> new_esEs4(vyw300, vyw4000, cba, cbb) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bad) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bad) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, da, db) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, gc, gd) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bh) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], bgc), bh) -> new_ltEs17(vyw28000, vyw29000, bgc) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], cg) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_esEs4(vyw28000, vyw29000, bea, beb) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_esEs4(vyw28001, vyw29001, bcg, bch) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfh)) -> new_esEs11(vyw300, vyw4000, cfh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chg)) -> new_esEs5(vyw302, vyw4002, chg) new_esEs30(vyw18, vyw13, app(ty_Maybe, dde)) -> new_esEs5(vyw18, vyw13, dde) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_lt17(vyw28001, vyw29001, bdb, bdc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, dae), daf)) -> new_esEs4(vyw301, vyw4001, dae, daf) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_esEs17(vyw28000, vyw29000, bfa) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dba)) -> new_esEs5(vyw301, vyw4001, dba) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], cad)) -> new_esEs17(vyw300, vyw4000, cad) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_esEs29(vyw30, vyw400, app(app(ty_Either, bac), bad)) -> new_esEs4(vyw30, vyw400, bac, bad) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs9(vyw18, vyw13) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), ca) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dcd)) -> new_esEs17(vyw300, vyw4000, dcd) new_compare23(Nothing, Just(vyw2900), False, be) -> LT new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs9(vyw30, vyw400) new_esEs30(vyw18, vyw13, app(app(ty_Either, dda), ddb)) -> new_esEs4(vyw18, vyw13, dda, ddb) new_esEs24(vyw302, vyw4002, app(app(ty_Either, chc), chd)) -> new_esEs4(vyw302, vyw4002, chc, chd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, ge, gf, gg) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_compare28(vyw28000, vyw29000, False, da, db) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, da, db), da, db) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_lt7(vyw28000, vyw29000, da, db) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cb, cc) -> new_pePe(new_lt9(vyw28000, vyw29000, cb), new_asAs(new_esEs10(vyw28000, vyw29000, cb), new_ltEs19(vyw28001, vyw29001, cc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, be) -> LT new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs7(vyw30, vyw400, bba, bbb, bbc) new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chh)) -> new_esEs17(vyw302, vyw4002, chh) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(vyw28000, vyw29000, bef, beg, beh) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(ty_@2, ddc), ddd)) -> new_esEs6(vyw18, vyw13, ddc, ddd) new_compare0(:(vyw28000, vyw28001), [], cg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bfe), bh) -> new_ltEs8(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(vyw18, vyw13, ddg, ddh, dea) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_esEs6(vyw28000, vyw29000, bed, bee) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs12(vyw30, vyw400) new_compare16(vyw28000, vyw29000, False, ge, gf, gg) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dcc)) -> new_esEs5(vyw300, vyw4000, dcc) new_ltEs9(LT, EQ) -> True new_esEs29(vyw30, vyw400, app(app(ty_@2, bae), baf)) -> new_esEs6(vyw30, vyw400, bae, baf) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, cbe), bad) -> new_esEs5(vyw300, vyw4000, cbe) new_lt7(vyw28000, vyw29000, da, db) -> new_esEs8(new_compare8(vyw28000, vyw29000, da, db), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_lt11(vyw28000, vyw29000, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), cg) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, cg), cg) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], cfd)) -> new_esEs17(vyw301, vyw4001, cfd) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_@2, bgh), bha)) -> new_ltEs14(vyw28000, vyw29000, bgh, bha) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], ceb)) -> new_esEs17(vyw300, vyw4000, ceb) new_compare17(vyw28000, vyw29000, app(app(ty_@2, hd), he)) -> new_compare13(vyw28000, vyw29000, hd, he) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bba, bbb, bbc) -> new_asAs(new_esEs26(vyw300, vyw4000, bba), new_asAs(new_esEs25(vyw301, vyw4001, bbb), new_esEs24(vyw302, vyw4002, bbc))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cd, ce, cf) -> new_pePe(new_lt20(vyw28000, vyw29000, cd), new_asAs(new_esEs20(vyw28000, vyw29000, cd), new_pePe(new_lt19(vyw28001, vyw29001, ce), new_asAs(new_esEs19(vyw28001, vyw29001, ce), new_ltEs20(vyw28002, vyw29002, cf))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbg, dbh) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs12(vyw18, vyw13) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, bd) -> new_esEs8(new_compare0(vyw28000, vyw29000, bd), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, ge, gf, gg) -> LT new_ltEs8(Nothing, Nothing, ca) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, chb)) -> new_esEs11(vyw302, vyw4002, chb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, ca) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_esEs6(vyw28001, vyw29001, bdb, bdc) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_[], bhe)) -> new_ltEs17(vyw28000, vyw29000, bhe) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bab) -> new_asAs(new_esEs28(vyw300, vyw4000, bab), new_esEs27(vyw301, vyw4001, bab)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bad) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, ha), hb)) -> new_compare8(vyw28000, vyw29000, ha, hb) new_compare110(vyw28000, vyw29000, False, gc, gd) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(vyw28000, vyw29000, bhb, bhc, bhd) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, dad)) -> new_esEs11(vyw301, vyw4001, dad) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bah) -> False new_esEs17([], :(vyw4000, vyw4001), bah) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, dd)) -> new_ltEs5(vyw28000, vyw29000, dd) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_lt10(vyw28001, vyw29001, bcf) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bah) -> new_asAs(new_esEs21(vyw300, vyw4000, bah), new_esEs17(vyw301, vyw4001, bah)) new_compare28(vyw28000, vyw29000, True, da, db) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Ratio, bgd)) -> new_ltEs5(vyw28000, vyw29000, bgd) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bad) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs17([], :(x0, x1), x2) new_esEs17([], [], x0) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, x2) new_lt9(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare14(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(EQ, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, True, x2) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(False, False) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare16(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_compare23(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(@0, @0) new_compare28(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, x2, x3) new_compare110(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_ltEs8(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_compare210(x0, x1, False, x2, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_compare23(Nothing, Nothing, False, x0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_compare26(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_not(True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_compare112(x0, x1, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare23(Just(x0), Just(x1), False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Bool) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_compare17(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare17(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, ty_Char) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_lt17(x0, x1, x2, x3) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1, x2) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(True, True) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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_esEs8(new_compare23(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_esEs8(GT, LT), h, ba),new_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(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_esEs8(new_compare23(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_esEs8(new_compare23(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_elemFM03(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, bb, bc) -> new_elemFM00(vyw16, Just(vyw18), bb, bc) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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_esEs8(GT, LT), h, ba) The TRS R consists of the following rules: new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_lt7(vyw28001, vyw29001, bcg, bch) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, bfc), bfd), bh) -> new_ltEs7(vyw28000, vyw29000, bfc, bfd) new_ltEs7(Right(vyw28000), Left(vyw29000), bg, bh) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cgf)) -> new_esEs17(vyw300, vyw4000, cgf) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_lt10(vyw28000, vyw29000, bdh) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_compare17(vyw28000, vyw29000, app(ty_[], baa)) -> new_compare0(vyw28000, vyw29000, baa) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs7(vyw300, vyw4000, cae, caf, cag) new_compare23(vyw280, vyw290, True, be) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), bac, bad) -> False new_esEs4(Right(vyw300), Left(vyw4000), bac, bad) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, ge, gf, gg) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_esEs21(vyw300, vyw4000, app(app(ty_@2, caa), cab)) -> new_esEs6(vyw300, vyw4000, caa, cab) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, ge, gf, gg) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, ceg), ceh)) -> new_esEs4(vyw301, vyw4001, ceg, ceh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, da, db) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, cah), bad) -> new_esEs11(vyw300, vyw4000, cah) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bfh), bga), bgb), bh) -> new_ltEs15(vyw28000, vyw29000, bfh, bga, bgb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bf) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bf), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, hc)) -> new_compare12(vyw28000, vyw29000, hc) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dbf)) -> new_esEs11(vyw300, vyw4000, dbf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs15(vyw2800, vyw2900, cd, ce, cf) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_lt4(vyw28001, vyw29001, bdg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gb) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gb), gb) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bf)) -> new_ltEs5(vyw2800, vyw2900, bf) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bh) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_esEs6(vyw28000, vyw29000, gc, gd) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_lt17(vyw28000, vyw29000, gc, gd) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bh) -> new_ltEs10(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bad) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbc, dbd, dbe) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(vyw28000, vyw29000, ge, gf, gg) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, bbe), bbf)) -> new_ltEs7(vyw28002, vyw29002, bbe, bbf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(vyw28001, vyw29001, bdd, bde, bdf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_lt4(vyw28000, vyw29000, bfa) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, bbg)) -> new_ltEs8(vyw28002, vyw29002, bbg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhf)) -> new_esEs11(vyw300, vyw4000, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bad) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bad) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_lt7(vyw28000, vyw29000, bea, beb) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, cb), cc)) -> new_ltEs14(vyw2800, vyw2900, cb, cc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, cbc), cbd), bad) -> new_esEs6(vyw300, vyw4000, cbc, cbd) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, gc, gd) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, gc, gd), gc, gd) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, gc, gd) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_esEs11(vyw28000, vyw29000, ga) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdd)) -> new_esEs11(vyw300, vyw4000, cdd) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cef)) -> new_esEs11(vyw301, vyw4001, cef) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, hf), hg), hh)) -> new_compare26(vyw28000, vyw29000, hf, hg, hh) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, ge, gf, gg) -> new_esEs8(new_compare26(vyw28000, vyw29000, ge, gf, gg), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs6(vyw300, vyw4000, cdg, cdh) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dce, dcf, dcg) new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, gh)) -> new_compare18(vyw28000, vyw29000, gh) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cfa), cfb)) -> new_esEs6(vyw301, vyw4001, cfa, cfb) new_lt17(vyw28000, vyw29000, gc, gd) -> new_esEs8(new_compare13(vyw28000, vyw29000, gc, gd), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bad) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Maybe, bgg)) -> new_ltEs8(vyw28000, vyw29000, bgg) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw300, vyw4000, bhg, bhh) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gb) -> new_esEs8(new_compare12(vyw28000, vyw29000, gb), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bah) -> True new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_esEs11(vyw28001, vyw29001, bcf) new_esEs29(vyw30, vyw400, app(ty_Ratio, bab)) -> new_esEs11(vyw30, vyw400, bab) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_compare10(vyw82, vyw83, False, dc) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfb), bh) -> new_ltEs5(vyw28000, vyw29000, bfb) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bh) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, che), chf)) -> new_esEs6(vyw302, vyw4002, che, chf) new_esEs30(vyw18, vyw13, app(ty_[], ddf)) -> new_esEs17(vyw18, vyw13, ddf) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, cac)) -> new_esEs5(vyw300, vyw4000, cac) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, be) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, be), be) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, bag) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bh) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, baf) -> new_asAs(new_esEs23(vyw300, vyw4000, bae), new_esEs22(vyw301, vyw4001, baf)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt18(vyw28000, vyw29000, ge, gf, gg) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), bag) -> False new_esEs5(Just(vyw300), Nothing, bag) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_esEs11(vyw28000, vyw29000, bdh) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_Either, bge), bgf)) -> new_ltEs7(vyw28000, vyw29000, bge, bgf) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cga), cgb)) -> new_esEs4(vyw300, vyw4000, cga, cgb) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vyw300, vyw4000, cec, ced, cee) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dca), dcb)) -> new_esEs6(vyw300, vyw4000, dca, dcb) new_ltEs17(vyw2800, vyw2900, cg) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, cg), GT)) new_compare10(vyw82, vyw83, True, dc) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vyw301, vyw4001, cfe, cff, cfg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bh) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cge)) -> new_esEs5(vyw300, vyw4000, cge) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_esEs30(vyw18, vyw13, app(ty_Ratio, dch)) -> new_esEs11(vyw18, vyw13, dch) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ef)) -> new_ltEs5(vyw28001, vyw29001, ef) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_esEs4(vyw28000, vyw29000, da, db) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs29(vyw30, vyw400, app(ty_[], bah)) -> new_esEs17(vyw30, vyw400, bah) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(vyw302, vyw4002, daa, dab, dac) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bh) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_lt11(vyw28001, vyw29001, bda) new_compare23(Just(vyw2800), Nothing, False, be) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, bbh), bca)) -> new_ltEs14(vyw28002, vyw29002, bbh, bca) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_lt10(vyw28000, vyw29000, ga) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], bd)) -> new_lt4(vyw28000, vyw29000, bd) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_lt11(vyw28000, vyw29000, bec) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs15(vyw28002, vyw29002, bcb, bcc, bcd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw300, vyw4000, cgg, cgh, cha) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cbf), bad) -> new_esEs17(vyw300, vyw4000, cbf) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, cde), cdf)) -> new_esEs4(vyw300, vyw4000, cde, cdf) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_esEs5(vyw28000, vyw29000, gb) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dag), dah)) -> new_esEs6(vyw301, vyw4001, dag, dah) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cfc)) -> new_esEs5(vyw301, vyw4001, cfc) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bce)) -> new_ltEs17(vyw28002, vyw29002, bce) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, cea)) -> new_esEs5(vyw300, vyw4000, cea) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, ca)) -> new_ltEs8(vyw2800, vyw2900, ca) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), bg, bh) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bh) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgc, cgd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, bg), bh)) -> new_ltEs7(vyw2800, vyw2900, bg, bh) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bbd)) -> new_ltEs5(vyw28002, vyw29002, bbd) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, cg) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, cg)) new_esEs29(vyw30, vyw400, app(ty_Maybe, bag)) -> new_esEs5(vyw30, vyw400, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bff), bfg), bh) -> new_ltEs14(vyw28000, vyw29000, bff, bfg) new_ltEs4(vyw2800, vyw2900, app(ty_[], cg)) -> new_ltEs17(vyw2800, vyw2900, cg) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_lt18(vyw28000, vyw29000, bef, beg, beh) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_esEs5(vyw28001, vyw29001, bda) new_compare13(vyw28000, vyw29000, gc, gd) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, gc, gd), gc, gd) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_lt17(vyw28000, vyw29000, bed, bee) new_compare8(vyw28000, vyw29000, da, db) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, da, db), da, db) new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), cg) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_esEs17(vyw28001, vyw29001, bdg) new_esEs25(vyw301, vyw4001, app(ty_[], dbb)) -> new_esEs17(vyw301, vyw4001, dbb) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt18(vyw28001, vyw29001, bdd, bde, bdf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], bd)) -> new_esEs17(vyw28000, vyw29000, bd) new_lt10(vyw28000, vyw29000, ga) -> new_esEs8(new_compare18(vyw28000, vyw29000, ga), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_esEs5(vyw28000, vyw29000, bec) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cbg), cbh), cca), bad) -> new_esEs7(vyw300, vyw4000, cbg, cbh, cca) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, cba), cbb), bad) -> new_esEs4(vyw300, vyw4000, cba, cbb) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bad) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bad) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, da, db) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, gc, gd) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bh) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], bgc), bh) -> new_ltEs17(vyw28000, vyw29000, bgc) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], cg) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_esEs4(vyw28000, vyw29000, bea, beb) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_esEs4(vyw28001, vyw29001, bcg, bch) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfh)) -> new_esEs11(vyw300, vyw4000, cfh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chg)) -> new_esEs5(vyw302, vyw4002, chg) new_esEs30(vyw18, vyw13, app(ty_Maybe, dde)) -> new_esEs5(vyw18, vyw13, dde) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_lt17(vyw28001, vyw29001, bdb, bdc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, dae), daf)) -> new_esEs4(vyw301, vyw4001, dae, daf) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_esEs17(vyw28000, vyw29000, bfa) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dba)) -> new_esEs5(vyw301, vyw4001, dba) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], cad)) -> new_esEs17(vyw300, vyw4000, cad) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_esEs29(vyw30, vyw400, app(app(ty_Either, bac), bad)) -> new_esEs4(vyw30, vyw400, bac, bad) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs9(vyw18, vyw13) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), ca) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dcd)) -> new_esEs17(vyw300, vyw4000, dcd) new_compare23(Nothing, Just(vyw2900), False, be) -> LT new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs9(vyw30, vyw400) new_esEs30(vyw18, vyw13, app(app(ty_Either, dda), ddb)) -> new_esEs4(vyw18, vyw13, dda, ddb) new_esEs24(vyw302, vyw4002, app(app(ty_Either, chc), chd)) -> new_esEs4(vyw302, vyw4002, chc, chd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, ge, gf, gg) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_compare28(vyw28000, vyw29000, False, da, db) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, da, db), da, db) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_lt7(vyw28000, vyw29000, da, db) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cb, cc) -> new_pePe(new_lt9(vyw28000, vyw29000, cb), new_asAs(new_esEs10(vyw28000, vyw29000, cb), new_ltEs19(vyw28001, vyw29001, cc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, be) -> LT new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs7(vyw30, vyw400, bba, bbb, bbc) new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chh)) -> new_esEs17(vyw302, vyw4002, chh) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(vyw28000, vyw29000, bef, beg, beh) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(ty_@2, ddc), ddd)) -> new_esEs6(vyw18, vyw13, ddc, ddd) new_compare0(:(vyw28000, vyw28001), [], cg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bfe), bh) -> new_ltEs8(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(vyw18, vyw13, ddg, ddh, dea) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_esEs6(vyw28000, vyw29000, bed, bee) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs12(vyw30, vyw400) new_compare16(vyw28000, vyw29000, False, ge, gf, gg) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dcc)) -> new_esEs5(vyw300, vyw4000, dcc) new_ltEs9(LT, EQ) -> True new_esEs29(vyw30, vyw400, app(app(ty_@2, bae), baf)) -> new_esEs6(vyw30, vyw400, bae, baf) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, cbe), bad) -> new_esEs5(vyw300, vyw4000, cbe) new_lt7(vyw28000, vyw29000, da, db) -> new_esEs8(new_compare8(vyw28000, vyw29000, da, db), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_lt11(vyw28000, vyw29000, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), cg) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, cg), cg) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], cfd)) -> new_esEs17(vyw301, vyw4001, cfd) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_@2, bgh), bha)) -> new_ltEs14(vyw28000, vyw29000, bgh, bha) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], ceb)) -> new_esEs17(vyw300, vyw4000, ceb) new_compare17(vyw28000, vyw29000, app(app(ty_@2, hd), he)) -> new_compare13(vyw28000, vyw29000, hd, he) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bba, bbb, bbc) -> new_asAs(new_esEs26(vyw300, vyw4000, bba), new_asAs(new_esEs25(vyw301, vyw4001, bbb), new_esEs24(vyw302, vyw4002, bbc))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cd, ce, cf) -> new_pePe(new_lt20(vyw28000, vyw29000, cd), new_asAs(new_esEs20(vyw28000, vyw29000, cd), new_pePe(new_lt19(vyw28001, vyw29001, ce), new_asAs(new_esEs19(vyw28001, vyw29001, ce), new_ltEs20(vyw28002, vyw29002, cf))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbg, dbh) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs12(vyw18, vyw13) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, bd) -> new_esEs8(new_compare0(vyw28000, vyw29000, bd), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, ge, gf, gg) -> LT new_ltEs8(Nothing, Nothing, ca) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, chb)) -> new_esEs11(vyw302, vyw4002, chb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, ca) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_esEs6(vyw28001, vyw29001, bdb, bdc) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_[], bhe)) -> new_ltEs17(vyw28000, vyw29000, bhe) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bab) -> new_asAs(new_esEs28(vyw300, vyw4000, bab), new_esEs27(vyw301, vyw4001, bab)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bad) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, ha), hb)) -> new_compare8(vyw28000, vyw29000, ha, hb) new_compare110(vyw28000, vyw29000, False, gc, gd) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(vyw28000, vyw29000, bhb, bhc, bhd) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, dad)) -> new_esEs11(vyw301, vyw4001, dad) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bah) -> False new_esEs17([], :(vyw4000, vyw4001), bah) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, dd)) -> new_ltEs5(vyw28000, vyw29000, dd) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_lt10(vyw28001, vyw29001, bcf) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bah) -> new_asAs(new_esEs21(vyw300, vyw4000, bah), new_esEs17(vyw301, vyw4001, bah)) new_compare28(vyw28000, vyw29000, True, da, db) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Ratio, bgd)) -> new_ltEs5(vyw28000, vyw29000, bgd) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bad) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs17([], :(x0, x1), x2) new_esEs17([], [], x0) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, x2) new_lt9(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare14(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(EQ, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, True, x2) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(False, False) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare16(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_compare23(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(@0, @0) new_compare28(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, x2, x3) new_compare110(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_ltEs8(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_compare210(x0, x1, False, x2, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_compare23(Nothing, Nothing, False, x0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_compare26(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_not(True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_compare112(x0, x1, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare23(Just(x0), Just(x1), False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Bool) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_compare17(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare17(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, ty_Char) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_lt17(x0, x1, x2, x3) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1, x2) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(True, True) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare23(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(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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_elemFM00(Branch(Nothing, vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(GT, LT), h, ba) new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_lt7(vyw28001, vyw29001, bcg, bch) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, bfc), bfd), bh) -> new_ltEs7(vyw28000, vyw29000, bfc, bfd) new_ltEs7(Right(vyw28000), Left(vyw29000), bg, bh) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cgf)) -> new_esEs17(vyw300, vyw4000, cgf) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_lt10(vyw28000, vyw29000, bdh) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_compare17(vyw28000, vyw29000, app(ty_[], baa)) -> new_compare0(vyw28000, vyw29000, baa) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs7(vyw300, vyw4000, cae, caf, cag) new_compare23(vyw280, vyw290, True, be) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), bac, bad) -> False new_esEs4(Right(vyw300), Left(vyw4000), bac, bad) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, ge, gf, gg) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_esEs21(vyw300, vyw4000, app(app(ty_@2, caa), cab)) -> new_esEs6(vyw300, vyw4000, caa, cab) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, ge, gf, gg) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, ceg), ceh)) -> new_esEs4(vyw301, vyw4001, ceg, ceh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, da, db) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, cah), bad) -> new_esEs11(vyw300, vyw4000, cah) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bfh), bga), bgb), bh) -> new_ltEs15(vyw28000, vyw29000, bfh, bga, bgb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bf) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bf), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, hc)) -> new_compare12(vyw28000, vyw29000, hc) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dbf)) -> new_esEs11(vyw300, vyw4000, dbf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs15(vyw2800, vyw2900, cd, ce, cf) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_lt4(vyw28001, vyw29001, bdg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gb) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gb), gb) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bf)) -> new_ltEs5(vyw2800, vyw2900, bf) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bh) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_esEs6(vyw28000, vyw29000, gc, gd) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_lt17(vyw28000, vyw29000, gc, gd) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bh) -> new_ltEs10(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bad) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbc, dbd, dbe) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(vyw28000, vyw29000, ge, gf, gg) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, bbe), bbf)) -> new_ltEs7(vyw28002, vyw29002, bbe, bbf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(vyw28001, vyw29001, bdd, bde, bdf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_lt4(vyw28000, vyw29000, bfa) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, bbg)) -> new_ltEs8(vyw28002, vyw29002, bbg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhf)) -> new_esEs11(vyw300, vyw4000, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bad) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bad) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_lt7(vyw28000, vyw29000, bea, beb) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, cb), cc)) -> new_ltEs14(vyw2800, vyw2900, cb, cc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, cbc), cbd), bad) -> new_esEs6(vyw300, vyw4000, cbc, cbd) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, gc, gd) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, gc, gd), gc, gd) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, gc, gd) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_esEs11(vyw28000, vyw29000, ga) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdd)) -> new_esEs11(vyw300, vyw4000, cdd) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cef)) -> new_esEs11(vyw301, vyw4001, cef) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, hf), hg), hh)) -> new_compare26(vyw28000, vyw29000, hf, hg, hh) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, ge, gf, gg) -> new_esEs8(new_compare26(vyw28000, vyw29000, ge, gf, gg), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs6(vyw300, vyw4000, cdg, cdh) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dce, dcf, dcg) new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, gh)) -> new_compare18(vyw28000, vyw29000, gh) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cfa), cfb)) -> new_esEs6(vyw301, vyw4001, cfa, cfb) new_lt17(vyw28000, vyw29000, gc, gd) -> new_esEs8(new_compare13(vyw28000, vyw29000, gc, gd), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bad) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Maybe, bgg)) -> new_ltEs8(vyw28000, vyw29000, bgg) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw300, vyw4000, bhg, bhh) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gb) -> new_esEs8(new_compare12(vyw28000, vyw29000, gb), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bah) -> True new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_esEs11(vyw28001, vyw29001, bcf) new_esEs29(vyw30, vyw400, app(ty_Ratio, bab)) -> new_esEs11(vyw30, vyw400, bab) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_compare10(vyw82, vyw83, False, dc) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfb), bh) -> new_ltEs5(vyw28000, vyw29000, bfb) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bh) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, che), chf)) -> new_esEs6(vyw302, vyw4002, che, chf) new_esEs30(vyw18, vyw13, app(ty_[], ddf)) -> new_esEs17(vyw18, vyw13, ddf) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, cac)) -> new_esEs5(vyw300, vyw4000, cac) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, be) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, be), be) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, bag) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bh) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, baf) -> new_asAs(new_esEs23(vyw300, vyw4000, bae), new_esEs22(vyw301, vyw4001, baf)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt18(vyw28000, vyw29000, ge, gf, gg) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), bag) -> False new_esEs5(Just(vyw300), Nothing, bag) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_esEs11(vyw28000, vyw29000, bdh) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_Either, bge), bgf)) -> new_ltEs7(vyw28000, vyw29000, bge, bgf) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cga), cgb)) -> new_esEs4(vyw300, vyw4000, cga, cgb) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vyw300, vyw4000, cec, ced, cee) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dca), dcb)) -> new_esEs6(vyw300, vyw4000, dca, dcb) new_ltEs17(vyw2800, vyw2900, cg) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, cg), GT)) new_compare10(vyw82, vyw83, True, dc) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vyw301, vyw4001, cfe, cff, cfg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bh) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cge)) -> new_esEs5(vyw300, vyw4000, cge) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_esEs30(vyw18, vyw13, app(ty_Ratio, dch)) -> new_esEs11(vyw18, vyw13, dch) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ef)) -> new_ltEs5(vyw28001, vyw29001, ef) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_esEs4(vyw28000, vyw29000, da, db) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs29(vyw30, vyw400, app(ty_[], bah)) -> new_esEs17(vyw30, vyw400, bah) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(vyw302, vyw4002, daa, dab, dac) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bh) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_lt11(vyw28001, vyw29001, bda) new_compare23(Just(vyw2800), Nothing, False, be) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, bbh), bca)) -> new_ltEs14(vyw28002, vyw29002, bbh, bca) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_lt10(vyw28000, vyw29000, ga) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], bd)) -> new_lt4(vyw28000, vyw29000, bd) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_lt11(vyw28000, vyw29000, bec) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs15(vyw28002, vyw29002, bcb, bcc, bcd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw300, vyw4000, cgg, cgh, cha) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cbf), bad) -> new_esEs17(vyw300, vyw4000, cbf) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, cde), cdf)) -> new_esEs4(vyw300, vyw4000, cde, cdf) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_esEs5(vyw28000, vyw29000, gb) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dag), dah)) -> new_esEs6(vyw301, vyw4001, dag, dah) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cfc)) -> new_esEs5(vyw301, vyw4001, cfc) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bce)) -> new_ltEs17(vyw28002, vyw29002, bce) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, cea)) -> new_esEs5(vyw300, vyw4000, cea) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, ca)) -> new_ltEs8(vyw2800, vyw2900, ca) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), bg, bh) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bh) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgc, cgd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, bg), bh)) -> new_ltEs7(vyw2800, vyw2900, bg, bh) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bbd)) -> new_ltEs5(vyw28002, vyw29002, bbd) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, cg) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, cg)) new_esEs29(vyw30, vyw400, app(ty_Maybe, bag)) -> new_esEs5(vyw30, vyw400, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bff), bfg), bh) -> new_ltEs14(vyw28000, vyw29000, bff, bfg) new_ltEs4(vyw2800, vyw2900, app(ty_[], cg)) -> new_ltEs17(vyw2800, vyw2900, cg) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_lt18(vyw28000, vyw29000, bef, beg, beh) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_esEs5(vyw28001, vyw29001, bda) new_compare13(vyw28000, vyw29000, gc, gd) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, gc, gd), gc, gd) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_lt17(vyw28000, vyw29000, bed, bee) new_compare8(vyw28000, vyw29000, da, db) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, da, db), da, db) new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), cg) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_esEs17(vyw28001, vyw29001, bdg) new_esEs25(vyw301, vyw4001, app(ty_[], dbb)) -> new_esEs17(vyw301, vyw4001, dbb) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt18(vyw28001, vyw29001, bdd, bde, bdf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], bd)) -> new_esEs17(vyw28000, vyw29000, bd) new_lt10(vyw28000, vyw29000, ga) -> new_esEs8(new_compare18(vyw28000, vyw29000, ga), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_esEs5(vyw28000, vyw29000, bec) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cbg), cbh), cca), bad) -> new_esEs7(vyw300, vyw4000, cbg, cbh, cca) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, cba), cbb), bad) -> new_esEs4(vyw300, vyw4000, cba, cbb) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bad) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bad) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, da, db) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, gc, gd) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bh) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], bgc), bh) -> new_ltEs17(vyw28000, vyw29000, bgc) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], cg) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_esEs4(vyw28000, vyw29000, bea, beb) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_esEs4(vyw28001, vyw29001, bcg, bch) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfh)) -> new_esEs11(vyw300, vyw4000, cfh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chg)) -> new_esEs5(vyw302, vyw4002, chg) new_esEs30(vyw18, vyw13, app(ty_Maybe, dde)) -> new_esEs5(vyw18, vyw13, dde) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_lt17(vyw28001, vyw29001, bdb, bdc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, dae), daf)) -> new_esEs4(vyw301, vyw4001, dae, daf) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_esEs17(vyw28000, vyw29000, bfa) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dba)) -> new_esEs5(vyw301, vyw4001, dba) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], cad)) -> new_esEs17(vyw300, vyw4000, cad) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_esEs29(vyw30, vyw400, app(app(ty_Either, bac), bad)) -> new_esEs4(vyw30, vyw400, bac, bad) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs9(vyw18, vyw13) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), ca) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dcd)) -> new_esEs17(vyw300, vyw4000, dcd) new_compare23(Nothing, Just(vyw2900), False, be) -> LT new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs9(vyw30, vyw400) new_esEs30(vyw18, vyw13, app(app(ty_Either, dda), ddb)) -> new_esEs4(vyw18, vyw13, dda, ddb) new_esEs24(vyw302, vyw4002, app(app(ty_Either, chc), chd)) -> new_esEs4(vyw302, vyw4002, chc, chd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, ge, gf, gg) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_compare28(vyw28000, vyw29000, False, da, db) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, da, db), da, db) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_lt7(vyw28000, vyw29000, da, db) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cb, cc) -> new_pePe(new_lt9(vyw28000, vyw29000, cb), new_asAs(new_esEs10(vyw28000, vyw29000, cb), new_ltEs19(vyw28001, vyw29001, cc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, be) -> LT new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs7(vyw30, vyw400, bba, bbb, bbc) new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chh)) -> new_esEs17(vyw302, vyw4002, chh) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(vyw28000, vyw29000, bef, beg, beh) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(ty_@2, ddc), ddd)) -> new_esEs6(vyw18, vyw13, ddc, ddd) new_compare0(:(vyw28000, vyw28001), [], cg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bfe), bh) -> new_ltEs8(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(vyw18, vyw13, ddg, ddh, dea) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_esEs6(vyw28000, vyw29000, bed, bee) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs12(vyw30, vyw400) new_compare16(vyw28000, vyw29000, False, ge, gf, gg) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dcc)) -> new_esEs5(vyw300, vyw4000, dcc) new_ltEs9(LT, EQ) -> True new_esEs29(vyw30, vyw400, app(app(ty_@2, bae), baf)) -> new_esEs6(vyw30, vyw400, bae, baf) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, cbe), bad) -> new_esEs5(vyw300, vyw4000, cbe) new_lt7(vyw28000, vyw29000, da, db) -> new_esEs8(new_compare8(vyw28000, vyw29000, da, db), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_lt11(vyw28000, vyw29000, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), cg) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, cg), cg) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], cfd)) -> new_esEs17(vyw301, vyw4001, cfd) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_@2, bgh), bha)) -> new_ltEs14(vyw28000, vyw29000, bgh, bha) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], ceb)) -> new_esEs17(vyw300, vyw4000, ceb) new_compare17(vyw28000, vyw29000, app(app(ty_@2, hd), he)) -> new_compare13(vyw28000, vyw29000, hd, he) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bba, bbb, bbc) -> new_asAs(new_esEs26(vyw300, vyw4000, bba), new_asAs(new_esEs25(vyw301, vyw4001, bbb), new_esEs24(vyw302, vyw4002, bbc))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cd, ce, cf) -> new_pePe(new_lt20(vyw28000, vyw29000, cd), new_asAs(new_esEs20(vyw28000, vyw29000, cd), new_pePe(new_lt19(vyw28001, vyw29001, ce), new_asAs(new_esEs19(vyw28001, vyw29001, ce), new_ltEs20(vyw28002, vyw29002, cf))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbg, dbh) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs12(vyw18, vyw13) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, bd) -> new_esEs8(new_compare0(vyw28000, vyw29000, bd), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, ge, gf, gg) -> LT new_ltEs8(Nothing, Nothing, ca) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, chb)) -> new_esEs11(vyw302, vyw4002, chb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, ca) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_esEs6(vyw28001, vyw29001, bdb, bdc) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_[], bhe)) -> new_ltEs17(vyw28000, vyw29000, bhe) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bab) -> new_asAs(new_esEs28(vyw300, vyw4000, bab), new_esEs27(vyw301, vyw4001, bab)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bad) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, ha), hb)) -> new_compare8(vyw28000, vyw29000, ha, hb) new_compare110(vyw28000, vyw29000, False, gc, gd) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(vyw28000, vyw29000, bhb, bhc, bhd) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, dad)) -> new_esEs11(vyw301, vyw4001, dad) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bah) -> False new_esEs17([], :(vyw4000, vyw4001), bah) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, dd)) -> new_ltEs5(vyw28000, vyw29000, dd) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_lt10(vyw28001, vyw29001, bcf) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bah) -> new_asAs(new_esEs21(vyw300, vyw4000, bah), new_esEs17(vyw301, vyw4001, bah)) new_compare28(vyw28000, vyw29000, True, da, db) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Ratio, bgd)) -> new_ltEs5(vyw28000, vyw29000, bgd) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bad) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs17([], :(x0, x1), x2) new_esEs17([], [], x0) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, x2) new_lt9(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare14(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(EQ, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, True, x2) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(False, False) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare16(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_compare23(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(@0, @0) new_compare28(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, x2, x3) new_compare110(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_ltEs8(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_compare210(x0, x1, False, x2, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_compare23(Nothing, Nothing, False, x0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_compare26(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_not(True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_compare112(x0, x1, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare23(Just(x0), Just(x1), False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Bool) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_compare17(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare17(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, ty_Char) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_lt17(x0, x1, x2, x3) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1, x2) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(True, True) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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_esEs8(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, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare23(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(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_lt7(vyw28001, vyw29001, bcg, bch) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, bfc), bfd), bh) -> new_ltEs7(vyw28000, vyw29000, bfc, bfd) new_ltEs7(Right(vyw28000), Left(vyw29000), bg, bh) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cgf)) -> new_esEs17(vyw300, vyw4000, cgf) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_lt10(vyw28000, vyw29000, bdh) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_compare17(vyw28000, vyw29000, app(ty_[], baa)) -> new_compare0(vyw28000, vyw29000, baa) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs7(vyw300, vyw4000, cae, caf, cag) new_compare23(vyw280, vyw290, True, be) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), bac, bad) -> False new_esEs4(Right(vyw300), Left(vyw4000), bac, bad) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, ge, gf, gg) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_esEs21(vyw300, vyw4000, app(app(ty_@2, caa), cab)) -> new_esEs6(vyw300, vyw4000, caa, cab) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, ge, gf, gg) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, ceg), ceh)) -> new_esEs4(vyw301, vyw4001, ceg, ceh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, da, db) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, cah), bad) -> new_esEs11(vyw300, vyw4000, cah) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bfh), bga), bgb), bh) -> new_ltEs15(vyw28000, vyw29000, bfh, bga, bgb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bf) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bf), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, hc)) -> new_compare12(vyw28000, vyw29000, hc) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dbf)) -> new_esEs11(vyw300, vyw4000, dbf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs15(vyw2800, vyw2900, cd, ce, cf) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_lt4(vyw28001, vyw29001, bdg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gb) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gb), gb) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bf)) -> new_ltEs5(vyw2800, vyw2900, bf) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bh) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_esEs6(vyw28000, vyw29000, gc, gd) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_lt17(vyw28000, vyw29000, gc, gd) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bh) -> new_ltEs10(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bad) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbc, dbd, dbe) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(vyw28000, vyw29000, ge, gf, gg) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, bbe), bbf)) -> new_ltEs7(vyw28002, vyw29002, bbe, bbf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(vyw28001, vyw29001, bdd, bde, bdf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_lt4(vyw28000, vyw29000, bfa) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, bbg)) -> new_ltEs8(vyw28002, vyw29002, bbg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhf)) -> new_esEs11(vyw300, vyw4000, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bad) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bad) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_lt7(vyw28000, vyw29000, bea, beb) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, cb), cc)) -> new_ltEs14(vyw2800, vyw2900, cb, cc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, cbc), cbd), bad) -> new_esEs6(vyw300, vyw4000, cbc, cbd) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, gc, gd) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, gc, gd), gc, gd) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, gc, gd) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_esEs11(vyw28000, vyw29000, ga) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdd)) -> new_esEs11(vyw300, vyw4000, cdd) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cef)) -> new_esEs11(vyw301, vyw4001, cef) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, hf), hg), hh)) -> new_compare26(vyw28000, vyw29000, hf, hg, hh) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, ge, gf, gg) -> new_esEs8(new_compare26(vyw28000, vyw29000, ge, gf, gg), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs6(vyw300, vyw4000, cdg, cdh) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dce, dcf, dcg) new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, gh)) -> new_compare18(vyw28000, vyw29000, gh) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cfa), cfb)) -> new_esEs6(vyw301, vyw4001, cfa, cfb) new_lt17(vyw28000, vyw29000, gc, gd) -> new_esEs8(new_compare13(vyw28000, vyw29000, gc, gd), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bad) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Maybe, bgg)) -> new_ltEs8(vyw28000, vyw29000, bgg) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw300, vyw4000, bhg, bhh) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gb) -> new_esEs8(new_compare12(vyw28000, vyw29000, gb), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bah) -> True new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_esEs11(vyw28001, vyw29001, bcf) new_esEs29(vyw30, vyw400, app(ty_Ratio, bab)) -> new_esEs11(vyw30, vyw400, bab) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_compare10(vyw82, vyw83, False, dc) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfb), bh) -> new_ltEs5(vyw28000, vyw29000, bfb) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bh) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, che), chf)) -> new_esEs6(vyw302, vyw4002, che, chf) new_esEs30(vyw18, vyw13, app(ty_[], ddf)) -> new_esEs17(vyw18, vyw13, ddf) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, cac)) -> new_esEs5(vyw300, vyw4000, cac) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, be) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, be), be) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, bag) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bh) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, baf) -> new_asAs(new_esEs23(vyw300, vyw4000, bae), new_esEs22(vyw301, vyw4001, baf)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt18(vyw28000, vyw29000, ge, gf, gg) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), bag) -> False new_esEs5(Just(vyw300), Nothing, bag) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_esEs11(vyw28000, vyw29000, bdh) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_Either, bge), bgf)) -> new_ltEs7(vyw28000, vyw29000, bge, bgf) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cga), cgb)) -> new_esEs4(vyw300, vyw4000, cga, cgb) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vyw300, vyw4000, cec, ced, cee) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dca), dcb)) -> new_esEs6(vyw300, vyw4000, dca, dcb) new_ltEs17(vyw2800, vyw2900, cg) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, cg), GT)) new_compare10(vyw82, vyw83, True, dc) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vyw301, vyw4001, cfe, cff, cfg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bh) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cge)) -> new_esEs5(vyw300, vyw4000, cge) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_esEs30(vyw18, vyw13, app(ty_Ratio, dch)) -> new_esEs11(vyw18, vyw13, dch) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ef)) -> new_ltEs5(vyw28001, vyw29001, ef) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_esEs4(vyw28000, vyw29000, da, db) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs29(vyw30, vyw400, app(ty_[], bah)) -> new_esEs17(vyw30, vyw400, bah) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(vyw302, vyw4002, daa, dab, dac) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bh) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_lt11(vyw28001, vyw29001, bda) new_compare23(Just(vyw2800), Nothing, False, be) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, bbh), bca)) -> new_ltEs14(vyw28002, vyw29002, bbh, bca) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_lt10(vyw28000, vyw29000, ga) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], bd)) -> new_lt4(vyw28000, vyw29000, bd) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_lt11(vyw28000, vyw29000, bec) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs15(vyw28002, vyw29002, bcb, bcc, bcd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw300, vyw4000, cgg, cgh, cha) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cbf), bad) -> new_esEs17(vyw300, vyw4000, cbf) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, cde), cdf)) -> new_esEs4(vyw300, vyw4000, cde, cdf) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_esEs5(vyw28000, vyw29000, gb) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dag), dah)) -> new_esEs6(vyw301, vyw4001, dag, dah) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cfc)) -> new_esEs5(vyw301, vyw4001, cfc) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bce)) -> new_ltEs17(vyw28002, vyw29002, bce) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, cea)) -> new_esEs5(vyw300, vyw4000, cea) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, ca)) -> new_ltEs8(vyw2800, vyw2900, ca) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), bg, bh) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bh) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgc, cgd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, bg), bh)) -> new_ltEs7(vyw2800, vyw2900, bg, bh) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bbd)) -> new_ltEs5(vyw28002, vyw29002, bbd) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, cg) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, cg)) new_esEs29(vyw30, vyw400, app(ty_Maybe, bag)) -> new_esEs5(vyw30, vyw400, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bff), bfg), bh) -> new_ltEs14(vyw28000, vyw29000, bff, bfg) new_ltEs4(vyw2800, vyw2900, app(ty_[], cg)) -> new_ltEs17(vyw2800, vyw2900, cg) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_lt18(vyw28000, vyw29000, bef, beg, beh) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_esEs5(vyw28001, vyw29001, bda) new_compare13(vyw28000, vyw29000, gc, gd) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, gc, gd), gc, gd) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_lt17(vyw28000, vyw29000, bed, bee) new_compare8(vyw28000, vyw29000, da, db) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, da, db), da, db) new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), cg) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_esEs17(vyw28001, vyw29001, bdg) new_esEs25(vyw301, vyw4001, app(ty_[], dbb)) -> new_esEs17(vyw301, vyw4001, dbb) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt18(vyw28001, vyw29001, bdd, bde, bdf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], bd)) -> new_esEs17(vyw28000, vyw29000, bd) new_lt10(vyw28000, vyw29000, ga) -> new_esEs8(new_compare18(vyw28000, vyw29000, ga), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_esEs5(vyw28000, vyw29000, bec) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cbg), cbh), cca), bad) -> new_esEs7(vyw300, vyw4000, cbg, cbh, cca) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, cba), cbb), bad) -> new_esEs4(vyw300, vyw4000, cba, cbb) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bad) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bad) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, da, db) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, gc, gd) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bh) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], bgc), bh) -> new_ltEs17(vyw28000, vyw29000, bgc) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], cg) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_esEs4(vyw28000, vyw29000, bea, beb) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_esEs4(vyw28001, vyw29001, bcg, bch) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfh)) -> new_esEs11(vyw300, vyw4000, cfh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chg)) -> new_esEs5(vyw302, vyw4002, chg) new_esEs30(vyw18, vyw13, app(ty_Maybe, dde)) -> new_esEs5(vyw18, vyw13, dde) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_lt17(vyw28001, vyw29001, bdb, bdc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, dae), daf)) -> new_esEs4(vyw301, vyw4001, dae, daf) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_esEs17(vyw28000, vyw29000, bfa) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dba)) -> new_esEs5(vyw301, vyw4001, dba) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], cad)) -> new_esEs17(vyw300, vyw4000, cad) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_esEs29(vyw30, vyw400, app(app(ty_Either, bac), bad)) -> new_esEs4(vyw30, vyw400, bac, bad) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs9(vyw18, vyw13) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), ca) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dcd)) -> new_esEs17(vyw300, vyw4000, dcd) new_compare23(Nothing, Just(vyw2900), False, be) -> LT new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs9(vyw30, vyw400) new_esEs30(vyw18, vyw13, app(app(ty_Either, dda), ddb)) -> new_esEs4(vyw18, vyw13, dda, ddb) new_esEs24(vyw302, vyw4002, app(app(ty_Either, chc), chd)) -> new_esEs4(vyw302, vyw4002, chc, chd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, ge, gf, gg) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_compare28(vyw28000, vyw29000, False, da, db) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, da, db), da, db) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_lt7(vyw28000, vyw29000, da, db) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cb, cc) -> new_pePe(new_lt9(vyw28000, vyw29000, cb), new_asAs(new_esEs10(vyw28000, vyw29000, cb), new_ltEs19(vyw28001, vyw29001, cc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, be) -> LT new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs7(vyw30, vyw400, bba, bbb, bbc) new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chh)) -> new_esEs17(vyw302, vyw4002, chh) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(vyw28000, vyw29000, bef, beg, beh) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(ty_@2, ddc), ddd)) -> new_esEs6(vyw18, vyw13, ddc, ddd) new_compare0(:(vyw28000, vyw28001), [], cg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bfe), bh) -> new_ltEs8(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(vyw18, vyw13, ddg, ddh, dea) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_esEs6(vyw28000, vyw29000, bed, bee) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs12(vyw30, vyw400) new_compare16(vyw28000, vyw29000, False, ge, gf, gg) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dcc)) -> new_esEs5(vyw300, vyw4000, dcc) new_ltEs9(LT, EQ) -> True new_esEs29(vyw30, vyw400, app(app(ty_@2, bae), baf)) -> new_esEs6(vyw30, vyw400, bae, baf) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, cbe), bad) -> new_esEs5(vyw300, vyw4000, cbe) new_lt7(vyw28000, vyw29000, da, db) -> new_esEs8(new_compare8(vyw28000, vyw29000, da, db), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_lt11(vyw28000, vyw29000, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), cg) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, cg), cg) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], cfd)) -> new_esEs17(vyw301, vyw4001, cfd) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_@2, bgh), bha)) -> new_ltEs14(vyw28000, vyw29000, bgh, bha) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], ceb)) -> new_esEs17(vyw300, vyw4000, ceb) new_compare17(vyw28000, vyw29000, app(app(ty_@2, hd), he)) -> new_compare13(vyw28000, vyw29000, hd, he) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bba, bbb, bbc) -> new_asAs(new_esEs26(vyw300, vyw4000, bba), new_asAs(new_esEs25(vyw301, vyw4001, bbb), new_esEs24(vyw302, vyw4002, bbc))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cd, ce, cf) -> new_pePe(new_lt20(vyw28000, vyw29000, cd), new_asAs(new_esEs20(vyw28000, vyw29000, cd), new_pePe(new_lt19(vyw28001, vyw29001, ce), new_asAs(new_esEs19(vyw28001, vyw29001, ce), new_ltEs20(vyw28002, vyw29002, cf))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbg, dbh) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs12(vyw18, vyw13) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, bd) -> new_esEs8(new_compare0(vyw28000, vyw29000, bd), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, ge, gf, gg) -> LT new_ltEs8(Nothing, Nothing, ca) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, chb)) -> new_esEs11(vyw302, vyw4002, chb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, ca) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_esEs6(vyw28001, vyw29001, bdb, bdc) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_[], bhe)) -> new_ltEs17(vyw28000, vyw29000, bhe) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bab) -> new_asAs(new_esEs28(vyw300, vyw4000, bab), new_esEs27(vyw301, vyw4001, bab)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bad) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, ha), hb)) -> new_compare8(vyw28000, vyw29000, ha, hb) new_compare110(vyw28000, vyw29000, False, gc, gd) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(vyw28000, vyw29000, bhb, bhc, bhd) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, dad)) -> new_esEs11(vyw301, vyw4001, dad) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bah) -> False new_esEs17([], :(vyw4000, vyw4001), bah) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, dd)) -> new_ltEs5(vyw28000, vyw29000, dd) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_lt10(vyw28001, vyw29001, bcf) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bah) -> new_asAs(new_esEs21(vyw300, vyw4000, bah), new_esEs17(vyw301, vyw4001, bah)) new_compare28(vyw28000, vyw29000, True, da, db) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Ratio, bgd)) -> new_ltEs5(vyw28000, vyw29000, bgd) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bad) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs17([], :(x0, x1), x2) new_esEs17([], [], x0) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, x2) new_lt9(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare14(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(EQ, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, True, x2) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(False, False) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare16(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_compare23(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(@0, @0) new_compare28(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, x2, x3) new_compare110(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_ltEs8(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_compare210(x0, x1, False, x2, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_compare23(Nothing, Nothing, False, x0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_compare26(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_not(True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_compare112(x0, x1, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare23(Just(x0), Just(x1), False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Bool) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_compare17(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare17(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, ty_Char) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_lt17(x0, x1, x2, x3) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1, x2) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(True, True) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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_esEs8(new_compare23(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_esEs8(GT, GT), h, ba),new_elemFM02(vyw41, vyw42, vyw43, vyw44, vyw30, False, h, ba) -> new_elemFM05(vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(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, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare23(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(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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_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_esEs8(GT, GT), h, ba) The TRS R consists of the following rules: new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_lt7(vyw28001, vyw29001, bcg, bch) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, bfc), bfd), bh) -> new_ltEs7(vyw28000, vyw29000, bfc, bfd) new_ltEs7(Right(vyw28000), Left(vyw29000), bg, bh) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cgf)) -> new_esEs17(vyw300, vyw4000, cgf) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_lt10(vyw28000, vyw29000, bdh) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_compare17(vyw28000, vyw29000, app(ty_[], baa)) -> new_compare0(vyw28000, vyw29000, baa) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs7(vyw300, vyw4000, cae, caf, cag) new_compare23(vyw280, vyw290, True, be) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), bac, bad) -> False new_esEs4(Right(vyw300), Left(vyw4000), bac, bad) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, ge, gf, gg) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_esEs21(vyw300, vyw4000, app(app(ty_@2, caa), cab)) -> new_esEs6(vyw300, vyw4000, caa, cab) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, ge, gf, gg) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, ceg), ceh)) -> new_esEs4(vyw301, vyw4001, ceg, ceh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, da, db) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, cah), bad) -> new_esEs11(vyw300, vyw4000, cah) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bfh), bga), bgb), bh) -> new_ltEs15(vyw28000, vyw29000, bfh, bga, bgb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bf) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bf), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, hc)) -> new_compare12(vyw28000, vyw29000, hc) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dbf)) -> new_esEs11(vyw300, vyw4000, dbf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs15(vyw2800, vyw2900, cd, ce, cf) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_lt4(vyw28001, vyw29001, bdg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gb) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gb), gb) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bf)) -> new_ltEs5(vyw2800, vyw2900, bf) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bh) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_esEs6(vyw28000, vyw29000, gc, gd) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_lt17(vyw28000, vyw29000, gc, gd) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bh) -> new_ltEs10(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bad) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbc, dbd, dbe) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(vyw28000, vyw29000, ge, gf, gg) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, bbe), bbf)) -> new_ltEs7(vyw28002, vyw29002, bbe, bbf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(vyw28001, vyw29001, bdd, bde, bdf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_lt4(vyw28000, vyw29000, bfa) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, bbg)) -> new_ltEs8(vyw28002, vyw29002, bbg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhf)) -> new_esEs11(vyw300, vyw4000, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bad) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bad) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_lt7(vyw28000, vyw29000, bea, beb) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, cb), cc)) -> new_ltEs14(vyw2800, vyw2900, cb, cc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, cbc), cbd), bad) -> new_esEs6(vyw300, vyw4000, cbc, cbd) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, gc, gd) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, gc, gd), gc, gd) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, gc, gd) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_esEs11(vyw28000, vyw29000, ga) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdd)) -> new_esEs11(vyw300, vyw4000, cdd) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cef)) -> new_esEs11(vyw301, vyw4001, cef) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, hf), hg), hh)) -> new_compare26(vyw28000, vyw29000, hf, hg, hh) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, ge, gf, gg) -> new_esEs8(new_compare26(vyw28000, vyw29000, ge, gf, gg), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs6(vyw300, vyw4000, cdg, cdh) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dce, dcf, dcg) new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, gh)) -> new_compare18(vyw28000, vyw29000, gh) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cfa), cfb)) -> new_esEs6(vyw301, vyw4001, cfa, cfb) new_lt17(vyw28000, vyw29000, gc, gd) -> new_esEs8(new_compare13(vyw28000, vyw29000, gc, gd), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bad) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Maybe, bgg)) -> new_ltEs8(vyw28000, vyw29000, bgg) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw300, vyw4000, bhg, bhh) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gb) -> new_esEs8(new_compare12(vyw28000, vyw29000, gb), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bah) -> True new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_esEs11(vyw28001, vyw29001, bcf) new_esEs29(vyw30, vyw400, app(ty_Ratio, bab)) -> new_esEs11(vyw30, vyw400, bab) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_compare10(vyw82, vyw83, False, dc) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfb), bh) -> new_ltEs5(vyw28000, vyw29000, bfb) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bh) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, che), chf)) -> new_esEs6(vyw302, vyw4002, che, chf) new_esEs30(vyw18, vyw13, app(ty_[], ddf)) -> new_esEs17(vyw18, vyw13, ddf) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, cac)) -> new_esEs5(vyw300, vyw4000, cac) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, be) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, be), be) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, bag) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bh) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, baf) -> new_asAs(new_esEs23(vyw300, vyw4000, bae), new_esEs22(vyw301, vyw4001, baf)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt18(vyw28000, vyw29000, ge, gf, gg) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), bag) -> False new_esEs5(Just(vyw300), Nothing, bag) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_esEs11(vyw28000, vyw29000, bdh) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_Either, bge), bgf)) -> new_ltEs7(vyw28000, vyw29000, bge, bgf) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cga), cgb)) -> new_esEs4(vyw300, vyw4000, cga, cgb) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vyw300, vyw4000, cec, ced, cee) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dca), dcb)) -> new_esEs6(vyw300, vyw4000, dca, dcb) new_ltEs17(vyw2800, vyw2900, cg) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, cg), GT)) new_compare10(vyw82, vyw83, True, dc) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vyw301, vyw4001, cfe, cff, cfg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bh) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cge)) -> new_esEs5(vyw300, vyw4000, cge) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_esEs30(vyw18, vyw13, app(ty_Ratio, dch)) -> new_esEs11(vyw18, vyw13, dch) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ef)) -> new_ltEs5(vyw28001, vyw29001, ef) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_esEs4(vyw28000, vyw29000, da, db) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs29(vyw30, vyw400, app(ty_[], bah)) -> new_esEs17(vyw30, vyw400, bah) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(vyw302, vyw4002, daa, dab, dac) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bh) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_lt11(vyw28001, vyw29001, bda) new_compare23(Just(vyw2800), Nothing, False, be) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, bbh), bca)) -> new_ltEs14(vyw28002, vyw29002, bbh, bca) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_lt10(vyw28000, vyw29000, ga) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], bd)) -> new_lt4(vyw28000, vyw29000, bd) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_lt11(vyw28000, vyw29000, bec) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs15(vyw28002, vyw29002, bcb, bcc, bcd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw300, vyw4000, cgg, cgh, cha) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cbf), bad) -> new_esEs17(vyw300, vyw4000, cbf) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, cde), cdf)) -> new_esEs4(vyw300, vyw4000, cde, cdf) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_esEs5(vyw28000, vyw29000, gb) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dag), dah)) -> new_esEs6(vyw301, vyw4001, dag, dah) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cfc)) -> new_esEs5(vyw301, vyw4001, cfc) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bce)) -> new_ltEs17(vyw28002, vyw29002, bce) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, cea)) -> new_esEs5(vyw300, vyw4000, cea) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, ca)) -> new_ltEs8(vyw2800, vyw2900, ca) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), bg, bh) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bh) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgc, cgd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, bg), bh)) -> new_ltEs7(vyw2800, vyw2900, bg, bh) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bbd)) -> new_ltEs5(vyw28002, vyw29002, bbd) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, cg) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, cg)) new_esEs29(vyw30, vyw400, app(ty_Maybe, bag)) -> new_esEs5(vyw30, vyw400, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bff), bfg), bh) -> new_ltEs14(vyw28000, vyw29000, bff, bfg) new_ltEs4(vyw2800, vyw2900, app(ty_[], cg)) -> new_ltEs17(vyw2800, vyw2900, cg) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_lt18(vyw28000, vyw29000, bef, beg, beh) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_esEs5(vyw28001, vyw29001, bda) new_compare13(vyw28000, vyw29000, gc, gd) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, gc, gd), gc, gd) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_lt17(vyw28000, vyw29000, bed, bee) new_compare8(vyw28000, vyw29000, da, db) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, da, db), da, db) new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), cg) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_esEs17(vyw28001, vyw29001, bdg) new_esEs25(vyw301, vyw4001, app(ty_[], dbb)) -> new_esEs17(vyw301, vyw4001, dbb) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt18(vyw28001, vyw29001, bdd, bde, bdf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], bd)) -> new_esEs17(vyw28000, vyw29000, bd) new_lt10(vyw28000, vyw29000, ga) -> new_esEs8(new_compare18(vyw28000, vyw29000, ga), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_esEs5(vyw28000, vyw29000, bec) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cbg), cbh), cca), bad) -> new_esEs7(vyw300, vyw4000, cbg, cbh, cca) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, cba), cbb), bad) -> new_esEs4(vyw300, vyw4000, cba, cbb) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bad) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bad) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, da, db) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, gc, gd) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bh) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], bgc), bh) -> new_ltEs17(vyw28000, vyw29000, bgc) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], cg) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_esEs4(vyw28000, vyw29000, bea, beb) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_esEs4(vyw28001, vyw29001, bcg, bch) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfh)) -> new_esEs11(vyw300, vyw4000, cfh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chg)) -> new_esEs5(vyw302, vyw4002, chg) new_esEs30(vyw18, vyw13, app(ty_Maybe, dde)) -> new_esEs5(vyw18, vyw13, dde) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_lt17(vyw28001, vyw29001, bdb, bdc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, dae), daf)) -> new_esEs4(vyw301, vyw4001, dae, daf) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_esEs17(vyw28000, vyw29000, bfa) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dba)) -> new_esEs5(vyw301, vyw4001, dba) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], cad)) -> new_esEs17(vyw300, vyw4000, cad) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_esEs29(vyw30, vyw400, app(app(ty_Either, bac), bad)) -> new_esEs4(vyw30, vyw400, bac, bad) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs9(vyw18, vyw13) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), ca) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dcd)) -> new_esEs17(vyw300, vyw4000, dcd) new_compare23(Nothing, Just(vyw2900), False, be) -> LT new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs9(vyw30, vyw400) new_esEs30(vyw18, vyw13, app(app(ty_Either, dda), ddb)) -> new_esEs4(vyw18, vyw13, dda, ddb) new_esEs24(vyw302, vyw4002, app(app(ty_Either, chc), chd)) -> new_esEs4(vyw302, vyw4002, chc, chd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, ge, gf, gg) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_compare28(vyw28000, vyw29000, False, da, db) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, da, db), da, db) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_lt7(vyw28000, vyw29000, da, db) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cb, cc) -> new_pePe(new_lt9(vyw28000, vyw29000, cb), new_asAs(new_esEs10(vyw28000, vyw29000, cb), new_ltEs19(vyw28001, vyw29001, cc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, be) -> LT new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs7(vyw30, vyw400, bba, bbb, bbc) new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chh)) -> new_esEs17(vyw302, vyw4002, chh) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(vyw28000, vyw29000, bef, beg, beh) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(ty_@2, ddc), ddd)) -> new_esEs6(vyw18, vyw13, ddc, ddd) new_compare0(:(vyw28000, vyw28001), [], cg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bfe), bh) -> new_ltEs8(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(vyw18, vyw13, ddg, ddh, dea) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_esEs6(vyw28000, vyw29000, bed, bee) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs12(vyw30, vyw400) new_compare16(vyw28000, vyw29000, False, ge, gf, gg) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dcc)) -> new_esEs5(vyw300, vyw4000, dcc) new_ltEs9(LT, EQ) -> True new_esEs29(vyw30, vyw400, app(app(ty_@2, bae), baf)) -> new_esEs6(vyw30, vyw400, bae, baf) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, cbe), bad) -> new_esEs5(vyw300, vyw4000, cbe) new_lt7(vyw28000, vyw29000, da, db) -> new_esEs8(new_compare8(vyw28000, vyw29000, da, db), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_lt11(vyw28000, vyw29000, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), cg) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, cg), cg) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], cfd)) -> new_esEs17(vyw301, vyw4001, cfd) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_@2, bgh), bha)) -> new_ltEs14(vyw28000, vyw29000, bgh, bha) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], ceb)) -> new_esEs17(vyw300, vyw4000, ceb) new_compare17(vyw28000, vyw29000, app(app(ty_@2, hd), he)) -> new_compare13(vyw28000, vyw29000, hd, he) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bba, bbb, bbc) -> new_asAs(new_esEs26(vyw300, vyw4000, bba), new_asAs(new_esEs25(vyw301, vyw4001, bbb), new_esEs24(vyw302, vyw4002, bbc))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cd, ce, cf) -> new_pePe(new_lt20(vyw28000, vyw29000, cd), new_asAs(new_esEs20(vyw28000, vyw29000, cd), new_pePe(new_lt19(vyw28001, vyw29001, ce), new_asAs(new_esEs19(vyw28001, vyw29001, ce), new_ltEs20(vyw28002, vyw29002, cf))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbg, dbh) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs12(vyw18, vyw13) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, bd) -> new_esEs8(new_compare0(vyw28000, vyw29000, bd), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, ge, gf, gg) -> LT new_ltEs8(Nothing, Nothing, ca) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, chb)) -> new_esEs11(vyw302, vyw4002, chb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, ca) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_esEs6(vyw28001, vyw29001, bdb, bdc) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_[], bhe)) -> new_ltEs17(vyw28000, vyw29000, bhe) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bab) -> new_asAs(new_esEs28(vyw300, vyw4000, bab), new_esEs27(vyw301, vyw4001, bab)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bad) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, ha), hb)) -> new_compare8(vyw28000, vyw29000, ha, hb) new_compare110(vyw28000, vyw29000, False, gc, gd) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(vyw28000, vyw29000, bhb, bhc, bhd) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, dad)) -> new_esEs11(vyw301, vyw4001, dad) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bah) -> False new_esEs17([], :(vyw4000, vyw4001), bah) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, dd)) -> new_ltEs5(vyw28000, vyw29000, dd) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_lt10(vyw28001, vyw29001, bcf) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bah) -> new_asAs(new_esEs21(vyw300, vyw4000, bah), new_esEs17(vyw301, vyw4001, bah)) new_compare28(vyw28000, vyw29000, True, da, db) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Ratio, bgd)) -> new_ltEs5(vyw28000, vyw29000, bgd) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bad) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs17([], :(x0, x1), x2) new_esEs17([], [], x0) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, x2) new_lt9(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare14(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(EQ, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, True, x2) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(False, False) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare16(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_compare23(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(@0, @0) new_compare28(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, x2, x3) new_compare110(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_ltEs8(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_compare210(x0, x1, False, x2, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_compare23(Nothing, Nothing, False, x0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_compare26(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_not(True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_compare112(x0, x1, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare23(Just(x0), Just(x1), False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Bool) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_compare17(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare17(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, ty_Char) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_lt17(x0, x1, x2, x3) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1, x2) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(True, True) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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_esEs8(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, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare23(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(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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_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_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_lt7(vyw28001, vyw29001, bcg, bch) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, bfc), bfd), bh) -> new_ltEs7(vyw28000, vyw29000, bfc, bfd) new_ltEs7(Right(vyw28000), Left(vyw29000), bg, bh) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cgf)) -> new_esEs17(vyw300, vyw4000, cgf) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_lt10(vyw28000, vyw29000, bdh) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_esEs30(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_compare17(vyw28000, vyw29000, app(ty_[], baa)) -> new_compare0(vyw28000, vyw29000, baa) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs7(vyw300, vyw4000, cae, caf, cag) new_compare23(vyw280, vyw290, True, be) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), bac, bad) -> False new_esEs4(Right(vyw300), Left(vyw4000), bac, bad) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, ge, gf, gg) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_esEs21(vyw300, vyw4000, app(app(ty_@2, caa), cab)) -> new_esEs6(vyw300, vyw4000, caa, cab) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, ge, gf, gg) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, ceg), ceh)) -> new_esEs4(vyw301, vyw4001, ceg, ceh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, da, db) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, cah), bad) -> new_esEs11(vyw300, vyw4000, cah) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bfh), bga), bgb), bh) -> new_ltEs15(vyw28000, vyw29000, bfh, bga, bgb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bf) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bf), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, hc)) -> new_compare12(vyw28000, vyw29000, hc) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dbf)) -> new_esEs11(vyw300, vyw4000, dbf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs15(vyw2800, vyw2900, cd, ce, cf) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_lt4(vyw28001, vyw29001, bdg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gb) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gb), gb) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bf)) -> new_ltEs5(vyw2800, vyw2900, bf) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bh) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_esEs6(vyw28000, vyw29000, gc, gd) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, gc), gd)) -> new_lt17(vyw28000, vyw29000, gc, gd) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bh) -> new_ltEs10(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bad) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbc, dbd, dbe) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(vyw28000, vyw29000, ge, gf, gg) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, bbe), bbf)) -> new_ltEs7(vyw28002, vyw29002, bbe, bbf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(vyw28001, vyw29001, bdd, bde, bdf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_lt4(vyw28000, vyw29000, bfa) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, bbg)) -> new_ltEs8(vyw28002, vyw29002, bbg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhf)) -> new_esEs11(vyw300, vyw4000, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bad) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bad) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_lt7(vyw28000, vyw29000, bea, beb) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, cb), cc)) -> new_ltEs14(vyw2800, vyw2900, cb, cc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, cbc), cbd), bad) -> new_esEs6(vyw300, vyw4000, cbc, cbd) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, gc, gd) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, gc, gd), gc, gd) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, gc, gd) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_esEs11(vyw28000, vyw29000, ga) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdd)) -> new_esEs11(vyw300, vyw4000, cdd) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cef)) -> new_esEs11(vyw301, vyw4001, cef) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, hf), hg), hh)) -> new_compare26(vyw28000, vyw29000, hf, hg, hh) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, ge, gf, gg) -> new_esEs8(new_compare26(vyw28000, vyw29000, ge, gf, gg), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs6(vyw300, vyw4000, cdg, cdh) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dce, dcf, dcg) new_esEs29(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, gh)) -> new_compare18(vyw28000, vyw29000, gh) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cfa), cfb)) -> new_esEs6(vyw301, vyw4001, cfa, cfb) new_lt17(vyw28000, vyw29000, gc, gd) -> new_esEs8(new_compare13(vyw28000, vyw29000, gc, gd), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bad) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Maybe, bgg)) -> new_ltEs8(vyw28000, vyw29000, bgg) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw300, vyw4000, bhg, bhh) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gb) -> new_esEs8(new_compare12(vyw28000, vyw29000, gb), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bah) -> True new_esEs29(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_esEs11(vyw28001, vyw29001, bcf) new_esEs29(vyw30, vyw400, app(ty_Ratio, bab)) -> new_esEs11(vyw30, vyw400, bab) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_compare10(vyw82, vyw83, False, dc) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bfb), bh) -> new_ltEs5(vyw28000, vyw29000, bfb) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bh) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, che), chf)) -> new_esEs6(vyw302, vyw4002, che, chf) new_esEs30(vyw18, vyw13, app(ty_[], ddf)) -> new_esEs17(vyw18, vyw13, ddf) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, cac)) -> new_esEs5(vyw300, vyw4000, cac) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, be) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, be), be) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, bag) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bh) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, baf) -> new_asAs(new_esEs23(vyw300, vyw4000, bae), new_esEs22(vyw301, vyw4001, baf)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt18(vyw28000, vyw29000, ge, gf, gg) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), bag) -> False new_esEs5(Just(vyw300), Nothing, bag) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bdh)) -> new_esEs11(vyw28000, vyw29000, bdh) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_Either, bge), bgf)) -> new_ltEs7(vyw28000, vyw29000, bge, bgf) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cga), cgb)) -> new_esEs4(vyw300, vyw4000, cga, cgb) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(vyw300, vyw4000, cec, ced, cee) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dca), dcb)) -> new_esEs6(vyw300, vyw4000, dca, dcb) new_ltEs17(vyw2800, vyw2900, cg) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, cg), GT)) new_compare10(vyw82, vyw83, True, dc) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(vyw301, vyw4001, cfe, cff, cfg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_esEs29(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bh) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cge)) -> new_esEs5(vyw300, vyw4000, cge) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_esEs30(vyw18, vyw13, app(ty_Ratio, dch)) -> new_esEs11(vyw18, vyw13, dch) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, ef)) -> new_ltEs5(vyw28001, vyw29001, ef) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_esEs4(vyw28000, vyw29000, da, db) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs29(vyw30, vyw400, app(ty_[], bah)) -> new_esEs17(vyw30, vyw400, bah) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(vyw302, vyw4002, daa, dab, dac) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bh) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_lt11(vyw28001, vyw29001, bda) new_compare23(Just(vyw2800), Nothing, False, be) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, bbh), bca)) -> new_ltEs14(vyw28002, vyw29002, bbh, bca) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, ga)) -> new_lt10(vyw28000, vyw29000, ga) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], bd)) -> new_lt4(vyw28000, vyw29000, bd) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_lt11(vyw28000, vyw29000, bec) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs15(vyw28002, vyw29002, bcb, bcc, bcd) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw300, vyw4000, cgg, cgh, cha) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cbf), bad) -> new_esEs17(vyw300, vyw4000, cbf) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, cde), cdf)) -> new_esEs4(vyw300, vyw4000, cde, cdf) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_esEs5(vyw28000, vyw29000, gb) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dag), dah)) -> new_esEs6(vyw301, vyw4001, dag, dah) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cfc)) -> new_esEs5(vyw301, vyw4001, cfc) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bce)) -> new_ltEs17(vyw28002, vyw29002, bce) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, cea)) -> new_esEs5(vyw300, vyw4000, cea) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, ca)) -> new_ltEs8(vyw2800, vyw2900, ca) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), bg, bh) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bh) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgc, cgd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, bg), bh)) -> new_ltEs7(vyw2800, vyw2900, bg, bh) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bbd)) -> new_ltEs5(vyw28002, vyw29002, bbd) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, cg) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, cg)) new_esEs29(vyw30, vyw400, app(ty_Maybe, bag)) -> new_esEs5(vyw30, vyw400, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bff), bfg), bh) -> new_ltEs14(vyw28000, vyw29000, bff, bfg) new_ltEs4(vyw2800, vyw2900, app(ty_[], cg)) -> new_ltEs17(vyw2800, vyw2900, cg) new_esEs29(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_lt18(vyw28000, vyw29000, bef, beg, beh) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bda)) -> new_esEs5(vyw28001, vyw29001, bda) new_compare13(vyw28000, vyw29000, gc, gd) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, gc, gd), gc, gd) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_lt17(vyw28000, vyw29000, bed, bee) new_compare8(vyw28000, vyw29000, da, db) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, da, db), da, db) new_esEs30(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), cg) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bdg)) -> new_esEs17(vyw28001, vyw29001, bdg) new_esEs25(vyw301, vyw4001, app(ty_[], dbb)) -> new_esEs17(vyw301, vyw4001, dbb) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt18(vyw28001, vyw29001, bdd, bde, bdf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], bd)) -> new_esEs17(vyw28000, vyw29000, bd) new_lt10(vyw28000, vyw29000, ga) -> new_esEs8(new_compare18(vyw28000, vyw29000, ga), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bec)) -> new_esEs5(vyw28000, vyw29000, bec) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cbg), cbh), cca), bad) -> new_esEs7(vyw300, vyw4000, cbg, cbh, cca) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, cba), cbb), bad) -> new_esEs4(vyw300, vyw4000, cba, cbb) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bad) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bad) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, da, db) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, gc, gd) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bh) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], bgc), bh) -> new_ltEs17(vyw28000, vyw29000, bgc) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], cg) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bea), beb)) -> new_esEs4(vyw28000, vyw29000, bea, beb) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, bcg), bch)) -> new_esEs4(vyw28001, vyw29001, bcg, bch) new_esEs30(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfh)) -> new_esEs11(vyw300, vyw4000, cfh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs30(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs30(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chg)) -> new_esEs5(vyw302, vyw4002, chg) new_esEs30(vyw18, vyw13, app(ty_Maybe, dde)) -> new_esEs5(vyw18, vyw13, dde) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_lt17(vyw28001, vyw29001, bdb, bdc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, dae), daf)) -> new_esEs4(vyw301, vyw4001, dae, daf) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bfa)) -> new_esEs17(vyw28000, vyw29000, bfa) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dba)) -> new_esEs5(vyw301, vyw4001, dba) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], cad)) -> new_esEs17(vyw300, vyw4000, cad) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_esEs29(vyw30, vyw400, app(app(ty_Either, bac), bad)) -> new_esEs4(vyw30, vyw400, bac, bad) new_esEs30(vyw18, vyw13, ty_@0) -> new_esEs9(vyw18, vyw13) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), ca) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dcd)) -> new_esEs17(vyw300, vyw4000, dcd) new_compare23(Nothing, Just(vyw2900), False, be) -> LT new_esEs29(vyw30, vyw400, ty_@0) -> new_esEs9(vyw30, vyw400) new_esEs30(vyw18, vyw13, app(app(ty_Either, dda), ddb)) -> new_esEs4(vyw18, vyw13, dda, ddb) new_esEs24(vyw302, vyw4002, app(app(ty_Either, chc), chd)) -> new_esEs4(vyw302, vyw4002, chc, chd) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, ge, gf, gg) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, ge, gf, gg), ge, gf, gg) new_compare28(vyw28000, vyw29000, False, da, db) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, da, db), da, db) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, da), db)) -> new_lt7(vyw28000, vyw29000, da, db) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), cb, cc) -> new_pePe(new_lt9(vyw28000, vyw29000, cb), new_asAs(new_esEs10(vyw28000, vyw29000, cb), new_ltEs19(vyw28001, vyw29001, cc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, be) -> LT new_esEs29(vyw30, vyw400, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs7(vyw30, vyw400, bba, bbb, bbc) new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs29(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chh)) -> new_esEs17(vyw302, vyw4002, chh) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs7(vyw28000, vyw29000, bef, beg, beh) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(ty_@2, ddc), ddd)) -> new_esEs6(vyw18, vyw13, ddc, ddd) new_compare0(:(vyw28000, vyw28001), [], cg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bfe), bh) -> new_ltEs8(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs30(vyw18, vyw13, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs7(vyw18, vyw13, ddg, ddh, dea) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bed), bee)) -> new_esEs6(vyw28000, vyw29000, bed, bee) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_esEs29(vyw30, vyw400, ty_Bool) -> new_esEs12(vyw30, vyw400) new_compare16(vyw28000, vyw29000, False, ge, gf, gg) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dcc)) -> new_esEs5(vyw300, vyw4000, dcc) new_ltEs9(LT, EQ) -> True new_esEs29(vyw30, vyw400, app(app(ty_@2, bae), baf)) -> new_esEs6(vyw30, vyw400, bae, baf) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, cbe), bad) -> new_esEs5(vyw300, vyw4000, cbe) new_lt7(vyw28000, vyw29000, da, db) -> new_esEs8(new_compare8(vyw28000, vyw29000, da, db), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gb)) -> new_lt11(vyw28000, vyw29000, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), cg) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, cg), cg) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), bac, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], cfd)) -> new_esEs17(vyw301, vyw4001, cfd) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(ty_@2, bgh), bha)) -> new_ltEs14(vyw28000, vyw29000, bgh, bha) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], ceb)) -> new_esEs17(vyw300, vyw4000, ceb) new_compare17(vyw28000, vyw29000, app(app(ty_@2, hd), he)) -> new_compare13(vyw28000, vyw29000, hd, he) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bba, bbb, bbc) -> new_asAs(new_esEs26(vyw300, vyw4000, bba), new_asAs(new_esEs25(vyw301, vyw4001, bbb), new_esEs24(vyw302, vyw4002, bbc))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), cd, ce, cf) -> new_pePe(new_lt20(vyw28000, vyw29000, cd), new_asAs(new_esEs20(vyw28000, vyw29000, cd), new_pePe(new_lt19(vyw28001, vyw29001, ce), new_asAs(new_esEs19(vyw28001, vyw29001, ce), new_ltEs20(vyw28002, vyw29002, cf))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbg), dbh)) -> new_esEs4(vyw300, vyw4000, dbg, dbh) new_esEs30(vyw18, vyw13, ty_Bool) -> new_esEs12(vyw18, vyw13) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, bd) -> new_esEs8(new_compare0(vyw28000, vyw29000, bd), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, ge, gf, gg) -> LT new_ltEs8(Nothing, Nothing, ca) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, chb)) -> new_esEs11(vyw302, vyw4002, chb) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, ca) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), bac, app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bdb), bdc)) -> new_esEs6(vyw28001, vyw29001, bdb, bdc) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_[], bhe)) -> new_ltEs17(vyw28000, vyw29000, bhe) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bab) -> new_asAs(new_esEs28(vyw300, vyw4000, bab), new_esEs27(vyw301, vyw4001, bab)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bad) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, ha), hb)) -> new_compare8(vyw28000, vyw29000, ha, hb) new_compare110(vyw28000, vyw29000, False, gc, gd) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs15(vyw28000, vyw29000, bhb, bhc, bhd) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, dad)) -> new_esEs11(vyw301, vyw4001, dad) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs29(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bah) -> False new_esEs17([], :(vyw4000, vyw4001), bah) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, dd)) -> new_ltEs5(vyw28000, vyw29000, dd) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bcf)) -> new_lt10(vyw28001, vyw29001, bcf) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bah) -> new_asAs(new_esEs21(vyw300, vyw4000, bah), new_esEs17(vyw301, vyw4001, bah)) new_compare28(vyw28000, vyw29000, True, da, db) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), bg, app(ty_Ratio, bgd)) -> new_ltEs5(vyw28000, vyw29000, bgd) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bad) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), bg, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare24(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs17([], :(x0, x1), x2) new_esEs17([], [], x0) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, x2) new_lt9(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare14(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(EQ, EQ) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, True, x2) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(False, False) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_compare24(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare16(x0, x1, True, x2, x3, x4) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, LT) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_compare23(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(@0, @0) new_compare28(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, x2, x3) new_compare110(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_ltEs8(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_compare210(x0, x1, False, x2, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_compare23(Nothing, Nothing, False, x0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(False, x0) new_esEs10(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare110(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_compare26(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare23(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Integer) new_not(True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_compare112(x0, x1, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare23(Just(x0), Just(x1), False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_Bool) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Ordering) new_compare111(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, GT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_compare0([], :(x0, x1), x2) new_compare17(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare17(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs23(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs21(x0, x1, ty_Char) new_compare0([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_lt17(x0, x1, x2, x3) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_esEs5(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1, x2) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(True, True) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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_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_elemFM00(Branch(Just(vyw400), vyw41, vyw42, vyw43, vyw44), Just(vyw30), h, ba) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare23(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, False, bb, bc) -> new_elemFM06(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare23(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_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_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 *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 ---------------------------------------- (41) YES ---------------------------------------- (42) 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. ---------------------------------------- (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_primMulNat(Succ(vyw30000), Succ(vyw400100)) -> new_primMulNat(vyw30000, Succ(vyw400100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (44) YES ---------------------------------------- (45) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Left(vyw28000), Left(vyw29000), app(ty_[], ca), bb) -> new_ltEs3(vyw28000, vyw29000, ca) new_primCompAux(vyw28000, vyw29000, vyw97, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare5(vyw28000, vyw29000, bdg, bdh, bea) new_ltEs(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs2(vyw28000, vyw29000, bf, bg, bh) new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bb)) -> new_ltEs2(vyw28000, vyw29000, bf, bg, bh) new_lt2(vyw28000, vyw29000, gg, gh, ha) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(app(ty_Either, eg), eh)) -> new_ltEs(vyw28001, vyw29001, eg, eh) new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs2(vyw28000, vyw29000, eb, ec, ed) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(app(ty_@2, bbb), bbc)), bah)) -> new_lt1(vyw28001, vyw29001, bbb, bbc) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(app(ty_@3, gg), gh), ha), gc) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_Either, de), df))) -> new_ltEs(vyw28000, vyw29000, de, df) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(app(app(ty_@3, bbd), bbe), bbf)), bah)) -> new_lt2(vyw28001, vyw29001, bbd, bbe, bbf) new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs2(vyw28000, vyw29000, da, db, dc) new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(vyw28000, vyw29000, cc, cd) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_[], hb), gc) -> new_compare(vyw28000, vyw29000, hb) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(ty_Maybe, hg))) -> new_ltEs0(vyw28002, vyw29002, hg) new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(ty_[], dd)) -> new_ltEs3(vyw28000, vyw29000, dd) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(ty_Maybe, hg)) -> new_ltEs0(vyw28002, vyw29002, hg) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), hd), bah)) -> new_lt0(vyw28000, vyw29000, bcb) new_ltEs3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_compare(vyw28001, vyw29001, bda) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_[], bch)), hd), bah)) -> new_lt3(vyw28000, vyw29000, bch) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(ty_[], bae))) -> new_ltEs3(vyw28002, vyw29002, bae) new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_[], ca)), bb)) -> new_ltEs3(vyw28000, vyw29000, ca) new_lt(vyw28000, vyw29000, ga, gb) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) new_lt3(vyw28000, vyw29000, hb) -> new_compare(vyw28000, vyw29000, hb) new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(vyw28000, vyw29000, h, ba) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_Either, bbh), bca), hd, bah) -> new_lt(vyw28000, vyw29000, bbh, bca) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(app(ty_Either, eg), eh))) -> new_ltEs(vyw28001, vyw29001, eg, eh) new_compare4(vyw28000, vyw29000, ge, gf) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(app(ty_@2, cf), cg)) -> new_ltEs1(vyw28000, vyw29000, cf, cg) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_@2, ge), gf)), gc)) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), hd), bah)) -> new_lt1(vyw28000, vyw29000, bcc, bcd) new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(ty_[], dd))) -> new_ltEs3(vyw28000, vyw29000, dd) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(app(ty_Either, baf), bag)), bah)) -> new_lt(vyw28001, vyw29001, baf, bag) new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs1(vyw28000, vyw29000, dh, ea) new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(app(ty_@2, cf), cg))) -> new_ltEs1(vyw28000, vyw29000, cf, cg) new_ltEs(Left(vyw28000), Left(vyw29000), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw28000, vyw29000, h, ba) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(ty_Maybe, bba), bah) -> new_lt0(vyw28001, vyw29001, bba) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bce), bcf), bcg)), hd), bah)) -> new_lt2(vyw28000, vyw29000, bce, bcf, bcg) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(ty_[], fh)) -> new_ltEs3(vyw28001, vyw29001, fh) new_ltEs0(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs0(vyw28000, vyw29000, dg) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_Maybe, bcb), hd, bah) -> new_lt0(vyw28000, vyw29000, bcb) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(ty_Maybe, fa))) -> new_ltEs0(vyw28001, vyw29001, fa) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(app(app(ty_@3, fd), ff), fg))) -> new_ltEs2(vyw28001, vyw29001, fd, ff, fg) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(ty_[], bbg)), bah)) -> new_lt3(vyw28001, vyw29001, bbg) new_primCompAux(vyw28000, vyw29000, vyw97, app(app(ty_Either, bdb), bdc)) -> new_compare1(vyw28000, vyw29000, bdb, bdc) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(app(ty_@3, gg), gh), ha)), gc)) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) new_compare5(vyw28000, vyw29000, gg, gh, ha) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) new_ltEs(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bc), bb) -> new_ltEs0(vyw28000, vyw29000, bc) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(app(ty_@2, fb), fc))) -> new_ltEs1(vyw28001, vyw29001, fb, fc) new_ltEs(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bd), be), bb) -> new_ltEs1(vyw28000, vyw29000, bd, be) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(app(ty_Either, he), hf))) -> new_ltEs(vyw28002, vyw29002, he, hf) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(app(ty_Either, he), hf)) -> new_ltEs(vyw28002, vyw29002, he, hf) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(app(ty_Either, baf), bag), bah) -> new_lt(vyw28001, vyw29001, baf, bag) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(app(ty_@3, bce), bcf), bcg), hd, bah) -> new_lt2(vyw28000, vyw29000, bce, bcf, bcg) new_lt1(vyw28000, vyw29000, ge, gf) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs2(vyw28001, vyw29001, fd, ff, fg) new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vyw28000, vyw29000, eb, ec, ed) new_compare21(vyw28000, vyw29000, False, ge, gf) -> new_ltEs1(vyw28000, vyw29000, ge, gf) new_primCompAux(vyw28000, vyw29000, vyw97, app(ty_Maybe, bdd)) -> new_compare3(vyw28000, vyw29000, bdd) new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, da), db), dc))) -> new_ltEs2(vyw28000, vyw29000, da, db, dc) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(app(ty_@2, hh), baa)) -> new_ltEs1(vyw28002, vyw29002, hh, baa) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(ty_[], bae)) -> new_ltEs3(vyw28002, vyw29002, bae) new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(ty_Maybe, ce)) -> new_ltEs0(vyw28000, vyw29000, ce) new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw28000, vyw29000, cc, cd) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(ty_Maybe, fa)) -> new_ltEs0(vyw28001, vyw29001, fa) new_compare20(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], bda)) -> new_compare(vyw28001, vyw29001, bda) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_@2, bcc), bcd), hd, bah) -> new_lt1(vyw28000, vyw29000, bcc, bcd) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(app(ty_@2, fb), fc)) -> new_ltEs1(vyw28001, vyw29001, fb, fc) new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs(vyw28000, vyw29000, de, df) new_ltEs3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bda), bda) new_compare(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bda), bda) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_Maybe, gd)), gc)) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(app(ty_@2, hh), baa))) -> new_ltEs1(vyw28002, vyw29002, hh, baa) new_compare20(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], bda)) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bda), bda) new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(vyw28000, vyw29000, dg) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(ty_[], bbg), bah) -> new_lt3(vyw28001, vyw29001, bbg) new_lt0(vyw28000, vyw29000, gd) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(ty_Maybe, bba)), bah)) -> new_lt0(vyw28001, vyw29001, bba) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(ty_[], fh))) -> new_ltEs3(vyw28001, vyw29001, fh) new_compare22(vyw28000, vyw29000, False, gg, gh, ha) -> new_ltEs2(vyw28000, vyw29000, gg, gh, ha) new_primCompAux(vyw28000, vyw29000, vyw97, app(ty_[], beb)) -> new_compare(vyw28000, vyw29000, beb) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vyw28002, vyw29002, bab, bac, bad) new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(ty_Maybe, ce))) -> new_ltEs0(vyw28000, vyw29000, ce) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_Either, ga), gb)), gc)) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_@2, dh), ea))) -> new_ltEs1(vyw28000, vyw29000, dh, ea) new_ltEs0(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs3(vyw28000, vyw29000, ee) new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_@2, bd), be)), bb)) -> new_ltEs1(vyw28000, vyw29000, bd, be) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_Either, ga), gb), gc) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) new_compare(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_compare(vyw28001, vyw29001, bda) new_primCompAux(vyw28000, vyw29000, vyw97, app(app(ty_@2, bde), bdf)) -> new_compare4(vyw28000, vyw29000, bde, bdf) new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_Maybe, bc)), bb)) -> new_ltEs0(vyw28000, vyw29000, bc) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(app(ty_@2, bbb), bbc), bah) -> new_lt1(vyw28001, vyw29001, bbb, bbc) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_@2, ge), gf), gc) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) new_compare2(vyw28000, vyw29000, False, ga, gb) -> new_ltEs(vyw28000, vyw29000, ga, gb) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(app(app(ty_@3, bbd), bbe), bbf), bah) -> new_lt2(vyw28001, vyw29001, bbd, bbe, bbf) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs2(vyw28002, vyw29002, bab, bac, bad) new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_[], ee))) -> new_ltEs3(vyw28000, vyw29000, ee) new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_Either, bbh), bca)), hd), bah)) -> new_lt(vyw28000, vyw29000, bbh, bca) new_compare3(vyw28000, vyw29000, gd) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_[], hb)), gc)) -> new_compare(vyw28000, vyw29000, hb) new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_[], bch), hd, bah) -> new_lt3(vyw28000, vyw29000, bch) new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_Maybe, gd), gc) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) new_compare1(vyw28000, vyw29000, ga, gb) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) The TRS R consists of the following rules: new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt19(vyw28001, vyw29001, app(app(ty_Either, baf), bag)) -> new_lt7(vyw28001, vyw29001, baf, bag) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_Either, h), ba), bb) -> new_ltEs7(vyw28000, vyw29000, h, ba) new_ltEs7(Right(vyw28000), Left(vyw29000), cb, bb) -> False new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw280000)), Pos(vyw29000)) -> LT new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_primPlusNat0(Zero, Zero) -> Zero new_esEs23(vyw300, vyw4000, app(ty_[], cff)) -> new_esEs17(vyw300, vyw4000, cff) new_pePe(True, vyw96) -> True new_lt20(vyw28000, vyw29000, app(ty_Ratio, bfe)) -> new_lt10(vyw28000, vyw29000, bfe) new_ltEs10(False, False) -> True new_ltEs4(vyw2800, vyw2900, ty_Integer) -> new_ltEs13(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, app(ty_[], beb)) -> new_compare0(vyw28000, vyw29000, beb) new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs7(vyw300, vyw4000, bgf, bgg, bgh) new_compare23(vyw280, vyw290, True, bec) -> EQ new_esEs4(Left(vyw300), Right(vyw4000), caf, bhd) -> False new_esEs4(Right(vyw300), Left(vyw4000), caf, bhd) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw28001, vyw29001, ty_Ordering) -> new_ltEs9(vyw28001, vyw29001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw290000))) -> GT new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_@0) -> new_compare7(vyw28000, vyw29000) new_compare210(vyw28000, vyw29000, False, gg, gh, ha) -> new_compare16(vyw28000, vyw29000, new_ltEs15(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) new_esEs21(vyw300, vyw4000, app(app(ty_@2, bgb), bgc)) -> new_esEs6(vyw300, vyw4000, bgb, bgc) new_esEs24(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), caf, app(ty_Ratio, cag)) -> new_esEs11(vyw300, vyw4000, cag) new_primCmpInt(Neg(Succ(vyw280000)), Neg(vyw29000)) -> new_primCmpNat0(vyw29000, Succ(vyw280000)) new_compare210(vyw28000, vyw29000, True, gg, gh, ha) -> EQ new_esEs22(vyw301, vyw4001, app(app(ty_Either, cdg), cdh)) -> new_esEs4(vyw301, vyw4001, cdg, cdh) new_ltEs20(vyw28002, vyw29002, ty_Ordering) -> new_ltEs9(vyw28002, vyw29002) new_compare111(vyw28000, vyw29000, True, ga, gb) -> LT new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw400100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw400100)), vyw400100) new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare113(vyw28000, vyw29000, False) -> GT new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs19(vyw28001, vyw29001, ty_Double) -> new_ltEs11(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Ratio, bhc), bhd) -> new_esEs11(vyw300, vyw4000, bhc) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs8(GT, GT) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs15(vyw28000, vyw29000, bf, bg, bh) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_lt12(vyw28000, vyw29000) -> new_esEs8(new_compare19(vyw28000, vyw29000), LT) new_ltEs5(vyw2800, vyw2900, bed) -> new_not(new_esEs8(new_compare18(vyw2800, vyw2900, bed), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs8(EQ, EQ) -> True new_compare17(vyw28000, vyw29000, app(ty_Maybe, bdd)) -> new_compare12(vyw28000, vyw29000, bdd) new_esEs26(vyw300, vyw4000, app(ty_Ratio, dba)) -> new_esEs11(vyw300, vyw4000, dba) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs27(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare17(vyw28000, vyw29000, ty_Integer) -> new_compare15(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(app(ty_@3, hc), hd), bah)) -> new_ltEs15(vyw2800, vyw2900, hc, hd, bah) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_lt19(vyw28001, vyw29001, app(ty_[], bbg)) -> new_lt4(vyw28001, vyw29001, bbg) new_lt9(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_compare12(vyw28000, vyw29000, gd) -> new_compare23(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) new_not(True) -> False new_ltEs11(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare11(vyw2800, vyw2900), GT)) new_primCompAux00(vyw107, LT) -> LT new_ltEs4(vyw2800, vyw2900, app(ty_Ratio, bed)) -> new_ltEs5(vyw2800, vyw2900, bed) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Float, bb) -> new_ltEs16(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_esEs10(vyw28000, vyw29000, app(app(ty_@2, ge), gf)) -> new_esEs6(vyw28000, vyw29000, ge, gf) new_ltEs19(vyw28001, vyw29001, ty_@0) -> new_ltEs6(vyw28001, vyw29001) new_lt9(vyw28000, vyw29000, app(app(ty_@2, ge), gf)) -> new_lt17(vyw28000, vyw29000, ge, gf) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Bool, bb) -> new_ltEs10(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Bool, bhd) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs7(vyw301, vyw4001, daf, dag, dah) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), caf, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs10(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs7(vyw28000, vyw29000, gg, gh, ha) new_esEs19(vyw28001, vyw29001, ty_Ordering) -> new_esEs8(vyw28001, vyw29001) new_ltEs20(vyw28002, vyw29002, app(app(ty_Either, he), hf)) -> new_ltEs7(vyw28002, vyw29002, he, hf) new_ltEs20(vyw28002, vyw29002, ty_Char) -> new_ltEs12(vyw28002, vyw29002) new_ltEs20(vyw28002, vyw29002, ty_Int) -> new_ltEs18(vyw28002, vyw29002) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw28002, vyw29002, ty_Double) -> new_ltEs11(vyw28002, vyw29002) new_esEs19(vyw28001, vyw29001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs7(vyw28001, vyw29001, bbd, bbe, bbf) new_compare112(vyw28000, vyw29000, False) -> GT new_lt20(vyw28000, vyw29000, app(ty_[], bch)) -> new_lt4(vyw28000, vyw29000, bch) new_esEs4(Right(vyw300), Right(vyw4000), caf, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs7(vyw300, vyw4000, cbf, cbg, cbh) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), caf, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(ty_Maybe, hg)) -> new_ltEs8(vyw28002, vyw29002, hg) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bfg)) -> new_esEs11(vyw300, vyw4000, bfg) new_esEs4(Left(vyw300), Left(vyw4000), ty_Int, bhd) -> new_esEs18(vyw300, vyw4000) new_esEs4(Left(vyw300), Left(vyw4000), ty_@0, bhd) -> new_esEs9(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, app(app(ty_Either, bbh), bca)) -> new_lt7(vyw28000, vyw29000, bbh, bca) new_lt9(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_primCompAux00(vyw107, GT) -> GT new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs19(vyw28001, vyw29001, ty_Char) -> new_ltEs12(vyw28001, vyw29001) new_ltEs4(vyw2800, vyw2900, app(app(ty_@2, ef), gc)) -> new_ltEs14(vyw2800, vyw2900, ef, gc) new_esEs20(vyw28000, vyw29000, ty_Ordering) -> new_esEs8(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_@2, bhg), bhh), bhd) -> new_esEs6(vyw300, vyw4000, bhg, bhh) new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_compare24(vyw28000, vyw29000, False, ge, gf) -> new_compare110(vyw28000, vyw29000, new_ltEs14(vyw28000, vyw29000, ge, gf), ge, gf) new_lt6(vyw28000, vyw29000) -> new_esEs8(new_compare7(vyw28000, vyw29000), LT) new_primCmpInt(Pos(Succ(vyw280000)), Neg(vyw29000)) -> GT new_lt9(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_compare110(vyw28000, vyw29000, True, ge, gf) -> LT new_esEs10(vyw28000, vyw29000, app(ty_Ratio, bfa)) -> new_esEs11(vyw28000, vyw29000, bfa) new_esEs19(vyw28001, vyw29001, ty_Double) -> new_esEs13(vyw28001, vyw29001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Ratio, ccb)) -> new_esEs11(vyw300, vyw4000, ccb) new_esEs22(vyw301, vyw4001, app(ty_Ratio, cdf)) -> new_esEs11(vyw301, vyw4001, cdf) new_ltEs6(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare7(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_compare17(vyw28000, vyw29000, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare26(vyw28000, vyw29000, bdg, bdh, bea) new_primCmpNat0(Zero, Succ(vyw290000)) -> LT new_lt18(vyw28000, vyw29000, gg, gh, ha) -> new_esEs8(new_compare26(vyw28000, vyw29000, gg, gh, ha), LT) new_compare17(vyw28000, vyw29000, ty_Char) -> new_compare14(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_@2, cce), ccf)) -> new_esEs6(vyw300, vyw4000, cce, ccf) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs7(vyw300, vyw4000, dbh, dca, dcb) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Ordering) -> new_ltEs9(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_primCmpNat0(Succ(vyw280000), Zero) -> GT new_ltEs19(vyw28001, vyw29001, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw28001, vyw29001, eg, eh) new_compare17(vyw28000, vyw29000, app(ty_Ratio, bfb)) -> new_compare18(vyw28000, vyw29000, bfb) new_pePe(False, vyw96) -> vyw96 new_esEs22(vyw301, vyw4001, app(app(ty_@2, cea), ceb)) -> new_esEs6(vyw301, vyw4001, cea, ceb) new_lt17(vyw28000, vyw29000, ge, gf) -> new_esEs8(new_compare13(vyw28000, vyw29000, ge, gf), LT) new_esEs4(Left(vyw300), Left(vyw4000), ty_Ordering, bhd) -> new_esEs8(vyw300, vyw4000) new_esEs12(False, False) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), cb, app(ty_Maybe, ce)) -> new_ltEs8(vyw28000, vyw29000, ce) new_esEs24(vyw302, vyw4002, ty_@0) -> new_esEs9(vyw302, vyw4002) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bfh), bga)) -> new_esEs4(vyw300, vyw4000, bfh, bga) new_esEs10(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_lt11(vyw28000, vyw29000, gd) -> new_esEs8(new_compare12(vyw28000, vyw29000, gd), LT) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_esEs17([], [], bff) -> True new_esEs19(vyw28001, vyw29001, app(ty_Ratio, bfd)) -> new_esEs11(vyw28001, vyw29001, bfd) new_esEs4(Right(vyw300), Right(vyw4000), caf, app(ty_Maybe, cbd)) -> new_esEs5(vyw300, vyw4000, cbd) new_compare10(vyw82, vyw83, False, bef) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs19(vyw28001, vyw29001, ty_Float) -> new_esEs16(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_lt19(vyw28001, vyw29001, ty_Ordering) -> new_lt12(vyw28001, vyw29001) new_compare27(vyw28000, vyw29000, False) -> new_compare113(vyw28000, vyw29000, new_ltEs9(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Ratio, bha), bb) -> new_ltEs5(vyw28000, vyw29000, bha) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Integer, bb) -> new_ltEs13(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(app(ty_@2, cgh), cha)) -> new_esEs6(vyw302, vyw4002, cgh, cha) new_lt8(vyw28000, vyw29000) -> new_esEs8(new_compare9(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_@0) -> new_ltEs6(vyw28002, vyw29002) new_esEs21(vyw300, vyw4000, app(ty_Maybe, bgd)) -> new_esEs5(vyw300, vyw4000, bgd) new_ltEs10(True, False) -> False new_ltEs19(vyw28001, vyw29001, ty_Int) -> new_ltEs18(vyw28001, vyw29001) new_lt19(vyw28001, vyw29001, ty_Int) -> new_lt5(vyw28001, vyw29001) new_compare23(Just(vyw2800), Just(vyw2900), False, bec) -> new_compare10(vyw2800, vyw2900, new_ltEs4(vyw2800, vyw2900, bec), bec) new_ltEs4(vyw2800, vyw2900, ty_Char) -> new_ltEs12(vyw2800, vyw2900) new_esEs5(Nothing, Nothing, cca) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_@0, bb) -> new_ltEs6(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw28001, vyw29001, fb, fc) new_esEs6(@2(vyw300, vyw301), @2(vyw4000, vyw4001), cdd, cde) -> new_asAs(new_esEs23(vyw300, vyw4000, cdd), new_esEs22(vyw301, vyw4001, cde)) new_lt9(vyw28000, vyw29000, app(app(app(ty_@3, gg), gh), ha)) -> new_lt18(vyw28000, vyw29000, gg, gh, ha) new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs5(Nothing, Just(vyw4000), cca) -> False new_esEs5(Just(vyw300), Nothing, cca) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vyw290000))) -> LT new_lt19(vyw28001, vyw29001, ty_Bool) -> new_lt13(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_Ratio, bfe)) -> new_esEs11(vyw28000, vyw29000, bfe) new_esEs20(vyw28000, vyw29000, ty_Float) -> new_esEs16(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_compare25(vyw28000, vyw29000) -> new_compare29(vyw28000, vyw29000, new_esEs12(vyw28000, vyw29000)) new_primMulInt(Pos(vyw3000), Pos(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs7(vyw28000, vyw29000, cc, cd) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cfa), cfb)) -> new_esEs4(vyw300, vyw4000, cfa, cfb) new_esEs4(Right(vyw300), Right(vyw4000), caf, ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs7(vyw300, vyw4000, cda, cdb, cdc) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dbd), dbe)) -> new_esEs6(vyw300, vyw4000, dbd, dbe) new_ltEs17(vyw2800, vyw2900, bda) -> new_not(new_esEs8(new_compare0(vyw2800, vyw2900, bda), GT)) new_compare10(vyw82, vyw83, True, bef) -> LT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs7(vyw301, vyw4001, cee, cef, ceg) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt13(vyw28000, vyw29000) -> new_esEs8(new_compare25(vyw28000, vyw29000), LT) new_ltEs19(vyw28001, vyw29001, app(ty_Maybe, fa)) -> new_ltEs8(vyw28001, vyw29001, fa) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400100)) -> Zero new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Int, bb) -> new_ltEs18(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Int) -> new_lt5(vyw28000, vyw29000) new_ltEs9(GT, EQ) -> False new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Integer) -> new_compare15(new_sr0(vyw28000, vyw29001), new_sr0(vyw29000, vyw28001)) new_lt19(vyw28001, vyw29001, ty_Float) -> new_lt8(vyw28001, vyw29001) new_ltEs19(vyw28001, vyw29001, ty_Integer) -> new_ltEs13(vyw28001, vyw29001) new_lt20(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, app(ty_Maybe, cfe)) -> new_esEs5(vyw300, vyw4000, cfe) new_primPlusNat1(Succ(vyw980), vyw400100) -> Succ(Succ(new_primPlusNat0(vyw980, vyw400100))) new_primPlusNat0(Succ(vyw9800), Zero) -> Succ(vyw9800) new_primPlusNat0(Zero, Succ(vyw4001000)) -> Succ(vyw4001000) new_ltEs19(vyw28001, vyw29001, app(ty_Ratio, beh)) -> new_ltEs5(vyw28001, vyw29001, beh) new_esEs10(vyw28000, vyw29000, app(app(ty_Either, ga), gb)) -> new_esEs4(vyw28000, vyw29000, ga, gb) new_primPlusNat1(Zero, vyw400100) -> Succ(vyw400100) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_@0) -> new_ltEs6(vyw2800, vyw2900) new_esEs8(LT, LT) -> True new_ltEs12(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare14(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Bool) -> new_esEs12(vyw302, vyw4002) new_esEs24(vyw302, vyw4002, app(app(app(ty_@3, chd), che), chf)) -> new_esEs7(vyw302, vyw4002, chd, che, chf) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Char, bb) -> new_ltEs12(vyw28000, vyw29000) new_lt19(vyw28001, vyw29001, app(ty_Maybe, bba)) -> new_lt11(vyw28001, vyw29001, bba) new_compare23(Just(vyw2800), Nothing, False, bec) -> GT new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(app(ty_@2, hh), baa)) -> new_ltEs14(vyw28002, vyw29002, hh, baa) new_esEs4(Right(vyw300), Right(vyw4000), caf, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt9(vyw28000, vyw29000, app(ty_Ratio, bfa)) -> new_lt10(vyw28000, vyw29000, bfa) new_ltEs10(False, True) -> True new_ltEs9(GT, GT) -> True new_lt9(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, app(ty_[], hb)) -> new_lt4(vyw28000, vyw29000, hb) new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_ltEs4(vyw2800, vyw2900, ty_Int) -> new_ltEs18(vyw2800, vyw2900) new_lt20(vyw28000, vyw29000, app(ty_Maybe, bcb)) -> new_lt11(vyw28000, vyw29000, bcb) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw28002, vyw29002, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs15(vyw28002, vyw29002, bab, bac, bad) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs7(vyw300, vyw4000, cfg, cfh, cga) new_ltEs19(vyw28001, vyw29001, app(ty_[], fh)) -> new_ltEs17(vyw28001, vyw29001, fh) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_[], cab), bhd) -> new_esEs17(vyw300, vyw4000, cab) new_esEs5(Just(vyw300), Just(vyw4000), app(app(ty_Either, ccc), ccd)) -> new_esEs4(vyw300, vyw4000, ccc, ccd) new_primMulInt(Neg(vyw3000), Neg(vyw40010)) -> Pos(new_primMulNat0(vyw3000, vyw40010)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw290000))) -> new_primCmpNat0(Zero, Succ(vyw290000)) new_compare17(vyw28000, vyw29000, ty_Float) -> new_compare9(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, app(ty_Maybe, gd)) -> new_esEs5(vyw28000, vyw29000, gd) new_lt20(vyw28000, vyw29000, ty_Ordering) -> new_lt12(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(app(ty_@2, dab), dac)) -> new_esEs6(vyw301, vyw4001, dab, dac) new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, app(ty_Maybe, cec)) -> new_esEs5(vyw301, vyw4001, cec) new_ltEs4(vyw2800, vyw2900, ty_Double) -> new_ltEs11(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, ty_Ordering) -> new_ltEs9(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Int) -> new_compare6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_[], bae)) -> new_ltEs17(vyw28002, vyw29002, bae) new_compare18(:%(vyw28000, vyw28001), :%(vyw29000, vyw29001), ty_Int) -> new_compare6(new_sr(vyw28000, vyw29001), new_sr(vyw29000, vyw28001)) new_lt9(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_ltEs19(vyw28001, vyw29001, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw28001, vyw29001, fd, ff, fg) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_Maybe, ccg)) -> new_esEs5(vyw300, vyw4000, ccg) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare6(vyw2800, vyw2900) -> new_primCmpInt(vyw2800, vyw2900) new_ltEs4(vyw2800, vyw2900, app(ty_Maybe, bee)) -> new_ltEs8(vyw2800, vyw2900, bee) new_lt14(vyw28000, vyw29000) -> new_esEs8(new_compare11(vyw28000, vyw29000), LT) new_esEs5(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare112(vyw28000, vyw29000, True) -> LT new_ltEs7(Left(vyw28000), Right(vyw29000), cb, bb) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Ordering, bb) -> new_ltEs9(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_esEs20(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cfc), cfd)) -> new_esEs6(vyw300, vyw4000, cfc, cfd) new_compare15(Integer(vyw28000), Integer(vyw29000)) -> new_primCmpInt(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, app(app(ty_Either, cb), bb)) -> new_ltEs7(vyw2800, vyw2900, cb, bb) new_lt20(vyw28000, vyw29000, ty_@0) -> new_lt6(vyw28000, vyw29000) new_ltEs20(vyw28002, vyw29002, app(ty_Ratio, bfc)) -> new_ltEs5(vyw28002, vyw29002, bfc) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs17(vyw28000, vyw29000, ee) new_sr0(Integer(vyw280000), Integer(vyw290010)) -> Integer(new_primMulInt(vyw280000, vyw290010)) new_primCompAux0(vyw28000, vyw29000, vyw97, bda) -> new_primCompAux00(vyw97, new_compare17(vyw28000, vyw29000, bda)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bd), be), bb) -> new_ltEs14(vyw28000, vyw29000, bd, be) new_ltEs4(vyw2800, vyw2900, app(ty_[], bda)) -> new_ltEs17(vyw2800, vyw2900, bda) new_lt20(vyw28000, vyw29000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt18(vyw28000, vyw29000, bce, bcf, bcg) new_esEs19(vyw28001, vyw29001, app(ty_Maybe, bba)) -> new_esEs5(vyw28001, vyw29001, bba) new_compare13(vyw28000, vyw29000, ge, gf) -> new_compare24(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) new_lt20(vyw28000, vyw29000, app(app(ty_@2, bcc), bcd)) -> new_lt17(vyw28000, vyw29000, bcc, bcd) new_compare8(vyw28000, vyw29000, ga, gb) -> new_compare28(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_compare0([], :(vyw29000, vyw29001), bda) -> LT new_asAs(True, vyw89) -> vyw89 new_lt20(vyw28000, vyw29000, ty_Float) -> new_lt8(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, app(ty_[], bbg)) -> new_esEs17(vyw28001, vyw29001, bbg) new_esEs25(vyw301, vyw4001, app(ty_[], dae)) -> new_esEs17(vyw301, vyw4001, dae) new_lt19(vyw28001, vyw29001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt18(vyw28001, vyw29001, bbd, bbe, bbf) new_compare113(vyw28000, vyw29000, True) -> LT new_esEs10(vyw28000, vyw29000, app(ty_[], hb)) -> new_esEs17(vyw28000, vyw29000, hb) new_lt10(vyw28000, vyw29000, bfa) -> new_esEs8(new_compare18(vyw28000, vyw29000, bfa), LT) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs20(vyw28000, vyw29000, app(ty_Maybe, bcb)) -> new_esEs5(vyw28000, vyw29000, bcb) new_esEs4(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cac), cad), cae), bhd) -> new_esEs7(vyw300, vyw4000, cac, cad, cae) new_esEs4(Left(vyw300), Left(vyw4000), app(app(ty_Either, bhe), bhf), bhd) -> new_esEs4(vyw300, vyw4000, bhe, bhf) new_esEs4(Left(vyw300), Left(vyw4000), ty_Char, bhd) -> new_esEs14(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), caf, app(app(ty_@2, cbb), cbc)) -> new_esEs6(vyw300, vyw4000, cbb, cbc) new_lt5(vyw28000, vyw29000) -> new_esEs8(new_compare6(vyw28000, vyw29000), LT) new_esEs10(vyw28000, vyw29000, ty_Integer) -> new_esEs15(vyw28000, vyw29000) new_esEs4(Left(vyw300), Left(vyw4000), ty_Float, bhd) -> new_esEs16(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_compare111(vyw28000, vyw29000, False, ga, gb) -> GT new_esEs24(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_ltEs20(vyw28002, vyw29002, ty_Float) -> new_ltEs16(vyw28002, vyw29002) new_compare24(vyw28000, vyw29000, True, ge, gf) -> EQ new_primCmpInt(Pos(Succ(vyw280000)), Pos(vyw29000)) -> new_primCmpNat0(Succ(vyw280000), vyw29000) new_ltEs7(Left(vyw28000), Left(vyw29000), ty_Double, bb) -> new_ltEs11(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs9(@0, @0) -> True new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_[], ca), bb) -> new_ltEs17(vyw28000, vyw29000, ca) new_primCompAux00(vyw107, EQ) -> vyw107 new_compare0([], [], bda) -> EQ new_esEs19(vyw28001, vyw29001, ty_@0) -> new_esEs9(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(app(ty_Either, bbh), bca)) -> new_esEs4(vyw28000, vyw29000, bbh, bca) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vyw300, vyw4001) -> new_primMulInt(vyw300, vyw4001) new_esEs19(vyw28001, vyw29001, app(app(ty_Either, baf), bag)) -> new_esEs4(vyw28001, vyw29001, baf, bag) new_esEs23(vyw300, vyw4000, app(ty_Ratio, ceh)) -> new_esEs11(vyw300, vyw4000, ceh) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs12(True, True) -> True new_lt19(vyw28001, vyw29001, ty_@0) -> new_lt6(vyw28001, vyw29001) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs24(vyw302, vyw4002, app(ty_Maybe, chb)) -> new_esEs5(vyw302, vyw4002, chb) new_lt19(vyw28001, vyw29001, app(app(ty_@2, bbb), bbc)) -> new_lt17(vyw28001, vyw29001, bbb, bbc) new_compare11(Double(vyw28000, Neg(vyw280010)), Double(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_lt15(vyw28000, vyw29000) -> new_esEs8(new_compare14(vyw28000, vyw29000), LT) new_ltEs20(vyw28002, vyw29002, ty_Integer) -> new_ltEs13(vyw28002, vyw29002) new_esEs25(vyw301, vyw4001, app(app(ty_Either, chh), daa)) -> new_esEs4(vyw301, vyw4001, chh, daa) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, ty_Float) -> new_ltEs16(vyw28000, vyw29000) new_esEs19(vyw28001, vyw29001, ty_Integer) -> new_esEs15(vyw28001, vyw29001) new_esEs20(vyw28000, vyw29000, app(ty_[], bch)) -> new_esEs17(vyw28000, vyw29000, bch) new_esEs24(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, ty_Bool) -> new_ltEs10(vyw28000, vyw29000) new_ltEs4(vyw2800, vyw2900, ty_Bool) -> new_ltEs10(vyw2800, vyw2900) new_compare17(vyw28000, vyw29000, ty_Double) -> new_compare11(vyw28000, vyw29000) new_compare14(Char(vyw28000), Char(vyw29000)) -> new_primCmpNat0(vyw28000, vyw29000) new_esEs25(vyw301, vyw4001, app(ty_Maybe, dad)) -> new_esEs5(vyw301, vyw4001, dad) new_esEs4(Right(vyw300), Right(vyw4000), caf, app(app(ty_Either, cah), cba)) -> new_esEs4(vyw300, vyw4000, cah, cba) new_ltEs9(GT, LT) -> False new_esEs21(vyw300, vyw4000, app(ty_[], bge)) -> new_esEs17(vyw300, vyw4000, bge) new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs8(vyw28000, vyw29000, dg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs8(Nothing, Just(vyw29000), bee) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs9(EQ, GT) -> True new_esEs20(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Just(vyw29000), ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_lt9(vyw28000, vyw29000, ty_Bool) -> new_lt13(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs4(Right(vyw300), Right(vyw4000), caf, ty_@0) -> new_esEs9(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs7(vyw28000, vyw29000, de, df) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCmpInt(Neg(Zero), Neg(Succ(vyw290000))) -> new_primCmpNat0(Succ(vyw290000), Zero) new_esEs26(vyw300, vyw4000, app(ty_[], dbg)) -> new_esEs17(vyw300, vyw4000, dbg) new_compare23(Nothing, Just(vyw2900), False, bec) -> LT new_esEs24(vyw302, vyw4002, app(app(ty_Either, cgf), cgg)) -> new_esEs4(vyw302, vyw4002, cgf, cgg) new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs12(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw300), Right(vyw4000), caf, ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare26(vyw28000, vyw29000, gg, gh, ha) -> new_compare210(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) new_compare28(vyw28000, vyw29000, False, ga, gb) -> new_compare111(vyw28000, vyw29000, new_ltEs7(vyw28000, vyw29000, ga, gb), ga, gb) new_ltEs18(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare6(vyw2800, vyw2900), GT)) new_lt9(vyw28000, vyw29000, app(app(ty_Either, ga), gb)) -> new_lt7(vyw28000, vyw29000, ga, gb) new_compare17(vyw28000, vyw29000, ty_Bool) -> new_compare25(vyw28000, vyw29000) new_ltEs14(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, gc) -> new_pePe(new_lt9(vyw28000, vyw29000, ef), new_asAs(new_esEs10(vyw28000, vyw29000, ef), new_ltEs19(vyw28001, vyw29001, gc))) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw28000, vyw29000, ty_Char) -> new_lt15(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Double) -> new_lt14(vyw28000, vyw29000) new_esEs10(vyw28000, vyw29000, ty_Double) -> new_esEs13(vyw28000, vyw29000) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, ty_@0) -> new_ltEs6(vyw28000, vyw29000) new_compare23(Nothing, Nothing, False, bec) -> LT new_esEs20(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), caf, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_not(False) -> True new_esEs10(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs24(vyw302, vyw4002, app(ty_[], chc)) -> new_esEs17(vyw302, vyw4002, chc) new_esEs5(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs9(vyw300, vyw4000) new_compare19(vyw28000, vyw29000) -> new_compare27(vyw28000, vyw29000, new_esEs8(vyw28000, vyw29000)) new_esEs19(vyw28001, vyw29001, ty_Char) -> new_esEs14(vyw28001, vyw29001) new_compare11(Double(vyw28000, Pos(vyw280010)), Double(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs20(vyw28000, vyw29000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs7(vyw28000, vyw29000, bce, bcf, bcg) new_esEs10(vyw28000, vyw29000, ty_Int) -> new_esEs18(vyw28000, vyw29000) new_compare0(:(vyw28000, vyw28001), [], bda) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw28000, vyw29000, True) -> EQ new_primPlusNat0(Succ(vyw9800), Succ(vyw4001000)) -> Succ(Succ(new_primPlusNat0(vyw9800, vyw4001000))) new_compare29(vyw28000, vyw29000, False) -> new_compare112(vyw28000, vyw29000, new_ltEs10(vyw28000, vyw29000)) new_ltEs7(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bc), bb) -> new_ltEs8(vyw28000, vyw29000, bc) new_esEs20(vyw28000, vyw29000, ty_Bool) -> new_esEs12(vyw28000, vyw29000) new_esEs20(vyw28000, vyw29000, app(app(ty_@2, bcc), bcd)) -> new_esEs6(vyw28000, vyw29000, bcc, bcd) new_ltEs13(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare15(vyw2800, vyw2900), GT)) new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw28000, vyw29000, eb, ec, ed) new_esEs19(vyw28001, vyw29001, ty_Int) -> new_esEs18(vyw28001, vyw29001) new_compare16(vyw28000, vyw29000, False, gg, gh, ha) -> GT new_esEs26(vyw300, vyw4000, app(ty_Maybe, dbf)) -> new_esEs5(vyw300, vyw4000, dbf) new_ltEs9(LT, EQ) -> True new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs9(vyw301, vyw4001) new_esEs4(Left(vyw300), Left(vyw4000), app(ty_Maybe, caa), bhd) -> new_esEs5(vyw300, vyw4000, caa) new_lt7(vyw28000, vyw29000, ga, gb) -> new_esEs8(new_compare8(vyw28000, vyw29000, ga, gb), LT) new_lt9(vyw28000, vyw29000, app(ty_Maybe, gd)) -> new_lt11(vyw28000, vyw29000, gd) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt16(vyw28000, vyw29000) -> new_esEs8(new_compare15(vyw28000, vyw29000), LT) new_ltEs16(vyw2800, vyw2900) -> new_not(new_esEs8(new_compare9(vyw2800, vyw2900), GT)) new_compare0(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_primCompAux0(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bda), bda) new_esEs20(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs4(Right(vyw300), Right(vyw4000), caf, ty_Bool) -> new_esEs12(vyw300, vyw4000) new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_lt19(vyw28001, vyw29001, ty_Char) -> new_lt15(vyw28001, vyw29001) new_esEs22(vyw301, vyw4001, app(ty_[], ced)) -> new_esEs17(vyw301, vyw4001, ced) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, app(app(ty_@2, cf), cg)) -> new_ltEs14(vyw28000, vyw29000, cf, cg) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), cb, ty_Integer) -> new_ltEs13(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), app(ty_[], cch)) -> new_esEs17(vyw300, vyw4000, cch) new_compare17(vyw28000, vyw29000, app(app(ty_@2, bde), bdf)) -> new_compare13(vyw28000, vyw29000, bde, bdf) new_esEs7(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cgb, cgc, cgd) -> new_asAs(new_esEs26(vyw300, vyw4000, cgb), new_asAs(new_esEs25(vyw301, vyw4001, cgc), new_esEs24(vyw302, vyw4002, cgd))) new_ltEs15(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, bah) -> new_pePe(new_lt20(vyw28000, vyw29000, hc), new_asAs(new_esEs20(vyw28000, vyw29000, hc), new_pePe(new_lt19(vyw28001, vyw29001, hd), new_asAs(new_esEs19(vyw28001, vyw29001, hd), new_ltEs20(vyw28002, vyw29002, bah))))) new_esEs20(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dbb), dbc)) -> new_esEs4(vyw300, vyw4000, dbb, dbc) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt4(vyw28000, vyw29000, hb) -> new_esEs8(new_compare0(vyw28000, vyw29000, hb), LT) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, ty_Int) -> new_ltEs18(vyw28000, vyw29000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs5(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_primCmpNat0(Succ(vyw280000), Succ(vyw290000)) -> new_primCmpNat0(vyw280000, vyw290000) new_compare16(vyw28000, vyw29000, True, gg, gh, ha) -> LT new_ltEs8(Nothing, Nothing, bee) -> True new_esEs24(vyw302, vyw4002, app(ty_Ratio, cge)) -> new_esEs11(vyw302, vyw4002, cge) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, ty_Double) -> new_ltEs11(vyw28000, vyw29000) new_ltEs8(Just(vyw28000), Nothing, bee) -> False new_esEs5(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs4(Right(vyw300), Right(vyw4000), caf, app(ty_[], cbe)) -> new_esEs17(vyw300, vyw4000, cbe) new_esEs19(vyw28001, vyw29001, app(app(ty_@2, bbb), bbc)) -> new_esEs6(vyw28001, vyw29001, bbb, bbc) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, app(ty_[], dd)) -> new_ltEs17(vyw28000, vyw29000, dd) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), dcc) -> new_asAs(new_esEs28(vyw300, vyw4000, dcc), new_esEs27(vyw301, vyw4001, dcc)) new_ltEs19(vyw28001, vyw29001, ty_Float) -> new_ltEs16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Double, bhd) -> new_esEs13(vyw300, vyw4000) new_ltEs4(vyw2800, vyw2900, ty_Float) -> new_ltEs16(vyw2800, vyw2900) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_lt19(vyw28001, vyw29001, ty_Double) -> new_lt14(vyw28001, vyw29001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs9(EQ, LT) -> False new_compare17(vyw28000, vyw29000, app(app(ty_Either, bdb), bdc)) -> new_compare8(vyw28000, vyw29000, bdb, bdc) new_compare110(vyw28000, vyw29000, False, ge, gf) -> GT new_compare17(vyw28000, vyw29000, ty_Ordering) -> new_compare19(vyw28000, vyw29000) new_lt20(vyw28000, vyw29000, ty_Integer) -> new_lt16(vyw28000, vyw29000) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw28000), Right(vyw29000), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs15(vyw28000, vyw29000, da, db, dc) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs25(vyw301, vyw4001, app(ty_Ratio, chg)) -> new_esEs11(vyw301, vyw4001, chg) new_ltEs19(vyw28001, vyw29001, ty_Bool) -> new_ltEs10(vyw28001, vyw29001) new_esEs10(vyw28000, vyw29000, ty_@0) -> new_esEs9(vyw28000, vyw29000) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs17(:(vyw300, vyw301), [], bff) -> False new_esEs17([], :(vyw4000, vyw4001), bff) -> False new_asAs(False, vyw89) -> False new_esEs19(vyw28001, vyw29001, ty_Bool) -> new_esEs12(vyw28001, vyw29001) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(ty_Ratio, beg)) -> new_ltEs5(vyw28000, vyw29000, beg) new_lt19(vyw28001, vyw29001, app(ty_Ratio, bfd)) -> new_lt10(vyw28001, vyw29001, bfd) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bff) -> new_asAs(new_esEs21(vyw300, vyw4000, bff), new_esEs17(vyw301, vyw4001, bff)) new_compare28(vyw28000, vyw29000, True, ga, gb) -> EQ new_ltEs8(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw28000, vyw29000, dh, ea) new_ltEs20(vyw28002, vyw29002, ty_Bool) -> new_ltEs10(vyw28002, vyw29002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs7(Right(vyw28000), Right(vyw29000), cb, app(ty_Ratio, bhb)) -> new_ltEs5(vyw28000, vyw29000, bhb) new_compare27(vyw28000, vyw29000, True) -> EQ new_ltEs9(EQ, EQ) -> True new_lt19(vyw28001, vyw29001, ty_Integer) -> new_lt16(vyw28001, vyw29001) new_esEs4(Left(vyw300), Left(vyw4000), ty_Integer, bhd) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw28000), Right(vyw29000), cb, ty_Char) -> new_ltEs12(vyw28000, vyw29000) new_compare9(Float(vyw28000, Pos(vyw280010)), Float(vyw29000, Neg(vyw290010))) -> new_compare6(new_sr(vyw28000, Pos(vyw290010)), new_sr(Neg(vyw280010), vyw29000)) new_compare9(Float(vyw28000, Neg(vyw280010)), Float(vyw29000, Pos(vyw290010))) -> new_compare6(new_sr(vyw28000, Neg(vyw290010)), new_sr(Pos(vyw280010), vyw29000)) new_esEs10(vyw28000, vyw29000, ty_Char) -> new_esEs14(vyw28000, vyw29000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs9(vyw300, vyw4000) The set Q consists of the following terms: new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs8(EQ, EQ) new_ltEs19(x0, x1, ty_Char) new_compare19(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs4(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, True, x2, x3) new_lt17(x0, x1, x2, x3) new_lt19(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Int) new_lt10(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_pePe(False, x0) new_compare110(x0, x1, True, x2, x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_lt20(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs17(:(x0, x1), [], x2) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Float) new_lt19(x0, x1, ty_Ordering) new_compare14(Char(x0), Char(x1)) new_compare16(x0, x1, False, x2, x3, x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare210(x0, x1, False, x2, x3, x4) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs13(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, ty_@0) new_compare17(x0, x1, app(ty_[], x2)) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare24(x0, x1, False, x2, x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primPlusNat0(Zero, Succ(x0)) new_ltEs11(x0, x1) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Int) new_compare23(x0, x1, True, x2) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare26(x0, x1, x2, x3, x4) new_compare10(x0, x1, True, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs10(False, False) new_esEs10(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_compare8(x0, x1, x2, x3) new_compare23(Just(x0), Just(x1), False, x2) new_primCompAux00(x0, LT) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Double) new_compare29(x0, x1, False) new_esEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs9(@0, @0) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs25(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Char) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_compare17(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare6(x0, x1) new_pePe(True, x0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_ltEs17(x0, x1, x2) new_lt14(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare17(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_esEs5(Nothing, Nothing, x0) new_compare17(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_compare17(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, ty_@0) new_lt8(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, x2) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare113(x0, x1, False) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_compare25(x0, x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Int) new_lt9(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs20(x0, x1, ty_Integer) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs4(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs19(x0, x1, ty_@0) new_ltEs12(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs9(LT, LT) new_lt9(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_compare0([], [], x0) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare23(Nothing, Just(x0), False, x1) new_sr0(Integer(x0), Integer(x1)) new_ltEs4(x0, x1, ty_Int) new_esEs17([], :(x0, x1), x2) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_asAs(False, x0) new_lt9(x0, x1, app(ty_Maybe, x2)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs10(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt4(x0, x1, x2) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_@0) new_esEs5(Nothing, Just(x0), x1) new_ltEs18(x0, x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, True) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare27(x0, x1, True) new_esEs20(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Nothing, Just(x0), x1) new_esEs20(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare17(x0, x1, ty_Bool) new_lt11(x0, x1, x2) new_compare15(Integer(x0), Integer(x1)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs16(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs22(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare17(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Float) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, True) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_@0) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Int) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_compare23(Nothing, Nothing, False, x0) new_esEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Char) new_lt19(x0, x1, ty_Integer) new_not(True) new_compare24(x0, x1, True, x2, x3) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Float) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs6(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs12(False, False) new_primCompAux0(x0, x1, x2, x3) new_compare13(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare112(x0, x1, False) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs8(Just(x0), Nothing, x1) new_lt20(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs25(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, ty_Bool) new_ltEs4(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, GT) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_lt18(x0, x1, x2, x3, x4) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Char(x0), Char(x1)) new_esEs24(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs26(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare0(:(x0, x1), [], x2) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primPlusNat1(Succ(x0), x1) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt19(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Zero) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_ltEs19(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs13(Double(x0, x1), Double(x2, x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Ordering) new_lt6(x0, x1) new_compare17(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare17(x0, x1, ty_Ordering) new_esEs18(x0, x1) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, EQ) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, False, x2) new_esEs20(x0, x1, ty_Int) new_compare12(x0, x1, x2) new_esEs16(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Double) new_lt13(x0, x1) new_esEs22(x0, x1, ty_Int) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_ltEs8(Nothing, Nothing, x0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_@0) new_compare27(x0, x1, False) new_lt20(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_compare28(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs17([], [], x0) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs20(x0, x1, ty_Char) new_esEs25(x0, x1, ty_@0) new_esEs12(True, True) new_ltEs4(x0, x1, ty_Double) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_not(False) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_compare113(x0, x1, True) new_primMulInt(Neg(x0), Neg(x1)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs19(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Double) new_compare0([], :(x0, x1), x2) new_compare110(x0, x1, False, x2, x3) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs21(x0, x1, ty_Bool) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_lt7(x0, x1, x2, x3) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, True) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare16(x0, x1, True, x2, x3, x4) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) 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. ---------------------------------------- (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_ltEs3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bda), bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs3(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_compare(vyw28001, vyw29001, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare5(vyw28000, vyw29000, gg, gh, ha) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(app(ty_Either, he), hf)) -> new_ltEs(vyw28002, vyw29002, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(vyw28000, vyw29000, False, gg, gh, ha) -> new_ltEs2(vyw28000, vyw29000, gg, gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(app(ty_@2, hh), baa)) -> new_ltEs1(vyw28002, vyw29002, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_lt1(vyw28000, vyw29000, ge, gf) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt2(vyw28000, vyw29000, gg, gh, ha) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bda), bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare20(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], bda)) -> new_primCompAux(vyw28000, vyw29000, new_compare0(vyw28001, vyw29001, bda), bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare(:(vyw28000, vyw28001), :(vyw29000, vyw29001), bda) -> new_compare(vyw28001, vyw29001, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(ty_Either, de), df)) -> new_ltEs(vyw28000, vyw29000, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(ty_@2, dh), ea)) -> new_ltEs1(vyw28000, vyw29000, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vyw28002, vyw29002, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vyw28000, vyw29000, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(vyw28000, vyw29000, gd) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(ty_[], bae)) -> new_ltEs3(vyw28002, vyw29002, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(ty_[], ee)) -> new_ltEs3(vyw28000, vyw29000, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Just(vyw28000), Just(vyw29000), app(ty_Maybe, dg)) -> new_ltEs0(vyw28000, vyw29000, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt3(vyw28000, vyw29000, hb) -> new_compare(vyw28000, vyw29000, hb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare2(vyw28000, vyw29000, False, ga, gb) -> new_ltEs(vyw28000, vyw29000, ga, gb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_lt(vyw28000, vyw29000, ga, gb) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare21(vyw28000, vyw29000, False, ge, gf) -> new_ltEs1(vyw28000, vyw29000, ge, gf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(vyw28000, vyw29000, vyw97, app(app(ty_@2, bde), bdf)) -> new_compare4(vyw28000, vyw29000, bde, bdf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(app(ty_Either, eg), eh)) -> new_ltEs(vyw28001, vyw29001, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_Maybe, gd), gc) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(app(ty_@2, fb), fc)) -> new_ltEs1(vyw28001, vyw29001, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs2(vyw28001, vyw29001, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(ty_[], fh)) -> new_ltEs3(vyw28001, vyw29001, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, hd, app(ty_Maybe, hg)) -> new_ltEs0(vyw28002, vyw29002, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), ef, app(ty_Maybe, fa)) -> new_ltEs0(vyw28001, vyw29001, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare1(vyw28000, vyw29000, ga, gb) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(vyw28000, vyw29000, vyw97, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare5(vyw28000, vyw29000, bdg, bdh, bea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_@2, ge), gf), gc) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare3(vyw28000, vyw29000, gd) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_Maybe, gd)), gc)) -> new_compare20(vyw28000, vyw29000, new_esEs5(vyw28000, vyw29000, gd), gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(ty_[], hb), gc) -> new_compare(vyw28000, vyw29000, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vyw28000, vyw29000, vyw97, app(ty_[], beb)) -> new_compare(vyw28000, vyw29000, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_@2, ge), gf)), gc)) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare4(vyw28000, vyw29000, ge, gf) -> new_compare21(vyw28000, vyw29000, new_esEs6(vyw28000, vyw29000, ge, gf), ge, gf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(app(ty_@3, gg), gh), ha), gc) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_ltEs1(@2(vyw28000, vyw28001), @2(vyw29000, vyw29001), app(app(ty_Either, ga), gb), gc) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(app(ty_@3, gg), gh), ha)), gc)) -> new_compare22(vyw28000, vyw29000, new_esEs7(vyw28000, vyw29000, gg, gh, ha), gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(app(ty_Either, ga), gb)), gc)) -> new_compare2(vyw28000, vyw29000, new_esEs4(vyw28000, vyw29000, ga, gb), ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(vyw28000, vyw29000, vyw97, app(ty_Maybe, bdd)) -> new_compare3(vyw28000, vyw29000, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw28000, vyw29000, vyw97, app(app(ty_Either, bdb), bdc)) -> new_compare1(vyw28000, vyw29000, bdb, bdc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(Left(vyw28000), Left(vyw29000), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw28000, vyw29000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw28000, vyw29000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_Either, de), df))) -> new_ltEs(vyw28000, vyw29000, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(vyw28000, vyw29000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(vyw28000, vyw29000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(app(ty_Either, eg), eh))) -> new_ltEs(vyw28001, vyw29001, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(app(ty_Either, he), hf))) -> new_ltEs(vyw28002, vyw29002, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(app(ty_@3, bce), bcf), bcg), hd, bah) -> new_lt2(vyw28000, vyw29000, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(app(app(ty_@3, bbd), bbe), bbf), bah) -> new_lt2(vyw28001, vyw29001, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_Either, bbh), bca), hd, bah) -> new_lt(vyw28000, vyw29000, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(app(ty_Either, baf), bag), bah) -> new_lt(vyw28001, vyw29001, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(ty_[], bbg), bah) -> new_lt3(vyw28001, vyw29001, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_[], bch), hd, bah) -> new_lt3(vyw28000, vyw29000, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(app(ty_@2, bcc), bcd), hd, bah) -> new_lt1(vyw28000, vyw29000, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(app(ty_@2, bbb), bbc), bah) -> new_lt1(vyw28001, vyw29001, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), hc, app(ty_Maybe, bba), bah) -> new_lt0(vyw28001, vyw29001, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw28000, vyw28001, vyw28002), @3(vyw29000, vyw29001, vyw29002), app(ty_Maybe, bcb), hd, bah) -> new_lt0(vyw28000, vyw29000, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(app(app(ty_@3, bbd), bbe), bbf)), bah)) -> new_lt2(vyw28001, vyw29001, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bce), bcf), bcg)), hd), bah)) -> new_lt2(vyw28000, vyw29000, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(app(ty_@2, cf), cg)) -> new_ltEs1(vyw28000, vyw29000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vyw28000), Left(vyw29000), app(app(ty_@2, bd), be), bb) -> new_ltEs1(vyw28000, vyw29000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Left(vyw28000), Left(vyw29000), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs2(vyw28000, vyw29000, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs2(vyw28000, vyw29000, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Left(vyw28000), Left(vyw29000), app(ty_[], ca), bb) -> new_ltEs3(vyw28000, vyw29000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(ty_[], dd)) -> new_ltEs3(vyw28000, vyw29000, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vyw28000), Left(vyw29000), app(ty_Maybe, bc), bb) -> new_ltEs0(vyw28000, vyw29000, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw28000), Right(vyw29000), cb, app(ty_Maybe, ce)) -> new_ltEs0(vyw28000, vyw29000, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(app(ty_@2, cf), cg))) -> new_ltEs1(vyw28000, vyw29000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(app(ty_@2, fb), fc))) -> new_ltEs1(vyw28001, vyw29001, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(app(ty_@2, hh), baa))) -> new_ltEs1(vyw28002, vyw29002, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(ty_@2, dh), ea))) -> new_ltEs1(vyw28000, vyw29000, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(ty_@2, bd), be)), bb)) -> new_ltEs1(vyw28000, vyw29000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bb)) -> new_ltEs2(vyw28000, vyw29000, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs2(vyw28000, vyw29000, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(app(app(ty_@3, fd), ff), fg))) -> new_ltEs2(vyw28001, vyw29001, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, da), db), dc))) -> new_ltEs2(vyw28000, vyw29000, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs2(vyw28002, vyw29002, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(ty_[], bae))) -> new_ltEs3(vyw28002, vyw29002, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_[], ca)), bb)) -> new_ltEs3(vyw28000, vyw29000, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(ty_[], dd))) -> new_ltEs3(vyw28000, vyw29000, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(ty_[], fh))) -> new_ltEs3(vyw28001, vyw29001, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_[], ee))) -> new_ltEs3(vyw28000, vyw29000, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(app(ty_Either, baf), bag)), bah)) -> new_lt(vyw28001, vyw29001, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_Either, bbh), bca)), hd), bah)) -> new_lt(vyw28000, vyw29000, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_[], bch)), hd), bah)) -> new_lt3(vyw28000, vyw29000, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(ty_[], bbg)), bah)) -> new_lt3(vyw28001, vyw29001, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), hd), app(ty_Maybe, hg))) -> new_ltEs0(vyw28002, vyw29002, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, ef), app(ty_Maybe, fa))) -> new_ltEs0(vyw28001, vyw29001, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Just(vyw28000)), Just(Just(vyw29000)), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(vyw28000, vyw29000, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Right(vyw28000)), Just(Right(vyw29000)), False, app(app(ty_Either, cb), app(ty_Maybe, ce))) -> new_ltEs0(vyw28000, vyw29000, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Left(vyw28000)), Just(Left(vyw29000)), False, app(app(ty_Either, app(ty_Maybe, bc)), bb)) -> new_ltEs0(vyw28000, vyw29000, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(app(ty_@2, bbb), bbc)), bah)) -> new_lt1(vyw28001, vyw29001, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), hd), bah)) -> new_lt1(vyw28000, vyw29000, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(:(vyw28000, vyw28001)), Just(:(vyw29000, vyw29001)), False, app(ty_[], bda)) -> new_compare(vyw28001, vyw29001, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@2(vyw28000, vyw28001)), Just(@2(vyw29000, vyw29001)), False, app(app(ty_@2, app(ty_[], hb)), gc)) -> new_compare(vyw28000, vyw29000, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), hd), bah)) -> new_lt0(vyw28000, vyw29000, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(vyw28000, vyw28001, vyw28002)), Just(@3(vyw29000, vyw29001, vyw29002)), False, app(app(app(ty_@3, hc), app(ty_Maybe, bba)), bah)) -> new_lt0(vyw28001, vyw29001, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (47) YES ---------------------------------------- (48) 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. ---------------------------------------- (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_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) 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_primPlusNat(Succ(vyw9800), Succ(vyw4001000)) -> new_primPlusNat(vyw9800, vyw4001000) 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_primPlusNat(Succ(vyw9800), Succ(vyw4001000)) -> new_primPlusNat(vyw9800, vyw4001000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (53) YES